/* ==========================================================================
   Ahsan Sattar · Fractional CFO — Design System & Styles
   A premium, conversion-focused stylesheet. Mobile-first, accessible.
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
   1.  Design tokens (CSS variables)
   2.  Reset & base
   3.  Typography
   4.  Layout primitives (container, grid, section)
   5.  Buttons & CTAs
   6.  Header / navigation
   7.  Hero
   8.  Trust bar / logo cloud
   9.  Stats band
   10. Pain points
   11. Services
   12. Process
   13. Differentiators
   14. Results / case studies
   15. Testimonials
   16. Pricing
   17. Lead magnet
   18. About
   19. FAQ accordion
   20. Final CTA
   21. Footer
   22. Floating mobile CTA
   23. Reveal-on-scroll animation utilities
   24. Reduced-motion & print
   ========================================================================== */

/* 1. DESIGN TOKENS ========================================================= */
:root {
  /* Brand palette — deep navy authority + warm gold premium accent */
  --ink-900: #07101f;
  --ink-800: #0a1a2f;
  --ink-700: #0f2540;
  --ink-600: #163050;
  --navy:    #0f2540;

  --gold-600: #a9802f;
  --gold-500: #c2a04e;   /* primary accent */
  --gold-400: #d4b86e;
  --gold-300: #e7d4a0;

  --emerald-600: #1c6b58;
  --emerald-500: #2a8a72;

  --bone:    #fbfaf7;    /* warm off-white page bg */
  --cream:   #f4f1ea;
  --paper:   #ffffff;
  --line:    #e6e1d6;    /* hairline borders on light */
  --line-dark: rgba(255,255,255,.12);

  --text:    #16202c;    /* body on light */
  --text-soft: #4b5a68;
  --text-mut: #6b7886;
  --text-invert: #eef2f6; /* body on dark */
  --text-invert-soft: #b7c4d2;

  /* Semantic theme hooks (overridden per [data-theme]) */
  --heading: #0a1a2f;                       /* heading + strong text color */
  --on-accent: #1c1303;                     /* text that sits on the accent color */
  --glass-bg: rgba(251,250,247,.88);        /* frosted header / floating bar */

  /* Typography */
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-hero: clamp(2.6rem, 6vw, 4.6rem);
  --fs-h2:   clamp(2rem, 4vw, 3.1rem);
  --fs-h3:   clamp(1.3rem, 2vw, 1.6rem);
  --fs-lead: clamp(1.08rem, 1.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-sm:   .9rem;
  --fs-xs:   .78rem;

  /* Spacing scale */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem;
  --sp-9: 6rem; --sp-10: 8rem;

  /* Radii & shadows */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10,26,47,.06), 0 2px 8px rgba(10,26,47,.05);
  --shadow-md: 0 8px 24px rgba(10,26,47,.08), 0 2px 8px rgba(10,26,47,.04);
  --shadow-lg: 0 24px 60px rgba(10,26,47,.14), 0 8px 24px rgba(10,26,47,.08);
  --shadow-gold: 0 12px 30px rgba(169,128,47,.28);

  --maxw: 1200px;
  --maxw-narrow: 760px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
  --topbar-h: 0px;            /* set to a real height by body.has-topbar */
}

/* 2. RESET & BASE ========================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--gold-300); color: var(--ink-900); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink-800); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* 3. TYPOGRAPHY ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--heading);
  font-optical-sizing: auto;
}
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); line-height: 1.2; }
p { color: var(--text-soft); }
strong { color: var(--text); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold-500);
}
.eyebrow.center::before { display: none; }

.lead { font-size: var(--fs-lead); color: var(--text-soft); line-height: 1.6; }
.text-gold { color: var(--gold-600); }
.serif-accent { font-family: var(--font-display); font-style: italic; }

/* 4. LAYOUT ================================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: .85rem; }
.section-head p { margin-top: 1rem; }

.bg-ink { background: var(--ink-800); color: var(--text-invert); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: var(--text-invert-soft); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }

.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.divider { height: 1px; background: var(--line); border: 0; }

/* 5. BUTTONS =============================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; cursor: pointer; position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--on-accent); box-shadow: var(--shadow-gold);
}
.btn--primary:hover { box-shadow: 0 16px 38px rgba(169,128,47,.4); }

.btn--dark { background: var(--ink-800); color: #fff; box-shadow: var(--shadow-md); }
.btn--dark:hover { background: var(--ink-700); }

.btn--ghost { background: transparent; color: var(--heading); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--heading); background: var(--ink-800); color: #fff; }

.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn--ghost-light:hover { background: #fff; color: var(--ink-900); border-color: #fff; }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.btn-row.center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--gold-600);
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: .7rem; }
.link-arrow svg { width: 16px; height: 16px; }

/* 6. HEADER =============================================================== */
.site-header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: flex; align-items: center; gap: .65rem; font-weight: 700; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--ink-700), var(--ink-900));
  color: var(--gold-400); font-family: var(--font-display); font-weight: 600;
  font-size: 1.12rem; letter-spacing: .02em; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.06);
}
.brand__name { font-family: var(--font-display); font-size: 1.16rem; color: var(--heading); line-height: 1; white-space: nowrap; }
.brand__name span { display: block; font-family: var(--font-sans); font-size: .66rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; color: var(--gold-600); margin-top: 3px; white-space: nowrap; }

/* Header gets its own roomy width so style-specific narrow containers
   (e.g. Luxe's 1060px) never squeeze the nav into wrapping. */
.site-header > .container { max-width: 1320px; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__links { display: flex; align-items: center; gap: 1.45rem; flex-wrap: nowrap; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--text-soft); position: relative; transition: color .2s; white-space: nowrap; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--gold-500); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--heading); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: .9rem; }
.nav__phone { font-weight: 600; font-size: .92rem; color: var(--heading); display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
/* Hide the phone before things get tight; it still lives in the footer + CTA */
@media (max-width: 1300px) { .nav__phone { display: none; } }
.nav__phone svg { width: 16px; height: 16px; color: var(--gold-600); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink-800); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: calc(var(--topbar-h) + var(--header-h)) 0 auto 0;
    background: var(--bone); flex-direction: column; align-items: stretch;
    padding: 1.25rem clamp(1.1rem,4vw,2.5rem) 2rem; gap: 0;
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__links a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__cta { display: flex; flex-direction: column; align-items: stretch; width: 100%; margin-top: 1.1rem; }
  .nav__cta .btn { width: 100%; }
}

/* 7. HERO ================================================================= */
.hero {
  position: relative; padding-top: calc(var(--header-h) + var(--topbar-h) + clamp(1.25rem, 3vw, 2.5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(194,160,78,.14), transparent 60%),
    radial-gradient(900px 600px at 8% 8%, rgba(15,37,64,.05), transparent 55%),
    var(--bone);
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .45rem .9rem .45rem .5rem; font-size: var(--fs-sm); font-weight: 600;
  color: var(--text-soft); box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.hero__badge .stars { color: var(--gold-500); letter-spacing: 1px; }
.hero__badge .pill { background: var(--emerald-600); color: #fff; font-size: .68rem; font-weight: 700; padding: .2rem .55rem; border-radius: var(--r-pill); letter-spacing: .04em; }

.hero h1 { font-size: var(--fs-hero); letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--gold-600); }
.hero__lead { margin-top: 1.4rem; max-width: 33em; }
.hero .btn-row { margin-top: 2rem; }

.hero__assurances { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; margin-top: 1.9rem; }
.hero__assurances li { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); font-weight: 500; color: var(--text-soft); }
.hero__assurances svg { width: 18px; height: 18px; color: var(--emerald-600); flex-shrink: 0; }

/* Hero dashboard mockup */
.hero__visual { position: relative; }
.dashboard {
  background: var(--ink-800); border-radius: var(--r-lg); padding: 1.4rem;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.07);
  color: var(--text-invert); position: relative; overflow: hidden;
}
.dashboard::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 220px at 80% 0%, rgba(194,160,78,.18), transparent 60%);
  pointer-events: none;
}
.dashboard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; position: relative; }
.dashboard__top h4 { color: #fff; font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }
.dashboard__top .tag { font-size: .68rem; color: var(--emerald-500); background: rgba(42,138,114,.16); padding: .25rem .6rem; border-radius: var(--r-pill); font-weight: 700; }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; margin-bottom: 1.1rem; position: relative; }
.kpi {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: .85rem .8rem;
}
.kpi span { font-size: .68rem; color: var(--text-invert-soft); text-transform: uppercase; letter-spacing: .08em; }
.kpi b { display: block; font-size: 1.35rem; color: #fff; font-family: var(--font-display); margin-top: .25rem; }
.kpi .delta { font-size: .72rem; font-weight: 700; }
.kpi .delta.up { color: #5fd0a8; }
.kpi .delta.down { color: #f0a3a3; }

.chart { position: relative; height: 132px; background: rgba(255,255,255,.04); border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.08); padding: .8rem; overflow: hidden; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart .grow { stroke-dasharray: 1; stroke-dashoffset: 1; }

.float-card {
  position: absolute; background: var(--paper); color: var(--heading);
  border-radius: var(--r-md); padding: .8rem 1rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .7rem; border: 1px solid var(--line);
}
.float-card__icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.float-card__icon.green { background: rgba(28,107,88,.12); color: var(--emerald-600); }
.float-card__icon.gold { background: rgba(194,160,78,.16); color: var(--gold-600); }
.float-card small { display: block; font-size: .68rem; color: var(--text-mut); text-transform: uppercase; letter-spacing: .06em; }
.float-card b { font-size: 1.02rem; }
.float-card--tl { top: -22px; left: -26px; }
.float-card--br { bottom: -22px; right: -20px; }
@media (max-width: 1100px) { .float-card--tl { left: -8px; } .float-card--br { right: -8px; } }
@media (max-width: 540px) { .float-card { display: none; } }

/* 8. TRUST BAR / LOGOS ===================================================== */
.trustbar { border-block: 1px solid var(--line); background: var(--paper); }
.trustbar__inner { padding-block: 1.75rem; display: flex; align-items: center; gap: 2rem 3rem; flex-wrap: wrap; justify-content: center; }
.trustbar__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mut); }
.logo-cloud { display: flex; align-items: center; gap: 2rem 2.8rem; flex-wrap: wrap; justify-content: center; }
.logo-cloud span, .logo-cloud a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  color: #93a0ad; letter-spacing: .01em; opacity: .9;
  display: inline-flex; align-items: center; gap: .45rem; transition: color .2s;
}
.logo-cloud span:hover, .logo-cloud a:hover { color: var(--gold-600); }
.logo-cloud svg { width: 20px; height: 20px; }

