/* ==========================================================================
   Orgabill — Landing ("the chair is held")
   A certainty-first system for dialysis-slot booking in Nepal.
   Signature: the Live Chair Board. One bold thing; everything else quiet.
   Scoped under .landing-body — tokens prefixed --lp-* so they never clash
   with the app-wide --o-* system.
   Type: Bricolage Grotesque (display) + Hanken Grotesk (text) — deliberately
   chosen to avoid the default Inter/serif look.
   ========================================================================== */

.landing-body {
  /* Type */
  --lp-display: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --lp-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Color — one green system on cool clinical paper; ink is green-tinted, never pure black */
  --lp-paper: #F2F5F1;
  --lp-surface: #FFFFFF;
  --lp-ink: #10231A;
  --lp-ink-2: #162C22;
  --lp-text: #35473D;
  --lp-muted: #566A5F;
  --lp-green: #1E7A3C;
  --lp-green-strong: #1A6C36;
  --lp-green-deep: #0F3D1E;
  --lp-mist: #E7F1E8;
  --lp-mist-2: #EEF5EE;
  --lp-line: #E1E9E0;
  --lp-line-strong: #CCDBCD;
  --lp-gold: #B67A16;
  --lp-gold-bright: #D0952A;
  --lp-gold-soft: #F7EFDD;
  --lp-danger: #A94A2A;

  /* Geometry */
  --lp-r-sm: 10px;
  --lp-r: 16px;
  --lp-r-lg: 22px;
  --lp-r-full: 999px;
  --lp-shadow-sm: 0 1px 2px rgba(16, 35, 26, .06);
  --lp-shadow: 0 18px 40px -24px rgba(16, 35, 26, .22);
  --lp-shadow-lg: 0 40px 70px -34px rgba(16, 35, 26, .30);
  --lp-ease: cubic-bezier(.16, 1, .3, 1);

  overflow-x: hidden;
  font-family: var(--lp-sans);
  color: var(--lp-text);
  background-color: var(--lp-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.65;
}

/* Devanagari — real bilingual care: serve Noto so Nepali headings/body render well */
html[lang="ne"] .landing-body {
  --lp-display: 'Noto Sans Devanagari', 'Hanken Grotesk', sans-serif;
  --lp-sans: 'Noto Sans Devanagari', 'Hanken Grotesk', sans-serif;
}

.landing-body h1,
.landing-body h2,
.landing-body h3,
.landing-body h4,
.landing-body h5,
.landing-body h6 {
  font-family: var(--lp-display);
  color: var(--lp-ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.landing-body a { text-decoration: none; }
.landing-body ::selection { background: var(--lp-green); color: #fff; }

/* Smooth in-page anchor scrolling, offset for the sticky nav */
html:has(.landing-body) { scroll-behavior: smooth; }
.landing-body section[id],
.landing-hero[id] { scroll-margin-top: 88px; }

/* Shared helpers (namespaced so they never cancel Bootstrap utilities) */
.lp-section { padding: 5.5rem 0; position: relative; }
.lp-section--tight { padding: 4rem 0; }
.lp-paper { background: var(--lp-paper); }

/* Eyebrow — sentence case, gentle tracking, leading rule. Not an uppercase AI kicker. */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--lp-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--lp-green);
}
.lp-eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.9;
}
.lp-eyebrow--center { justify-content: center; }
.lp-eyebrow--light { color: #9FD9AF; }

.lp-title {
  font-family: var(--lp-display);
  font-size: clamp(1.95rem, 3.6vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--lp-ink);
  margin: 0.85rem 0 0;
}
.lp-title em { font-style: normal; color: var(--lp-green); }
.lp-lead {
  color: var(--lp-muted);
  font-size: 1.075rem;
  line-height: 1.65;
  max-width: 46ch;
  margin: 1rem 0 0;
}
.lp-lead--center { margin-inline: auto; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(242, 245, 241, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--lp-ease), border-color .3s var(--lp-ease), box-shadow .3s var(--lp-ease);
}
.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--lp-line);
  box-shadow: 0 8px 30px -26px rgba(16, 35, 26, .6);
}
.landing-nav .nav-inner { height: 70px; }
.landing-brand {
  font-family: var(--lp-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-ink) !important;
}
.landing-brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--lp-green);
  color: #fff;
  font-size: 1.15rem;
}
.landing-nav .nav-link {
  color: var(--lp-text);
  font-family: var(--lp-sans);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.4rem 0.2rem !important;
  position: relative;
  transition: color .2s var(--lp-ease);
}
.landing-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--lp-green);
  transition: right .28s var(--lp-ease);
}
.landing-nav .nav-link:hover { color: var(--lp-ink); }
.landing-nav .nav-link:hover::after { right: 0; }

