/* Goldmark HECM Funnel — master stylesheet
   Palette: ink navy, harbor teal accent, cool off-white ground. Type sized for readers 62+. */
:root {
  --ink: #16304a;
  --text: #22303d;
  --muted: #5f6b78;
  --ground: #fafbfc;
  --panel: #eef2f6;
  --line: #d6dde5;
  --card: #ffffff;
  --accent: #1f8a3f;
  --accent-hover: #176e32;
  --accent-soft: #e6f4ea;
  --navy: #0b1f3a;
  --green: #1f8a3f;
  --green-hover: #176e32;
  --gold: #c8a24a;
  --ribbon: #0b1f3a;
  --ribbon-text: #f4ecd6;
  --danger: #a13a2b;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(22, 48, 74, 0.10);
  --font-head: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #e8eef5; --text: #dfe6ee; --muted: #9eabb8; --ground: #0f1a26; --panel: #17263a;
    --line: #2a3b50; --card: #14233a; --accent: #4fb3ad; --accent-hover: #6cc7c1; --accent-soft: #163a3a;
    --ribbon: #0a1320; --ribbon-text: #e9dcb6; --shadow: 0 6px 24px rgba(0,0,0,.35);
  }
}
:root[data-theme="dark"] {
  --ink: #e8eef5; --text: #dfe6ee; --muted: #9eabb8; --ground: #0f1a26; --panel: #17263a;
  --line: #2a3b50; --card: #14233a; --accent: #4fb3ad; --accent-hover: #6cc7c1; --accent-soft: #163a3a;
  --ribbon: #0a1320; --ribbon-text: #e9dcb6; --shadow: 0 6px 24px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--ground); color: var(--text);
  font-family: var(--font-body); font-size: 18px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; margin: 0; text-wrap: balance; font-weight: 600; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }
a { color: var(--accent); }
.wrap { width: 100%; max-width: 1100px; margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(48px, 7vw, 88px); }
.section-head { max-width: 680px; margin-bottom: 36px; display: grid; gap: 12px; }
.eyebrow { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: .95rem; }
[hidden] { display: none !important; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 8px; padding: 15px 26px; font: inherit; font-weight: 700; font-size: 1.05rem; cursor: pointer; text-decoration: none; border: 2px solid transparent; transition: background .15s, border-color .15s, transform .15s; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ribbon-text); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); }
.btn-lg { padding: 18px 32px; font-size: 1.12rem; }
.btn-block { width: 100%; }

/* Header / brand */
.site-head { border-bottom: 1px solid var(--line); background: var(--card); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); min-width: 0; }
.brand-mark { width: 44px; height: 44px; border-radius: 9px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; flex: none; letter-spacing: .02em; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; line-height: 1.15; }
.brand-sub { font-size: .8rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.head-cta { display: flex; align-items: center; gap: 14px; }
.head-phone { font-weight: 700; color: var(--ink); text-decoration: none; }
@media (max-width: 640px) { .head-phone span { display: none; } }

/* Hero */
.hero { background: linear-gradient(180deg, var(--panel) 0%, var(--ground) 100%); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; padding-block: clamp(40px, 6vw, 80px); }
.hero-copy { display: grid; gap: 22px; }
.hero-copy .lead { font-size: 1.25rem; }
.hero-points { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 1.05rem; }
.hero-points li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--accent-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f8a3f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .95rem; color: var(--muted); }
.hero-points strong { color: var(--ink); }
.b2b-lead { font-size: 1.15rem; color: #fff !important; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; gap: 32px; } }

/* Form card */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 28px; display: grid; gap: 16px; }
.form-card h3 { font-size: 1.35rem; }
.form-card .steps { display: flex; gap: 6px; }
.form-card .steps span { flex: 1; height: 5px; border-radius: 3px; background: var(--line); }
.form-card .steps span.on { background: var(--accent); }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: 1rem; color: var(--ink); }
.field input, .field select, .field textarea { font: inherit; font-size: 1.05rem; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 8px; background: var(--card); color: var(--text); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { border: 1.5px solid var(--line); border-radius: 8px; padding: 12px 14px; cursor: pointer; display: flex; gap: 10px; align-items: center; font-weight: 600; background: var(--card); }
.choice input { accent-color: var(--accent); width: 20px; height: 20px; margin: 0; }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.consent { font-size: .82rem; color: var(--muted); line-height: 1.45; }
.consent a { color: var(--muted); }
.form-error { color: var(--danger); font-weight: 600; font-size: .95rem; }
.thanks { display: grid; gap: 12px; text-align: center; padding-block: 18px; }
.thanks .check { width: 56px; height: 56px; margin-inline: auto; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); font-size: 1.6rem; font-weight: 800; }