/* 9. STATS BAND =========================================================== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,3vw,2.5rem); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; padding: .5rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.4rem); line-height: 1; color: var(--gold-400); font-weight: 600; }
.bg-ink .stat__num { color: var(--gold-400); }
.stat__label { margin-top: .7rem; font-size: var(--fs-sm); color: var(--text-invert-soft); font-weight: 500; }
.stat__sub { font-size: var(--fs-xs); color: var(--text-mut); margin-top: .2rem; }

/* 10. PAIN POINTS ========================================================= */
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.1rem; }
@media (max-width: 720px) { .pain-grid { grid-template-columns: 1fr; } }
.pain {
  display: flex; gap: 1rem; padding: 1.4rem 1.5rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.pain:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain__mark { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(176,58,58,.08); color: #b03a3a; }
.pain__mark svg { width: 20px; height: 20px; }
.pain h3 { font-family: var(--font-sans); font-size: 1.04rem; font-weight: 700; color: var(--heading); margin-bottom: .25rem; }
.pain p { font-size: var(--fs-sm); margin: 0; }
.pain-bridge { text-align: center; max-width: 640px; margin: 2.5rem auto 0; font-size: var(--fs-lead); color: var(--text); }
.pain-bridge strong { color: var(--gold-600); }

/* 11. SERVICES ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 940px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(var(--gold-500), var(--gold-600)); transform: scaleY(0);
  transform-origin: top; transition: transform .35s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc:hover::after { transform: scaleY(1); }
.svc__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(140deg, var(--ink-700), var(--ink-900)); color: var(--gold-400); margin-bottom: 1.2rem; }
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.22rem; margin-bottom: .55rem; }
.svc p { font-size: var(--fs-sm); margin-bottom: 1rem; }
.svc ul { display: flex; flex-direction: column; gap: .45rem; }
.svc li { display: flex; gap: .55rem; font-size: var(--fs-sm); color: var(--text-soft); align-items: flex-start; }
.svc li svg { width: 16px; height: 16px; color: var(--emerald-600); flex-shrink: 0; margin-top: 4px; }

/* 12. PROCESS ============================================================= */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; position: relative; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step { position: relative; padding: 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-300); line-height: 1; font-weight: 600; }
.step h3 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; color: var(--heading); margin: .6rem 0 .45rem; }
.step p { font-size: var(--fs-sm); margin: 0; }
.step__connector { display: none; }
@media (min-width: 901px) {
  .step:not(:last-child) .step__connector {
    display: block; position: absolute; top: 2.4rem; right: -.85rem; width: 1.7rem; z-index: 2;
    color: var(--gold-400);
  }
}

/* 13. DIFFERENTIATORS ===================================================== */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-list { display: flex; flex-direction: column; gap: 1.4rem; }
.diff-item { display: flex; gap: 1rem; }
.diff-item__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(194,160,78,.14); color: var(--gold-600); }
.diff-item__icon svg { width: 22px; height: 22px; }
.diff-item h3 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; color: var(--heading); margin-bottom: .3rem; }
.diff-item p { font-size: var(--fs-sm); margin: 0; }

.compare { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.compare__head { display: grid; grid-template-columns: 1.3fr 1fr 1fr; background: var(--ink-800); color: #fff; }
.compare__head > div { padding: 1rem 1.1rem; font-weight: 700; font-size: var(--fs-sm); }
.compare__head .col-you { background: var(--gold-600); color: var(--on-accent); }
.compare__row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.compare__row:last-child { border-bottom: 0; }
.compare__row > div { padding: .85rem 1.1rem; font-size: var(--fs-sm); display: flex; align-items: center; gap: .4rem; }
.compare__row .feat { font-weight: 600; color: var(--heading); }
.compare__row .col-you { background: rgba(194,160,78,.07); font-weight: 600; color: var(--heading); }
.compare svg { width: 17px; height: 17px; flex-shrink: 0; }
.ic-yes { color: var(--emerald-600); }
.ic-no { color: #c47e7e; }

/* 14. RESULTS / CASE STUDIES ============================================= */
.cases { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 940px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: var(--ink-800); color: var(--text-invert); border-radius: var(--r-lg);
  padding: 1.8rem; border: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden;
}
.case::before { content:""; position:absolute; inset:0; background: radial-gradient(420px 200px at 100% 0%, rgba(194,160,78,.16), transparent 60%); pointer-events:none; }
.case__tag { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-400); position: relative; }
.case__metric { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.7rem); color: #fff; margin: .7rem 0 .2rem; line-height: 1; position: relative; }
.case__metric small { font-size: 1rem; color: var(--gold-400); font-family: var(--font-sans); font-weight: 600; }
.case p { font-size: var(--fs-sm); color: var(--text-invert-soft); position: relative; margin-bottom: 1rem; }
.case__foot { display: flex; align-items: center; gap: .6rem; font-size: var(--fs-xs); color: var(--text-invert-soft); position: relative; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }
.case__foot b { color: #fff; font-size: var(--fs-sm); }

/* 15. TESTIMONIALS ======================================================= */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 940px) { .tst-grid { grid-template-columns: 1fr; } }
.tst {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.tst__stars { color: var(--gold-500); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: .9rem; }
.tst__quote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; color: var(--heading); margin-bottom: 1.3rem; flex-grow: 1; }
.tst__quote::before { content: "\201C"; color: var(--gold-300); font-size: 2rem; line-height: 0; vertical-align: -.35em; margin-right: .1em; }
.tst__person { display: flex; align-items: center; gap: .8rem; }
.tst__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--ink-600), var(--ink-900)); color: var(--gold-300); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; flex-shrink: 0; }
.tst__person b { display: block; color: var(--heading); font-size: .95rem; }
.tst__person span { font-size: var(--fs-xs); color: var(--text-mut); }

/* 16. PRICING ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; align-items: stretch; }
@media (max-width: 940px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan--featured { border: 1.5px solid var(--gold-500); box-shadow: var(--shadow-lg); }
.plan--featured::before {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--on-accent);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .05em; padding: .35rem 1rem; border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan__name { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; color: var(--gold-600); letter-spacing: .02em; }
.plan__desc { font-size: var(--fs-sm); margin: .4rem 0 1.2rem; }
.plan__price { font-family: var(--font-display); font-size: 2.6rem; color: var(--heading); line-height: 1; }
.plan__price small { font-size: .95rem; color: var(--text-mut); font-family: var(--font-sans); font-weight: 500; }
.plan__price .from { display: block; font-size: var(--fs-xs); color: var(--text-mut); font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem; }
.plan__feats { display: flex; flex-direction: column; gap: .65rem; margin: 1.4rem 0; }
.plan__feats li { display: flex; gap: .55rem; font-size: var(--fs-sm); color: var(--text-soft); align-items: flex-start; }
.plan__feats svg { width: 17px; height: 17px; color: var(--emerald-600); flex-shrink: 0; margin-top: 3px; }
.plan .btn { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 2rem; font-size: var(--fs-sm); color: var(--text-mut); }

/* 17. LEAD MAGNET ======================================================== */
.magnet { background: linear-gradient(135deg, var(--ink-700), var(--ink-900)); border-radius: var(--r-xl); padding: clamp(2rem,5vw,3.5rem); color: #fff; position: relative; overflow: hidden; }
.magnet::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 90% 10%, rgba(194,160,78,.2), transparent 60%); pointer-events:none; }
.magnet__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; position: relative; }
@media (max-width: 820px) { .magnet__grid { grid-template-columns: 1fr; } }
.magnet h2 { color: #fff; }
.magnet p { color: var(--text-invert-soft); }
.magnet__list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.3rem; }
.magnet__list li { display: flex; gap: .6rem; align-items: center; font-size: var(--fs-sm); color: #e9eef3; }
.magnet__list svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; }