/* Buttons — inline-flex so icon + label always align (scoped + !important to beat base) */
.landing-body .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-sans);
  border-radius: var(--lp-r-full);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  padding: 0.64rem 1.35rem;
  transition: transform .2s var(--lp-ease), box-shadow .2s var(--lp-ease), background-color .2s var(--lp-ease), border-color .2s var(--lp-ease), color .2s var(--lp-ease);
}
.landing-body .btn i { line-height: 1; }
.landing-body .btn-primary {
  background: var(--lp-green) !important;
  border: 1px solid var(--lp-green) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px -18px rgba(16, 35, 26, .6);
}
.landing-body .btn-primary:hover,
.landing-body .btn-primary:focus-visible {
  background: var(--lp-green-strong) !important;
  border-color: var(--lp-green-strong) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -20px rgba(16, 35, 26, .5);
}
.landing-body .btn-primary:active { transform: translateY(0); }
.landing-body .btn-ink {
  background: var(--lp-ink);
  border: 1px solid var(--lp-ink);
  color: #fff;
}
.landing-body .btn-ink:hover { background: #08160F; color: #fff; transform: translateY(-2px); }
.landing-body .btn-ghost {
  background: transparent;
  border: 1px solid var(--lp-line-strong);
  color: var(--lp-ink);
}
.landing-body .btn-ghost:hover { border-color: var(--lp-ink); background: #fff; transform: translateY(-2px); }
.landing-body .btn-lg { padding: 0.88rem 1.75rem; font-size: 1rem; }
.landing-body .btn-sm { padding: 0.48rem 1rem; font-size: 0.875rem; }

.landing-body .text-primary { color: var(--lp-green) !important; }
.landing-body .text-secondary { color: var(--lp-muted) !important; }

/* Visible keyboard focus everywhere */
.landing-body a:focus-visible,
.landing-body .btn:focus-visible,
.landing-body button:focus-visible,
.landing-body .form-control:focus-visible {
  outline: 3px solid rgba(30, 122, 60, .35);
  outline-offset: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.landing-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--lp-paper) 100%);
  overflow: hidden;
}
.landing-hero .container { position: relative; z-index: 1; }

/* Quiet inline availability label — no pill, no uppercase, no decorative ping */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-green);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lp-green);
  flex: none;
}

.hero-title {
  font-family: var(--lp-display);
  font-size: clamp(2.6rem, 6vw, 4.15rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  margin: 1.1rem 0 0;
}
.hero-title .accent {
  display: inline-block;
  color: var(--lp-green);
  position: relative;
}
.hero-title .accent svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  width: 100%;
  height: 0.26em;
  overflow: visible;
  color: var(--lp-gold-bright);
}
.hero-title .accent svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}
.lp-js .hero-title .accent svg path { animation: lp-underline 1s var(--lp-ease) .7s forwards; }
@keyframes lp-underline { to { stroke-dashoffset: 0; } }

.hero-lead {
  color: var(--lp-muted);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 46ch;
  margin: 1.3rem 0 0;
}

/* Phone capture — the primary action, calm and confident */
.hero-phone-form {
  margin-top: 1.9rem;
  background: #fff;
  border: 1px solid var(--lp-line-strong);
  border-radius: var(--lp-r-full);
  box-shadow: var(--lp-shadow);
  padding: 0.4rem 0.4rem 0.4rem 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 480px;
  transition: box-shadow .25s var(--lp-ease), border-color .25s var(--lp-ease);
}
.hero-phone-form:focus-within {
  border-color: var(--lp-green);
  box-shadow: 0 0 0 4px rgba(30, 122, 60, .12), var(--lp-shadow);
}
.hero-phone-prefix {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 0.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lp-ink);
  white-space: nowrap;
}
.hero-phone-prefix i { color: var(--lp-green); }
.hero-phone-form .form-control {
  background: transparent;
  border: none;
  color: var(--lp-ink);
  box-shadow: none !important;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.5rem 0.35rem;
  min-width: 0;
}
.hero-phone-form .form-control::placeholder { color: #8A988F; font-weight: 400; }
.hero-phone-form .btn { flex: none; white-space: nowrap; }

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin-top: 1.9rem;
  font-size: 0.9rem;
  color: var(--lp-muted);
  font-weight: 500;
}
.hero-trust .item { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust i { color: var(--lp-green); font-size: 1.05rem; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--lp-line-strong); }