/* Trust bar */
.trust { border-block: 1px solid var(--line); background: var(--card); }
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; padding-block: 16px; font-size: .95rem; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* Uses grid */
.uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.use { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 10px; align-content: start; }
.use .icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.use .icon svg { width: 24px; height: 24px; }
.use h3 { font-size: 1.2rem; }
.use p { color: var(--muted); font-size: 1rem; }
@media (max-width: 900px) { .uses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .uses { grid-template-columns: 1fr; } }

/* How it works — a real sequence, so numbering carries meaning */
.steps-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 26px 24px 24px; border-radius: var(--radius); background: var(--panel); display: grid; gap: 10px; align-content: start; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--accent); background: var(--card); border: 2px solid var(--accent); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; }
.step p { color: var(--muted); font-size: 1rem; }
@media (max-width: 800px) { .steps-list { grid-template-columns: 1fr; } }

/* Eligibility */
.elig { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.elig-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.elig-list li { display: flex; gap: 12px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; font-weight: 600; }
.elig-list li::before { content: ""; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; margin-top: 2px; }
@media (max-width: 800px) { .elig { grid-template-columns: 1fr; gap: 24px; } }

/* Advisor card (sample contact) */
.advisor { display: flex; gap: 18px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; flex: none; }
.advisor .name { font-weight: 700; color: var(--ink); font-size: 1.15rem; }
.advisor .role { color: var(--muted); font-size: .98rem; }
.sample-pill { display: inline-block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; background: var(--panel); color: var(--muted); border-radius: 4px; padding: 2px 7px; margin-left: 8px; vertical-align: middle; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 800px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 0 20px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); padding-block: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 1.08rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 18px; color: var(--muted); }