.lead-form { background: var(--paper); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--shadow-lg); }
.lead-form h3 { font-family: var(--font-sans); font-size: 1.15rem; color: var(--heading); margin-bottom: .3rem; }
.lead-form p { font-size: var(--fs-xs); color: var(--text-mut); margin-bottom: 1.1rem; }
.field { margin-bottom: .85rem; }
.field label { display: block; font-size: var(--fs-xs); font-weight: 600; color: var(--text-soft); margin-bottom: .35rem; letter-spacing: .02em; }
.field input, .field select {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bone); color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(194,160,78,.16); }
.form-note { font-size: var(--fs-xs); color: var(--text-mut); margin-top: .8rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 1.5rem .5rem; }
.form-success svg { width: 52px; height: 52px; color: var(--emerald-600); margin: 0 auto 1rem; }
.form-success.show { display: block; }
.form-success h3 { color: var(--heading); margin-bottom: .4rem; }

/* 18. ABOUT ============================================================== */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about__photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--ink-600), var(--ink-900)); box-shadow: var(--shadow-lg);
  display: grid; place-items: center; color: var(--gold-300);
}
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about__photo .monogram { font-family: var(--font-display); font-size: 5rem; opacity: .85; }
.about__photo .ph-note { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; font-size: var(--fs-xs); color: rgba(255,255,255,.55); text-align: center; }
.about__badges { position: absolute; top: 1rem; left: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.about__badges span { background: rgba(7,16,31,.7); backdrop-filter: blur(6px); color: var(--gold-300); font-size: var(--fs-xs); font-weight: 700; padding: .35rem .7rem; border-radius: var(--r-pill); letter-spacing: .04em; }
.about blockquote { font-family: var(--font-display); font-size: clamp(1.2rem,2vw,1.5rem); line-height: 1.4; color: var(--heading); margin: 1.3rem 0; padding-left: 1.2rem; border-left: 3px solid var(--gold-500); }
.about__sign { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.about__sign b { font-family: var(--font-display); font-size: 1.2rem; color: var(--heading); }
.about__sign span { font-size: var(--fs-sm); color: var(--text-mut); }
.credentials { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.credentials span { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 600; color: var(--text-soft); background: var(--cream); border: 1px solid var(--line); padding: .45rem .8rem; border-radius: var(--r-pill); }
.credentials svg { width: 15px; height: 15px; color: var(--gold-600); }

/* 19. FAQ ================================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--heading); font-weight: 600;
}
.faq__q:hover { color: var(--gold-600); }
.faq__icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background .2s, border-color .2s; color: var(--gold-600); }
.faq__icon svg { width: 16px; height: 16px; }
.faq__item[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--gold-500); color: #fff; border-color: var(--gold-500); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding-bottom: 1.4rem; color: var(--text-soft); font-size: var(--fs-body); }
.faq__a-inner a { color: var(--gold-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* 20. FINAL CTA ========================================================== */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 380px at 50% 0%, rgba(194,160,78,.18), transparent 60%); pointer-events:none; }
.final-cta__inner { max-width: 720px; margin-inline: auto; position: relative; }
.final-cta h2 { color: #fff; font-size: var(--fs-h2); }
.final-cta p { font-size: var(--fs-lead); margin: 1.2rem 0 2rem; }
.final-cta .btn-row { justify-content: center; }
.final-cta__assure { margin-top: 1.6rem; font-size: var(--fs-sm); color: var(--text-invert-soft); display: inline-flex; align-items: center; gap: .5rem; }
.final-cta__assure svg { width: 17px; height: 17px; color: var(--gold-400); }

/* 21. FOOTER ============================================================= */
.footer { background: var(--ink-900); color: var(--text-invert-soft); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand__name { color: #fff; }
.footer__about { max-width: 32ch; font-size: var(--fs-sm); margin-top: 1.1rem; color: var(--text-invert-soft); }
.footer__col h4 { color: #fff; font-family: var(--font-sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: .35rem 0; font-size: var(--fs-sm); color: var(--text-invert-soft); transition: color .2s; }
.footer__col a:hover { color: var(--gold-400); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); padding: .35rem 0; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: var(--text-invert-soft); transition: background .2s, color .2s; }
.footer__social a:hover { background: var(--gold-500); color: var(--ink-900); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line-dark); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: var(--fs-xs); color: var(--text-mut); }
.footer__bottom a { color: var(--text-mut); }
.footer__bottom a:hover { color: var(--gold-400); }
.footer__legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* 22. FLOATING MOBILE CTA ================================================ */
.floating-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--glass-bg); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: .7rem clamp(1rem,4vw,1.5rem);
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -4px 20px rgba(10,26,47,.08);
  transform: translateY(100%); transition: transform .35s var(--ease);
}
.floating-cta.show { transform: translateY(0); }
.floating-cta__txt b { display: block; font-size: .9rem; color: var(--heading); }
.floating-cta__txt span { font-size: var(--fs-xs); color: var(--text-mut); }
.floating-cta .btn { padding: .75rem 1.3rem; font-size: .9rem; }
@media (max-width: 760px) { .floating-cta { display: flex; } body { padding-bottom: 72px; } }

/* 23. REVEAL ON SCROLL =================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* 24. REDUCED MOTION & PRINT ============================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .site-header, .floating-cta, .nav-toggle, .hero__visual { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   25. COLOR THEMES
   The default palette above (:root) is "Midnight Gold". The blocks below
   re-map the same tokens for the other three themes. Toggle by setting
   data-theme="evergreen|sapphire|onyx" on <html>.
   ========================================================================== */

/* ---- Theme: Evergreen (forest green + warm) --------------------------- */
[data-theme="evergreen"] {
  --ink-900:#06130d; --ink-800:#0a1f16; --ink-700:#0f2a20; --ink-600:#15392c; --navy:#0f2a20;
  --gold-600:#15705a; --gold-500:#1f8a6e; --gold-400:#34a98a; --gold-300:#a7dccc;
  --emerald-600:#1f8a6e; --emerald-500:#34a98a;
  --bone:#f7faf8; --cream:#eef4f0; --paper:#ffffff; --line:#dce8e1; --line-dark:rgba(255,255,255,.12);
  --text:#15241d; --text-soft:#43554d; --text-mut:#6a7c73; --text-invert:#eaf3ee; --text-invert-soft:#b3c9bf;
  --heading:#0a1f16; --on-accent:#ffffff; --glass-bg:rgba(247,250,248,.88);
  --shadow-gold:0 12px 30px rgba(31,138,110,.28);
}

/* ---- Theme: Royal Sapphire (deep blue + azure) ------------------------ */
[data-theme="sapphire"] {
  --ink-900:#08112a; --ink-800:#0c1a3c; --ink-700:#112450; --ink-600:#173066; --navy:#112450;
  --gold-600:#1f5fae; --gold-500:#2e72c8; --gold-400:#5a93dd; --gold-300:#b9d2f2;
  --emerald-600:#1c7d6b; --emerald-500:#2a8a72;
  --bone:#f8f9fc; --cream:#eef1f8; --paper:#ffffff; --line:#e0e6f1; --line-dark:rgba(255,255,255,.12);
  --text:#16203a; --text-soft:#48546e; --text-mut:#6b7689; --text-invert:#eef2fb; --text-invert-soft:#b6c2da;
  --heading:#0c1a3c; --on-accent:#ffffff; --glass-bg:rgba(248,249,252,.88);
  --shadow-gold:0 12px 30px rgba(46,114,200,.30);
}

/* ---- Theme: Onyx (true dark mode + bronze) ---------------------------- */
[data-theme="onyx"] {
  --ink-900:#060a12; --ink-800:#0f1826; --ink-700:#17202f; --ink-600:#202a3b; --navy:#0f1826;
  --gold-600:#b09a5a; --gold-500:#d6c07a; --gold-400:#e6d49a; --gold-300:#f1e6c2;
  --emerald-600:#3fbf93; --emerald-500:#52d3a6;
  --bone:#0c1119; --cream:#121a26; --paper:#19222f; --line:rgba(255,255,255,.10); --line-dark:rgba(255,255,255,.10);
  --text:#d8dfe7; --text-soft:#aab6c2; --text-mut:#7e8b98; --text-invert:#eef2f6; --text-invert-soft:#b7c4d2;
  --heading:#f2f5f8; --on-accent:#1c1303; --glass-bg:rgba(12,17,25,.85);
  --shadow-gold:0 12px 30px rgba(214,192,122,.16);
}
/* Onyx-specific contrast lifts on otherwise-dark-on-dark elements */
[data-theme="onyx"] .btn--dark { background: var(--ink-600); border: 1px solid var(--line); }
[data-theme="onyx"] .btn--dark:hover { background: var(--ink-700); }
[data-theme="onyx"] .logo-cloud span, [data-theme="onyx"] .logo-cloud a { color: #8896a4; }
[data-theme="onyx"] .logo-cloud span:hover, [data-theme="onyx"] .logo-cloud a:hover { color: var(--gold-400); }
[data-theme="onyx"] .field input,
[data-theme="onyx"] .field select { background: var(--ink-900); }
[data-theme="onyx"] .hero__badge { background: var(--ink-700); }

/* ---- Theme: Burgundy (deep wine + rose-gold, light) ------------------- */
[data-theme="burgundy"] {
  --ink-900:#260a10; --ink-800:#3a1119; --ink-700:#4c1622; --ink-600:#641f2d; --navy:#3a1119;
  --gold-600:#b06d4d; --gold-500:#c98a68; --gold-400:#dba588; --gold-300:#eecdb9;
  --emerald-600:#1f8a6e; --emerald-500:#34a98a;
  --bone:#fbf7f5; --cream:#f5ece9; --paper:#ffffff; --line:#ecddd7; --line-dark:rgba(255,255,255,.12);
  --text:#2c1419; --text-soft:#5e4248; --text-mut:#8a6e72; --text-invert:#f6eceb; --text-invert-soft:#dabfc1;
  --heading:#3a1119; --on-accent:#2a0d12; --glass-bg:rgba(251,247,245,.88);
  --shadow-gold:0 12px 30px rgba(201,138,104,.28);
}

/* ---- Theme: Plum Noir (deep aubergine + gold, dark) ------------------- */
[data-theme="plum"] {
  --ink-900:#0e0818; --ink-800:#1a1030; --ink-700:#241640; --ink-600:#33205a; --navy:#1a1030;
  --gold-600:#c2a04e; --gold-500:#dcc06e; --gold-400:#e8d28e; --gold-300:#f0e3ba;
  --emerald-600:#46c08f; --emerald-500:#6fd6aa;
  --bone:#140c20; --cream:#1c1430; --paper:#241a3a; --line:rgba(255,255,255,.10); --line-dark:rgba(255,255,255,.10);
  --text:#ddd5ea; --text-soft:#ada3c0; --text-mut:#7f7595; --text-invert:#f1ecf8; --text-invert-soft:#cabfda;
  --heading:#f3eefb; --on-accent:#1c1303; --glass-bg:rgba(20,12,32,.85);
  --shadow-gold:0 12px 30px rgba(220,192,110,.18);
}

/* ---- Theme: Slate Noir (charcoal slate + teal, dark) ------------------ */
[data-theme="slate"] {
  --ink-900:#080e10; --ink-800:#101a1e; --ink-700:#17262b; --ink-600:#21363d; --navy:#101a1e;
  --gold-600:#1aa39c; --gold-500:#2bc4bd; --gold-400:#5ed8d2; --gold-300:#aeeae6;
  --emerald-600:#2bc4bd; --emerald-500:#5ed8d2;
  --bone:#0d1417; --cream:#141e22; --paper:#1a262b; --line:rgba(255,255,255,.10); --line-dark:rgba(255,255,255,.10);
  --text:#d6e1e2; --text-soft:#a4b4b6; --text-mut:#788a8c; --text-invert:#eef5f5; --text-invert-soft:#b6cccb;
  --heading:#eff6f6; --on-accent:#04211f; --glass-bg:rgba(13,20,23,.85);
  --shadow-gold:0 12px 30px rgba(43,196,189,.18);
}
/* Plum & Slate are dark themes — same contrast lifts as Onyx/Graphite */
[data-theme="plum"] .btn--dark, [data-theme="slate"] .btn--dark { background: var(--ink-600); border: 1px solid var(--line); }
[data-theme="plum"] .btn--dark:hover, [data-theme="slate"] .btn--dark:hover { background: var(--ink-700); }
[data-theme="plum"] .logo-cloud span, [data-theme="plum"] .logo-cloud a, [data-theme="slate"] .logo-cloud span, [data-theme="slate"] .logo-cloud a { color: #8896a4; }
[data-theme="plum"] .logo-cloud span:hover, [data-theme="plum"] .logo-cloud a:hover, [data-theme="slate"] .logo-cloud span:hover, [data-theme="slate"] .logo-cloud a:hover { color: var(--heading); }
[data-theme="plum"] .field input, [data-theme="plum"] .field select, [data-theme="slate"] .field input, [data-theme="slate"] .field select { background: var(--ink-900); }
[data-theme="plum"] .hero__badge, [data-theme="slate"] .hero__badge { background: var(--ink-700); }

/* ---- Theme: Graphite (charcoal + emerald, dark) ----------------------- */
[data-theme="graphite"] {
  --ink-900:#080c0d; --ink-800:#121a1b; --ink-700:#1a2425; --ink-600:#243031; --navy:#121a1b;
  --gold-600:#2f9e76; --gold-500:#46c08f; --gold-400:#6fd6aa; --gold-300:#aee8cd;
  --emerald-600:#46c08f; --emerald-500:#6fd6aa;
  --bone:#0c1112; --cream:#141b1c; --paper:#1a2324; --line:rgba(255,255,255,.10); --line-dark:rgba(255,255,255,.10);
  --text:#dce5e2; --text-soft:#a8b6b1; --text-mut:#7c8a85; --text-invert:#eef4f1; --text-invert-soft:#b7c8c1;
  --heading:#f1f6f3; --on-accent:#06231a; --glass-bg:rgba(12,17,18,.85);
  --shadow-gold:0 12px 30px rgba(70,192,143,.18);
}
/* Graphite contrast lifts (it's a dark theme, like Onyx) */
[data-theme="graphite"] .btn--dark { background: var(--ink-600); border: 1px solid var(--line); }
[data-theme="graphite"] .btn--dark:hover { background: var(--ink-700); }
[data-theme="graphite"] .logo-cloud span, [data-theme="graphite"] .logo-cloud a { color: #8a9a95; }
[data-theme="graphite"] .logo-cloud span:hover, [data-theme="graphite"] .logo-cloud a:hover { color: var(--heading); }
[data-theme="graphite"] .field input, [data-theme="graphite"] .field select { background: var(--ink-900); }
[data-theme="graphite"] .hero__badge { background: var(--ink-700); }

/* ==========================================================================
   25B. DESIGN STYLES (independent of color — typography, shape, shadow)
   Default (no attribute) = "Classic". Toggle via data-style on <html>.
   Combine freely with any color theme = 4 styles × 4 colors = 16 looks.
   ========================================================================== */

/* ======================================================================
   Style: MINIMAL — Swiss / editorial index. Full-width typographic hero
   (no dashboard), left-aligned everything, hairline-divided rows instead
   of cards, extra-wide canvas, lots of air.
   ====================================================================== */
[data-style="minimal"] {
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-sans: "Inter", sans-serif;
  --r-sm: 4px; --r-md: 6px; --r-lg: 8px; --r-xl: 10px; --r-pill: 4px;
  --shadow-sm: none; --shadow-md: none; --shadow-lg: 0 10px 30px rgba(10,26,47,.08);
  --maxw: 1340px;
}
[data-style="minimal"] h1, [data-style="minimal"] h2,
[data-style="minimal"] h3, [data-style="minimal"] h4 { letter-spacing: -0.025em; font-weight: 600; }
[data-style="minimal"] .btn { border-radius: 4px; }
[data-style="minimal"] .section { padding-block: clamp(4rem, 9vw, 8.5rem); }
/* Left-align all section headers; reveal the accent rule */
[data-style="minimal"] .section-head.center { text-align: left; margin-inline: 0; max-width: 720px; }
[data-style="minimal"] .eyebrow.center::before { display: inline-block; }
[data-style="minimal"] .btn-row.center { justify-content: flex-start; }
/* Typographic hero — drop the dashboard; headline spans the FULL width and
   wraps to ~2 lines, with a full-width hairline beneath it. The lead + CTAs
   then sit in a two-column band so the whole width is used (no lopsided void). */
[data-style="minimal"] .hero { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
[data-style="minimal"] .hero__grid { grid-template-columns: 1fr; }
[data-style="minimal"] .hero__visual { display: none; }
[data-style="minimal"] .hero__copy { max-width: none; display: grid; grid-template-columns: 1fr; }
[data-style="minimal"] .hero__badge { justify-self: start; }
[data-style="minimal"] .hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.3rem); padding-bottom: 1.6rem; margin-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
[data-style="minimal"] .hero__lead { max-width: 60ch; margin-top: 0; }
[data-style="minimal"] .hero__assurances { margin-top: 1.6rem; }
/* Services as a clean hairline index, not cards */
[data-style="minimal"] .svc-grid { grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
[data-style="minimal"] .svc { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; padding: 2.4rem 2rem 2.4rem 0; }
[data-style="minimal"] .svc:nth-child(odd) { padding-right: 2.5rem; border-right: 1px solid var(--line); padding-left: 0; }
[data-style="minimal"] .svc:nth-child(even) { padding-left: 2.5rem; }
[data-style="minimal"] .svc::after { display: none; }
[data-style="minimal"] .svc:hover { transform: none; box-shadow: none; border-color: var(--line); border-right-color: var(--line); }
[data-style="minimal"] .svc__icon { width: 0; height: 0; margin: 0; background: none; }
[data-style="minimal"] .svc__icon svg { width: 26px; height: 26px; color: var(--gold-600); }
/* Strip card chrome elsewhere → hairline blocks */
[data-style="minimal"] .pain, [data-style="minimal"] .step,
[data-style="minimal"] .tst, [data-style="minimal"] .plan { box-shadow: none; }
[data-style="minimal"] .pain { border-radius: 0; border-color: transparent; border-top: 2px solid var(--heading); }
[data-style="minimal"] .pain:hover { transform: none; box-shadow: none; }
[data-style="minimal"] .pain-bridge { text-align: left; margin-inline: 0; max-width: 30ch; }
[data-style="minimal"] .process { gap: 0; }
[data-style="minimal"] .step { border-radius: 0; border: 0; border-top: 2px solid var(--heading); }

/* ======================================================================
   Style: BOLD — Agency. Oversized headlines, wide canvas, left-aligned,
   2-column thick-bordered blocks, huge stats.
   ====================================================================== */
[data-style="bold"] {
  --font-display: "Sora", "Inter", sans-serif;
  --font-sans: "Inter", sans-serif;
  --r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-pill: 8px;
  --shadow-sm: 0 2px 6px rgba(10,26,47,.10);
  --shadow-md: 0 12px 28px rgba(10,26,47,.14);
  --shadow-lg: 0 30px 70px rgba(10,26,47,.20);
  --maxw: 1340px;
  --fs-hero: clamp(2.8rem, 6vw, 5rem);
  --fs-h2: clamp(2.2rem, 4vw, 3.5rem);
  --fs-lead: clamp(1.12rem, 1.6vw, 1.4rem);
}
[data-style="bold"] h1, [data-style="bold"] h2,
[data-style="bold"] h3, [data-style="bold"] h4 { font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; }
[data-style="bold"] .btn { border-radius: 8px; font-weight: 700; padding: 1.05rem 2rem; }
[data-style="bold"] .btn--lg { padding: 1.25rem 2.4rem; }
[data-style="bold"] .eyebrow { font-weight: 800; font-size: .82rem; }
/* Headline-dominant hero */
[data-style="bold"] .hero__grid { grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem,3vw,3rem); align-items: center; }
/* Left-aligned, oversized section headers with a thick accent rule */
[data-style="bold"] .section-head.center { text-align: left; margin-inline: 0; max-width: 820px; }
[data-style="bold"] .section-head.center .h2 { position: relative; padding-top: 1.1rem; }
[data-style="bold"] .section-head.center .h2::before { content:""; position:absolute; top:0; left:0; width:64px; height:6px; background: var(--gold-500); border-radius: 3px; }
[data-style="bold"] .eyebrow.center::before { display: inline-block; }
[data-style="bold"] .btn-row.center { justify-content: flex-start; }
[data-style="bold"] .pain-bridge { text-align: left; margin-inline: 0; }
/* Big 2-up blocks with heavy borders */
[data-style="bold"] .svc-grid { grid-template-columns: 1fr 1fr; }
[data-style="bold"] .svc { border: 2px solid var(--heading); box-shadow: none; }
[data-style="bold"] .svc:hover { box-shadow: var(--shadow-md); border-color: var(--gold-500); }
[data-style="bold"] .svc h3 { font-size: 1.5rem; }
/* Huge stats, 2×2 */
[data-style="bold"] .stats { grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); }
[data-style="bold"] .stat__num { font-size: clamp(3rem, 9vw, 5.5rem); }
/* Two-up process */
[data-style="bold"] .process { grid-template-columns: 1fr 1fr; }

/* ======================================================================
   Style: LUXE — Editorial. Narrow centered column, centered hero with the
   dashboard below, centered serif cards, generous air.
   ====================================================================== */
[data-style="luxe"] {
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", sans-serif;
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 36px; --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(10,26,47,.06);
  --shadow-md: 0 14px 40px rgba(10,26,47,.10);
  --shadow-lg: 0 30px 80px rgba(10,26,47,.16);
  --maxw: 1060px;
}
[data-style="luxe"] h1, [data-style="luxe"] h2,
[data-style="luxe"] h3, [data-style="luxe"] h4 { font-weight: 600; letter-spacing: 0; }
[data-style="luxe"] .eyebrow { letter-spacing: .24em; }
[data-style="luxe"] .section { padding-block: clamp(4rem, 9vw, 8rem); }
/* Centered, stacked hero — dashboard sits beneath the copy */
[data-style="luxe"] .hero__grid { grid-template-columns: 1fr; text-align: center; gap: clamp(2rem, 4vw, 3rem); }
[data-style="luxe"] .hero__copy { max-width: 760px; margin-inline: auto; }
[data-style="luxe"] .hero__badge { margin-inline: auto; }
[data-style="luxe"] .hero__lead { margin-inline: auto; max-width: 56ch; }
[data-style="luxe"] .hero .btn-row { justify-content: center; }
[data-style="luxe"] .hero__assurances { justify-content: center; }
[data-style="luxe"] .hero__visual { max-width: 820px; margin: 0 auto; width: 100%; }
/* Centered service cards, no side accent bar */
[data-style="luxe"] .svc { text-align: center; }
[data-style="luxe"] .svc::after { display: none; }
[data-style="luxe"] .svc__icon { margin-inline: auto; }
[data-style="luxe"] .svc ul { display: inline-block; text-align: left; }
/* Centered differentiators + about for an editorial feel */
[data-style="luxe"] .diff-grid, [data-style="luxe"] .magnet__grid { gap: clamp(2rem,4vw,3.5rem); }

/* The Bold/Minimal left-align overrides are meant for section HEADERS — keep
   the centered final-CTA (a hero-style block) fully centered in those styles. */
[data-style="bold"] .final-cta .btn-row.center,
[data-style="minimal"] .final-cta .btn-row.center { justify-content: center; }
[data-style="bold"] .final-cta .eyebrow.center::before,
[data-style="minimal"] .final-cta .eyebrow.center::before { display: none; }

/* Mobile guards — collapse style-specific multi-column grids on phones
   (these out-specify the base mobile rules, so restate them here). */
@media (max-width: 640px) {
  [data-style="bold"] .svc-grid, [data-style="minimal"] .svc-grid,
  [data-style="bold"] .process { grid-template-columns: 1fr; }
  [data-style="minimal"] .svc, [data-style="minimal"] .svc:nth-child(odd),
  [data-style="minimal"] .svc:nth-child(even) { border-right: 0; padding-left: 0; padding-right: 0; }
}

/* ==========================================================================
   26. APPEARANCE SWITCHER (header — style + color control)
   ========================================================================== */
.header-right { display: flex; align-items: center; gap: .85rem; }

/* Appearance switcher is private: hidden for the public, shown only in Studio mode
   (html.studio, enabled by visiting ?studio=1). */
.theme-switch { position: relative; display: none; }
html.studio .theme-switch { display: block; }

/* Studio toolbar (injected by main.js only in Studio mode) */
.studio-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 2000; display: flex; align-items: center; gap: .9rem;
  background: #0b1220; color: #fff; border: 1px solid rgba(255,255,255,.14);
  padding: .6rem .8rem .6rem 1rem; border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0,0,0,.4); font-size: 13px; max-width: calc(100vw - 1.5rem);
}
.studio-bar__dot { width: 8px; height: 8px; border-radius: 50%; background: #f0b429; box-shadow: 0 0 0 4px rgba(240,180,41,.18); flex: none; }
.studio-bar__label { white-space: nowrap; opacity: .9; }
.studio-bar__label b { color: #ffd97a; font-weight: 700; }
.studio-bar__apply {
  border: none; cursor: pointer; font: inherit; font-weight: 700;
  background: #f0b429; color: #1a1206; padding: .5rem .9rem; border-radius: 999px;
  transition: transform .15s ease, filter .15s ease;
}
.studio-bar__apply:hover { filter: brightness(1.06); transform: translateY(-1px); }
.studio-bar__apply:disabled { opacity: .6; cursor: default; transform: none; }
.studio-bar__exit { color: rgba(255,255,255,.6); text-decoration: none; font-size: 12px; padding: .3rem .2rem; }
.studio-bar__exit:hover { color: #fff; }
.studio-bar__msg { white-space: nowrap; }
.studio-bar__msg.ok { color: #7ee0a8; }
.studio-bar__msg.err { color: #ff9a8a; }
@media (max-width: 560px) { .studio-bar { flex-wrap: wrap; justify-content: center; border-radius: 16px; } }
.theme-switch__btn {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--heading);
  border: 1.5px solid var(--line); background: var(--paper);
  transition: border-color .2s, transform .2s var(--ease), background .2s;
}
.theme-switch__btn svg { width: 20px; height: 20px; }
.theme-switch__btn:hover { border-color: var(--gold-500); transform: translateY(-1px); }
.theme-switch__btn .dot {
  position: absolute; top: 6px; right: 6px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold-500); border: 1.5px solid var(--paper);
}

.theme-menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 320px; max-width: calc(100vw - 1.5rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: .85rem; z-index: 120;
  opacity: 0; transform: translateY(-8px) scale(.98); transform-origin: top right;
  pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.theme-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.theme-menu__title { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mut); padding: .2rem .2rem .55rem; }
.theme-menu__sep { height: 1px; background: var(--line); margin: .85rem .1rem; }

/* Style picker (2×2 grid of font-preview chips) */
.style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.style-option {
  display: flex; align-items: center; gap: .6rem; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: .55rem .65rem;
  color: var(--heading); transition: border-color .15s, background .15s; text-align: left;
}
.style-option:hover { background: var(--cream); }
.style-option[aria-checked="true"] { border-color: var(--gold-500); background: var(--cream); }
.style-option__aa { width: 26px; text-align: center; font-size: 1.35rem; line-height: 1; color: var(--gold-600); }
.style-option__name { font-size: .85rem; font-weight: 600; }
.sty-classic .style-option__aa { font-family: "Fraunces", Georgia, serif; }
.sty-minimal .style-option__aa { font-family: "Space Grotesk", "Inter", sans-serif; }
.sty-bold .style-option__aa { font-family: "Sora", "Inter", sans-serif; font-weight: 800; }
.sty-luxe .style-option__aa { font-family: "Playfair Display", Georgia, serif; }

/* Color picker (row of 4 swatch chips) */
.color-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.color-option {
  cursor: pointer; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .4rem .35rem .45rem; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  transition: border-color .15s, background .15s;
}
.color-option:hover { background: var(--cream); }
.color-option[aria-checked="true"] { border-color: var(--gold-500); background: var(--cream); }
.color-option .theme-option__swatch { width: 100%; height: 24px; }
.color-option__name { font-size: 10px; font-weight: 600; letter-spacing: .01em; color: var(--text-soft); }
.color-option[aria-checked="true"] .color-option__name { color: var(--heading); }
.color-group-label { grid-column: 1 / -1; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mut); margin-top: .35rem; }
.color-group-label:first-child { margin-top: 0; }
.theme-option {
  width: 100%; display: flex; align-items: center; gap: .75rem;
  padding: .65rem .6rem; border-radius: var(--r-sm); text-align: left;
  color: var(--heading); font-size: .92rem; font-weight: 500; transition: background .15s;
}
.theme-option:hover { background: var(--cream); }
.theme-option__swatch {
  width: 34px; height: 22px; border-radius: 6px; flex-shrink: 0; position: relative;
  border: 1px solid var(--line); overflow: hidden;
}
.theme-option__swatch i { position: absolute; inset: 0; }
.theme-option__swatch i:nth-child(2) { left: 55%; }
.theme-option__label { flex-grow: 1; }
.theme-option__label small { display: block; font-size: var(--fs-xs); color: var(--text-mut); font-weight: 400; }
.theme-option__check { width: 18px; height: 18px; color: var(--gold-600); opacity: 0; flex-shrink: 0; }
.theme-option[aria-checked="true"] .theme-option__check { opacity: 1; }
.theme-option[aria-checked="true"] { background: var(--cream); }

/* Swatch fills — fixed colors so the menu previews every theme correctly */
.sw-midnight i:first-child { background:#0a1a2f; } .sw-midnight i:last-child { background:#c2a04e; }
.sw-evergreen i:first-child { background:#0a1f16; } .sw-evergreen i:last-child { background:#1f8a6e; }
.sw-sapphire i:first-child { background:#0c1a3c; } .sw-sapphire i:last-child { background:#2e72c8; }
.sw-onyx i:first-child { background:#0c1119; } .sw-onyx i:last-child { background:#d6c07a; }
.sw-burgundy i:first-child { background:#3a1119; } .sw-burgundy i:last-child { background:#c98a68; }
.sw-plum i:first-child { background:#140c20; } .sw-plum i:last-child { background:#dcc06e; }
.sw-slate i:first-child { background:#0d1417; } .sw-slate i:last-child { background:#2bc4bd; }
.sw-graphite i:first-child { background:#0c1112; } .sw-graphite i:last-child { background:#46c08f; }

@media (max-width: 980px) {
  .theme-menu { width: 240px; }
}

/* ==========================================================================
   27. LEGAL PAGES (privacy / terms)
   ========================================================================== */
.legal-hero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background: radial-gradient(900px 460px at 78% -10%, rgba(194,160,78,.12), transparent 60%), var(--bone);
}
.legal-hero .eyebrow { margin-bottom: .8rem; }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.legal__updated { margin-top: 1rem; font-size: var(--fs-sm); color: var(--text-mut); }
.legal { max-width: 800px; margin-inline: auto; padding-bottom: clamp(3rem, 6vw, 5rem); }
.legal__note {
  background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--gold-500);
  border-radius: var(--r-sm); padding: 1rem 1.25rem; margin-bottom: 2.5rem; font-size: var(--fs-sm); color: var(--text-soft);
}
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin: 2.4rem 0 .8rem; color: var(--heading); }
.legal h3 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; color: var(--heading); margin: 1.4rem 0 .5rem; }
.legal p { margin-bottom: 1rem; color: var(--text-soft); }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal li { color: var(--text-soft); margin-bottom: .5rem; }
.legal a { color: var(--gold-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--heading); }
.legal__contact { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem 1.6rem; margin-top: 2rem; box-shadow: var(--shadow-sm); }
.legal__contact h3 { margin-top: 0; }

/* ==========================================================================
   28. SCARCITY TOP BAR
   ========================================================================== */
body.has-topbar { --topbar-h: 44px; }
.topbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-h); z-index: 101;
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  background: linear-gradient(90deg, var(--ink-800), var(--ink-600));
  color: #fff; font-size: .88rem; font-weight: 500; padding: 0 2.8rem; text-align: center;
}
body:not(.has-topbar) .topbar { display: none; }
.topbar strong { color: var(--gold-400); font-weight: 700; }
.topbar a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.topbar a:hover { color: var(--gold-300); }
.topbar .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); flex-shrink: 0; animation: tb-pulse 2s infinite; }
@keyframes tb-pulse { 0% { box-shadow: 0 0 0 0 rgba(212,184,110,.6); } 70% { box-shadow: 0 0 0 8px rgba(212,184,110,0); } 100% { box-shadow: 0 0 0 0 rgba(212,184,110,0); } }
.topbar__close { position: absolute; right: .5rem; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.7); }
.topbar__close:hover { background: rgba(255,255,255,.14); color: #fff; }
.topbar__close svg { width: 14px; height: 14px; }
@media (max-width: 600px) {
  body.has-topbar { --topbar-h: 56px; }
  .topbar { font-size: .76rem; line-height: 1.25; padding: 0 2.4rem; }
}

/* ==========================================================================
   29. ROI / SAVINGS CALCULATOR
   ========================================================================== */
.calc-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }
.calc__inputs { padding: clamp(1.6rem, 3vw, 2.5rem); }
.calc__inputs h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; color: var(--heading); margin-bottom: .4rem; }
.calc__inputs > p { font-size: var(--fs-sm); margin-bottom: 1.6rem; }
.calc-field { margin-bottom: 1.7rem; }
.calc-field > label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; color: var(--heading); margin-bottom: .7rem; font-size: .95rem; }
.calc-field > label b { color: var(--gold-600); font-family: var(--font-display); font-size: 1.15rem; }
.calc-range { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px; background: var(--cream); outline: none; cursor: pointer; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); border: 3px solid var(--paper); box-shadow: var(--shadow-md); cursor: pointer; }
.calc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-500); border: 3px solid var(--paper); box-shadow: var(--shadow-md); cursor: pointer; }
.calc-seg { display: flex; gap: .5rem; flex-wrap: wrap; }
.calc-seg button { flex: 1; min-width: 88px; padding: .65rem .7rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-weight: 600; font-size: .85rem; color: var(--text-soft); background: var(--paper); transition: border-color .15s, background .15s, color .15s; }
.calc-seg button[aria-pressed="true"] { border-color: var(--gold-500); background: rgba(194,160,78,.1); color: var(--heading); }
.calc__results { padding: clamp(1.6rem, 3vw, 2.5rem); background: linear-gradient(160deg, var(--ink-700), var(--ink-900)); color: #fff; position: relative; overflow: hidden; }
.calc__results::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 220px at 90% 0%, rgba(194,160,78,.18), transparent 60%); pointer-events: none; }
.calc__results h3 { color: #fff; font-family: var(--font-sans); font-size: 1.1rem; position: relative; margin-bottom: 1.3rem; }
.calc-result { position: relative; margin-bottom: 1.25rem; }
.calc-result span { font-size: .76rem; color: var(--text-invert-soft); text-transform: uppercase; letter-spacing: .08em; }
.calc-result b { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); color: #fff; line-height: 1.05; margin-top: .15rem; }
.calc-result.accent b { color: var(--gold-400); }
.calc-waiting { position: relative; background: rgba(193,73,73,.16); border: 1px solid rgba(240,163,163,.32); border-radius: var(--r-md); padding: 1rem 1.2rem; margin-top: 1.4rem; }
.calc-waiting span { font-size: .76rem; color: #f1c4c4; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.calc-waiting b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-top: .15rem; }
.calc-waiting b small { font-family: var(--font-sans); font-size: .85rem; font-weight: 500; color: #f1c4c4; }
.calc__cta { position: relative; margin-top: 1.5rem; }
.calc__note { position: relative; font-size: var(--fs-xs); color: var(--text-invert-soft); margin-top: 1rem; }

/* ==========================================================================
   30. OFFER STACK + GUARANTEE (final CTA)
   ========================================================================== */
.offer-stack { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 1.5rem 1.6rem; max-width: 520px; margin: 2rem auto 0; text-align: left; backdrop-filter: blur(4px); }
.offer-stack__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.offer-stack__head h3 { color: #fff; font-family: var(--font-sans); font-size: 1.02rem; font-weight: 700; }
.offer-stack__value { font-size: var(--fs-xs); font-weight: 700; color: var(--ink-900); background: var(--gold-400); padding: .3rem .7rem; border-radius: var(--r-pill); white-space: nowrap; }
.offer-stack ul { display: flex; flex-direction: column; gap: .65rem; }
.offer-stack li { display: flex; gap: .6rem; font-size: var(--fs-sm); color: #e9eef3; align-items: flex-start; }
.offer-stack li svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.guarantee { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.6rem; padding: .7rem 1.2rem; border: 1px dashed rgba(255,255,255,.3); border-radius: var(--r-pill); font-size: var(--fs-sm); color: #fff; }
.guarantee svg { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; }
.scarcity-line { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.5rem; font-size: var(--fs-sm); font-weight: 600; color: var(--gold-300); }
.scarcity-line .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-400); animation: tb-pulse 2s infinite; }

/* ==========================================================================
   31. COOKIE CONSENT BANNER
   ========================================================================== */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; max-width: 580px; margin-inline: auto; z-index: 130;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.3rem; display: none; gap: 1rem 1.2rem; align-items: center; flex-wrap: wrap;
}
.cookie.show { display: flex; animation: cookie-in .4s var(--ease); }
@keyframes cookie-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cookie p { font-size: var(--fs-sm); margin: 0; flex: 1 1 260px; color: var(--text-soft); }
.cookie a { color: var(--gold-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: .6rem; }
.cookie__actions .btn { padding: .6rem 1.15rem; font-size: .86rem; }
@media (max-width: 760px) { .cookie { bottom: 84px; } }

/* ==========================================================================
   32. BLOG / INSIGHTS HUB + ARTICLES
   ========================================================================== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 940px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s; height: 100%;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__thumb { aspect-ratio: 16 / 9; position: relative; display: grid; place-items: center; overflow: hidden; }
.post-card__thumb svg { width: 56px; height: 56px; color: #fff; opacity: .92; position: relative; }
.post-card__thumb.g1 { background: linear-gradient(140deg, var(--ink-600), var(--ink-900)); }
.post-card__thumb.g2 { background: linear-gradient(140deg, var(--gold-600), #6e531c); }
.post-card__thumb.g3 { background: linear-gradient(140deg, var(--emerald-600), var(--ink-800)); }
.post-card__cat { position: absolute; top: .9rem; left: .9rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(7,16,31,.55); backdrop-filter: blur(4px); padding: .3rem .7rem; border-radius: var(--r-pill); }
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-card h3 { font-size: 1.2rem; line-height: 1.25; margin-bottom: .55rem; }
.post-card h3 a { color: var(--heading); transition: color .2s; }
.post-card:hover h3 a { color: var(--gold-600); }
.post-card p { font-size: var(--fs-sm); margin-bottom: 1.1rem; flex-grow: 1; }
.post-card__meta { display: flex; align-items: center; gap: .6rem; font-size: var(--fs-xs); color: var(--text-mut); margin-top: auto; }
.post-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-mut); }

.post-card--feature { grid-column: 1 / -1; flex-direction: row; }
@media (max-width: 760px) { .post-card--feature { flex-direction: column; } }
.post-card--feature .post-card__thumb { aspect-ratio: auto; flex: 0 0 44%; min-height: 280px; }
@media (max-width: 760px) { .post-card--feature .post-card__thumb { flex-basis: auto; min-height: 200px; aspect-ratio: 16/9; } }
.post-card--feature .post-card__body { justify-content: center; padding: clamp(1.5rem, 3vw, 2.6rem); }
.post-card--feature h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.post-card--feature p { font-size: var(--fs-body); }

/* Article (reading) page */
.article-hero { padding-top: calc(var(--header-h) + var(--topbar-h) + clamp(2rem, 5vw, 3.5rem)); padding-bottom: clamp(1rem, 2vw, 1.5rem); background: radial-gradient(900px 460px at 78% -10%, rgba(194,160,78,.12), transparent 60%), var(--bone); }
.article-hero .container { max-width: 800px; }
.article-hero__cat { color: var(--gold-600); font-weight: 700; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; }
.article-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin: .9rem 0 1.1rem; }
.article-meta { display: flex; align-items: center; gap: .7rem; font-size: var(--fs-sm); color: var(--text-mut); }
.article-meta .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--ink-600), var(--ink-900)); color: var(--gold-300); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: .85rem; }
.article-meta b { color: var(--heading); font-weight: 600; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-mut); }