/* ---- Signature: Live Chair Board ---- */
.chair-board {
  position: relative;
  background: var(--lp-surface);
  border-radius: var(--lp-r-lg);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
}
.board-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--lp-line);
}
.board-head .unit { display: flex; align-items: center; gap: 0.7rem; }
.board-head .unit .avatar {
  width: 40px; height: 40px; border-radius: 11px; object-fit: cover;
  border: 1px solid var(--lp-line);
}
.board-head .unit .name { font-weight: 700; color: var(--lp-ink); font-size: 0.95rem; line-height: 1.1; }
.board-head .unit .meta { font-size: 0.8rem; color: var(--lp-muted); margin-top: 2px; }
.board-live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--lp-green);
  background: var(--lp-mist);
  padding: 0.3rem 0.65rem; border-radius: var(--lp-r-full);
}
.board-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lp-green); flex: none; }

.board-body { padding: 0.5rem 0.75rem 0.75rem; }
.chair-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.65rem;
  border-radius: 12px;
}
.chair-row + .chair-row { box-shadow: inset 0 1px 0 var(--lp-line); }
.chair-id {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 52px; height: 46px;
  border-radius: 10px;
  background: var(--lp-mist-2);
  border: 1px solid var(--lp-line);
  font-variant-numeric: tabular-nums;
}
.chair-id .n { font-weight: 700; font-size: 0.98rem; color: var(--lp-ink); line-height: 1; }
.chair-id .l { font-size: 0.66rem; letter-spacing: .04em; color: var(--lp-muted); margin-top: 3px; }
.chair-info .time {
  font-weight: 700; color: var(--lp-ink); font-size: 0.98rem;
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.chair-info .desc { font-size: 0.82rem; color: var(--lp-muted); }

.chair-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
  padding: 0.36rem 0.72rem; border-radius: var(--lp-r-full);
  white-space: nowrap;
}
.chair-status i { font-size: 0.95rem; }
.status-open { color: var(--lp-green); background: var(--lp-mist); }
.status-filling { color: var(--lp-gold); background: var(--lp-gold-soft); }
.status-locked { color: var(--lp-muted); background: #EDF0ED; }

/* The moment: a chair locking in for you */
.chair-row.is-held { background: var(--lp-mist); }
.chair-row.is-held .chair-id { background: var(--lp-green); border-color: var(--lp-green); }
.chair-row.is-held .chair-id .n,
.chair-row.is-held .chair-id .l { color: #fff; }
.status-held { color: #fff; background: var(--lp-green); }
.lp-js .chair-row.reveal-held { animation: lp-hold 0.7s var(--lp-ease) 0.9s both; }
@keyframes lp-hold {
  0% { background: transparent; }
  100% { background: var(--lp-mist); }
}
.lp-js .chair-row.reveal-held .status-held { animation: lp-badge-pop .45s var(--lp-ease) 1.1s both; }
@keyframes lp-badge-pop { 0% { transform: scale(.85); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

.board-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 1.25rem;
  border-top: 1px solid var(--lp-line);
  background: var(--lp-mist-2);
}
.board-foot .price .k { font-size: 0.78rem; color: var(--lp-muted); }
.board-foot .price .v { font-weight: 700; color: var(--lp-ink); font-size: 1.1rem; font-family: var(--lp-display); }
.board-foot .price .v span { font-weight: 600; font-size: .82rem; color: var(--lp-muted); }

/* floating verified chip on the board */
.board-chip {
  position: absolute;
  left: -14px; bottom: 84px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
  border-radius: var(--lp-r-full);
  padding: 0.5rem 0.85rem 0.5rem 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: var(--lp-ink);
}
.board-chip .ic { width: 26px; height: 26px; border-radius: 50%; background: var(--lp-green); color: #fff; display: grid; place-items: center; font-size: 0.9rem; }

/* ==========================================================================
   Proof strip (stats)
   ========================================================================== */
.proof {
  background: var(--lp-ink);
  color: #fff;
  border-radius: var(--lp-r-lg);
  padding: 2.4rem 1rem;
  position: relative;
  overflow: hidden;
  margin-top: -2.5rem;
}
.proof .stat-cell { position: relative; text-align: center; padding: 0.6rem 0.5rem; }
.proof .stat-cell:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.14);
}
.proof .stat-number {
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.proof .stat-number .u { color: var(--lp-gold-bright); }
.proof .stat-label {
  display: block; margin-top: 0.55rem;
  font-size: 0.88rem; color: rgba(255,255,255,.75); font-weight: 500;
}

/* ==========================================================================
   Section header block
   ========================================================================== */
.sec-head { max-width: 640px; }
.sec-head--center { margin-inline: auto; text-align: center; }

/* ==========================================================================
   How it works — a genuine sequence, so the numbering earns its place.
   Connected timeline rather than three identical cards.
   ========================================================================== */
.steps { position: relative; }
.step {
  position: relative;
  padding: 0 0.5rem;
}
.step .step-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.step .step-num {
  font-family: var(--lp-display);
  font-size: 1.05rem; font-weight: 700;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; background: var(--lp-green);
  font-variant-numeric: tabular-nums;
  flex: none;
  position: relative; z-index: 1;
}
.step .step-rule { flex: 1; height: 2px; background: var(--lp-line-strong); border-radius: 2px; }
.step:last-child .step-rule { display: none; }
.step .step-ic { color: var(--lp-green); font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.step h3 { font-size: 1.25rem; margin: 0 0 0.35rem; }
.step p { color: var(--lp-muted); font-size: 0.96rem; margin: 0; max-width: 34ch; }

/* ==========================================================================
   Why Orgabill — asymmetric: one lead statement + supporting three.
   Icons sit inline with their headings (no rounded-square tiles above text).
   ========================================================================== */
.feature-lead {
  background: var(--lp-ink);
  color: #fff;
  border-radius: var(--lp-r-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.feature-lead .fl-ic { font-size: 2.4rem; color: var(--lp-gold-bright); margin-bottom: auto; }
.feature-lead h3 { color: #fff; font-size: 1.65rem; margin: 1.6rem 0 0.6rem; line-height: 1.12; }
.feature-lead p { color: rgba(255,255,255,.82); margin: 0; font-size: 1.02rem; }
.feature-lead .fl-tag {
  align-self: flex-start; margin-top: 1.5rem;
  display: inline-flex; align-items: center;
  font-size: 0.85rem; font-weight: 600;
  color: #EFC673; background: rgba(208,149,42,.14);
  border: 1px solid rgba(208,149,42,.3);
  padding: 0.4rem 0.8rem; border-radius: var(--lp-r-full);
}

.feature-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r);
  padding: 1.6rem;
  height: 100%;
  transition: transform .3s var(--lp-ease), border-color .3s var(--lp-ease);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--lp-line-strong); }
.feature-card .feature-head { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.55rem; }
.feature-icon { color: var(--lp-green); font-size: 1.5rem; flex: none; }
.feature-card h4 { font-size: 1.08rem; margin: 0; font-family: var(--lp-display); font-weight: 600; color: var(--lp-ink); letter-spacing: -0.01em; }
.feature-card p { color: var(--lp-muted); font-size: 0.94rem; margin: 0; line-height: 1.6; }

/* ==========================================================================
   Featured hospitals
   ========================================================================== */
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  border: 1px solid var(--lp-line-strong);
  background: #fff;
  color: var(--lp-text);
  font-family: var(--lp-sans);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.44rem 1rem;
  border-radius: var(--lp-r-full);
  transition: color .2s var(--lp-ease), background-color .2s var(--lp-ease), border-color .2s var(--lp-ease);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--lp-green); color: var(--lp-green); }
.filter-btn.active { background: var(--lp-ink); border-color: var(--lp-ink); color: #fff; }

.featured-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .3s var(--lp-ease), border-color .3s var(--lp-ease);
}
.featured-card:hover { transform: translateY(-4px); border-color: var(--lp-line-strong); }
.featured-card .card-img-wrap { position: relative; height: 190px; background: var(--lp-mist); overflow: hidden; }
.featured-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.badge-plan {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.32rem;
  background: rgba(255,255,255,.95);
  color: var(--lp-gold);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.34rem 0.65rem; border-radius: var(--lp-r-full);
  box-shadow: var(--lp-shadow-sm);
}
.badge-live {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(16,35,26,.68); color: #fff;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.32rem 0.6rem; border-radius: var(--lp-r-full);
  backdrop-filter: blur(4px);
}
.badge-live .dot { width: 6px; height: 6px; border-radius: 50%; background: #7EE2A1; flex: none; }
.featured-card .card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.featured-card .featured-title { font-family: var(--lp-display); font-weight: 600; font-size: 1.12rem; color: var(--lp-ink); letter-spacing: -0.01em; margin: 0 0 0.15rem; }
.rating-stars { color: var(--lp-gold-bright); font-size: 0.92rem; letter-spacing: 1px; }
.featured-card .price-v { font-family: var(--lp-display); font-weight: 600; color: var(--lp-ink); font-size: 1.3rem; letter-spacing: -0.02em; }

/* ==========================================================================
   Patient reviews — editorial, not a row of identical cards.
   One featured voice + supporting quotes, on flat panels (no card borders).
   ========================================================================== */
.review-featured {
  background: var(--lp-surface);
  border-radius: var(--lp-r-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: var(--lp-shadow-sm);
}
.review-featured .r-quote {
  font-family: var(--lp-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--lp-ink);
  margin: 0 0 1.25rem;
}
.review-featured .r-quote::before { content: "“"; color: var(--lp-green); margin-right: 0.1rem; }

.review {
  background: var(--lp-surface);
  border-radius: var(--lp-r);
  padding: 1.6rem 1.75rem;
}
.review .r-quote {
  color: var(--lp-ink);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.r-person { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.r-avatar { width: 2.7rem; height: 2.7rem; border-radius: 50%; object-fit: cover; border: 1px solid var(--lp-line); flex: none; }
.r-name { font-weight: 700; color: var(--lp-ink); font-size: 0.95rem; line-height: 1.15; }
.r-meta { color: var(--lp-muted); font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 2px; }
.r-stars { margin-left: auto; color: var(--lp-gold-bright); font-size: 0.9rem; letter-spacing: 1px; flex: none; }

/* ==========================================================================
   Partner CTA
   ========================================================================== */
.partner-section {
  background: var(--lp-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.partner-section h2 { color: #fff; font-size: clamp(1.95rem, 3.4vw, 2.7rem); font-weight: 600; }
.partner-benefit { display: flex; align-items: center; gap: 0.7rem; color: rgba(255,255,255,.92); font-weight: 500; }
.partner-benefit .ic { width: 1.7rem; height: 1.7rem; border-radius: 50%; background: rgba(30,122,60,.22); color: #7EE2A1; display: grid; place-items: center; font-size: 0.9rem; flex: none; }
.partner-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--lp-r-lg);
  padding: 2rem;
}
.partner-card .form-label { color: rgba(255,255,255,.72); font-weight: 500; }
.partner-card .form-control {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: var(--lp-r-sm);
  padding: 0.72rem 0.9rem;
}
.partner-card .form-control:focus {
  background: rgba(255,255,255,.11);
  border-color: var(--lp-green);
  box-shadow: 0 0 0 4px rgba(30,122,60,.25);
  color: #fff;
}
.partner-card .form-control::placeholder { color: rgba(255,255,255,.45); }

/* ==========================================================================
   FAQ — editorial two-column: sticky intro + Q&A panel on paper background.
   Native <details> for accessibility, no JS dependency.
   ========================================================================== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .faq-layout { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.faq-intro { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 992px) {
  .faq-intro { position: sticky; top: 96px; }
}
.faq-intro .lp-title { margin: 0; }
.faq-intro .lp-lead { margin: 0; }
.faq-help {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r);
  box-shadow: var(--lp-shadow-sm);
}
.faq-help i {
  font-size: 1.35rem;
  color: var(--lp-green);
  flex: none;
  margin-top: 1px;
}
.faq-help-title { font-weight: 700; color: var(--lp-ink); font-size: 0.95rem; }
.faq-help-sub { color: var(--lp-muted); font-size: 0.85rem; margin-top: 2px; }

/* Q&A panel — themed surface card, matching feature-card pattern */
.faq-panel {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  padding: 0.5rem 1.75rem;
  box-shadow: var(--lp-shadow-sm);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--lp-line);
  padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--lp-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--lp-ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color .2s var(--lp-ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--lp-green); }
.faq-item[open] .faq-q { color: var(--lp-green); }
.faq-q-text { flex: 1; }
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform .3s var(--lp-ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform .3s var(--lp-ease); }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  padding: 0 0 1.25rem;
  max-width: 62ch;
  animation: faq-open .35s var(--lp-ease);
}
.faq-a p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-a { animation: none; }
  .faq-icon, .faq-icon::after { transition: none; }
}
@media (max-width: 575.98px) {
  .faq-panel { padding: 0.5rem 1.25rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.landing-footer { background: var(--lp-ink); color: rgba(255,255,255,.72); }
.landing-footer h6 { color: #fff; letter-spacing: 0.02em; }
.landing-footer .brand-line { font-family: var(--lp-display); font-weight: 700; color: #fff; }
.landing-footer a { color: rgba(255,255,255,.72); transition: color .2s var(--lp-ease); }
.landing-footer a:hover { color: #fff; }
.landing-footer .fbrand-mark { width: 32px; height: 32px; border-radius: 9px; background: var(--lp-green); color: #fff; display: grid; place-items: center; }
.landing-footer .border-secondary { border-color: rgba(255,255,255,.12) !important; }
.footer-features .fi { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.footer-features .fi i { color: #7EE2A1; font-size: 1.35rem; }
.footer-features .fi span { font-size: 0.86rem; color: rgba(255,255,255,.72); }
.payment-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.42rem 0.72rem; border-radius: var(--lp-r-sm);
  color: #fff; font-size: 0.78rem; font-weight: 600;
}
.payment-badge i { font-size: 0.9rem; }
.payment-badge-light { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }

/* Mobile sticky CTA */
.sticky-mobile-cta { background: #fff; box-shadow: 0 -6px 24px rgba(16,35,26,.12); }

/* ==========================================================================
   Motion — scroll reveal + hero load stagger + count-up.
   Hidden-at-rest states are gated behind .lp-js so content is always visible
   if JavaScript doesn't run.
   ========================================================================== */
.lp-js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--lp-ease), transform .8s var(--lp-ease); }
.lp-js .reveal.is-in { opacity: 1; transform: none; }
.lp-js .reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--lp-ease), transform .7s var(--lp-ease); }
.lp-js .reveal-stagger.is-in > * { opacity: 1; transform: none; }
.lp-js .reveal-stagger.is-in > *:nth-child(1) { transition-delay: .04s; }
.lp-js .reveal-stagger.is-in > *:nth-child(2) { transition-delay: .12s; }
.lp-js .reveal-stagger.is-in > *:nth-child(3) { transition-delay: .20s; }
.lp-js .reveal-stagger.is-in > *:nth-child(4) { transition-delay: .28s; }
.lp-js .reveal-stagger.is-in > *:nth-child(5) { transition-delay: .36s; }
.lp-js .reveal-stagger.is-in > *:nth-child(6) { transition-delay: .44s; }
.lp-js .reveal-stagger.is-in > *:nth-child(7) { transition-delay: .52s; }
.lp-js .reveal-stagger.is-in > *:nth-child(8) { transition-delay: .60s; }

.lp-js .hero-anim > * { opacity: 0; transform: translateY(18px); animation: lp-rise .8s var(--lp-ease) forwards; }
.lp-js .hero-anim > *:nth-child(1) { animation-delay: .05s; }
.lp-js .hero-anim > *:nth-child(2) { animation-delay: .13s; }
.lp-js .hero-anim > *:nth-child(3) { animation-delay: .21s; }
.lp-js .hero-anim > *:nth-child(4) { animation-delay: .29s; }
.lp-js .hero-anim > *:nth-child(5) { animation-delay: .37s; }
.lp-js .hero-visual { opacity: 0; transform: translateY(24px); animation: lp-rise .9s var(--lp-ease) .3s forwards; }
@keyframes lp-rise { to { opacity: 1; transform: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
  .lp-section { padding: 4rem 0; }
  .proof { margin-top: 0; }
  .board-chip { display: none; }
  .hero-title { font-size: clamp(2.3rem, 9vw, 3.2rem); }
  .step .step-rule { display: none; }
  .step { margin-bottom: 1.5rem; }
}
@media (max-width: 575.98px) {
  .hero-phone-form { flex-wrap: wrap; border-radius: var(--lp-r); }
  .hero-phone-prefix { padding: 0.4rem 0 0 0.6rem; }
  .hero-phone-form .form-control { flex: 1 1 auto; }
  .hero-phone-form .btn { width: 100%; }
  .proof .stat-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 1.1rem; margin-bottom: 0.4rem; }
  .proof .stat-cell:nth-child(odd)::after { display: none; }
  .review-featured, .review { padding: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html:has(.landing-body) { scroll-behavior: auto; }
  .landing-body *,
  .landing-body *::before,
  .landing-body *::after {
    animation: none !important;
    transition: none !important;
  }
  .lp-js .reveal, .lp-js .reveal-stagger > *, .lp-js .hero-anim > *, .lp-js .hero-visual { opacity: 1 !important; transform: none !important; }
  .hero-title .accent svg path { stroke-dashoffset: 0 !important; }
}
