/* ============================================================
   Appointiqa landing page — home.css
   Scoped under body.lp-page and .lp- prefix.
   ============================================================ */
body.lp-page { background: var(--paper); overflow-x: hidden; }
body.lp-page * { box-sizing: border-box; }

.lp-section { padding: 80px 0; }
.lp-section-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.lp-eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--rail);
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.lp-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--rail); }
.lp-section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1.12; margin: 0 0 16px;
}
.lp-section-sub { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); max-width: 58ch; margin: 0 0 48px; }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 62px;
}
.nav-logo img { height: 44px; display: block; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.9rem; color: var(--ink-soft); text-decoration: none;
  padding: 6px 12px; border-radius: 6px; transition: background 0.12s, color 0.12s; font-weight: 500;
}
.nav-link:hover { background: var(--paper); color: var(--ink); }
.nav-mobile { display: none; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .nav-mobile > summary { list-style: none; font-size: 1.4rem; cursor: pointer; padding: 8px; color: var(--ink); }
  .nav-mobile > summary::-webkit-details-marker { display: none; }
  .nav-mobile-panel {
    position: fixed; top: 62px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 12px 24px 20px;
    display: flex; flex-direction: column; gap: 4px;
    box-shadow: 0 8px 24px -8px rgba(20,15,10,0.15);
    z-index: 200;
  }
  .nav-mobile-panel .nav-link { padding: 10px 12px; }
}