.article { max-width: 720px; margin-inline: auto; padding-bottom: clamp(3rem, 6vw, 5rem); }
.article > .lead { font-size: var(--fs-lead); color: var(--text-soft); margin: 1.5rem 0; }
.article h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin: 2.4rem 0 .9rem; color: var(--heading); }
.article h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; margin: 1.6rem 0 .5rem; color: var(--heading); }
.article p { margin-bottom: 1.1rem; color: var(--text-soft); line-height: 1.75; }
.article ul, .article ol { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.article ul { list-style: disc; } .article ol { list-style: decimal; }
.article li { color: var(--text-soft); margin-bottom: .55rem; line-height: 1.7; }
.article a { color: var(--gold-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
/* Buttons inside the article must NOT inherit the underlined accent link style */
.article a.btn { text-decoration: none; }
.article a.btn--primary { color: var(--on-accent); }
.article a.btn--dark { color: #fff; }
.article a.btn--ghost { color: var(--heading); }
.article strong { color: var(--heading); }
.article blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.45; color: var(--heading); margin: 1.8rem 0; padding: .3rem 0 .3rem 1.4rem; border-left: 3px solid var(--gold-500); }
.article__callout { background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--gold-500); border-radius: var(--r-sm); padding: 1.3rem 1.5rem; margin: 1.8rem 0; }
.article__callout p:last-child { margin-bottom: 0; }
.article__cta { background: linear-gradient(135deg, var(--ink-700), var(--ink-900)); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); margin-top: 2.6rem; text-align: center; color: #fff; }
.article__cta h3 { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: .6rem; }
.article__cta p { color: var(--text-invert-soft); margin-bottom: 1.4rem; max-width: 46ch; margin-inline: auto; }
.article__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.2rem; }
.article__tags span { font-size: var(--fs-xs); font-weight: 600; color: var(--text-soft); background: var(--cream); border: 1px solid var(--line); padding: .35rem .8rem; border-radius: var(--r-pill); }

/* ==========================================================================
   33. FINANCIAL HEALTH SCORECARD (interactive quiz)
   ========================================================================== */
.scorecard { display: block; }
.sc-screen[hidden] { display: none; }
.sc-screen h3 { font-family: var(--font-sans); font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: .35rem; }
.sc-screen > p { font-size: var(--fs-sm); color: var(--text-mut); margin-bottom: 1.1rem; }

.sc-cats { display: flex; gap: .5rem; margin-bottom: 1.3rem; }
.sc-cats span { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: .8rem .4rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: var(--fs-xs); font-weight: 700; color: var(--heading); }
.sc-cats svg { width: 22px; height: 22px; color: var(--gold-600); }

/* Quiz */
.sc-progress { height: 6px; background: var(--cream); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 1rem; }
.sc-progress__bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-500), var(--gold-600)); border-radius: var(--r-pill); transition: width .35s var(--ease); }
.sc-qmeta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .85rem; font-size: var(--fs-xs); color: var(--text-mut); }
.sc-tag { font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-600); background: rgba(194,160,78,.12); padding: .25rem .6rem; border-radius: var(--r-pill); }
.sc-question { font-family: var(--font-sans) !important; font-size: 1.12rem !important; font-weight: 700; color: var(--heading); line-height: 1.35; margin-bottom: 1.1rem !important; }
.sc-options { display: flex; flex-direction: column; gap: .55rem; }
.sc-option { display: flex; align-items: center; gap: .7rem; text-align: left; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--paper); color: var(--text); font-size: var(--fs-sm); font-weight: 500; transition: border-color .15s, background .15s, transform .1s; }
.sc-option:hover { border-color: var(--gold-500); background: var(--cream); }
.sc-option:active { transform: scale(.99); }
.sc-option__dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; transition: border-color .15s, background .15s; }
.sc-option.is-selected { border-color: var(--gold-500); background: rgba(194,160,78,.08); }
.sc-option.is-selected .sc-option__dot { border-color: var(--gold-500); background: var(--gold-500); box-shadow: inset 0 0 0 3px var(--paper); }
.sc-back { margin-top: 1rem; font-size: .85rem; font-weight: 600; color: var(--text-mut); }
.sc-back:hover { color: var(--heading); }

