  /* ═══════════════════════════════════════════════════════════════════
     COLOUR SYSTEM — single source of truth for every vertical.
     ─────────────────────────────────────────────────────────────────
     HOW TO SWITCH VERTICALS
     1. Change every line marked  ← CHANGE  below.
     2. Leave all NEUTRAL and STATUS lines alone — they are universal.
     3. Brand color opacity variants use color-mix(in srgb, var(--pink) X%, transparent)
        and update automatically when --pink changes. No manual rgba search needed.
     ═══════════════════════════════════════════════════════════════════ */
  :root {

    /* ── BRAND: primary palette ──────────────────────────────────── *
     * Touches: nav CTA button, all primary buttons, links, accents, *
     *   onboarding progress bar + CTA button, pricing badge,        *
     *   section eyebrows (the little line + label), FAQ chevron,    *
     *   pricing feature checkmarks, testimonial active avatar ring, *
     *   hero phone glow, step-visual border, avatar glow rings      */
    --pink:      #D4894A;  /* ← CHANGE  primary brand colour         */
    --pink-deep: #8B4E1A;  /* ← CHANGE  hover / active shade         */
    --pink-pale: #FBF0E6;  /* ← CHANGE  lightest tint; page bg, hero-right, pricing bg, problem bg */
    --blush:     #F5D5B8;  /* ← CHANGE  mid tint; hero-right gradient, user chat bubble bg */
    --gold:      #F2A65A;  /* ← CHANGE  star ratings, Lexi trait-icon SVG stroke, ob-biz-rating */

    /* ── BRAND: dark section gradients ──────────────────────────── *
     * Touches: Lexi avatar circle background,                       *
     *          testimonial video/photo placeholder background       */
    --brand-dark-a: #3D2235;  /* ← CHANGE  gradient darkest stop    */
    --brand-dark-b: #2A1525;  /* ← CHANGE  gradient mid stop        */
    --brand-dark-c: #4A2840;  /* ← CHANGE  gradient lightest stop   */

    /* ── BRAND: onboarding overlay tints ────────────────────────── *
     * Touches: search dropdown border + dividers + hover + focus,  *
     *          bullet icon backgrounds, trust-bar background        *
     * These are very soft tints of the brand colour                */
    --ob-tint:    #F0EEFF;  /* ← CHANGE  bullet icon bg, ob-trust bg  */
    --ob-hover:   #f5f0fe;  /* ← CHANGE  dropdown item hover bg       */
    --ob-active:  #efe8fc;  /* ← CHANGE  dropdown item focused bg      */
    --ob-border:  #e8e0f0;  /* ← CHANGE  dropdown outer border         */
    --ob-divider: #f3eef8;  /* ← CHANGE  dropdown item row divider     */

    /* ── INK: dark backgrounds & body text ──────────────────────── *
     * Touches: hero-left, nav, footer, CTA section, phone frame,   *
     *          AI chat bubbles, sticky mobile CTA bar               *
     * Usually stays the same across verticals                      */
    --ink:      #12091A;
    --ink-soft: #1E1228;  /* scroll ticker bg, phone notch-pill bg  */

    /* ── NEUTRALS: surfaces & secondary text ────────────────────── *
     * Universal — do NOT change per vertical                       */
    --cream:         #FFFBFD;  /* near-white; cards, phone screen, text on dark bg */
    --muted-dark:    #7A6575;  /* secondary body text, captions      */
    --surface:       #FAFAFA;  /* onboarding right-panel background  */
    --surface-tint:  #F8F7FF;  /* onboarding overlay background      */
    --neutral-border: #E8E8F0; /* progress bar tracks, light dividers */
    --neutral-mid:   #DDD;     /* input field borders, disabled button bg */
    --neutral-dot:   #ccc9d6;  /* inactive carousel dot              */

    /* ── BORDERS ─────────────────────────────────────────────────── *
     * rgba versions of --ink / --cream; update raw values if       *
     * you change those variables                                    */
    --border-dark:  rgba(255,240,245,0.1);  /* hairlines on dark bg  */
    --border-light: rgba(18,9,26,0.1);      /* hairlines on light bg */

    /* ── STATUS: success & danger ───────────────────────────────── *
     * Universal semantic colours — do NOT change per vertical      *
     * Touches: live dot, step-number badge, booking confirmed msg, *
     *          problem-section ✗ marks, form validation errors     */
    --green:        #2D8A4E;  /* live dots, step badges, checkmarks  */
    --success-bg:   #EAF5EE;  /* "Booked" badge bg, live-badge bg    */
    --success-text: #1A5C32;  /* "Booked" badge text, live-badge text */
    --danger:       #C94040;  /* problem ✗ marks, form error text    */
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  /* Prevent ANY horizontal scroll/rubber-band on iOS Safari.
     Must be on BOTH html AND body — body alone is not enough on iOS. */
  html { overflow-x: hidden; max-width: 100%; }
  body { font-family: 'DM Sans', sans-serif; background: var(--pink-pale); color: var(--ink); overflow-x: hidden; max-width: 100%; padding-top: 4rem; }

  /* ── NAV ─────────────────────────────────────────────────────────────
     Colour variables used: --ink (bg), --border-dark (bottom hairline),
     --cream (logo, link hover), --pink (logo accent, CTA button),
     --pink-deep (CTA hover)
     ──────────────────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(18,9,26,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 0.5px solid var(--border-dark);
  }
  .logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); }
  .logo span { color: var(--pink); font-style: italic; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,240,245,0.5); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--cream); }
  .nav-right { display: flex; align-items: center; gap: 0.75rem; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
  .nav-cta { font-size: 0.875rem; font-weight: 500; background: var(--pink); color: white; border: none; padding: 0.6rem 1.4rem; border-radius: 2px; cursor: pointer; transition: background 0.2s; text-decoration: none; }
  .nav-cta:hover { background: var(--pink-deep); }

  /* ── HERO ────────────────────────────────────────────────────────────
     Colour variables used:
       hero-left: --ink (bg), --cream (headline/text), --pink (accent em,
         primary CTA, star colour via --gold), --pink-deep (CTA hover),
         --gold (stars), --green (integ-dot), --border-dark (hairlines)
       hero-right: --blush + --pink-pale (gradient bg)
       chat: --ink (AI bubble), --blush (user bubble), --cream (AI text),
         --success-bg + --success-text (booked badge), --green (booked dot)
       phone frame: --ink (border/notch), --ink-soft (notch pill)
     ──────────────────────────────────────────────────────────────── */
  .hero { min-height: 100vh; max-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
  .hero-left { background: var(--ink); padding: 0 4rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
  .hero-left::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--pink) 12%, transparent) 0%, transparent 70%); top: -100px; right: -150px; pointer-events: none; }

  .hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.7rem, 4.5vw, 5rem); line-height: 1.05; font-weight: 600; color: var(--cream); margin-bottom: 1rem; position: relative; z-index: 1; animation: fadeUp 0.6s 0.05s ease both; }
  .hero-headline em { font-style: italic; color: var(--cream); display: block; opacity: 0.9; }
  .hero-sub { font-size: 1rem; line-height: 1.65; color: rgba(255,240,245,0.85); margin-bottom: 2rem; font-weight: 300; position: relative; z-index: 1; animation: fadeUp 0.6s 0.18s ease both; }

  .hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; position: relative; z-index: 1; animation: fadeUp 0.6s 0.28s ease both; }
  .btn-primary { background: var(--pink); color: white; padding: 0.9rem 2rem; font-size: 0.9rem; font-weight: 500; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; text-decoration: none; letter-spacing: 0.02em; }
  .btn-primary:hover { background: var(--pink-deep); }
  .btn-call { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,240,245,0.65); font-size: 0.88rem; text-decoration: none; border: 0.5px solid var(--border-dark); padding: 0.9rem 1.4rem; border-radius: 2px; transition: all 0.2s; }
  .btn-call:hover { color: var(--cream); border-color: rgba(255,240,245,0.3); }

  .hero-proof { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; position: relative; z-index: 1; animation: fadeUp 0.6s 0.22s ease both; }
  .hero-proof-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.05em; }
  .hero-proof-text { font-size: 0.875rem; color: rgba(255,240,245,0.75); font-weight: 300; }
  .hero-trust { font-size: 0.875rem; color: rgba(255,240,245,0.5); margin-top: 0.4rem; font-weight: 300; letter-spacing: 0.01em; flex-basis: 100%; }

  .hero-integrations { margin-top: 2rem; padding-top: 1.75rem; border-top: 0.5px solid var(--border-dark); position: relative; z-index: 1; animation: fadeUp 0.6s 0.35s ease both; }
  .integ-label { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,240,245,0.65); margin-bottom: 0.85rem; }
  .integ-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .integ-pill { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,240,245,0.90); background: rgba(255,240,245,0.06); border: 0.5px solid rgba(255,240,245,0.18); padding: 0.35rem 0.8rem; border-radius: 100px; transition: all 0.2s; }
  .integ-pill:hover { background: color-mix(in srgb, var(--pink) 12%, transparent); border-color: color-mix(in srgb, var(--pink) 30%, transparent); color: var(--cream); }
  .integ-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

  .hero-right { background: linear-gradient(135deg, var(--blush) 0%, #FAE8D5 55%, var(--pink-pale) 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 100%; }
  /* NOTE: #FAE8D5 above is a midpoint blend between --blush and --pink-pale.
     When swapping verticals, update this value manually to the midpoint of your new blush+pale pair. */

  .hero-callout { position: absolute; display: flex; align-items: center; gap: 10px; background: rgba(255,251,253,0.92); backdrop-filter: blur(8px); border: 0.5px solid rgba(18,9,26,0.08); border-radius: 12px; padding: 9px 13px; box-shadow: 0 4px 20px rgba(18,9,26,0.08); opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; transform: translateY(8px); z-index: 3; max-width: 165px; }
  .hero-callout.visible { opacity: 1; transform: translateY(0); }
  .hc-icon { font-size: 1.15rem; flex-shrink: 0; }
  .hc-title { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
  .hc-sub { font-size: 0.875rem; color: var(--muted-dark); margin-top: 2px; }
  .hero-callout--tl { top: 12%; left: 5%; }
  .hero-callout--tr { top: 12%; right: 5%; }
  .hero-callout--bl { bottom: 18%; left: 5%; }
  .hero-callout--br { bottom: 18%; right: 5%; }

  .phone-mockup {
    width: 280px; aspect-ratio: 9/19.5; background: var(--cream);
    border-radius: 40px;
    position: relative; z-index: 2; overflow: hidden;
    border: 7px solid var(--ink);
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 48px 80px rgba(18,9,26,0.25), 0 8px 24px rgba(18,9,26,0.12);
    display: flex; flex-direction: column;
  }
  .phone-notch { background: var(--ink); height: 28px; display: flex; align-items: center; justify-content: center; }
  .phone-notch-pill { width: 72px; height: 8px; background: var(--ink-soft); border-radius: 8px; }
  .phone-screen { padding: 0.85rem; flex: 1; min-height: 0; overflow-y: scroll; scrollbar-width: none; -ms-overflow-style: none; }
  .phone-screen::-webkit-scrollbar { display: none; }
  .phone-call-incoming { text-align: center; padding: 0.65rem 0.5rem; border-bottom: 0.5px solid var(--border-light); margin-bottom: 0.6rem; }
  .phone-call-label { font-size: 0.875rem; color: var(--muted-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
  .phone-call-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600; color: var(--ink); }
  .phone-call-sub { font-size: 0.875rem; color: var(--muted-dark); margin-top: 0.15rem; }
  .chat-bubble { border-radius: 12px 12px 12px 3px; padding: 0.45rem 0.7rem; font-size: 0.875rem; line-height: 1.45; margin-bottom: 0.35rem; max-width: 88%; opacity: 0; transition: opacity 0.4s ease; }
  .chat-ai { background: var(--ink); color: var(--cream); }
  .chat-user { background: var(--blush); color: var(--ink); margin-left: auto; border-radius: 12px 12px 3px 12px; text-align: right; }
  .chat-meta { font-size: 0.875rem; color: var(--muted-dark); margin-bottom: 0.2rem; opacity: 0; transition: opacity 0.3s ease; }
  .phone-booked { margin-top: 0.5rem; background: var(--success-bg); border-radius: 7px; padding: 0.45rem 0.65rem; display: flex; align-items: center; gap: 0.4rem; opacity: 0; transition: opacity 0.4s ease; }
  .booked-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
  .booked-text { font-size: 0.875rem; color: var(--success-text); font-weight: 500; }
  .typing-dots { display: inline-flex; gap: 3px; padding: 0.4rem 0.65rem; margin-bottom: 0.35rem; }
  .typing-dots span { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,240,245,0.5); animation: typingBounce 1s infinite; }
  .typing-dots span:nth-child(2) { animation-delay: 0.15s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.3s; }

  .studio-scroll { background: var(--ink-soft); border-top: 0.5px solid var(--border-dark); border-bottom: 0.5px solid var(--border-dark); padding: 1rem 0; overflow: hidden; }
  .scroll-label { text-align: center; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,240,245,0.3); margin-bottom: 0.75rem; }
  .scroll-track { display: flex; gap: 0; animation: scrollLeft 28s linear infinite; width: max-content; }
  .scroll-track:hover { animation-play-state: paused; }
  .studio-pill { font-size: 0.875rem; font-weight: 400; color: rgba(255,240,245,0.45); padding: 0 2.25rem; white-space: nowrap; border-right: 0.5px solid var(--border-dark); line-height: 1; }

  .section-eyebrow { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
  .section-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--pink); }

  /* ── PROBLEM ─────────────────────────────────────────────────────────
     Colour variables used: --pink-pale (section bg), --ink (headlines),
     --pink (em highlight), --muted-dark (body text), --cream (card bg),
     --border-light (card border), --danger (✗ marks via .prob-x)
     ──────────────────────────────────────────────────────────────── */
  .problem { padding: 6rem 4rem 5rem; background: var(--pink-pale); }
  .problem-inner { max-width: 1060px; margin: 0 auto; }
  .problem-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 600; line-height: 1.15; margin-bottom: 0.5rem; color: var(--ink); text-align: center; }
  .problem-headline em { font-style: italic; color: var(--pink); }
  .problem-sub { text-align: center; font-size: 1rem; color: var(--muted-dark); margin-bottom: 3.5rem; font-weight: 300; }

  .problem-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .problem-col {
    padding: 2rem 1.75rem; background: var(--cream);
    border: 0.5px solid var(--border-light); border-radius: 10px;
  }
  .prob-col-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(226,75,74,0.08);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  }
  .prob-col-title { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 1rem; line-height: 1.3; }
  .prob-col-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .prob-col-list li { font-size: 1rem; color: var(--muted-dark); line-height: 1.5; display: flex; align-items: flex-start; gap: 0.6rem; font-weight: 300; }
  .prob-x { color: var(--danger); font-size: 0.875rem; flex-shrink: 0; margin-top: 0.1rem; font-weight: 500; }

  /* ── MEET LEXI ───────────────────────────────────────────────────────
     Colour variables used: --ink (section bg), --cream (text),
     --pink (eyebrow, em, avatar-dot, primary CTA, trait icon via --gold),
     --pink-deep (CTA hover), --gold (trait icon SVGs),
     --brand-dark-a/b/c (avatar circle gradient),
     --green (live dot), --muted-dark (secondary text)
           update raw values if you change --pink
     ──────────────────────────────────────────────────────────────── */
  .lexi { padding: 6rem 4rem; background: var(--ink); overflow: hidden; position: relative; }
  .lexi::before {
    content: '';
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--pink) 8%, transparent) 0%, transparent 65%);
    top: -100px; right: -100px; pointer-events: none;
  }
  .lexi-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 2fr 3fr; grid-template-rows: auto 1fr; column-gap: 4rem; row-gap: 0; position: relative; z-index: 1; }
  .lexi-visual { grid-column: 1; grid-row: 1 / 3; align-self: start; }
  .lexi-header { grid-column: 2; grid-row: 1; align-self: start; padding-bottom: 1rem; }
  .lexi-copy { grid-column: 2; grid-row: 2; align-self: start; }

  /* Left: avatar + social proof */
  .lexi-visual { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
  .lexi-avatar-wrap {
    position: relative; width: 260px; height: 260px;
  }
  .lexi-avatar {
    width: 260px; height: 260px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-dark-a) 0%, var(--brand-dark-b) 40%, var(--brand-dark-c) 100%);
    border: 3px solid color-mix(in srgb, var(--pink) 40%, transparent);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  /* Realistic face silhouette placeholder */
  .lexi-face {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 70%; height: 90%;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--pink) 15%, transparent) 0%,
      rgba(200,120,100,0.25) 30%,
      rgba(180,100,80,0.2) 60%,
      transparent 100%);
    border-radius: 120px 120px 0 0;
  }
  .lexi-face::before {
    content: '';
    position: absolute;
    width: 52%; height: 52%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220,150,120,0.5), rgba(190,110,90,0.4));
    top: 12%; left: 50%; transform: translateX(-50%);
  }
  .lexi-avatar-glow {
    position: absolute; inset: -8px; border-radius: 50%;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--pink) 20%, transparent);
    animation: lexiPulse 3s ease-in-out infinite;
  }
  .lexi-avatar-glow-2 {
    position: absolute; inset: -18px; border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--pink) 10%, transparent);
    animation: lexiPulse 3s ease-in-out infinite 0.5s;
  }
  @keyframes lexiPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.03)} }

  .lexi-name-badge {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  }
  .lexi-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--cream); }
  .lexi-title { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: color-mix(in srgb, var(--pink) 80%, transparent); }

  .lexi-social { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.25rem; }
  .lexi-insta {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: rgba(255,240,245,0.5);
    text-decoration: none; border: 0.5px solid rgba(255,240,245,0.1);
    padding: 0.4rem 0.9rem; border-radius: 100px; transition: all 0.2s;
  }
  .lexi-insta:hover { color: var(--cream); border-color: color-mix(in srgb, var(--pink) 40%, transparent); }
  .lexi-insta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }

  .lexi-status {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: rgba(255,240,245,0.45);
  }
  .lexi-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; flex-shrink: 0; }

  /* Right: copy */
  .lexi-copy {}
  .lexi-eyebrow { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
  .lexi-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--pink); }
  .lexi-headline { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 600; line-height: 1.1; color: var(--cream); margin-bottom: 1.5rem; }
  .lexi-headline em { font-style: italic; color: var(--pink); }
  .lexi-bio { font-size: 1rem; line-height: 1.8; color: rgba(255,240,245,0.7); font-weight: 300; margin-bottom: 2rem; }
  .lexi-bio strong { color: var(--cream); font-weight: 500; }
  .lexi-traits { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2.5rem; }
  .lexi-trait {
    display: flex; align-items: flex-start; gap: 0.6rem;
    background: rgba(255,240,245,0.04);
    border: 0.5px solid rgba(255,240,245,0.08);
    border-radius: 8px; padding: 0.75rem;
  }
  .lexi-trait-icon { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .lexi-trait-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .lexi-trait-text { font-size: 1rem; color: rgba(255,240,245,0.65); line-height: 1.5; font-weight: 300; }
  .lexi-trait-text strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: 0.1rem; }
  .lexi-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .lexi-btn-primary { background: var(--pink); color: white; padding: 0.9rem 2rem; font-size: 1rem; font-weight: 500; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
  .lexi-btn-primary:hover { background: var(--pink-deep); }
  .lexi-btn-ghost { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: rgba(255,240,245,0.55); text-decoration: none; border: 0.5px solid rgba(255,240,245,0.15); padding: 0.9rem 1.4rem; border-radius: 2px; transition: all 0.2s; }
  .lexi-btn-ghost:hover { color: var(--cream); border-color: rgba(255,240,245,0.35); }

  /* ── SOLUTION ────────────────────────────────────────────────────────
     Colour variables used: --cream (section bg), --ink (headline),
     --pink (em), --muted-dark (body), --pink-pale (card bg),
     --blush (card border), --pink-deep (icon SVG stroke)
           you change --pink
     ──────────────────────────────────────────────────────────────── */
  .solution { padding: 5.5rem 4rem; background: var(--cream); border-bottom: 0.5px solid var(--border-light); }
  .solution-inner { max-width: 1060px; margin: 0 auto; text-align: center; }
  .solution-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 600; line-height: 1.15; color: var(--ink); margin-bottom: 0.75rem; }
  .solution-headline em { font-style: italic; color: var(--pink); }
  .solution-sub { font-size: 1rem; color: var(--muted-dark); font-weight: 300; margin-bottom: 4rem; }
  .solution-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .solution-col {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 2.25rem 1.75rem;
    background: var(--pink-pale);
    border: 0.5px solid var(--blush);
    border-radius: 10px;
  }
  .sol-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: color-mix(in srgb, var(--pink) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--pink) 25%, transparent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; flex-shrink: 0;
  }
  .sol-icon svg { stroke: var(--pink-deep); }
  .sol-title { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.65rem; line-height: 1.4; }
  .sol-body { font-size: 1rem; color: var(--muted-dark); line-height: 1.75; font-weight: 300; }

  /* ── HOW IT WORKS ────────────────────────────────────────────────────
     Colour variables used: --cream (section bg), --ink (headlines),
     --pink (em, step-visual border, mock-integ-row border),
     --pink-pale (step-visual bg), --green (step badge, check icons,
       mock-integ-dot, mock-live-badge via --success-bg/text),
     --success-bg + --success-text (live badge),
     --muted-dark (body text), --border-light (step dividers)
           integ-row border — update if you change --pink
     ──────────────────────────────────────────────────────────────── */
  .how { padding: 7rem 4rem; background: var(--cream); }
  .how-inner { max-width: 1060px; margin: 0 auto; }
  .how-header { text-align: center; margin-bottom: 4.5rem; }
  .how-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 600; line-height: 1.15; color: var(--ink); }
  .how-headline em { font-style: italic; color: var(--pink); }

  /* 3-column horizontal steps with subgrid row alignment */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto auto auto auto; gap: 0; }
  .step {
    display: grid; grid-template-rows: subgrid; grid-row: span 5;
    padding: 2.5rem 2.25rem;
    border-left: 0.5px solid var(--border-light);
    position: relative;
  }
  .step:first-child { border-left: none; padding-left: 0; }

  /* Visual mockup area inside each step */
  .step-visual {
    background: var(--pink-pale);
    border: 0.5px solid color-mix(in srgb, var(--pink) 20%, transparent);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    min-height: 160px;
    display: flex; align-items: center; justify-content: center;
  }
  .step-num { grid-row: 1; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.65rem; display: inline-block; width: fit-content; background: rgba(45,138,78,0.08); padding: 0.2rem 0.7rem; border-radius: 100px; border: 0.5px solid rgba(45,138,78,0.2); }
  .step-visual { grid-row: 4; }
  .step-title { grid-row: 2; font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.65rem; line-height: 1.3; }
  .step-body { grid-row: 3; font-size: 1rem; color: var(--muted-dark); line-height: 1.65; font-weight: 300; margin-bottom: 1rem; }
  .step-bullets { grid-row: 5; list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
  .step-bullets li { font-size: 0.875rem; color: var(--muted-dark); display: flex; align-items: center; gap: 0.5rem; font-weight: 300; line-height: 1.4; }
  .step-check { color: var(--green); font-size: 0.875rem; flex-shrink: 0; font-weight: 500; }

  /* Mock UI elements */
  .mock-integ-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; border-bottom: 0.5px solid color-mix(in srgb, var(--pink) 12%, transparent); width: 100%; }
  .mock-integ-row:last-child { border-bottom: none; }
  .mock-integ-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
  .mock-integ-dot.off { background: rgba(18,9,26,0.15); }
  .mock-integ-name { font-size: 0.875rem; font-weight: 500; color: var(--ink); flex: 1; }
  .mock-integ-tag { font-size: 0.875rem; color: var(--green); }
  .mock-integ-tag.off { color: var(--muted-dark); }

  .mock-field { margin-bottom: 0.5rem; }
  .mock-field-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted-dark); margin-bottom: 0.2rem; }
  .mock-field-value { font-size: 0.875rem; font-weight: 500; color: var(--ink); background: white; border: 0.5px solid var(--border-light); border-radius: 4px; padding: 0.3rem 0.6rem; }

  .mock-notif-pill { background: var(--ink); border-radius: 8px; padding: 0.6rem 0.85rem; width: 100%; }
  .mock-notif-top { font-size: 0.875rem; font-weight: 500; color: var(--cream); margin-bottom: 0.25rem; }
  .mock-notif-body { font-size: 0.875rem; color: rgba(255,240,245,0.6); line-height: 1.5; }
  .mock-live-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--success-bg); border-radius: 100px; padding: 0.3rem 0.8rem; font-size: 0.875rem; font-weight: 500; color: var(--success-text); margin-bottom: 0.75rem; }
  .mock-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }


  /* ── TESTIMONIALS ────────────────────────────────────────────────────
     Colour variables used: --cream (section bg), --ink (headlines,
       active dot), --pink (em, aggregate score bg, active avatar ring,
       selector active bg via --pink-pale), --pink-pale (selector hover/
       active bg), --gold (stars), --muted-dark (role text, count),
     Desktop video placeholder: --brand-dark-a/b (gradient),
       --ink-soft (video outer bg)
     Mobile carousel: --neutral-dot (inactive dot), --gold (stars)
     ──────────────────────────────────────────────────────────────── */
  .testimonials { padding: 2rem 4rem; background: var(--cream); }
  .testimonials-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "header photo" "quote photo" "row row"; column-gap: 4rem; row-gap: 0; align-items: start; }
  .testi-header { grid-area: header; margin-bottom: 0.75rem; }
  .testi-row { grid-area: row; }
  .testimonials-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 600; margin-bottom: 0.4rem; color: var(--ink); }
  .testimonials-headline em { font-style: italic; color: var(--pink); }
  .testi-aggregate { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
  .testi-score { background: var(--pink); color: white; font-size: 0.875rem; font-weight: 500; padding: 0.3rem 0.65rem; border-radius: 4px; }
  .testi-stars-agg { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.06em; }
  .testi-count { font-size: 0.875rem; color: var(--muted-dark); }

  /* Featured testimonial — dissolved into parent grid */
  .testi-featured { display: contents; }
  .testi-featured-left { grid-area: quote; }
  .testi-featured-name { font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
  .testi-featured-role { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 1.25rem; }
  .testi-featured-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
  .testi-featured-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.6; color: var(--ink); font-weight: 400; font-style: italic; }
  .testi-featured-quote::before { content: '\201C'; }
  .testi-featured-quote::after { content: '\201D'; }

  /* Video placeholder — static, not clickable */
  .testi-video {
    grid-area: photo;
    border-radius: 12px; overflow: hidden; position: relative;
    aspect-ratio: 4/5; background: var(--ink-soft);
  }
  .testi-video-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  /* Faux video gradient — warm lash-studio feel */
  .testi-video-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--brand-dark-b) 0%, var(--brand-dark-b) 40%, var(--brand-dark-a) 100%);
  }
  #tvcImg { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  /* Silhouette / avatar area */
  .testi-video-person {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 55%; height: 85%;
    background: linear-gradient(to top, color-mix(in srgb, var(--pink) 8%, transparent), rgba(60,30,50,0.6));
    border-radius: 120px 120px 0 0;
  }
  .testi-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(18,9,26,0.5) 0%, transparent 50%);
  }
  .testi-video-caption {
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    color: white;
  }
  .tvc-name { font-size: 0.875rem; font-weight: 500; }
  .tvc-role { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

  /* Selector row */
  .testi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; border-top: 0.5px solid var(--border-light); padding-top: 0.75rem; }
  .testi-selector {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.9rem 1rem; border-radius: 8px; cursor: pointer;
    border: 0.5px solid transparent; transition: all 0.2s;
    background: transparent;
  }
  .testi-selector:hover { background: var(--pink-pale); }
  .testi-selector.active { background: var(--pink-pale); border-color: color-mix(in srgb, var(--pink) 25%, transparent); }
  /* Tanya (4th child) displayed first */
  .testi-row { display: grid; }
  .testi-selector:nth-child(4) { order: -1; }
  .testi-selector-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid transparent; transition: border-color 0.2s;
    object-fit: cover; font-size: 0; /* for the SVG fallback */
    display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; font-weight: 500;
  }
  .testi-selector.active .testi-selector-avatar { border-color: var(--pink); }
  .testi-selector-initials {
    background: color-mix(in srgb, var(--ink) 8%, transparent);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
  .testi-selector-name { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
  .testi-selector-role { font-size: 0.875rem; color: var(--muted-dark); margin-top: 1px; }

  /* ── Mobile testimonial carousel (hidden on desktop) ── */
  .testi-carousel { display: none; }
  .testi-carousel-track-wrap { overflow: hidden; border-radius: 12px; touch-action: pan-y; }
  .testi-carousel-track { display: flex; transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
  .testi-carousel-slide { min-width: 100%; display: flex; flex-direction: column; user-select: none; }
  .testi-slide-photo { width: 100%; aspect-ratio: 3/4; max-height: 300px; object-fit: cover; object-position: top center; border-radius: 12px; display: block; }
  .testi-slide-body { padding: 1.25rem 0 0; }
  .testi-slide-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
  .testi-slide-name { font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
  .testi-slide-role { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 1rem; }
  .testi-slide-quote { font-family: 'Playfair Display', serif; font-size: 1rem; line-height: 1.6; color: var(--ink); font-style: italic; }
  .testi-slide-quote::before { content: '\201C'; }
  .testi-slide-quote::after { content: '\201D'; }
  .testi-carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; }
  .testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neutral-dot); border: none; padding: 0; cursor: pointer; transition: background 0.2s; }
  .testi-dot.active { background: var(--ink); }

  /* ── FAQ ─────────────────────────────────────────────────────────────
     Colour variables used: --cream (section bg), --ink (headline,
       question text), --pink (em, chevron, question hover colour),
     --muted-dark (answer body text), --border-light (item divider)
     ──────────────────────────────────────────────────────────────── */
  .faq { padding: 7rem 4rem; background: var(--cream); }
  .faq-inner { max-width: 760px; margin: 0 auto; }
  .faq-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 600; margin-bottom: 3rem; color: var(--ink); }
  .faq-headline em { font-style: italic; color: var(--pink); }
  .faq-item { border-bottom: 0.5px solid var(--border-light); }
  .faq-q { width: 100%; background: none; border: none; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; color: var(--ink); padding: 1.4rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
  .faq-q:hover { color: var(--pink); }
  .faq-chevron { font-size: 1rem; color: var(--pink); transition: transform 0.25s; flex-shrink: 0; }
  .faq-a { font-size: 1rem; color: var(--muted-dark); line-height: 1.8; font-weight: 300; padding-bottom: 1.4rem; display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-chevron { transform: rotate(45deg); }

  /* ── PRICING ─────────────────────────────────────────────────────────
     Colour variables used: --pink-pale (section bg), --ink (headline),
     --pink (em, tier label, feature checkmarks, featured card border +
       badge bg + CTA button), --pink-deep (featured CTA hover),
     --cream (card bg), --muted-dark (description, period, note),
     --border-light (card border, divider, minutes pill border)
     ──────────────────────────────────────────────────────────────── */
  .pricing { padding: 7rem 4rem; background: var(--pink-pale); }
  .pricing-inner { max-width: 1100px; margin: 0 auto; }
  .pricing-headline { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 3rem); font-weight: 600; margin-bottom: 0.75rem; color: var(--ink); }
  .pricing-headline em { font-style: italic; color: var(--pink); }
  .pricing-sub { color: var(--muted-dark); font-size: 1rem; margin-bottom: 3.5rem; font-weight: 300; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
  .pricing-card { border: 0.5px solid var(--border-light); padding: 2.5rem 2rem; position: relative; background: var(--cream); border-radius: 2px; transition: box-shadow 0.2s; }
  .pricing-card:hover { box-shadow: 0 8px 32px rgba(18,9,26,0.08); }
  .pricing-card.featured { background: var(--cream); color: var(--ink); border: 1.5px solid var(--pink); }
  .pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--pink); color: white; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 0 0 4px 4px; white-space: nowrap; }
  .pricing-tier { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.5rem; }
  .pricing-name { font-family: 'DM Sans', sans-serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 0.25rem; }
  .pricing-desc { font-size: 1rem; color: var(--muted-dark); margin-bottom: 1.5rem; line-height: 1.5; font-weight: 300; min-height: 4.5rem; }
  .pricing-card.featured .pricing-desc { color: var(--muted-dark); }
  .pricing-price { font-family: 'DM Sans', sans-serif; font-size: 1.9rem; font-weight: 400; line-height: 1; margin-bottom: 0.25rem; }
  .pricing-period { font-size: 0.875rem; color: var(--muted-dark); margin-bottom: 2rem; }
  .pricing-card.featured .pricing-period { color: var(--muted-dark); }
  .pricing-divider { height: 0.5px; background: var(--border-light); margin-bottom: 1.5rem; }
  .pricing-minutes { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; font-weight: 500; color: var(--ink); background: rgba(18,9,26,0.05); border: 0.5px solid var(--border-light); padding: 0.2rem 0.65rem; border-radius: 100px; margin-bottom: 0; }
  .pricing-minutes span { font-weight: 300; color: var(--muted-dark); }
  .pricing-minutes-label { display: none; }
  .pricing-minutes + ul.pricing-features { margin-top: 1.75rem; border-top: 0.5px solid var(--border-light); padding-top: 1rem; }
  .pricing-minutes + ul.pricing-features li.plus-divider:first-child { border-top: none; margin-top: 0; }
  .pricing-features li.plus-divider { border-top: 0.5px solid var(--border-light); margin-top: 0.5rem; padding-top: 1rem; font-weight: 500; color: var(--muted-dark); font-size: 0.875rem; letter-spacing: 0.02em; }
  .pricing-features li.plus-divider::before { display: none; }
  .pricing-card.featured .pricing-divider { background: var(--border-light); }
  .pricing-features { list-style: none; margin-bottom: 2rem; }
  .pricing-features li { font-size: 1rem; padding: 0.4rem 0; display: flex; align-items: flex-start; gap: 0.65rem; line-height: 1.5; font-weight: 300; color: var(--ink); }
  .pricing-card.featured .pricing-features li { color: var(--ink); }
  .pricing-features li::before { content: '✓'; color: var(--pink); font-size: 0.875rem; flex-shrink: 0; margin-top: 0.15rem; font-weight: 500; }
  .pricing-btn { display: block; text-align: center; text-decoration: none; padding: 0.85rem; font-size: 1rem; font-weight: 500; border-radius: 2px; transition: all 0.2s; border: 0.5px solid var(--ink); color: var(--ink); background: transparent; cursor: pointer; width: 100%; font-family: 'DM Sans', sans-serif; }
  .pricing-btn:hover { background: var(--ink); color: var(--cream); }
  .pricing-card.featured .pricing-btn { background: var(--pink); border-color: var(--pink); color: white; }
  .pricing-card.featured .pricing-btn:hover { background: var(--pink-deep); border-color: var(--pink-deep); }
  .pricing-note { text-align: center; margin-top: 2rem; font-size: 0.875rem; color: var(--muted-dark); font-weight: 300; }

  /* ── SOCIAL PROOF WALL ───────────────────────────────────────────────
     Colour variables used: --pink-pale (section bg), --ink (headline),
     --pink (em, score badge bg), --gold (stars), --cream (card bg),
     --border-light (card border), --muted-dark (role, date, count)
     ──────────────────────────────────────────────────────────────── */
  .proof-wall { padding: 7rem 4rem; background: var(--pink-pale); }
  .proof-wall-inner { max-width: 1100px; margin: 0 auto; }
  .proof-wall-header { text-align: center; margin-bottom: 3.5rem; }
  .proof-wall-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
  .proof-wall-headline em { font-style: italic; color: var(--pink); }
  .proof-wall-agg { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
  .proof-wall-score { background: var(--pink); color: white; font-size: 0.875rem; font-weight: 500; padding: 0.3rem 0.65rem; border-radius: 4px; }
  .proof-wall-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.05em; }
  .proof-wall-count { font-size: 0.875rem; color: var(--muted-dark); }

  /* 4-column masonry-style grid */
  .proof-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }

  .proof-card {
    background: var(--cream);
    border: 0.5px solid var(--border-light);
    border-radius: 10px;
    padding: 1.25rem;
    break-inside: avoid;
  }
  .proof-card-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.08em; margin-bottom: 0.65rem; }
  .proof-card-quote { font-size: 1rem; color: var(--ink); line-height: 1.65; margin-bottom: 1rem; font-weight: 300; }
  .proof-card-quote strong { font-weight: 500; color: var(--pink); font-style: normal; }
  .proof-card-author { display: flex; align-items: center; gap: 0.6rem; }
  .proof-card-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 500; flex-shrink: 0; color: white; }
  .proof-card-avatar--initials { background: var(--pink); font-size: 0.75rem; letter-spacing: 0.02em; }
  .proof-card-name { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
  .proof-card-role { font-size: 0.875rem; color: var(--muted-dark); margin-top: 1px; }
  .proof-card-date { font-size: 0.875rem; color: var(--muted-dark); margin-top: 0.75rem; }

  /* Video card variant */
  .proof-video {
    border-radius: 10px; overflow: hidden;
    aspect-ratio: 4/5; position: relative;
    break-inside: avoid;
  }
  .proof-video-bg { position: absolute; inset: 0; }
  .proof-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,9,26,0.75) 0%, rgba(18,9,26,0.1) 55%); }
  .proof-video-caption { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; }
  .proof-video-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
  .proof-video-quote { font-size: 0.875rem; color: white; line-height: 1.55; margin-bottom: 0.65rem; font-style: italic; }
  .proof-video-name { font-size: 0.875rem; font-weight: 500; color: white; }
  .proof-video-role { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-top: 1px; }

  /* ── CTA SECTION ─────────────────────────────────────────────────────
     Colour variables used: --ink (section bg), --cream (headline),
     --pink (eyebrow, em, primary CTA button), --pink-deep (CTA hover)
           you change --pink
     ──────────────────────────────────────────────────────────────── */
  .cta-section { padding: 8rem 4rem; background: var(--ink); text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--pink) 10%, transparent) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
  .cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
  .cta-eyebrow { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.5rem; }
  .cta-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 3.2vw, 3rem); font-weight: 600; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
  .cta-headline em { font-style: italic; color: var(--pink); }
  .cta-sub { font-size: 1rem; color: rgba(255,240,245,0.45); margin-bottom: 0.5rem; font-weight: 300; line-height: 1.7; }
  .cta-calc { font-size: 1rem; color: color-mix(in srgb, var(--pink) 75%, transparent); margin-bottom: 2.5rem; font-style: italic; }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-primary { background: var(--pink); color: white; padding: 1rem 2.25rem; font-size: 1rem; font-weight: 500; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; text-decoration: none; }
  .cta-primary:hover { background: var(--pink-deep); }
  .cta-fine { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,240,245,0.2); }

  /* ── FOOTER ──────────────────────────────────────────────────────────
     Colour variables used: --ink (bg), --border-dark (top hairline),
     --cream (logo), --pink (logo accent), --muted-dark/cream (links)
     ──────────────────────────────────────────────────────────────── */
  footer { padding: 2.5rem 4rem; background: var(--ink); border-top: 0.5px solid var(--border-dark); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); }
  .footer-logo span { color: var(--pink); font-style: italic; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.875rem; color: rgba(255,240,245,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--cream); }
  .footer-copy { font-size: 0.875rem; color: rgba(255,240,245,0.18); }

  /* ── Sticky mobile CTA bar — disabled, top nav is the only sticky element ── */
  .sticky-cta-bar { display: none !important; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  @keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; overflow: hidden; }
    .hero-left { padding: 4rem 2rem 3rem; min-height: auto; }
    .hero-right { display: none; }
    .problem, .how, .faq, .pricing, .solution, .cta-section, .lexi, .testimonials, .proof-wall { padding: 4rem 1.5rem; }
    .lexi-inner { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 2rem; }
    .lexi-visual { grid-column: 1; grid-row: 2; }
    .lexi-header { grid-column: 1; grid-row: 1; padding-bottom: 0; }
    .lexi-copy { grid-column: 1; grid-row: 3; }
    .lexi-traits { grid-template-columns: 1fr; margin-bottom: 1.75rem; }
    .problem-grid, .steps, .pricing-grid, .problem-cols, .solution-cols { grid-template-columns: 1fr; }
    .proof-cols { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .testimonials-inner { grid-template-columns: 1fr; grid-template-areas: "header" "carousel"; row-gap: 1.25rem; }
    .testi-featured-left, .testi-video, .testi-row { display: none !important; }
    .testi-carousel { display: block; grid-area: carousel; }
    .testi-header { margin-bottom: 1.5rem; }
    /* Steps: replace horizontal border-left with border-top when stacked */
    .step { border-left: none; border-top: 0.5px solid var(--border-light); padding: 1.75rem 0; }
    .step:first-child { border-top: none; padding-left: 0; }
    .how-header { margin-bottom: 2.5rem; }
    .problem-col, .sol-col { padding: 1.5rem 1.25rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
    .footer-links { gap: 1.25rem; flex-wrap: wrap; }
    .studio-scroll { display: none; }
  }

  /* ── Full-width CTA for all small screens ── */
  @media (max-width: 640px) {
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary { width: 100%; text-align: center; justify-content: center; min-height: 54px; font-size: 1rem; padding: 1rem; }
    /* Proof wall: single column earlier */
    .proof-cols { grid-template-columns: 1fr; }
    /* Lexi avatar: resize at 640px */
    .lexi-avatar-wrap { width: 240px; height: 240px; }
    .lexi-avatar { width: 240px; height: 240px; }
  }

  /* ── iPhone / small mobile (390px–430px) ── */
  @media (max-width: 480px) {
    nav { padding: max(0.9rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) 0.9rem max(1.25rem, env(safe-area-inset-left)); }
    body { padding-top: calc(3.8rem + env(safe-area-inset-top)); padding-bottom: env(safe-area-inset-bottom); }
    .hero-left { padding: 2.5rem 1.25rem 2rem; min-height: auto; }
    /* Hero-right: hidden on all mobile sizes */
    .hero-right { display: none; }
    .hero-headline { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-call { text-align: center; justify-content: center; width: 100%; padding: 1rem; font-size: 1rem; min-height: 52px; }
    /* Section spacing */
    .problem, .how, .faq, .pricing, .solution, .cta-section, .lexi, .proof-wall { padding: 2.75rem 1.25rem; }
    .testimonials { padding: 3.5rem 1.25rem 2.75rem; border-top: 3px solid var(--ink); }
    /* Headlines */
    .problem-headline, .how-headline, .testimonials-headline, .pricing-headline,
    .proof-wall-headline, .faq-headline, .lexi-headline, .solution-headline { font-size: clamp(1.5rem, 6vw, 1.9rem); }
    .cta-headline { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
    /* Testimonials */
    .testi-featured-quote { font-size: 1rem; line-height: 1.55; }
    .testi-row { grid-template-columns: 1fr; }
    .testi-selector { padding: 0.6rem 0.75rem; }
    .testi-selector-name { font-size: 0.875rem; }
    .testi-selector-role { font-size: 0.875rem; }
    .testi-selector-avatar { width: 36px; height: 36px; }
    /* Proof wall */
    .proof-cols { grid-template-columns: 1fr; }
    .proof-video { aspect-ratio: 4/3; max-height: 260px; }
    /* Steps */
    .step-num { font-size: 0.875rem; }
    .step-visual { min-height: auto; padding: 1rem; margin-bottom: 0.75rem; }
    .step-body { font-size: 1rem; line-height: 1.65; }
    /* Tiny labels — bump to 12px minimum */
    .hc-sub, .phone-call-label, .mock-field-label { font-size: 0.875rem; }
    .step { padding: 1.25rem 0; }
    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 1.75rem 1.5rem; }
    .pricing-price { font-size: 2.2rem; }
    /* Lexi */
    .lexi-bio { font-size: 1rem; line-height: 1.65; }
    .lexi-inner { row-gap: 1.5rem; }
    .lexi-avatar-wrap { width: 220px; height: 220px; }
    .lexi-avatar { width: 220px; height: 220px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    /* Other */
    .problem-col, .sol-col { padding: 1.25rem 1rem; }
    footer { padding: 1.5rem 1.25rem; gap: 1rem; }
  }

  /* ── ONBOARDING OVERLAY ──────────────────────────────────────────────
     Colour variables used:
       overlay bg:     --surface-tint
       right panel bg: --surface
       logo:           --ink + --pink
       progress bar:   --neutral-border (track), --pink (fill)
       title:          --ink + --pink (em)
       bullet icons:   --ob-tint (circle bg)
       trust bar:      --surface-tint (bg), --pink (check icon)
       search input:   --neutral-mid (border), --pink (focus border)
       dropdown:       --ob-border (outer), --ob-divider (row),
                       --ob-hover (hover), --ob-active (focused)
       confirm thumb:  --pink + --pink-deep (gradient)
       build progress: --neutral-border (track), --pink (fill)
       build checks:   --neutral-mid (idle border), --pink (done state)
       audio player:   --pink (play btn), --pink-deep (hover),
                       --neutral-mid (bar bg), --pink (dot)
       email field:    --neutral-mid (border), --pink (focus)
       submit btn:     --pink, --pink-deep (hover), --neutral-mid (disabled)
       biz rating:     --gold
     ──────────────────────────────────────────────────────────────── */
  /* ── ONBOARDING OVERLAY ── */
  .ob-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: var(--surface-tint);
    display: none; flex-direction: column;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden; /* prevent horizontal scroll/rubber-band inside the fixed overlay */
    font-family: 'DM Sans', sans-serif;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .ob-overlay.active { display: flex; }

  .ob-top {
    width: 100%; padding: 1.5rem 2rem;
    display: flex; justify-content: center; align-items: center;
    flex-shrink: 0;
  }
  .ob-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--ink); text-decoration: none;
  }
  .ob-logo span { color: var(--pink); font-style: italic; }

  .ob-close {
    position: absolute; top: max(1.25rem, env(safe-area-inset-top)); right: 1.5rem;
    background: none; border: none; cursor: pointer;
    color: #999; font-size: 1.4rem; line-height: 1;
    padding: 0.5rem; min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s; touch-action: manipulation;
  }
  .ob-close:hover { color: var(--ink); }

  .ob-card {
    width: 100%; max-width: 1100px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(18,9,26,0.08);
    box-shadow: 0 4px 40px rgba(18,9,26,0.07);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 480px;
    margin: 0 1.5rem 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
  }

  .ob-left {
    padding: 2.5rem 2.5rem 2rem;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .ob-step-indicator {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
  .ob-back {
    background: none; border: none; cursor: pointer;
    color: #999; font-size: 1rem; padding: 0.5rem;
    transition: color 0.2s; line-height: 1;
    min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
    touch-action: manipulation;
  }
  .ob-back:hover { color: var(--ink); }
  .ob-back.hidden { visibility: hidden; }
  .ob-step-text {
    font-size: 0.875rem; font-weight: 500; color: #999;
  }
  .ob-progress-bar {
    flex: 1; height: 6px; background: var(--neutral-border);
    border-radius: 99px; overflow: hidden;
  }
  .ob-progress-fill {
    height: 100%; background: var(--pink);
    border-radius: 99px;
    transition: width 0.4s ease;
  }

  .ob-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700; color: var(--ink);
    line-height: 1.2; margin-bottom: 1.75rem;
  }
  .ob-title em { font-style: normal; color: var(--pink); }

  .ob-bullets { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .ob-bullets li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9rem; color: #333; line-height: 1.4;
  }
  .ob-bullets li strong { color: var(--ink); }
  .ob-bullet-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--ob-tint); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.875rem;
  }

  .ob-trust {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: #888;
    padding: 0.75rem 1rem;
    background: var(--surface-tint); border-radius: 8px;
    margin-top: auto;
  }
  .ob-trust-check { color: var(--pink); font-size: 1rem; }

  .ob-right {
    padding: 2.5rem 2.5rem 2rem;
    display: flex; flex-direction: column; justify-content: center;
    border-left: 1px solid rgba(18,9,26,0.06);
    background: var(--surface);
  }

  /* Step panels */
  .ob-panel { display: none; }
  .ob-panel.active { display: flex; flex-direction: column; }

  /* Step 1 - search */
  .ob-search-title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 1.25rem; text-align: center; }
  .ob-search-wrap {
    position: relative; margin-bottom: 0.75rem;
  }
  .ob-search-icon {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    color: #999; font-size: 1rem;
  }
  .ob-search-input {
    width: 100%; padding: 0.9rem 1rem 0.9rem 2.75rem;
    border: 1.5px solid var(--neutral-mid); border-radius: 99px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem;
    color: var(--ink); outline: none; -webkit-appearance: none;
    transition: border-color 0.2s;
  }
  .ob-search-input:focus { border-color: var(--pink); }
  .ob-search-input::placeholder { color: #bbb; }

  /* Search dropdown */
  .ob-search-wrap { position: relative; margin-bottom: 0.75rem; }
  .ob-dropdown {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #fff; border: 1.5px solid var(--ob-border); border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 100;
    overflow: hidden; display: none;
    max-height: 280px; overflow-y: auto;
  }
  .ob-dropdown.visible { display: block; }
  .ob-dropdown-item {
    padding: 0.9rem 1rem; cursor: pointer;
    border-bottom: 1px solid var(--ob-divider); transition: background 0.12s;
    -webkit-tap-highlight-color: transparent;
  }
  .ob-dropdown-item:last-child { border-bottom: none; }
  .ob-dropdown-item:hover { background: var(--ob-hover); }
  .ob-dropdown-item.focused { background: var(--ob-active); border-left: 3px solid var(--pink); padding-left: calc(1rem - 3px); }
  .ob-dropdown-name { font-size: 1rem; font-weight: 600; color: var(--ink); }
  .ob-dropdown-addr { font-size: 0.875rem; color: #888; margin-top: 0.2rem; line-height: 1.3; }
  .ob-dropdown-msg { padding: 0.9rem 1rem; font-size: 0.875rem; color: #aaa; text-align: center; }
  @media (max-width: 600px) {
    .ob-dropdown-item { padding: 1rem; }
    .ob-dropdown-name { font-size: 1rem; }
    .ob-dropdown-addr { font-size: 0.875rem; }
  }

  /* Step 2 extra fields */
  .ob-biz-phone { font-size: 0.875rem; color: #888; margin-top: 0.15rem; }
  .ob-biz-rating { font-size: 0.875rem; color: var(--gold); margin-top: 0.15rem; }

  .ob-btn-main {
    width: 100%; padding: 0.9rem;
    background: var(--pink); color: white;
    border: none; border-radius: 99px;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
    cursor: pointer; transition: background 0.2s, opacity 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    min-height: 48px; touch-action: manipulation;
  }
  .ob-btn-main:hover:not(:disabled) { background: var(--pink-deep); }
  .ob-btn-main:disabled { background: var(--neutral-mid); color: #AAA; cursor: not-allowed; }

  .ob-link {
    text-align: center; margin-top: 0.75rem;
    font-size: 0.875rem; color: #888; cursor: pointer;
    transition: color 0.2s;
  }
  .ob-link:hover { color: var(--ink); }

  /* Step 2 - confirm business */
  .ob-confirm-title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem; text-align: center; }
  .ob-business-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1.5px solid var(--neutral-mid); border-radius: 12px;
    margin-bottom: 1.5rem; background: white;
  }
  .ob-biz-thumb {
    width: 54px; height: 54px; border-radius: 8px;
    background: linear-gradient(135deg, var(--pink), var(--pink-deep));
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
  }
  .ob-biz-name { font-size: 1rem; font-weight: 600; color: var(--ink); }
  .ob-biz-addr { font-size: 0.875rem; color: #888; margin-top: 0.2rem; display: flex; align-items: center; gap: 0.3rem; }

  /* Step 3 - building */
  .ob-build-visual {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: 1.5rem;
  }
  .ob-build-biz-thumb {
    width: 52px; height: 52px; border-radius: 8px;
    background: linear-gradient(135deg, var(--pink), var(--pink-deep));
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  }
  .ob-build-arrow { font-size: 1.25rem; color: #999; }
  .ob-build-logo {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--pink);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1rem;
    font-weight: 600; color: white; letter-spacing: -0.5px;
  }
  .ob-build-title { font-size: 1rem; font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 1rem; }
  .ob-build-progress { height: 6px; background: var(--neutral-border); border-radius: 99px; overflow: hidden; margin-bottom: 1.25rem; }
  .ob-build-fill { height: 100%; background: var(--pink); border-radius: 99px; width: 0; transition: width 0.5s ease; }
  .ob-build-checks { display: flex; flex-direction: column; gap: 0.65rem; }
  .ob-build-item {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 0.875rem; color: #aaa; transition: color 0.3s;
  }
  .ob-build-item.done { color: var(--ink); }
  .ob-build-item.active { color: #666; }
  .ob-check-icon { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--neutral-mid); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; transition: all 0.3s; }
  .ob-build-item.done .ob-check-icon { background: var(--pink); border-color: var(--pink); color: white; }
  .ob-build-item.active .ob-check-icon { border-color: var(--pink); animation: spin 1s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* Step 4 - preview */
  .ob-preview-title { font-size: 1rem; font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 1.5rem; }
  .ob-audio-item { margin-bottom: 1.25rem; }
  .ob-audio-label { font-size: 0.875rem; font-weight: 500; color: #555; margin-bottom: 0.5rem; }
  .ob-audio-player {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 0;
  }
  .ob-play-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--pink); color: white; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; flex-shrink: 0; transition: background 0.2s;
    touch-action: manipulation;
  }
  .ob-play-btn:hover { background: var(--pink-deep); }
  .ob-play-btn.ob-loading {
    background: var(--pink);
    position: relative;
  }
  .ob-play-btn.ob-loading::after {
    content: '';
    position: absolute; inset: 4px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    animation: ob-spin 0.7s linear infinite;
  }
  @keyframes ob-spin { to { transform: rotate(360deg); } }
  .ob-audio-bar { flex: 1; height: 6px; background: var(--neutral-mid); border-radius: 99px; position: relative; }
  .ob-audio-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--pink); position: absolute;
    top: 50%; left: 0; transform: translateY(-50%);
  }
  .ob-preview-sub { font-size: 0.875rem; color: #888; text-align: center; margin: 1rem 0; }

  /* Step 5 - email capture */
  .ob-account-title { font-size: 1rem; font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 0.35rem; }
  .ob-account-sub { font-size: 0.875rem; color: #888; text-align: center; margin-bottom: 1.5rem; }
  .ob-email-form { display: flex; flex-direction: column; gap: 0.65rem; }
  .ob-field {
    width: 100%; padding: 0.8rem 1rem;
    border: 1.5px solid var(--neutral-mid); border-radius: 8px;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    color: var(--ink); outline: none; transition: border-color 0.2s;
  }
  .ob-field:focus { border-color: var(--pink); }
  .ob-field::placeholder { color: #bbb; }
  .ob-terms { font-size: 0.875rem; color: #aaa; text-align: center; margin-top: 0.25rem; }
  .ob-terms a { color: #888; }

  /* Step 6 - thank you */
  .ob-thanks {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    padding: 3rem 2rem; grid-column: 1 / -1;
  }
  .ob-thanks-icon { font-size: 3rem; margin-bottom: 1rem; }
  .ob-thanks-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }
  .ob-thanks-title em { font-style: italic; color: var(--pink); }
  .ob-thanks-sub { font-size: 1rem; color: #666; line-height: 1.6; max-width: 420px; margin-bottom: 2rem; }
  .ob-thanks-back { background: none; border: 1px solid var(--border-light); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 0.875rem; padding: 0.65rem 1.5rem; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
  .ob-thanks-back:hover { border-color: var(--pink); color: var(--pink); }

  @media (max-width: 700px) {
    .ob-overlay {
      align-items: stretch;
      padding: 0;
      overflow-y: auto;
    }
    .ob-card {
      grid-template-columns: 1fr;
      align-content: start; /* prevent grid from stretching rows to fill min-height */
      margin: 0;
      min-height: 100svh;
      border-radius: 0;
      border: none;
      box-shadow: none;
      overflow: visible;
    }
    .ob-right {
      border-left: none;
      border-top: 1px solid rgba(18,9,26,0.06);
      padding: 1.25rem;
      justify-content: flex-start; /* don't center-pad content in a tall row */
    }
    .ob-left { padding: 1.5rem 1.25rem 1rem; }
    .ob-step-indicator { margin-bottom: 1rem; }
    .ob-title { font-size: 1.3rem; margin-bottom: 1.25rem; }
    .ob-bullets { gap: 0.75rem; margin-bottom: 1.25rem; }
    .ob-dropdown { max-height: clamp(200px, 40vh, 280px); position: fixed; left: 1rem; right: 1rem; z-index: 9999; }
    .ob-top { padding: 1rem 1.25rem; }
    .ob-search-title { display: none; }
  }

  @media (max-width: 480px) {
    .ob-left { padding: 1rem 1rem 0.5rem; }
    .ob-right { padding: 1rem 1rem 1.5rem; }
    .ob-step-indicator { margin-bottom: 0.6rem; }
    .ob-title { font-size: 1.15rem; margin-bottom: 0.65rem; }
    .ob-bullets { display: none; }
    .ob-trust { display: none; }
  }