/* BUTTONS */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 999px; text-decoration: none; cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s; border: none; white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-primary { background: var(--rail); color: #fff; box-shadow: 0 4px 20px -4px rgba(15,92,74,0.35); }
.lp-btn-primary:hover { background: #0B4338; box-shadow: 0 8px 24px -4px rgba(15,92,74,0.45); }
.lp-btn-dark { background: #15110D; color: #fff; }
.lp-btn-dark:hover { background: #2A2114; }
.lp-btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.lp-btn-ghost:hover { border-color: rgba(255,255,255,0.7); }

/* HERO */
.lp-hero { background: #15110D; padding: 80px 0 0; overflow: hidden; }
.lp-hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
}
.lp-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; padding: 5px 14px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.lp-hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pillPulse 2s ease-in-out infinite; }
@keyframes pillPulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.lp-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; color: #fff; margin: 0 0 20px;
}
.lp-hero-accent { color: var(--gold); }
.lp-hero-sub { font-size: 1.05rem; line-height: 1.72; color: rgba(251,247,239,0.68); max-width: 46ch; margin: 0 0 32px; }
.lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.lp-hero-hint { font-family: var(--font-mono); font-size: 0.73rem; color: rgba(251,247,239,0.38); letter-spacing: 0.04em; }

/* Hero phone */
.lp-hero-visual { display: flex; justify-content: center; align-items: flex-end; }
.lp-phone {
  width: 248px; background: #1A1712; border-radius: 36px; border: 6px solid #2A2520;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.lp-phone-notch {
  width: 88px; height: 18px; background: #1A1712;
  border-radius: 0 0 12px 12px; margin: 0 auto; position: relative; z-index: 2;
}
.lp-phone-screen { background: var(--paper); position: relative; overflow: hidden; height: 460px; }
.lp-phone-header { background: var(--rail); padding: 14px 16px 12px; text-align: center; }
.lp-phone-logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.18); margin: 0 auto 7px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.lp-phone-biz-name { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: #fff; }
.lp-phone-biz-tag { font-size: 0.66rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
/* Phone scenes */
.lp-phone-scene {
  position: absolute; inset: 0; top: 0; padding: 14px;
  transition: opacity 0.5s ease, transform 0.5s ease; background: var(--paper);
}
.lp-phone-scene.out { opacity: 0; transform: translateY(16px); pointer-events: none; }
.lp-phone-scene.in  { opacity: 1; transform: translateY(0); }
.lp-ps-label {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--rail); margin-bottom: 10px;
}
.lp-ps-svc {
  background: #fff; border: 1.5px solid var(--line); border-radius: 11px;
  padding: 12px; margin-bottom: 9px;
}
.lp-ps-svc.sel { border-color: var(--rail); background: #EEF6F2; }
.lp-ps-svc-name { font-weight: 700; font-size: 0.82rem; color: var(--ink); }
.lp-ps-svc-meta { font-size: 0.7rem; color: var(--ink-soft); margin-top: 2px; }
.lp-ps-cal { background: #fff; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.lp-ps-cal-hdr {
  background: var(--rail); color: #fff; padding: 8px 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  display: flex; justify-content: space-between;
}
.lp-ps-days { display: grid; grid-template-columns: repeat(7,1fr); }
.lp-ps-dh { text-align: center; padding: 5px 0; font-family: var(--font-mono); font-size: 0.6rem; color: var(--ink-soft); background: var(--paper); }
.lp-ps-d { text-align: center; padding: 6px 0; font-size: 0.72rem; color: var(--ink); }
.lp-ps-d.dim { color: var(--line); }
.lp-ps-d.sel { background: var(--rail); color: #fff; font-weight: 700; }
.lp-ps-confirmed {
  background: #EEF6F2; border-radius: 12px; padding: 16px; text-align: center;
  border: 1px solid rgba(15,92,74,0.2); margin-top: 8px;
}
.lp-ps-confirmed-icon { font-size: 1.7rem; margin-bottom: 6px; }
.lp-ps-confirmed-title { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--rail); margin-bottom: 4px; }
.lp-ps-confirmed-sub { font-size: 0.7rem; color: var(--ink-soft); line-height: 1.5; }

/* TRUST BAR */
.lp-trust-bar {
  background: var(--rail); padding: 15px 24px;
  display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap;
}
.lp-trust-bar span {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.82);
  display: flex; align-items: center; gap: 7px;
}
.lp-trust-bar span::before { content: '✓'; color: var(--gold); }

/* BUSINESS TYPES */
.lp-for { padding: 52px 0; background: #fff; border-bottom: 1px solid var(--line); }
.lp-for-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.lp-for-label {
  text-align: center; font-family: var(--font-mono); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 28px;
}
.lp-for-grid { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.lp-for-chip {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 14px 18px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--paper); text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s; min-width: 100px;
}
.lp-for-chip:hover { border-color: var(--rail); box-shadow: 0 4px 16px -8px rgba(15,92,74,0.22); }
.lp-for-chip-icon { font-size: 1.5rem; }
.lp-for-chip-name { font-size: 0.75rem; font-weight: 600; color: var(--ink); text-align: center; }

/* FEATURE TABS */
.lp-feat { background: var(--paper); }
.lp-feat-tabs {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  margin-bottom: 36px; border-bottom: 1px solid var(--line);
}
.lp-feat-tabs::-webkit-scrollbar { display: none; }
.lp-feat-tab {
  background: none; border: none; padding: 12px 22px 14px; cursor: pointer;
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: var(--ink-soft); white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.lp-feat-tab.active { color: var(--rail); border-bottom-color: var(--rail); }
.lp-feat-panel { display: none; }
.lp-feat-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .lp-feat-panel.active { grid-template-columns: 1fr; } }
.lp-feat-text h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 0 0 12px; }
.lp-feat-text p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 18px; }
.lp-feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.lp-feat-list li { display: flex; gap: 10px; font-size: 0.88rem; align-items: flex-start; }
.lp-feat-list li::before { content: '✓'; color: var(--rail); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.lp-feat-mockup-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; box-shadow: 0 12px 40px -16px rgba(20,15,10,0.14);
}
.lp-feat-bar {
  background: #F0EDE8; padding: 9px 14px; display: flex; align-items: center;
  gap: 8px; border-bottom: 1px solid var(--line);
}
.lp-feat-bar-dots { display: flex; gap: 5px; }
.lp-feat-bar-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-feat-bar-url {
  flex: 1; background: #fff; border-radius: 5px; padding: 3px 10px;
  font-family: var(--font-mono); font-size: 0.69rem; color: var(--ink-soft);
}
.lp-feat-mockup-body { padding: 20px; }

/* ================================================================
   HOW IT WORKS — THE ANIMATED SECTION
   ================================================================ */
.lp-how { background: #fff; }
.lp-how-header { text-align: center; margin-bottom: 36px; }
.lp-how-tabs {
  display: flex; justify-content: center; gap: 4px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px; width: fit-content; margin: 0 auto 44px;
}
.lp-how-tab {
  background: none; border: none; padding: 9px 28px; border-radius: 999px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
  color: var(--ink-soft); cursor: pointer; transition: all 0.18s;
}
.lp-how-tab.active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px -3px rgba(20,15,10,0.14); }

.lp-how-body { display: grid; grid-template-columns: 380px 1fr; gap: 52px; align-items: start; }
@media (max-width: 900px) { .lp-how-body { grid-template-columns: 1fr; } }

/* Step list */
.lp-how-perspective { display: none; flex-direction: column; gap: 6px; }
.lp-how-perspective.active { display: flex; }
.lp-how-step {
  padding: 20px 22px; border-radius: 14px; cursor: pointer;
  border: 1.5px solid transparent; transition: border-color 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.lp-how-step:hover { background: var(--paper); }
.lp-how-step.active { background: var(--paper); border-color: var(--rail); }
.lp-how-step-num {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--rail);
  opacity: 0.6; margin-bottom: 5px;
}
.lp-how-step h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; margin: 0 0 5px; color: var(--ink); }
.lp-how-step p  { font-size: 0.86rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }
/* Progress bar */
.lp-step-bar {
  position: absolute; bottom: 0; left: 0; height: 2.5px;
  background: var(--rail); width: 0; border-radius: 0 2px 2px 0;
}
.lp-how-step.active.playing .lp-step-bar { animation: stepFill 5s linear forwards; }
@keyframes stepFill { from { width: 0; } to { width: 100%; } }