/* Result */
.sc-gauge { position: relative; width: 144px; height: 144px; margin: 0 auto .5rem; }
.sc-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.sc-ring__track { fill: none; stroke: var(--cream); stroke-width: 10; }
.sc-ring__fill { fill: none; stroke: var(--gold-500); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1s var(--ease), stroke .4s; }
.sc-gauge__num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.sc-gauge__num b { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--heading); }
.sc-gauge__num span { font-size: .78rem; color: var(--text-mut); margin-top: .15rem; }
.sc-result__label { text-align: center; font-weight: 700; font-size: 1.05rem; color: var(--heading); margin-bottom: 1.4rem; }

.sc-bars { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.sc-bar__head { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 600; color: var(--heading); margin-bottom: .3rem; }
.sc-bar__head span:last-child { color: var(--text-mut); }
.sc-bar__track { height: 8px; background: var(--cream); border-radius: var(--r-pill); overflow: hidden; }
.sc-bar__fill { height: 100%; width: 0; border-radius: var(--r-pill); transition: width .9s var(--ease); }

.sc-risks__title { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: .75rem; }
.sc-risks { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.sc-risk { display: flex; gap: .8rem; padding: .85rem 1rem; background: var(--cream); border-radius: var(--r-sm); border-left: 3px solid var(--gold-500); }
.sc-risk__n { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-500); color: var(--on-accent); display: grid; place-items: center; font-size: .75rem; font-weight: 700; }
.sc-risk b { display: block; color: var(--heading); font-size: .88rem; margin-bottom: .15rem; }
.sc-risk span { font-size: .82rem; color: var(--text-soft); line-height: 1.45; }

.sc-capture { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.sc-capture p { font-size: .9rem; font-weight: 500; color: var(--text-soft); margin-bottom: .75rem; }

/* ==========================================================================
   34. FREE TOOLS HUB (directory cards + extra calculators)
   ========================================================================== */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tools-grid { grid-template-columns: 1fr; } }
.tool-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tool-card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(140deg, var(--ink-700), var(--ink-900)); color: var(--gold-400); margin-bottom: 1rem; }
.tool-card__icon svg { width: 24px; height: 24px; }
.tool-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.tool-card p { font-size: var(--fs-sm); margin-bottom: 1.1rem; flex-grow: 1; }
.tool-card .link-arrow { margin-top: auto; }

