/* NightLase — shared styles (used by index.html and consultation.html) */
  :root{
    --floral: #F8F2E7;
    --floral-deep: #F1E8D6;
    --olive-leaf: #475335;
    --olive-leaf-2: #3C4A2C;
    --olive-wood: #7A5E4A;
    --atomic: #E8956F;
    --ink: #2F3826;
    --line: rgba(71, 83, 53, 0.14);
    --shadow: 0 24px 50px -28px rgba(47, 56, 38, 0.45);
    --maxw: 1680px;
  }
  *{box-sizing:border-box; margin:0; padding:0}
  /* the [hidden] attribute must win over flex/inline-flex display rules */
  [hidden]{ display:none !important }
  html{scroll-behavior:smooth; scroll-padding-top:92px}
  body{
    background: var(--floral);
    color: var(--ink);
    font-family:'Reddit Sans', system-ui, sans-serif;
    -webkit-font-smoothing:antialiased;
    line-height:1.5;
  }
  img{display:block; max-width:100%}
  a{color:inherit; text-decoration:none}

  /* visually-hidden helper for accessible labels/landmarks */
  .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
    clip:rect(0,0,0,0);white-space:nowrap;border:0}
  :focus-visible{outline:2px solid var(--olive-leaf); outline-offset:2px; border-radius:6px}

  .wrap{ max-width: var(--maxw); margin:0 auto; padding: 0 40px }

  /* ---------- shared type ---------- */
  .eyebrow{
    font-size:13px; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
    color: var(--olive-wood);
    display:inline-flex; align-items:center; gap:12px;
  }
  .eyebrow::before{
    content:""; width:28px; height:2px; background:var(--atomic); border-radius:2px;
  }
  h1,h2,h3{ color: var(--olive-leaf); font-weight:700; letter-spacing:-.02em; line-height:1.05 }
  .lead{ color: var(--olive-wood); font-size:19px; line-height:1.6 }

  /* ---------- buttons ---------- */
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    font-weight:600; font-size:15px; letter-spacing:.01em;
    padding:15px 26px; border-radius:999px; cursor:pointer; border:1.5px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  }
  .btn:hover{ transform: translateY(-1px) }
  .btn-primary{ background:var(--olive-leaf); color:var(--floral) }
  .btn-primary:hover{ background:var(--olive-leaf-2) }
  .btn-ghost{ background:transparent; color:var(--olive-leaf); border-color:var(--line) }
  .btn-ghost:hover{ border-color:var(--olive-leaf) }
  .btn-accent{ background:var(--atomic); color:#3a2417 }
  .btn-accent:hover{ filter:brightness(1.03) }
  .btn .arr{ width:16px; height:16px }

  /* ---------- nav ---------- */
  header.nav{
    position:sticky; top:0; z-index:50;
    background: rgba(248,242,231,.85);
    backdrop-filter: blur(12px);
    border-bottom:1px solid var(--line);
  }
  .nav-inner{ display:flex; align-items:center; justify-content:space-between; height:78px }
  .brand{ display:flex; align-items:center; gap:13px; min-width:0 }
  .brand-primary{ height:30px; width:auto; flex:0 0 auto }
  .partner-brand{ display:inline-flex; align-items:center; gap:12px; min-width:0 }
  .brand-divider{ color:var(--olive-wood); font-size:22px; font-weight:400; opacity:.65 }
  .partner-logo-window{ position:relative; display:block; width:142px; height:46px; overflow:hidden; flex:0 0 auto }
  .partner-logo-window img{ position:absolute; width:142px; max-width:none; height:auto; left:0; top:-31px }
  .nav-links{ display:flex; align-items:center; gap:36px }
  .nav-links a{ font-size:15px; font-weight:500; color:var(--olive-leaf); opacity:.85 }
  .nav-links a:hover{ opacity:1 }
  .nav-cta{ display:flex; align-items:center; gap:18px }
  /* hamburger toggle — hidden on desktop, shown on mobile */
  .nav-toggle{ display:none; flex-direction:column; justify-content:center; gap:5px;
    width:42px; height:42px; padding:0 9px; border:1px solid var(--line); border-radius:11px;
    background:rgba(255,255,255,.5); cursor:pointer }
  .nav-toggle-bar{ display:block; height:2px; width:100%; background:var(--olive-leaf); border-radius:2px;
    transition:transform .25s ease, opacity .2s ease }
  header.nav.menu-open .nav-toggle-bar:nth-child(1){ transform:translateY(7px) rotate(45deg) }
  header.nav.menu-open .nav-toggle-bar:nth-child(2){ opacity:0 }
  header.nav.menu-open .nav-toggle-bar:nth-child(3){ transform:translateY(-7px) rotate(-45deg) }

  @media (max-width: 860px){
    .nav-toggle{ display:flex }
    /* nav links collapse into a full-width dropdown under the sticky bar */
    .nav-links{
      position:absolute; top:100%; left:0; right:0;
      flex-direction:column; align-items:stretch; gap:0;
      background:#f8f2e7; border-bottom:1px solid var(--line);
      box-shadow:0 18px 30px rgba(0,0,0,.12);
      padding:4px 0 8px;
      max-height:0; overflow:hidden; opacity:0; pointer-events:none;
      transition:max-height .28s ease, opacity .2s ease;
    }
    header.nav.menu-open .nav-links{ max-height:80vh; opacity:1; pointer-events:auto }
    .nav-links a{ padding:15px 24px; font-size:16px; opacity:1; border-top:1px solid rgba(0,0,0,.06) }
    .nav-links a:first-child{ border-top:0 }
    .partner-logo-window{ width:106px; height:38px }
    .partner-logo-window img{ width:106px; top:-23px }
    .brand-divider{ font-size:18px }
  }

  /* ---------- hero: rounded image card (left) + quiz (right) ----------
     Matches LaserAway: a WIDE section that fills most of the screen. Two EQUAL
     columns, both stretched to ~the full viewport height (minus the nav), so the
     hero image and quiz dominate the first screen like theirs. --hero-h drives
     the shared height of both boxes. */
  .hero{ padding: 26px 0 56px }
  .hero .wrap{ max-width: 1680px }
  .hero-grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:stretch;
    /* leave room below for the trust strip to show within the first screen */
    --hero-h: clamp(520px, calc(100vh - 230px), 1120px) }

  /* left: rounded image card with overlaid copy + Claim offer button */
  .hero-card{ position:relative; border-radius:24px; overflow:hidden; box-shadow:var(--shadow);
    min-height:var(--hero-h); display:flex; align-items:flex-start; background:var(--floral-deep) }
  .hero-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block }
  .hero-scrim{ position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(34,40,26,.82) 0%, rgba(34,40,26,.4) 45%, rgba(34,40,26,.06) 100%) }
  .hero-overlay{ position:relative; padding:36px 36px 40px; width:100% }
  .hero-overlay .eyebrow-light{ color:rgba(248,242,231,.9) }
  .hero-overlay .eyebrow-light::before{ background:var(--atomic) }
  .hero-overlay h1{ color:var(--floral); font-size:clamp(40px,5vw,68px); line-height:1.02; margin:16px 0 16px;
    max-width:14ch; text-shadow:0 2px 18px rgba(20,24,14,.4) }
  .hero-overlay .lead{ color:rgba(248,242,231,.92); max-width:40ch; font-size:17.5px }
  .hero-cta{ margin-top:28px; min-height:64px; padding:0 44px; font-size:18.5px; font-weight:600; border-radius:99px;
    box-shadow:0 16px 34px -16px rgba(232,149,111,.7) }
  .hero-cta .arr{ width:22px; height:22px }

  /* right quiz: fill the column height, rounded to match the card */
  .hero-grid .quiz{ align-self:stretch; min-height:var(--hero-h) }

  /* ---------- lead-form takeover (full-screen native <dialog>) ---------- */
  .lead-takeover{ width:100%; max-width:100%; height:100%; max-height:100%; margin:0; border:0; padding:0;
    background:var(--floral); color:var(--ink); overflow:auto }
  .lead-takeover::backdrop{ background:var(--floral) }
  .lead-takeover[open]{ animation:takeoverIn .24s cubic-bezier(.2,.7,.3,1) }
  @keyframes takeoverIn{ from{ opacity:0; transform:scale(.99) } to{ opacity:1; transform:none } }

  .tk-inner{ min-height:100%; display:flex; flex-direction:column; max-width:760px; margin:0 auto; padding:0 24px }
  .tk-top{ position:relative; display:flex; justify-content:center; align-items:center; padding:22px 0 16px }
  .tk-logo{ height:24px; width:auto; object-fit:contain }
  .tk-close{ position:absolute; right:0; top:16px; width:40px; height:40px; border-radius:50%;
    border:1px solid var(--line); background:#fff; color:var(--olive-leaf); display:grid; place-items:center;
    cursor:pointer; transition:background .15s ease, border-color .15s ease }
  .tk-close:hover{ background:#fff; border-color:var(--olive-leaf) }
  .tk-close svg{ width:18px; height:18px }

  .tk-banner{ display:flex; align-items:center; justify-content:center; gap:9px; text-align:center;
    background:#e6f3e3; color:#356b32; border:1px solid #cfe6c8; border-radius:12px;
    padding:12px 18px; font-size:14.5px; font-weight:600; margin-bottom:8px }
  .tk-banner svg{ width:18px; height:18px; flex-shrink:0 }

  .tk-content{ flex:1; display:flex; flex-direction:column; justify-content:center; padding:32px 0 24px }
  .tk-content-booking{ justify-content:flex-start }
  .tk-body .quiz-q{ font-size:clamp(22px,2.6vw,30px); font-weight:700; color:var(--olive-leaf);
    letter-spacing:-.015em; line-height:1.18; margin-bottom:22px; text-align:center }
  /* options as a responsive grid (like the reference), no arrow */
  .tk-body .quiz-options{ display:grid; grid-template-columns:repeat(auto-fit, minmax(190px, 1fr)); gap:12px }
  .tk-body .quiz-opt{ padding:16px 16px }
  .tk-body .quiz-opt-ico{ border-radius:50% }
  .tk-body .quiz-opt-arr{ display:none }
  .tk-body .quiz-opt.sel{ border-color:var(--olive-leaf); background:#fff;
    box-shadow:0 0 0 2px var(--olive-leaf) inset }
  .tk-body .quiz-form{ max-width:440px; margin:0 auto }
  .tk-body .lf-field{ margin-bottom:13px; display:flex; flex-direction:column; gap:7px }
  .tk-body .lf-field label{ font-size:13px; font-weight:600; color:var(--olive-leaf) }
  .tk-body input{ font-family:inherit; font-size:16px; color:var(--ink); background:#fff;
    border:1.5px solid var(--line); border-radius:12px; padding:0 16px; min-height:54px; width:100%; transition:border-color .15s ease }
  .tk-body input::placeholder{ color:#a79f8f }
  .tk-body input:focus{ outline:none; border-color:var(--olive-leaf); box-shadow:0 0 0 3px rgba(71,83,53,.08) }
  .tk-body input:user-invalid{ border-color:#c0593b }
  .tk-body .quiz-submit{ width:100%; justify-content:center; margin-top:8px; min-height:54px; font-size:16px; border-radius:99px }

  .tk-done{ text-align:center; max-width:480px; margin:0 auto }
  .tk-done .check{ width:60px; height:60px; border-radius:50%; background:rgba(71,83,53,.1); display:grid; place-items:center; margin:0 auto 18px; color:var(--olive-leaf) }
  .tk-done .eyebrow{ justify-content:center; margin-bottom:12px }
  .tk-done h2{ font-size:24px; color:var(--olive-leaf); margin-bottom:8px }
  .tk-done p{ color:var(--olive-wood); font-size:15px; line-height:1.55 }
  .tk-done-body{ margin-top:14px }
  .tk-done-small{ margin-top:18px; font-size:12.5px !important; opacity:.8 }

  /* bottom bar: step + progress (left), Next (right) — hidden on info/booking steps */
  .tk-foot{ display:flex; align-items:center; justify-content:space-between; gap:18px;
    padding:16px 0 6px; margin-top:auto }
  .tk-progress-wrap{ flex:1; max-width:300px }
  .tk-step{ display:block; font-size:13px; font-weight:600; color:var(--olive-wood); margin-bottom:8px }
  .tk-progress{ height:5px; border-radius:99px; background:var(--floral-deep); overflow:hidden }
  .tk-bar{ display:block; height:100%; width:0; background:var(--atomic); border-radius:99px; transition:width .35s cubic-bezier(.4,0,.2,1) }
  .tk-actions{ display:flex; align-items:center; gap:10px }
  .tk-back{ display:inline-flex; align-items:center; gap:6px; background:none; border:none; cursor:pointer;
    font-family:inherit; font-size:14px; font-weight:600; color:var(--olive-wood); padding:8px 10px }
  .tk-back:hover{ color:var(--olive-leaf) }
  .tk-back svg{ width:16px; height:16px }
  .tk-next{ min-height:54px; padding:0 34px; font-size:16px; border-radius:99px;
    box-shadow:0 14px 30px -14px rgba(232,149,111,.7) }
  .tk-next:disabled{ opacity:.45; cursor:not-allowed; box-shadow:none }
  .lf-fine{ text-align:center; color:var(--olive-wood); font-size:12px; margin-top:13px; opacity:.85 }

  /* bottom "close" link (replaces the top X) */
  .tk-close-link{ display:block; margin:18px auto 26px; background:none; border:none; cursor:pointer;
    font-family:inherit; font-size:14px; color:var(--olive-wood); text-decoration:underline; text-underline-offset:3px }
  .tk-close-link:hover{ color:var(--olive-leaf) }

  /* ---------- booking screen (date + time picker) ---------- */
  .bk-title{ text-align:center }
  .bk-section{ margin-top:26px }
  .bk-label{ display:block; text-align:center; font-size:16px; font-weight:600; color:var(--olive-leaf); margin-bottom:16px }
  .bk-dates{ display:flex; align-items:center; gap:10px; justify-content:center }
  .bk-date-row{ display:flex; gap:10px; flex:1; justify-content:center; min-width:0 }
  .bk-arrow{ flex-shrink:0; width:38px; height:38px; border-radius:50%; border:1px solid var(--line); background:#fff;
    color:var(--olive-leaf); display:grid; place-items:center; cursor:pointer; transition:border-color .15s ease }
  .bk-arrow:hover:not(:disabled){ border-color:var(--olive-leaf) }
  .bk-arrow:disabled{ opacity:.35; cursor:not-allowed }
  .bk-arrow svg{ width:18px; height:18px }
  .bk-date{ flex:1; min-width:0; max-width:84px; display:flex; flex-direction:column; align-items:center; gap:4px; cursor:pointer;
    background:#fff; border:1.5px solid var(--line); border-radius:14px; padding:10px 6px; font-family:inherit;
    transition:border-color .15s ease, background .15s ease }
  .bk-date:hover{ border-color:var(--olive-leaf) }
  .bk-date.sel{ border-color:var(--atomic); background:rgba(232,149,111,.1) }
  .bk-mon{ font-size:12px; font-weight:600; color:var(--olive-wood) }
  .bk-day{ font-size:22px; font-weight:700; color:var(--olive-leaf); line-height:1 }
  .bk-dow{ font-size:12px; color:var(--olive-wood) }
  .bk-times{ display:grid; grid-template-columns:repeat(4, 1fr); gap:10px }
  .bk-time{ cursor:pointer; background:#fff; border:1.5px solid var(--line); border-radius:12px; padding:13px 8px;
    font-family:inherit; font-size:14px; font-weight:600; color:var(--olive-leaf); transition:border-color .15s ease, background .15s ease }
  .bk-time:hover{ border-color:var(--olive-leaf) }
  .bk-time.sel{ border-color:var(--atomic); background:rgba(232,149,111,.12) }
  .bk-confirm{ width:100%; justify-content:center; margin-top:28px; min-height:56px; font-size:16.5px; border-radius:99px;
    box-shadow:0 14px 30px -14px rgba(232,149,111,.7) }
  .bk-confirm:disabled{ opacity:.45; cursor:not-allowed; box-shadow:none }
  .bk-feedback{ margin-top:12px; color:var(--olive-wood); text-align:center; font-size:13px; line-height:1.45 }
  .bk-feedback-error{ color:#9b3f2f }
  .bk-state{ width:100%; color:var(--olive-wood); text-align:center; font-size:14px; line-height:1.5; padding:14px 10px }
  .bk-state-times{ grid-column:1 / -1 }

  @media (max-width: 600px){
    .tk-content{ padding:22px 0 20px }
    .tk-body .quiz-options{ grid-template-columns:1fr }
    .tk-progress-wrap{ max-width:none }
    .tk-step{ font-size:12px }
    .tk-next{ padding:0 26px }
    /* booking: tighter cards, 2-up time grid on phones */
    .bk-dates{ gap:6px }
    .bk-date-row{ gap:6px }
    .bk-date{ padding:8px 4px; max-width:none }
    .bk-day{ font-size:19px }
    .bk-mon,.bk-dow{ font-size:11px }
    .bk-arrow{ width:34px; height:34px }
    .bk-times{ grid-template-columns:repeat(2, 1fr) }
  }

  /* hero quiz (right) */
  .quiz{ background:#fff; border:1px solid var(--line); border-radius:22px; padding:26px 26px 20px;
    box-shadow:var(--shadow); scroll-margin-top:96px; display:flex; flex-direction:column }
  /* mini-header: just a step count + thin progress bar (no title/eyebrow) */
  .quiz-count{ display:block; font-size:12.5px; font-weight:600; color:var(--olive-wood); letter-spacing:.02em }
  .quiz-progress{ height:6px; border-radius:99px; background:var(--floral-deep); margin:10px 0 0; overflow:hidden }
  .quiz-bar{ display:block; height:100%; width:0; background:var(--atomic); border-radius:99px; transition:width .35s cubic-bezier(.4,0,.2,1) }

  .quiz-body{ margin-top:22px }
  /* the question is the heading */
  .quiz-q{ font-size:clamp(20px,2.2vw,26px); font-weight:700; color:var(--olive-leaf); letter-spacing:-.01em; line-height:1.2; margin-bottom:18px }
  .quiz-options{ display:flex; flex-direction:column; gap:10px }
  .quiz-opt{ display:flex; align-items:center; gap:14px; width:100%; text-align:left; cursor:pointer;
    background:var(--floral); border:1.5px solid var(--line); border-radius:14px; padding:14px 16px;
    font-family:inherit; transition:border-color .15s ease, background .15s ease, transform .12s ease }
  .quiz-opt:hover{ border-color:var(--olive-leaf); background:#fff; transform:translateY(-1px) }
  .quiz-opt-ico{ flex-shrink:0; width:40px; height:40px; border-radius:11px; background:rgba(71,83,53,.08);
    display:grid; place-items:center; color:var(--olive-leaf) }
  .quiz-opt-ico .qico{ width:21px; height:21px }
  .quiz-opt-txt{ flex:1; min-width:0 }
  .quiz-opt-txt b{ display:block; font-size:15px; font-weight:600; color:var(--olive-leaf); line-height:1.3 }
  .quiz-opt-txt span{ display:block; font-size:13px; color:var(--olive-wood); margin-top:2px }
  .quiz-opt-arr{ width:18px; height:18px; color:var(--olive-wood); flex-shrink:0; opacity:.5; transition:transform .15s ease, opacity .15s ease }
  .quiz-opt:hover .quiz-opt-arr{ opacity:1; transform:translateX(2px); color:var(--olive-leaf) }
  /* selected answer (select → Next flow) */
  .quiz-opt.sel{ border-color:var(--atomic); background:#fff; box-shadow:0 0 0 1.5px var(--atomic) inset }
  .quiz-opt.sel .quiz-opt-arr{ opacity:1; color:var(--atomic) }

  /* contact step reuses .lf-field */
  .quiz-form .lf-field{ margin-bottom:13px; display:flex; flex-direction:column; gap:7px }
  .quiz-form .lf-field label{ font-size:13px; font-weight:600; color:var(--olive-leaf) }
  .quiz-form input{ font-family:inherit; font-size:16px; color:var(--ink); background:var(--floral);
    border:1.5px solid var(--line); border-radius:12px; padding:0 16px; min-height:52px; width:100%; transition:border-color .15s ease }
  .quiz-form input::placeholder{ color:#a79f8f }
  .quiz-form input:focus{ outline:none; border-color:var(--olive-leaf); box-shadow:0 0 0 3px rgba(71,83,53,.08) }
  .quiz-form input:user-invalid{ border-color:#c0593b }
  .quiz-submit{ width:100%; justify-content:center; margin-top:6px; min-height:54px; font-size:16px }

  .quiz-foot{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:auto;
    padding-top:14px; border-top:1px solid var(--line) }
  .quiz-back{ display:inline-flex; align-items:center; gap:6px; background:none; border:none; cursor:pointer;
    font-family:inherit; font-size:14px; font-weight:600; color:var(--olive-wood); padding:4px 2px }
  .quiz-back:hover{ color:var(--olive-leaf) }
  .quiz-back svg{ width:16px; height:16px }
  .quiz-next{ margin-left:auto; min-height:50px; padding:0 30px; font-size:15.5px; border-radius:99px;
    box-shadow:0 12px 26px -14px rgba(232,149,111,.7) }
  .quiz-next:disabled{ opacity:.45; cursor:not-allowed; box-shadow:none }
  .quiz-fine{ color:var(--olive-wood); font-size:12px; opacity:.85; margin-left:auto; text-align:right }

  /* contact step: the question is a big standalone prompt (no heading/eyebrow) */
  .quiz-q-contact{ font-size:clamp(22px,2.4vw,28px); font-weight:700; line-height:1.18; margin-bottom:18px }
  .quiz-contact-sub{ color:var(--olive-wood); font-size:14px; line-height:1.5; margin:-4px 0 16px }
  .quiz-step-eyebrow{ margin-bottom:12px }
  .quiz-privacy{ color:var(--olive-wood); font-size:12px; line-height:1.45; opacity:.85; margin:4px 0 12px }
  .quiz-consent{ display:flex; align-items:flex-start; gap:10px; color:var(--olive-wood);
    font-size:12px; line-height:1.45; margin:4px 0 10px; cursor:pointer }
  .quiz-form .quiz-consent input{ appearance:auto; width:17px; min-width:17px; height:17px; min-height:17px;
    margin:2px 0 0; padding:0; accent-color:var(--olive-leaf) }

  .calendar-note{ color:var(--olive-wood); text-align:center; font-size:14px; margin:-8px 0 14px }
  .ghl-calendar-frame{ display:block; width:100%; min-height:690px; border:0; background:#fff; border-radius:14px }
  .calendar-fallback{ color:var(--olive-wood); text-align:center; font-size:12px; margin:12px 0 0 }
  .calendar-fallback a{ color:var(--olive-leaf); font-weight:600 }
  .calendar-missing{ max-width:460px; margin:32px auto; text-align:center }
  .calendar-missing .check{ width:56px; height:56px; border-radius:50%; background:rgba(71,83,53,.1);
    color:var(--olive-leaf); display:grid; place-items:center; margin:0 auto 16px }
  .calendar-missing h2{ color:var(--olive-leaf); font-size:24px; margin-bottom:10px }
  .calendar-missing p{ color:var(--olive-wood); line-height:1.6 }

  .clinic-location{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:7px 10px;
    margin:22px auto 0; color:var(--olive-wood); font-size:13px; text-align:center }
  .clinic-location strong{ color:var(--olive-leaf) }
  .clinic-location a{ text-decoration:underline; text-underline-offset:3px }
  .clinic-location a + a::before{ content:"·"; margin-right:10px; text-decoration:none }

  .tk-cobrand,.foot-cobrand{ display:flex; align-items:center; gap:13px }
  .tk-cobrand .partner-logo-window{ width:150px; height:48px }
  .tk-cobrand .partner-logo-window img{ width:150px; top:-33px }

  /* "Here's what to expect…" checklist on the confirmation screen */
  .expect{ margin:24px auto 0; max-width:440px; text-align:left }
  .expect-title{ text-align:center; font-size:15px; font-weight:600; color:var(--olive-wood); margin-bottom:18px }
  .expect-list{ list-style:none; display:flex; flex-direction:column; gap:14px }
  .expect-list li{ display:flex; align-items:flex-start; gap:12px; font-size:15.5px; color:var(--ink); line-height:1.4 }
  .expect-ico{ flex-shrink:0; width:22px; height:22px; border-radius:50%; background:var(--atomic);
    color:#fff; display:grid; place-items:center; margin-top:1px }
  .expect-ico svg{ width:13px; height:13px }

  .quiz-done{ text-align:center; padding:26px 8px 18px }
  .quiz-done .check{ width:56px; height:56px; border-radius:50%; background:rgba(71,83,53,.1); display:grid; place-items:center; margin:0 auto 16px; color:var(--olive-leaf) }
  .quiz-done .eyebrow{ justify-content:center; margin-bottom:12px }
  .quiz-done h2{ font-size:21px; color:var(--olive-leaf); margin-bottom:8px }
  .quiz-done p{ color:var(--olive-wood); font-size:14.5px }

  /* ---------- $25 deposit page (in-form checkout step) ---------- */
  .dep{ max-width:600px; margin:0 auto; text-align:left }
  .dep-eyebrow{ justify-content:flex-start }
  .dep-head{ font-size:clamp(25px,3.2vw,33px); color:var(--olive-leaf); margin:14px 0 10px; line-height:1.1 }
  .dep-sub{ color:var(--olive-wood); font-size:16px; line-height:1.6 }
  .dep-sub b{ color:var(--olive-leaf) }

  .dep-summary{ margin-top:22px; border:1px solid var(--line); border-radius:16px; padding:20px 22px; background:#fff }
  .dep-summary-title{ display:block; font-weight:700; color:var(--olive-leaf); margin-bottom:10px }
  .appt-row{ display:flex; justify-content:space-between; gap:16px; padding:9px 0; border-top:1px solid var(--line) }
  .appt-row:first-of-type{ border-top:0 }
  .appt-k{ color:var(--olive-wood); font-size:14px }
  .appt-v{ color:var(--olive-leaf); font-weight:600; font-size:15px; text-align:right }
  .dep-summary-note{ margin-top:12px; font-size:12.5px; color:var(--olive-wood) }

  .dep-card{ margin-top:22px; border:1.5px solid var(--line); border-radius:18px; padding:24px 22px;
    background:var(--floral-deep); box-shadow:var(--shadow) }
  .dep-card-head{ display:flex; align-items:baseline; justify-content:space-between; gap:14px }
  .dep-card-title{ font-weight:700; font-size:18px; color:var(--olive-leaf) }
  .dep-price{ font-weight:800; font-size:30px; color:var(--olive-leaf); letter-spacing:-.02em }
  .dep-card-desc{ color:var(--olive-wood); font-size:14.5px; line-height:1.6; margin:10px 0 16px }
  .dep-list-label{ display:block; font-weight:600; font-size:12.5px; letter-spacing:.04em; text-transform:uppercase;
    color:var(--olive-wood); margin-bottom:12px }
  .dep-list{ margin:0 }
  .dep-pay{ width:100%; justify-content:center; margin-top:18px; min-height:56px; font-size:16.5px;
    border-radius:99px; box-shadow:0 14px 30px -14px rgba(232,149,111,.7) }
  .dep-pay.is-busy{ opacity:.7; cursor:progress }
  .dep-fine{ text-align:center; color:var(--olive-wood); font-size:12px; margin-top:12px }

  /* Stripe Payment Element (card + Apple/Google Pay) — brand-styled via JS appearance */
  .dep-pay-fields{ margin-top:18px }
  .dep-pay-fields:empty{ margin-top:0 }
  .dep-pay-note{ color:var(--olive-wood); font-size:13px; line-height:1.55; text-align:center;
    border:1px dashed var(--line); border-radius:12px; padding:14px 16px; margin-top:16px }
  .dep-pay-msg{ margin-top:12px; color:#b3261e; font-size:13px; line-height:1.5; text-align:center }

  /* centered section intros (value + quick answers), matching the reference */
  .dep-top{ text-align:center; margin-bottom:4px }
  .dep-top .dep-head{ margin-top:14px }
  .dep-top .dep-sub{ max-width:46ch; margin:0 auto }
  .dep-center-eyebrow{ justify-content:center }
  .dep-section{ margin-top:42px }
  .dep-section-h{ text-align:center; font-size:clamp(21px,2.6vw,26px); color:var(--olive-leaf); margin-bottom:8px }
  .dep-section-sub{ text-align:center; color:var(--olive-wood); font-size:15px; line-height:1.6; max-width:48ch; margin:0 auto 8px }

  /* "what your visit includes" — circular icon + title + description */
  .dep-includes{ list-style:none; margin:24px 0 0; display:flex; flex-direction:column; gap:22px }
  .dep-inc{ display:flex; gap:16px; align-items:flex-start; text-align:left }
  .dep-inc-ico{ flex:0 0 auto; width:44px; height:44px; border-radius:50%; background:var(--ink); color:var(--floral);
    display:grid; place-items:center }
  .dep-inc-ico svg{ width:21px; height:21px }
  .dep-inc-t{ display:block; font-weight:700; font-size:13.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--olive-leaf) }
  .dep-inc-d{ color:var(--olive-wood); font-size:14.5px; line-height:1.6; margin-top:5px }

  /* dark reassurance box */
  .dep-dark{ margin-top:36px; background:var(--ink); color:var(--floral); border-radius:18px;
    padding:24px 26px; display:flex; gap:16px; align-items:flex-start }
  .dep-dark-ico{ flex:0 0 auto; color:var(--atomic); line-height:0; margin-top:2px }
  .dep-dark-ico svg{ width:26px; height:26px }
  .dep-dark-tx b{ color:var(--floral); font-size:16.5px; line-height:1.4 }
  .dep-dark-tx p{ color:rgba(248,242,231,.8); font-size:14.5px; line-height:1.6; margin-top:8px }

  /* quick answers — minimal list with thin rules */
  .dep-qa{ margin-top:24px; border-top:1px solid var(--line) }
  .dep-qa-item{ padding:18px 2px; border-bottom:1px solid var(--line); text-align:left }
  .dep-qa-q{ display:block; font-weight:700; color:var(--olive-leaf); font-size:15.5px }
  .dep-qa-a{ color:var(--olive-wood); font-size:14.5px; line-height:1.6; margin-top:6px }

  .dep-final{ margin-top:42px; text-align:center; border-top:1px solid var(--line); padding-top:30px }
  .dep-final-sub{ color:var(--olive-wood); font-size:14.5px; margin:6px 0 16px }

  /* ---------- after-payment confirmation panel ---------- */
  .done-sub{ max-width:42ch; margin:0 auto !important }
  .quiz-done .appt-summary, .tk-done .appt-summary{ max-width:420px; margin:22px auto 0; text-align:left;
    border:1px solid var(--line); border-radius:16px; padding:18px 20px; background:#fff }
  .done-next{ margin-top:22px }
  .done-next h3{ font-size:18px; color:var(--olive-leaf); margin-bottom:6px }
  .done-next p{ max-width:46ch; margin:0 auto }
  .done-actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:24px }
  .done-fine{ margin-top:16px; font-size:12.5px !important; opacity:.85 }

  @media (max-width: 600px){
    .dep-card{ padding:20px 18px }
    .done-actions .btn{ width:100% }
    /* let a long Location value sit under its label instead of cramping */
    .appt-row{ flex-direction:column; align-items:flex-start; gap:2px }
    .appt-v{ text-align:left }
    .dep-section{ margin-top:34px }
    .dep-dark{ padding:20px 18px }
  }
  @media (max-width: 380px){
    .tk-inner{ padding:0 16px }
  }

  /* trust-icon bar — a rounded card that pops out, evenly spaced between the
     hero and the next section */
  .trust-strip{ list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
    margin:48px 0 0; padding:24px 34px; background:#fff; border:1px solid var(--line);
    border-radius:22px; box-shadow:var(--shadow) }
  .trust-item{ display:flex; align-items:center; gap:13px }
  .trust-item:not(:first-child){ border-left:1px solid var(--line); padding-left:24px }
  .trust-ico{ flex-shrink:0; width:46px; height:46px; border-radius:12px; background:var(--floral-deep);
    display:grid; place-items:center; color:var(--olive-leaf) }
  .trust-ico svg{ width:24px; height:24px }
  .trust-label b{ display:block; font-size:14.5px; color:var(--olive-leaf); font-weight:600; line-height:1.25 }
  .trust-label span{ display:block; font-size:13px; color:var(--olive-wood); margin-top:2px }

  @media (max-width: 880px){
    /* stack: rounded image card on top (with its button), quiz below */
    .hero{ padding:24px 0 44px }
    .hero-grid{ grid-template-columns:1fr; gap:24px }
    /* phone: controlled portrait height (no desktop 811:1319 ratio here) */
    .hero-card{ aspect-ratio:auto; min-height:clamp(480px, 80vh, 600px); align-items:flex-end }
    /* mobile: copy + button sit in the lower thumb zone, dark scrim at the bottom */
    .hero-scrim{ background:linear-gradient(180deg, rgba(34,40,26,.06) 0%, rgba(34,40,26,.36) 48%, rgba(34,40,26,.88) 100%) }
    .hero-overlay{ padding:28px 22px 34px }
    .hero-cta{ width:100% }
    /* mobile: tall rounded card so the quiz fills the screen (stays a card) */
    .hero-grid .quiz{ min-height:calc(100svh - 52px); padding:26px 22px 24px }
    .quiz-body{ margin-top:24px }
    .quiz-q{ font-size:25px; margin-bottom:22px }
    .quiz-opt{ padding:16px 18px }
    .quiz-opt-txt b{ font-size:16px }
    .quiz-next{ flex:1 }
    .trust-strip{ grid-template-columns:repeat(2,1fr); gap:22px 18px; padding:22px 24px }
    /* no vertical dividers once the bar wraps to multiple rows */
    .trust-item:not(:first-child){ border-left:0; padding-left:0 }
  }
  @media (max-width: 480px){
    .hero-overlay h1{ font-size:40px; line-height:1.03 }
    .hero-overlay .lead{ font-size:16px }
    .trust-strip{ grid-template-columns:1fr; gap:16px }
    /* keep the privacy line visible on the full-screen quiz (centered) */
    .quiz-fine{ margin:0 auto; text-align:center }
    /* takeover: tighter chrome + comfortable tap targets on small phones */
    .tk-inner{ padding:0 18px }
    .tk-banner{ font-size:13px; padding:11px 14px }
    .tk-body .quiz-q{ font-size:22px; margin-bottom:18px }
    .tk-foot{ flex-wrap:wrap; gap:12px }
    .tk-actions{ width:100%; justify-content:space-between }
    .tk-next{ flex:1; justify-content:center; padding:0 20px }
  }

  /* ---------- what is nightlase ---------- */
  .section{ padding: 84px 0 }
  .what-2{ display:grid; grid-template-columns:.92fr 1.08fr; gap:54px; align-items:center }
  .what-media .frame{ border-radius:24px; overflow:hidden; box-shadow:var(--shadow); aspect-ratio:4/5; background:var(--floral-deep) }
  .what-media .frame img{ width:100%; height:100%; object-fit:cover }
  .what-copy h2{ font-size: clamp(28px, 3.4vw, 38px); margin:16px 0 16px }
  .what-copy .lead{ font-size:18px }
  @media (max-width:880px){
    .what-2{ grid-template-columns:1fr; gap:26px }
    .what-media .frame{ aspect-ratio:16/11 }
  }

  /* ---------- how it works ---------- */
  .steps-head{ max-width:680px; margin-bottom:44px }
  .steps-head h2{ font-size: clamp(28px, 3.4vw, 38px); margin-top:16px }
  .steps-head .lead{ margin-top:14px }
  .steps{ display:grid; grid-template-columns: repeat(3, 1fr); gap:26px }
  .step{
    background:#fff; border:1px solid var(--line); border-radius:20px; padding:34px 30px 32px;
    position:relative;
  }
  .step .num{
    font-size:14px; font-weight:700; letter-spacing:.12em; color:var(--atomic);
  }
  .step h3{ font-size:21px; margin:16px 0 10px }
  .step p{ color:var(--olive-wood); font-size:15.5px }
  .step .line-ico{ width:30px; height:30px; color:var(--olive-leaf); margin-bottom:6px }
  .steps-cta{ display:flex; justify-content:center; margin-top:40px }
  @media (max-width: 880px){ .steps{ grid-template-columns:1fr } }

  /* ---------- benefits ---------- */
  /* the floral-deep highlight band now sits on the patient video stories */
  #video-stories{ background: var(--floral-deep) }
  /* ---------- comparison chart (Wegovy-style: copy left, chart right) ---------- */
  .compare-grid{ display:grid; grid-template-columns:0.82fr 1.5fr; gap:48px; align-items:center }
  .compare-copy h2{ font-size:clamp(28px,3.2vw,40px); margin:14px 0 16px; color:var(--olive-leaf); letter-spacing:-.015em }
  .compare-copy .lead{ font-size:16.5px }
  .compare-cta{ margin-top:24px; min-height:54px; padding:0 30px; font-size:16px; border-radius:99px }
  .compare-disclaimer{ margin-top:22px; max-width:46ch; color:var(--olive-wood); font-size:12.5px; line-height:1.5; opacity:.9 }

  .ctable-scroll{ overflow-x:auto; padding:2px }
  .ctable{ width:100%; min-width:520px; border-collapse:separate; border-spacing:0; text-align:center }
  .ctable td, .ctable th{ padding:13px 12px; vertical-align:middle }
  /* column headers */
  .ctable thead th{ vertical-align:bottom }
  .ctable .ct-name{ display:block; font-weight:700; font-size:16px; color:var(--olive-leaf); letter-spacing:-.01em }
  .ctable .ct-line{ display:block; font-size:11.5px; color:var(--olive-wood); margin-top:4px; line-height:1.3 }
  .ctable .ct-tag{ display:inline-block; margin-top:10px; font-size:10px; font-weight:700; letter-spacing:.05em;
    text-transform:uppercase; color:#3a2417; background:var(--atomic); border-radius:99px; padding:4px 10px }
  .ctable .ct-tag-muted{ color:var(--olive-wood); background:var(--floral-deep) }
  /* row labels (left column) */
  .ctable tbody th{ text-align:left; font-weight:600; font-size:14px; color:var(--olive-leaf); line-height:1.35; max-width:240px }
  .ctable tbody td, .ctable tbody th{ border-top:1px solid var(--line) }
  /* highlighted NightLase column */
  .ctable .ct-hl{ background:rgba(71,83,53,.07) }
  .ctable thead .ct-hl{ border-radius:18px 18px 0 0 }
  .ctable tbody tr:last-child .ct-hl{ border-radius:0 0 18px 18px }
  .ctable tbody .ct-hl{ border-top-color:rgba(71,83,53,.12) }
  .ct-corner{ background:transparent }
  /* cell state icons */
  .ci{ display:inline-grid; place-items:center; width:26px; height:26px; border-radius:50% }
  .ci svg{ width:15px; height:15px }
  .ci-yes{ background:var(--atomic); color:#fff }
  .ci-no{ background:rgba(71,83,53,.16); color:#fff }
  .ci-some{ background:#e7c9a3; color:#6b4a2c }

  .compare-note{ margin-top:18px; color:var(--olive-wood); font-size:14px; line-height:1.55; text-align:center }

  @media (max-width: 880px){
    .compare-grid{ grid-template-columns:1fr; gap:26px; align-items:start }
    .compare-disclaimer{ max-width:none }
  }
  /* phones: fit the whole chart on screen — no horizontal scroll */
  @media (max-width: 600px){
    .ctable-scroll{ overflow-x:visible }
    .ctable{ min-width:0 }
    .ctable td, .ctable th{ padding:10px 4px }
    .ctable .ct-name{ font-size:12px; letter-spacing:-.02em }
    .ctable .ct-line{ display:none }                 /* hide the long sub-line so columns fit */
    .ctable .ct-tag{ font-size:8.5px; padding:3px 6px; margin-top:6px; letter-spacing:.02em }
    .ctable tbody th{ font-size:11.5px; line-height:1.3; padding-left:2px; max-width:none }
    .ci{ width:21px; height:21px }
    .ci svg{ width:12px; height:12px }
  }

  /* ---------- sliding benefits (Hims-style infographic cards) ---------- */
  .sb-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:30px; flex-wrap:wrap }
  .sb-head-copy{ max-width:620px }
  .sb-head h2{ font-size:clamp(28px,3.4vw,40px); color:var(--olive-leaf); margin:14px 0 12px; letter-spacing:-.015em }
  .sb-head .lead{ font-size:16.5px }
  .sb-cta{ flex-shrink:0; min-height:52px; padding:0 28px; border-radius:99px; font-size:16px }

  .sb-rail{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px }
  .sb-card{ background:linear-gradient(165deg,#54643c 0%, #475335 55%, #353f25 100%);
    border-radius:22px; padding:28px 26px 26px; color:var(--floral); display:flex; flex-direction:column;
    min-height:340px; box-shadow:var(--shadow) }
  .sb-title{ font-size:22px; font-weight:700; color:var(--floral); letter-spacing:-.01em; line-height:1.2 }
  .sb-graphic{ flex:1; display:flex; align-items:center; justify-content:center; margin:20px 0 22px }
  .sb-graphic svg{ width:100%; max-width:250px; height:auto }
  .sb-body{ color:rgba(248,242,231,.82); font-size:14.5px; line-height:1.55 }

  @media (max-width:880px){
    .sb-head{ flex-direction:column; align-items:flex-start; gap:18px }
    /* horizontal slider on mobile */
    .sb-rail{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch; margin:32px -20px 0; padding:0 20px 12px; scroll-padding-left:20px }
    .sb-rail::-webkit-scrollbar{ height:6px } .sb-rail::-webkit-scrollbar-thumb{ background:var(--line); border-radius:8px }
    .sb-card{ flex:0 0 82%; scroll-snap-align:start; min-height:320px }
  }

  /* ---------- provider / doctor video ---------- */
  .provider-grid{ display:grid; grid-template-columns: 1.12fr .88fr; gap:54px; align-items:center }
  .video16{ position:relative; border-radius:22px; overflow:hidden; box-shadow:var(--shadow); aspect-ratio:16/9;
    background:linear-gradient(135deg,#3C4A2C,#475335 55%,#5d6b44); }
  .video16 .poster{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover }
  /* provider video shows its poster; play button + label sit on top until tapped */
  .video16 .vid{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; background:#2c361f }
  .video16.playing .vid{ z-index:3 }
  .video16.playing .play,
  .video16.playing .vlabel{ display:none }
  .play{ position:absolute; inset:0; display:grid; place-items:center; cursor:pointer; border:none; background:transparent; padding:0 }
  .play .disc{ width:82px; height:82px; border-radius:50%; background:rgba(248,242,231,.94);
    display:grid; place-items:center; box-shadow:0 12px 34px rgba(0,0,0,.32); transition:transform .16s ease }
  .play:hover .disc{ transform:scale(1.06) }
  .play .disc svg{ margin-left:4px; color:var(--olive-leaf) }
  .vlabel{ position:absolute; left:16px; bottom:14px; color:var(--floral); font-size:12.5px; font-weight:600;
    letter-spacing:.04em; background:rgba(47,56,38,.42); padding:6px 12px; border-radius:999px; backdrop-filter:blur(4px) }
  .provider-copy h2{ font-size: clamp(27px, 3.2vw, 34px); margin:16px 0 16px }
  .provider-name{ margin-top:24px; display:flex; align-items:center; gap:14px }
  .provider-name .av{ width:52px; height:52px; border-radius:50%; background:rgba(71,83,53,.1); border:1px solid var(--line) }
  /* placeholder avatars get a subtle profile glyph so they read as intentional, not broken */
  .provider-name .av, .tcard .who .av{
    background-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cg%20fill='%23475335'%20fill-opacity='0.4'%3E%3Ccircle%20cx='12'%20cy='9'%20r='3.4'/%3E%3Cpath%20d='M5.5%2019c0-3.6%202.9-5.6%206.5-5.6s6.5%202%206.5%205.6z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:center; background-size:60%;
  }
  /* illustrated 3D-style character avatars (testimonials + provider) */
  .tcard .who .av.av-illus,
  .provider-name .av.av-illus{
    background:none; overflow:hidden; box-shadow:inset 0 0 0 1px rgba(60,74,44,.08);
    animation:av-float 4.5s ease-in-out infinite;
  }
  .tcard .who .av.av-illus svg,
  .provider-name .av.av-illus svg{ width:100%; height:100%; display:block }
  .tgrid .tcard:nth-of-type(2) .av-illus{ animation-delay:.9s }
  .tgrid .tcard:nth-of-type(3) .av-illus{ animation-delay:1.8s }
  @keyframes av-float{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-2px) } }
  .provider-name b{ color:var(--olive-leaf); font-size:15px }
  .provider-name span{ display:block; color:var(--olive-wood); font-size:13.5px }
  .provider-cta{ margin-top:26px; min-height:54px; padding:0 30px; font-size:16px; border-radius:99px }
  .provider-fine{ margin-top:14px; color:var(--olive-wood); font-size:13px; line-height:1.5; max-width:42ch }
  @media (max-width:880px){ .provider-grid{ grid-template-columns:1fr; gap:32px } }

  /* ---------- stars ---------- */
  .stars{ display:inline-flex; gap:3px; color:var(--atomic); line-height:0 }
  .stars svg{ width:18px; height:18px }

  /* ---------- patient stories ---------- */
  .stories-head{ max-width:680px }
  .stories-head h2{ font-size: clamp(28px, 3.4vw, 38px); margin-top:16px }
  .vrail{ display:grid; grid-auto-flow:column; grid-auto-columns:1fr; gap:22px; margin-top:42px; }
  .vcard{ scroll-snap-align:center }
  @media (max-width:880px){
    /* centered, snap-scrolling carousel: the active video sits centered with a
       peek of the neighbours; leading/trailing spacers let the first & last center */
    .vrail{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch; padding-bottom:12px; margin-left:-20px; margin-right:-20px; }
    .vrail::before, .vrail::after{ content:''; flex:0 0 11%; }
    .vrail::-webkit-scrollbar{ height:6px } .vrail::-webkit-scrollbar-thumb{ background:var(--line); border-radius:8px }
    .vcard{ flex:0 0 78% }
  }
  @media (max-width:520px){
    .vrail::before, .vrail::after{ flex-basis:8% }
    .vcard{ flex-basis:84% }
  }
  .vmedia{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:9/16; box-shadow:var(--shadow);
    background:linear-gradient(160deg,#6a784e,#475335 60%,#374127) }
  .vmedia.v-b{ background:linear-gradient(160deg,#8a7459,#7A5E4A 60%,#4a3a2c) }
  .vmedia.v-c{ background:linear-gradient(160deg,#5d6b44,#3C4A2C 65%,#2c361f) }
  .vmedia.v-d{ background:linear-gradient(160deg,#c08a64,#9c6f50 55%,#6b4a34) }
  .vmedia .poster{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover }
  .vmedia .grad{ position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,0) 32%,rgba(0,0,0,.72)) }
  .vcap{ position:absolute; left:18px; right:18px; bottom:18px; color:var(--floral); z-index:2 }
  .vcap .vquote{ font-size:16px; font-weight:600; line-height:1.32; margin-bottom:10px;
    text-shadow:0 1px 8px rgba(0,0,0,.35) }
  .vcap .vwho{ display:flex; align-items:center; justify-content:space-between; gap:8px }
  .vcap .nm{ font-weight:700; font-size:15.5px }
  .vcap .stars{ color:#FFC861 }
  .vcap .stars svg{ width:15px; height:15px }
  .vcap .vlabel-sm{ display:block; margin-top:6px; font-size:11px; font-weight:600; letter-spacing:.08em;
    text-transform:uppercase; color:rgba(248,242,231,.8) }
  .vcard .play .disc{ width:62px; height:62px }
  .vcard .play .disc svg{ width:24px; height:24px }
  /* video shows its poster thumbnail; play button + name/stars sit on top.
     On tap (.playing) the overlays hide and the video plays with native controls. */
  .vmedia .vid{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; background:#2c361f }
  .vmedia.playing .vid{ z-index:3 }
  .vmedia.playing .grad,
  .vmedia.playing .play,
  .vmedia.playing .vcap{ display:none }

  .vstories-head{ max-width:680px }
  .vstories-title{ font-size:clamp(28px,3.4vw,40px); color:var(--olive-leaf); letter-spacing:-.015em; margin:14px 0 12px }
  .vstories-sub{ color:var(--olive-wood); font-size:16px; line-height:1.6 }
  .vstories .vrail{ margin-top:22px }
  .vstories-foot{ margin:30px auto 0; max-width:72ch; text-align:center; color:var(--olive-wood);
    font-size:15.5px; line-height:1.6 }

  /* text testimonials */
  .tgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:26px }
  .tcard{ background:#fff; border:1px solid var(--line); border-radius:20px; padding:28px 26px; display:flex; flex-direction:column }
  .tcard .stars{ margin-bottom:16px }
  .tcard p{ color:var(--ink); font-size:16px; line-height:1.55 }
  .tcard .who{ margin-top:20px; padding-top:18px; border-top:1px solid var(--line); display:flex; align-items:center; gap:12px }
  .tcard .who .av{ width:42px; height:42px; border-radius:50%; background:rgba(71,83,53,.1); flex-shrink:0 }
  .tcard .who b{ color:var(--olive-leaf); font-size:14.5px }
  .tcard .who span{ color:var(--olive-wood); font-size:13px; display:block }
  @media (max-width:880px){ .tgrid{ grid-template-columns:1fr } }

  /* ---------- cta band ---------- */
  .cta-band{ background: var(--olive-leaf); color:var(--floral) }
  .cta-inner{ padding: 78px 0; text-align:center; max-width:720px; margin:0 auto }
  .cta-band .wm{ height:34px; margin:0 auto 26px; opacity:.98 }
  .cta-band h2{ color:var(--floral); font-size: clamp(30px, 4vw, 40px); margin-bottom:18px }
  .cta-band p{ color:rgba(248,242,231,.82); font-size:18px; margin-bottom:32px }
  .cta-band .cta-fine{ margin:20px auto 0; max-width:48ch; font-size:14px; color:rgba(248,242,231,.62) }

  /* ---------- footer ---------- */
  footer{ background:var(--floral); border-top:1px solid var(--line); padding: 48px 0 40px }
  .foot-inner{ display:flex; align-items:flex-start; justify-content:space-between; gap:40px; flex-wrap:wrap }
  .foot-cobrand > img{ height:26px; width:auto; margin-bottom:14px; flex:0 0 auto }
  .foot-cobrand .partner-logo-window{ width:128px; height:42px }
  .foot-cobrand .partner-logo-window img{ width:128px; height:auto; top:-28px; margin:0 }
  .foot-brand p{ color:var(--olive-wood); font-size:13.5px; max-width:34ch }
  .foot-clinic{ display:flex; flex-direction:column; align-items:flex-start; gap:3px; margin-top:14px;
    color:var(--olive-wood); font-size:12.5px; line-height:1.45 }
  .foot-clinic strong{ color:var(--olive-leaf); font-size:13.5px }
  .foot-clinic a{ text-decoration:underline; text-underline-offset:3px }
  .foot-cols{ display:flex; gap:64px; flex-wrap:wrap }
  .foot-col h4{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--olive-wood); margin-bottom:14px }
  .foot-col a{ display:block; font-size:14.5px; color:var(--olive-leaf); opacity:.85; margin-bottom:9px }
  .foot-col a:hover{ opacity:1 }
  .foot-base{ margin-top:38px; padding-top:22px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; color:var(--olive-wood); font-size:12.5px }

  /* small disclaimer text */
  .disclaimer{ color:var(--olive-wood); font-size:12px; opacity:.8; max-width:60ch }

  /* ---------- compact mobile pass ---------- */
  @media (max-width: 620px){
    .wrap{ padding:0 20px }
    .section{ padding: 56px 0 }
    html{ scroll-padding-top:80px }
    .nav-inner{ height:64px }
    .brand-primary{ height:25px }
    .nav-cta .btn{ display:none }
    .nav-cta{ flex:0 0 auto }
    .nav-toggle{ display:flex !important; flex:0 0 auto }
    .partner-logo-window{ width:92px; height:34px }
    .partner-logo-window img{ width:92px; top:-20px }
    .brand{ gap:9px }
    .partner-brand{ gap:8px }
    .lead-form{ padding:24px 20px 22px }
    .vstories-head{ gap:6px }
    .cta-inner{ padding:58px 0 }
    .foot-inner{ gap:28px }
    .foot-cols{ gap:40px }
    .foot-base{ flex-direction:column; gap:10px }
  }

  /* respect reduced-motion preferences */
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto }
    *{ transition:none !important }
    .av-illus{ animation:none !important }
  }

  /* ===================================================================
     PRICING + FAQ  (index.html)
     =================================================================== */

  /* ---------- pricing / the investment ---------- */
  .pricing-inner{ max-width:760px; margin:0 auto; text-align:center }
  .pricing-inner .eyebrow{ justify-content:center }
  .pricing-inner h2{ font-size:clamp(28px,3.6vw,40px); margin:16px 0 18px }
  .pricing-inner .lead{ font-size:18px; margin:0 auto }
  .pricing-inner .lead strong{ color:var(--olive-leaf); font-weight:700 }
  .disqualifier-line{ margin:30px auto 0; max-width:60ch; color:var(--olive-wood); font-size:15px;
    font-style:italic; line-height:1.6; border-top:1px solid var(--line); padding-top:24px }
  .pricing-cta{ margin-top:28px }

  /* price highlight pill */
  .price-pill{ display:inline-flex; align-items:center; gap:10px; margin-top:26px;
    background:#fff; border:1px solid var(--line); border-radius:999px; padding:10px 18px;
    color:var(--olive-leaf); font-size:14.5px; box-shadow:var(--shadow) }
  .price-pill b{ font-weight:700 }
  .price-pill .was{ color:var(--olive-wood); text-decoration:line-through; opacity:.7 }
  .price-pill .tag{ color:var(--atomic); font-weight:700 }

  /* ---------- faq accordion (Hims-style two-column) ---------- */
  .faq-grid{ display:grid; grid-template-columns:0.82fr 1.18fr; gap:64px; align-items:start }
  .faq-aside{ position:sticky; top:104px }
  .faq-aside h2{ font-size:clamp(30px,3.6vw,44px); line-height:1.08; margin:16px 0 26px }
  /* right column: rows separated by hairlines, no card boxes */
  .faq-list{ display:flex; flex-direction:column }
  .faq-item{ border-top:1px solid var(--line) }
  .faq-item:last-child{ border-bottom:1px solid var(--line) }
  .faq-item summary{ list-style:none; cursor:pointer; padding:24px 4px; display:flex; align-items:center;
    justify-content:space-between; gap:24px; font-size:17px; font-weight:600; color:var(--olive-leaf) }
  .faq-item summary::-webkit-details-marker{ display:none }
  .faq-item summary:hover{ color:var(--olive-leaf-2) }
  .faq-item summary .chev{ flex-shrink:0; width:22px; height:22px; color:var(--olive-wood); transition:transform .25s ease }
  .faq-item[open] summary .chev{ transform:rotate(180deg) }
  .faq-item .ans{ padding:0 4px 26px; max-width:62ch; color:var(--olive-wood); font-size:15.5px; line-height:1.7 }
  .faq-item .ans .price{ color:var(--olive-leaf); font-weight:700 }
  @media (max-width:880px){
    .faq-grid{ grid-template-columns:1fr; gap:28px }
    .faq-aside{ position:static }
    .faq-aside h2{ margin-bottom:20px }
  }