/* Mockup panels */
.lp-how-mockup-col { position: relative; height: 500px; }
.lp-how-mockups { position: absolute; inset: 0; display: none; }
.lp-how-mockups.active { display: block; }
.lp-how-panel {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px) scale(0.99);
  transition: opacity 0.38s ease, transform 0.38s ease;
  pointer-events: none;
}
.lp-how-panel.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

/* Mock window chrome */
.mk-win {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 16px 48px -16px rgba(20,15,10,0.18);
  height: 100%; display: flex; flex-direction: column;
}
.mk-body { padding: 22px; flex: 1; overflow-y: auto; }
.mk-bar {
  background: #F0EDE8; padding: 9px 14px; display: flex; align-items: center;
  gap: 8px; border-bottom: 1px solid var(--line);
}
.mk-dots { display: flex; gap: 5px; }
.mk-dot { width: 10px; height: 10px; border-radius: 50%; }
.mk-dot-r { background: #FF5F57; } .mk-dot-y { background: #FEBC2E; } .mk-dot-g { background: #28C840; }
.mk-url {
  flex: 1; background: #fff; border-radius: 5px; padding: 3px 10px;
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mk-body { padding: 22px; }

/* Mock UI atoms */
.mk-lbl { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 5px; }
.mk-field {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 8px;
  padding: 9px 12px; font-size: 0.86rem; color: var(--ink); margin-bottom: 13px;
  display: flex; align-items: center; gap: 6px;
}
.mk-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 13px; }
.mk-field-row .mk-field { margin-bottom: 0; }
.mk-cursor { display: inline-block; width: 1.5px; height: 13px; background: var(--rail); animation: blink 1s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.mk-btn {
  background: var(--rail); color: #fff; border-radius: 999px;
  padding: 10px 22px; font-family: var(--font-display); font-weight: 700;
  font-size: 0.86rem; display: inline-block; cursor: default;
}
.mk-btn-sm {
  background: var(--paper); border: 1px solid var(--line); color: var(--ink);
  border-radius: 8px; padding: 7px 14px; font-size: 0.8rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; cursor: default;
}
.mk-success {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  background: #EEF6F2; border-radius: 10px; padding: 10px 14px;
  color: var(--rail); font-weight: 600; font-size: 0.86rem;
}
/* Calendar */
.mk-cal { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.mk-cal-hdr {
  background: var(--rail); color: #fff; padding: 10px 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.86rem;
  display: flex; justify-content: space-between; align-items: center;
}
.mk-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.mk-dh { text-align: center; padding: 6px 0; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; color: var(--ink-soft); background: var(--paper); }
.mk-d  { text-align: center; padding: 8px 0; font-size: 0.78rem; color: var(--ink); }
.mk-d.dim { color: #D0CBC4; }
.mk-d.avail { background: #EEF6F2; }
.mk-d.sel { background: var(--rail); color: #fff; font-weight: 700; }
/* Slots */
.mk-slots { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 14px; }
.mk-slot { border: 1.5px solid var(--line); border-radius: 8px; padding: 8px; text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.mk-slot.sel { background: var(--rail); color: #fff; border-color: var(--rail); }
/* Booking card */
.mk-bcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; display: flex; align-items: center; gap: 13px; margin-bottom: 10px;
}
.mk-bcard:last-child { margin-bottom: 0; }
.mk-avatar {
  width: 34px; height: 34px; border-radius: 999px; background: var(--rail);
  color: #fff; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mk-bcard-name { font-weight: 700; font-size: 0.84rem; color: var(--ink); }
.mk-bcard-meta { font-size: 0.72rem; color: var(--ink-soft); margin-top: 2px; }
.mk-badge {
  margin-left: auto; background: #EEF6F2; color: var(--rail);
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px; letter-spacing: 0.06em;
  text-transform: uppercase; flex-shrink: 0;
}
/* Dashboard stats */
.mk-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.mk-stat { background: var(--paper); border-radius: 10px; padding: 10px 12px; border: 1px solid var(--line); }
.mk-stat-val { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.mk-stat-lbl { font-family: var(--font-mono); font-size: 0.58rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
/* URL bar for share panel */
.mk-url-bar {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 11px 14px; font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--rail); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.mk-url-bar-icon { font-size: 1rem; flex-shrink: 0; }
/* Share row */
.mk-share-row { display: flex; gap: 10px; flex-wrap: wrap; }
/* QR */
.mk-qr {
  width: 72px; height: 72px; border: 2px solid var(--ink);
  border-radius: 6px; padding: 5px;
  display: grid; grid-template-columns: repeat(7,1fr); grid-template-rows: repeat(7,1fr); gap: 1px;
}
.qc { background: var(--ink); border-radius: 1px; }
.qe { background: transparent; }
/* WhatsApp notification */
.mk-wa {
  position: absolute; bottom: 16px; left: 22px; right: 22px;
  background: #25D366; border-radius: 12px; padding: 11px 14px;
  display: flex; align-items: flex-start; gap: 10px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.28);
}
.mk-wa-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 1px; }
.mk-wa-title { font-weight: 700; font-size: 0.76rem; color: #fff; }
.mk-wa-body  { font-size: 0.7rem; color: rgba(255,255,255,0.88); margin-top: 2px; line-height: 1.45; }
/* Confirmation */
.mk-confirmed {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; text-align: center;
}
.mk-confirmed-icon {
  width: 50px; height: 50px; border-radius: 999px; background: #EEF6F2;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
  margin: 0 auto 11px;
}
.mk-confirmed-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 14px; }
.mk-detail-rows { text-align: left; }
.mk-detail-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: 0.8rem; }
.mk-detail-row:last-child { border-bottom: none; }
.mk-detail-key { color: var(--ink-soft); }
.mk-detail-val { font-weight: 600; color: var(--ink); }

/* Panel animations — triggered when .active class added */
@keyframes mkUp    { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes mkIn    { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
@keyframes mkScale { from { opacity:0; transform:scale(0.82); }      to { opacity:1; transform:scale(1); } }
@keyframes mkPulse { 0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(15,92,74,0)} 50%{transform:scale(0.96);} 70%{box-shadow:0 0 0 8px rgba(15,92,74,0)} }
@keyframes mkWa    { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* b0: service setup */
.lp-how-panel.active[data-p="b0"] .mk-lbl       { animation: mkUp 0.3s 0.15s both; }
.lp-how-panel.active[data-p="b0"] .mk-field      { animation: mkUp 0.32s 0.45s both; }
.lp-how-panel.active[data-p="b0"] .mk-field-row  { animation: mkUp 0.32s 0.85s both; }
.lp-how-panel.active[data-p="b0"] .mk-btn        { animation: mkUp 0.3s 1.3s both, mkPulse 0.4s 2.1s both; }
.lp-how-panel.active[data-p="b0"] .mk-success    { animation: mkUp 0.4s 2.55s both; }
/* b1: share link */
.lp-how-panel.active[data-p="b1"] .mk-url-bar   { animation: mkUp 0.3s 0.2s both; }
.lp-how-panel.active[data-p="b1"] .mk-qr        { animation: mkScale 0.45s 0.75s both; }
.lp-how-panel.active[data-p="b1"] .mk-share-row { animation: mkUp 0.3s 1.3s both; }
/* b2: bookings in */
.lp-how-panel.active[data-p="b2"] .mk-stat-row  { animation: mkUp 0.4s 0.15s both; }
.lp-how-panel.active[data-p="b2"] .mk-bcard:nth-child(1) { animation: mkIn 0.42s 0.75s both; }
.lp-how-panel.active[data-p="b2"] .mk-bcard:nth-child(2) { animation: mkIn 0.42s 1.25s both; }
/* c0: pick date */
.lp-how-panel.active[data-p="c0"] .mk-cal       { animation: mkUp 0.38s 0.15s both; }
.lp-how-panel.active[data-p="c0"] .mk-slots     { animation: mkUp 0.38s 0.85s both; }
/* c1: details */
.lp-how-panel.active[data-p="c1"] .mk-lbl:nth-of-type(1) { animation: mkUp 0.3s 0.1s both; }
.lp-how-panel.active[data-p="c1"] .mk-field:nth-of-type(1) { animation: mkUp 0.3s 0.3s both; }
.lp-how-panel.active[data-p="c1"] .mk-lbl:nth-of-type(2)   { animation: mkUp 0.3s 0.65s both; }
.lp-how-panel.active[data-p="c1"] .mk-field:nth-of-type(2)  { animation: mkUp 0.3s 0.85s both; }
.lp-how-panel.active[data-p="c1"] .mk-lbl:nth-of-type(3)   { animation: mkUp 0.3s 1.1s both; }
.lp-how-panel.active[data-p="c1"] .mk-field:nth-of-type(3)  { animation: mkUp 0.3s 1.3s both; }
.lp-how-panel.active[data-p="c1"] .mk-btn       { animation: mkUp 0.3s 1.7s both; }
/* c2: confirmed */
.lp-how-panel.active[data-p="c2"] .mk-confirmed { animation: mkScale 0.42s 0.15s both; }
.lp-how-panel.active[data-p="c2"] .mk-wa        { animation: mkWa 0.45s 1.8s both; }

/* FEATURE HIGHLIGHTS */
.lp-highlights { background: var(--paper); }
.lp-hl-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding: 64px 0; border-bottom: 1px solid var(--line);
}
.lp-hl-item:last-child { border-bottom: none; }
.lp-hl-item.flip { direction: rtl; }
.lp-hl-item.flip > * { direction: ltr; }
@media (max-width: 820px) { .lp-hl-item, .lp-hl-item.flip { grid-template-columns: 1fr; direction: ltr; } }
.lp-hl-text h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 14px; color: var(--ink); }
.lp-hl-text p  { font-size: 0.97rem; line-height: 1.72; color: var(--ink-soft); margin: 0 0 20px; }
.lp-hl-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lp-hl-list li { display: flex; gap: 9px; font-size: 0.88rem; align-items: flex-start; color: var(--ink); }
.lp-hl-list li::before { content: '✓'; color: var(--rail); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.lp-hl-visual {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 30px; box-shadow: 0 12px 40px -16px rgba(20,15,10,0.12);
  min-height: 260px; display: flex; align-items: center; justify-content: center;
}

/* Token board visual */
.lp-token-board {
  background: #111; border-radius: 12px; padding: 20px 24px; width: 100%; max-width: 320px;
}
.lp-token-board-title {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,200,60,0.7);
  text-align: center; margin-bottom: 16px;
}
.lp-token-now {
  text-align: center; margin-bottom: 14px;
}
.lp-token-now-lbl { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.lp-token-now-num {
  font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; color: #FFC83C;
  line-height: 1; letter-spacing: -0.02em;
  animation: tokenPulse 2s ease-in-out infinite;
}
@keyframes tokenPulse { 0%,100%{opacity:1;} 50%{opacity:0.7;} }
.lp-token-queue { display: flex; gap: 8px; justify-content: center; }
.lp-token-item {
  background: rgba(255,255,255,0.08); border-radius: 8px; padding: 5px 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: rgba(255,255,255,0.5);
}

/* INDUSTRIES */
.lp-industries { background: #fff; }
.lp-industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
@media (max-width: 760px) { .lp-industries-grid { grid-template-columns: 1fr 1fr; } }
.lp-industry-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 22px 18px;
  text-decoration: none; transition: border-color 0.15s, box-shadow 0.15s;
  display: flex; flex-direction: column; gap: 9px;
}
.lp-industry-card:hover { border-color: var(--rail); box-shadow: 0 6px 20px -10px rgba(15,92,74,0.2); }
.lp-industry-icon { font-size: 1.7rem; }
.lp-industry-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.lp-industry-desc { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }

/* TESTIMONIALS */
.lp-testimonials { background: var(--paper); }
.lp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 820px) { .lp-testi-grid { grid-template-columns: 1fr; } }
.lp-testi {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.lp-testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.88rem; }
.lp-testi-body { font-size: 0.92rem; line-height: 1.7; color: var(--ink); flex: 1; }
.lp-testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.lp-testi-av {
  width: 38px; height: 38px; border-radius: 999px; flex-shrink: 0;
  background: var(--rail); color: #fff; font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
}
.lp-testi-name { font-weight: 700; font-size: 0.84rem; color: var(--ink); }
.lp-testi-role { font-size: 0.76rem; color: var(--ink-soft); margin-top: 1px; }

/* PRICING TEASER */
.lp-pricing-teaser { background: #fff; }
.lp-price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 820px) { .lp-price-cards { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; } }
.lp-price-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px;
  display: flex; flex-direction: column; gap: 5px; position: relative; transition: box-shadow 0.15s;
}
.lp-price-card:hover { box-shadow: 0 12px 32px -12px rgba(20,15,10,0.14); }
.lp-price-card.featured { border-color: var(--rail); border-width: 2px; }
.lp-price-featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rail); color: #fff; font-family: var(--font-mono);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 999px; white-space: nowrap;
}
.lp-price-name { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.lp-price-limit { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 6px; }
.lp-price-setup { font-size: 0.78rem; color: var(--ink-soft); padding: 8px 0; border-top: 1px dashed var(--line); }
.lp-price-from { font-family: var(--font-mono); font-size: 0.62rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1px; margin-top: 6px; }
.lp-price-amount { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--ink); }
.lp-price-amount small { font-size: 0.76rem; font-weight: 400; color: var(--ink-soft); font-family: var(--font-body); }
.lp-price-note { font-size: 0.76rem; color: var(--rail); font-weight: 600; margin-top: 2px; }

/* FAQ */
.lp-faq { background: var(--paper); }
.lp-faq-inner { max-width: 720px; margin: 40px auto 0; }
.lp-faq-item { border-bottom: 1px solid var(--line); }
.lp-faq-item summary {
  list-style: none; padding: 17px 32px 17px 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--ink);
  position: relative; user-select: none;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; color: var(--gold); transition: transform 0.18s; line-height: 1;
}
.lp-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.lp-faq-item p { margin: 0 0 18px; font-size: 0.92rem; line-height: 1.72; color: var(--ink-soft); }

/* CTA BAND */
.lp-cta-band { background: #15110D; padding: 88px 24px; text-align: center; }
.lp-cta-band h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 700; color: #fff; letter-spacing: -0.015em; margin: 0 0 14px; }
.lp-cta-band p { color: rgba(251,247,239,0.6); font-size: 1rem; margin: 0 0 28px; }
.lp-cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.lp-cta-trust span { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(251,247,239,0.42); letter-spacing: 0.06em; display: flex; align-items: center; gap: 6px; }
.lp-cta-trust span::before { content: '·'; color: var(--gold); }

/* FOOTER */
.site-footer {
  background: #0E0B08; color: rgba(251,247,239,0.42);
  padding: 26px 32px; text-align: center; font-size: 0.8rem; line-height: 1.7;
}
.site-footer a { color: rgba(251,247,239,0.58); text-decoration: none; }
.site-footer a:hover { color: #fff; }

/* STICKY MOBILE BAR */
.lp-sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(21,17,13,0.96); backdrop-filter: blur(12px);
  padding: 12px 20px; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 640px) { .lp-sticky-bar { display: flex; } }
.lp-sticky-text { font-size: 0.86rem; color: #fff; font-weight: 600; }
.lp-sticky-sub  { font-size: 0.7rem; color: rgba(251,247,239,0.48); }

@media (max-width: 640px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-visual { display: none; }
  .lp-hero { padding-bottom: 48px; }
  .lp-section { padding: 56px 0; }
}