/* Verdict line (affordability calculator) */
.calc-verdict { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.08; }
.calc-verdict.good { color: #5fd0a8; }
.calc-verdict.ok { color: var(--gold-400); }
.calc-verdict.bad { color: #f0a3a3; }

/* ==========================================================================
   35. DIRECT-RESPONSE LANDING PAGE (paid traffic — stripped, 1:1 attention)
   ========================================================================== */
.lp-header { position: sticky; top: 0; z-index: 60; background: var(--glass-bg); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.lp-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.lp-header .brand__name { font-size: 1.05rem; }
.lp-header .btn { padding: .6rem 1.2rem; font-size: .9rem; }
@media (max-width: 540px) { .lp-header .btn { display: none; } }

.lp { max-width: 820px; margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 1.5rem); }
.lp-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; background: radial-gradient(900px 460px at 50% -10%, rgba(194,160,78,.12), transparent 60%), var(--bone); }
.lp-pre { display: inline-block; font-size: var(--fs-sm); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--gold-700, var(--gold-600)); background: rgba(194,160,78,.12); border: 1px solid var(--line); padding: .45rem 1rem; border-radius: var(--r-pill); margin-bottom: 1.4rem; }
.lp-h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.3rem; }
.lp-sub { font-size: var(--fs-lead); color: var(--text-soft); max-width: 40ch; margin: 0 auto 1.8rem; }