/* CTA band */
.band { background: var(--ink); color: #fff; }
.band .wrap { display: grid; gap: 18px; justify-items: start; padding-block: 56px; }
.band h2 { color: #fff; }
.band p { color: #d5dde7; max-width: 60ch; font-size: 1.12rem; }

/* Disclosures */
.disclosures { background: var(--panel); font-size: .9rem; color: var(--muted); line-height: 1.55; }
.disclosures .wrap { display: grid; gap: 12px; padding-block: 36px; }
.disclosures strong { color: var(--text); }

/* Footer */
.foot { font-size: .9rem; color: var(--muted); }
.foot .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 22px; border-top: 1px solid var(--line); }

/* ── Goldmark B2B layer ───────────────────────────────────────── */
.b2b { background: var(--ribbon); color: var(--ribbon-text); }
.b2b .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; padding-block: clamp(56px, 8vw, 96px); align-items: start; }
.b2b h2 { color: #fff; }
.b2b .eyebrow { color: var(--gold); }
.b2b p { color: #d5dde7; }
.b2b-copy { display: grid; gap: 18px; }
.b2b-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.b2b-list li { display: flex; gap: 10px; align-items: flex-start; color: #e6ecf3; }
.b2b-list li::before { content: "—"; color: var(--gold); flex: none; }
.b2b-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.b2b-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 28px; display: grid; gap: 14px; }
.b2b-card h3 { color: #fff; font-size: 1.3rem; }
.b2b-card .field label { color: #fff; }
.b2b-card .field input, .b2b-card .field select, .b2b-card .field textarea { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.b2b-card .field input::placeholder, .b2b-card .field textarea::placeholder { color: rgba(255,255,255,.5); }
.b2b-card .consent { color: #aeb9c6; }
.b2b-card .btn-primary { background: var(--gold); color: #1c1a12; }
.b2b-card .btn-primary:hover { background: #d9b45a; }
.b2b-card .thanks .check { background: rgba(200,162,74,.2); color: var(--gold); }
.b2b-card .thanks p, .b2b-card .thanks h3 { color: #fff; }
.b2b-meta { font-size: .85rem; color: #aeb9c6; }
.b2b-tel { color: var(--gold); font-weight: 700; text-decoration: none; white-space: nowrap; }
.b2b-tel:hover { text-decoration: underline; }
.b2b-selected { color: #d5dde7; font-size: .95rem; }
.b2b-selected strong { color: var(--gold); }
.b2b-card .thanks h3 { font-size: 1.2rem; }
.b2b-card .thanks p { color: #d5dde7; }
@media (max-width: 860px) { .b2b .wrap { grid-template-columns: 1fr; } .b2b-list { grid-template-columns: 1fr; } }

/* Demo index (no slug) */
.index-page { padding-block: 56px; display: grid; gap: 24px; }
.index-list { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
.index-list a { display: grid; gap: 4px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; text-decoration: none; color: var(--text); }
.index-list a:hover { border-color: var(--accent); }
.index-list .co { font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.index-list .who { color: var(--muted); font-size: .95rem; }
.index-list code { font-size: .85rem; color: var(--accent); word-break: break-all; }

/* Debug panel (only with ?debug=1) */
.debug { position: fixed; bottom: 0; right: 0; width: min(420px, 100%); max-height: 45vh; overflow: auto; background: #0b1420; color: #cfe7e5; font: 12px/1.4 ui-monospace, Menlo, monospace; padding: 12px; z-index: 50; border-top-left-radius: 10px; }
.debug h4 { margin: 0 0 8px; color: var(--gold); font: 700 12px ui-monospace, monospace; letter-spacing: .1em; }
.debug pre { margin: 0 0 6px; white-space: pre-wrap; word-break: break-all; }

/* ═══════════════ Goldmark MLO layer ═══════════════ */
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-hover); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn small { display: block; font-weight: 400; font-size: .8rem; opacity: .85; margin-top: 2px; }
.btn-lg { flex-direction: column; align-items: flex-start; }
.btn-lg.btn-primary, .btn-block { align-items: center; }
.eyebrow-green { color: var(--green); }

/* Top bar */
.gm-bar { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 30; background: var(--navy); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.gm-bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 10px; }
.gm-logo { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; line-height: 1.05; flex: none; }
.gm-logo svg { width: 34px; height: 28px; }
.gm-logo span { font-family: var(--font-body); font-size: 1.05rem; letter-spacing: .04em; }
.gm-logo strong { color: #7fd39a; }
.gm-logo small { display: block; font-size: .62rem; letter-spacing: .18em; color: #aeb9c6; text-transform: uppercase; margin-top: 2px; }
.gm-built { font-size: .95rem; color: #d5dde7; min-width: 0; text-align: center; }
.gm-built strong { color: #fff; }
.gm-built small { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #8fa0b3; }
.gm-phone { color: #fff; text-decoration: none; text-align: right; line-height: 1.1; flex: none; }
.gm-phone-label { display: block; font-size: .7rem; color: #aeb9c6; }
.gm-phone strong { font-size: 1.15rem; }
@media (max-width: 760px) { .gm-built { display: none; } .gm-phone-label { display: none; } .gm-logo small { display: none; } }
@media (max-width: 480px) { .gm-bar .wrap { gap: 10px; padding-inline: 14px; } .gm-logo span { font-size: .9rem; } .gm-logo svg { width: 26px; height: 22px; } .gm-phone { min-width: 0; } .gm-phone strong { font-size: .95rem; white-space: nowrap; } }

/* MLO hero */
.mlo-hero { background: radial-gradient(120% 90% at 100% 0%, #16345c 0%, var(--navy) 55%); color: #fff; }
.mlo-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding-block: clamp(40px, 6vw, 72px); }
.mlo-copy { display: grid; gap: 14px; }
.mlo-eyebrow { font-size: .9rem; letter-spacing: .16em; text-transform: uppercase; color: #7fd39a; font-weight: 700; }
.mlo-company { font-family: var(--font-body); font-weight: 800; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.02; color: #fff; letter-spacing: -.01em; text-wrap: balance; }
.mlo-sub { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 700; color: #fff; }
.mlo-body { color: #d5dde7; max-width: 58ch; font-size: 1.08rem; }
.mlo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.mlo-contact { color: #fff; font-size: 1.05rem; }
.mlo-contact a { color: #fff; font-weight: 700; text-decoration: none; }
.mlo-contact a:hover { text-decoration: underline; }
.mlo-contact-sep { color: #7fd39a; margin-inline: 4px; }
.mlo-disclosure { font-size: .8rem; color: #8fa0b3; }
.mlo-art { max-width: 100%; }
.mlo-svg { width: 100%; height: auto; display: block; border-radius: 22px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
@media (max-width: 900px) { .mlo-hero-grid { grid-template-columns: 1fr; gap: 24px; } .mlo-art { order: -1; max-width: 420px; } }

/* Demo transition + frame */
.demo-transition { background: var(--green); color: #fff; }
.demo-transition .wrap { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; padding-block: 14px; }
.demo-transition-label { font-family: var(--font-body); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 1rem; }
.demo-transition-sub { font-size: .9rem; color: #e6f4ea; }
.demo-transition-light { background: var(--panel); color: var(--ink); }
.demo-transition-light .demo-transition-sub { color: var(--muted); }
.demo-frame { border-inline: 6px solid var(--green); }
@media (max-width: 640px) { .demo-frame { border-inline-width: 4px; } }

/* Qualifier */
.qual-head { display: flex; gap: 12px; align-items: flex-start; }
.qual-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); color: var(--green); display: grid; place-items: center; font-weight: 800; flex: none; }
.qual-q { display: grid; gap: 10px; }
.qual-q > label { font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.choice-btn { font: inherit; font-weight: 800; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; padding: 16px; border-radius: 10px; border: 2px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; min-height: 56px; }
.choice-btn.is-yes { background: var(--green); border-color: var(--green); color: #fff; }
.choice-btn:hover { border-color: var(--green); }
.choice-btn.is-yes:hover { background: var(--green-hover); }
.choice-btn.picked { outline: 3px solid var(--gold); outline-offset: 2px; }
.qual-note { display: flex; align-items: center; gap: 6px; }

/* Lead moment */
.lead-moment { margin-top: 22px; display: flex; gap: 16px; align-items: flex-start; background: var(--navy); color: #fff; border-radius: 12px; padding: 18px 20px; border-left: 6px solid var(--green); }
.lead-moment strong { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .04em; }
.lead-moment p { color: #d5dde7; margin-top: 4px; font-size: 1rem; }
.gm-tag { flex: none; background: var(--green); color: #fff; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; padding: 4px 8px; border-radius: 4px; margin-top: 3px; }

/* Acquisition engine */
.engine { background: var(--card); border-block: 1px solid var(--line); padding-block: clamp(44px, 6vw, 72px); }
.engine-head { max-width: 720px; margin-bottom: 30px; }
.engine-flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: eng; }
.engine-flow li { position: relative; background: var(--panel); border-radius: var(--radius); padding: 22px 18px; display: grid; gap: 8px; align-content: start; }
.engine-flow li::before { counter-increment: eng; content: counter(eng); position: absolute; top: 12px; right: 14px; font-size: .75rem; font-weight: 800; color: var(--green); }
.engine-flow li:not(:last-child)::after { content: "→"; position: absolute; right: -15px; top: 50%; transform: translateY(-50%); color: var(--green); font-weight: 800; font-size: 1.2rem; }
.engine-icon { font-size: 1.6rem; }
.engine-flow strong { color: var(--ink); font-size: 1.05rem; line-height: 1.2; }
.engine-flow p { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .engine-flow { grid-template-columns: 1fr; } .engine-flow li:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -19px; transform: translateX(-50%); } .engine-flow { gap: 24px; } }

/* Offer */
.b2b { background: var(--navy); }
.b2b .eyebrow { color: #7fd39a; }
.b2b-card .btn-green { background: var(--green); color: #fff; }
.b2b-contact a { color: #7fd39a; }
.thanks-now { color: #fff !important; font-weight: 700; margin-top: 6px; }
.thanks-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.thanks-number a { font-size: 1.25rem; }
.b2b-card .thanks h3 { font-size: 1.5rem; letter-spacing: .06em; text-transform: uppercase; }

/* Mobile sticky CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: var(--navy); color: #fff; padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); display: none; align-items: center; justify-content: space-between; gap: 10px; box-shadow: 0 -6px 20px rgba(0,0,0,.25); }
.sticky-cta .btn { padding: 10px 11px; font-size: .88rem; }
.sticky-btns { display: flex; gap: 8px; flex: none; }
.sticky-text { font-size: .82rem; line-height: 1.2; min-width: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sticky-text strong { color: #7fd39a; }
@media (max-width: 768px) { .sticky-cta:not([hidden]) { display: flex; } body.has-sticky { padding-bottom: 76px; } .debug { bottom: 76px; } }