.lp p { font-size: 1.13rem; line-height: 1.78; color: var(--text-soft); margin-bottom: 1.25rem; }
.lp p.big { font-size: 1.32rem; line-height: 1.55; color: var(--heading); font-weight: 500; }
.lp p.kicker { font-size: 1.05rem; }
.lp strong { color: var(--heading); font-weight: 700; }
.lp h2 { font-size: clamp(1.55rem, 3.2vw, 2.25rem); line-height: 1.15; margin: 2.6rem 0 1.1rem; }
.lp ul.lp-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.lp ul.lp-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1.1rem; line-height: 1.6; color: var(--text-soft); margin-bottom: .8rem; }
.lp ul.lp-list svg { width: 22px; height: 22px; color: var(--emerald-600); flex-shrink: 0; margin-top: 4px; }
.hl { background: linear-gradient(transparent 56%, rgba(194,160,78,.42) 56%); padding: 0 .08em; color: inherit; font-weight: 600; }

.lp-cta { text-align: center; margin: 2.2rem 0; }
.lp-cta .btn { font-size: 1.12rem; padding: 1.15rem 2.3rem; white-space: normal; max-width: 100%; }
@media (max-width: 540px) { .lp-cta .btn { display: flex; width: 100%; padding-inline: 1.2rem; } }
.lp-cta small { display: block; margin-top: .8rem; font-size: var(--fs-sm); color: var(--text-mut); }

/* The Godfather offer / bonus stack */
.lp-offer { background: var(--paper); border: 1.5px solid var(--gold-500); border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); margin: 1.6rem 0; }
.lp-offer h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; color: var(--heading); margin-bottom: 1.1rem; }
.lp-offer ul { list-style: none; padding: 0; margin: 0; }
.lp-offer li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px dashed var(--line); }
.lp-offer li > span { display: flex; gap: .6rem; align-items: flex-start; font-size: 1.02rem; color: var(--text); }
.lp-offer li svg { width: 19px; height: 19px; color: var(--emerald-600); flex-shrink: 0; margin-top: 3px; }
.lp-offer li b { color: var(--gold-600); white-space: nowrap; font-size: .95rem; }
.lp-offer__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1.2rem; margin-top: .3rem; }
.lp-offer__total span { font-weight: 700; color: var(--heading); font-size: 1.05rem; }
.lp-offer__total b { font-family: var(--font-display); font-size: 1.5rem; color: var(--heading); }
.lp-offer__total b s { color: var(--text-mut); font-size: 1.05rem; font-weight: 400; margin-right: .5rem; }
.lp-offer__free { display: block; text-align: center; margin-top: 1rem; font-weight: 700; color: var(--emerald-600); font-size: 1.2rem; }

/* For you / not for you */
.lp-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 1.6rem 0; }
@media (max-width: 600px) { .lp-fit { grid-template-columns: 1fr; } }
.lp-fit__col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.lp-fit__col h4 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700; margin-bottom: .9rem; color: var(--heading); }
.lp-fit__col li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-soft); margin-bottom: .6rem; }
.lp-fit__col svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

.lp-ps { background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--gold-500); border-radius: var(--r-sm); padding: 1.4rem 1.6rem; margin-top: 2.2rem; }
.lp-ps p { font-size: 1.05rem; margin-bottom: .8rem; }
.lp-ps p:last-child { margin-bottom: 0; }

/* Sticky mobile CTA bar */
.lp-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--glass-bg); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: .7rem clamp(1rem,4vw,1.5rem); display: none; align-items: center; justify-content: space-between; gap: 1rem; box-shadow: 0 -4px 20px rgba(10,26,47,.08); transform: translateY(100%); transition: transform .35s var(--ease); }
.lp-bar.show { transform: translateY(0); }
.lp-bar b { font-size: .9rem; color: var(--heading); }
.lp-bar span { display: block; font-size: var(--fs-xs); color: var(--text-mut); }
@media (max-width: 760px) { .lp-bar { display: flex; } }
