/* ============================================================
   Dave Buys Houses — JV Dispo Marketing Landing
   Palette: Black / White / Gray + Navy + Brand Red accents
   ============================================================ */

:root {
  --ink:        #0a0a0a;
  --ink-2:      #171717;
  --ink-3:      #262626;
  --ink-4:      #404040;
  --gray-5:     #525252;
  --gray-4:     #737373;
  --gray-3:     #a3a3a3;
  --gray-2:     #d4d4d4;
  --gray-1:     #e5e5e5;
  --gray-0:     #f5f5f5;
  --bg:         #ffffff;
  --bg-soft:    #fafafa;
  --bg-dark:    #0b1020;
  --bg-dark-2:  #131a2e;
  --accent:     #1e2a44;
  --accent-2:   #14203a;
  --accent-soft:#e3e8f3;
  --brand-red:  #c84a36;
  --brand-red-2:#e0594a;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(0,0,0,.04), 0 2px 6px rgba(0,0,0,.04);
  --shadow:     0 4px 14px rgba(0,0,0,.06), 0 10px 30px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.10), 0 30px 80px rgba(0,0,0,.10);
  --container:  1180px;
  --container-narrow: 820px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

/* Typography */
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.05; letter-spacing: -.03em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); line-height: 1.12; }
h3 { font-size: 1.175rem; line-height: 1.3; }
h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gray-4); font-weight: 600; }
p  { margin: 0 0 1em; color: var(--gray-5); }

.kicker { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gray-4); margin-bottom: 14px; }
.kicker--light { color: var(--gray-3); }

.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--gray-5); max-width: 70ch; }
.lead--light { color: var(--gray-2); }

.accent-line {
  background: linear-gradient(135deg, var(--accent) 0%, var(--ink) 60%, var(--brand-red) 130%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  position: relative; display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .95rem; letter-spacing: -.005em;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn--sm { padding: 10px 16px; font-size: .85rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 4px 14px rgba(10,16,32,.25);
}
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 8px 22px rgba(30,42,68,.35); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--gray-2); }
.btn--secondary:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn--ghost:hover { background: var(--gray-0); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }

/* Topbar */
.topbar { background: var(--ink); color: #fff; font-size: .8rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; padding-top: 8px; padding-bottom: 8px; }
.topbar__label { color: var(--gray-3); letter-spacing: .14em; text-transform: uppercase; font-size: .68rem; font-weight: 500; }
.topbar__contact { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 500; transition: color .2s var(--ease); }
.topbar__link svg { width: 14px; height: 14px; opacity: .8; }
.topbar__link:hover { color: var(--gray-2); }
.topbar__sep { color: rgba(255,255,255,.25); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--gray-1); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -.01em; font-size: .98rem; }
.brand-mark { width: 36px; height: 36px; flex: 0 0 auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text__name { font-weight: 700; font-size: 1rem; color: var(--ink); letter-spacing: -.01em; }
.brand-text__sub { font-size: .68rem; font-weight: 500; color: var(--gray-4); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 28px; font-size: .92rem; }
.nav__links a { color: var(--gray-5); transition: color .2s var(--ease); font-weight: 500; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__toggle { display: none; width: 40px; height: 40px; background: transparent; border: 1px solid var(--gray-1); border-radius: 8px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; }
.nav__toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Hero */
.hero { position: relative; padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 9vw, 110px); overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fafafa 100%); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(0,0,0,.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,.04) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%); }
.hero__skyline { position: absolute; left: 0; right: 0; bottom: 0; height: 180px; background: linear-gradient(to top, rgba(10,10,10,.06), transparent), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'><g fill='%230a0a0a' fill-opacity='0.07'><rect x='0' y='120' width='80' height='80'/><rect x='90' y='90' width='60' height='110'/><rect x='160' y='105' width='50' height='95'/><rect x='220' y='70' width='70' height='130'/><rect x='300' y='95' width='55' height='105'/><rect x='365' y='55' width='80' height='145'/><rect x='455' y='80' width='45' height='120'/><rect x='510' y='30' width='60' height='170'/><rect x='580' y='60' width='90' height='140'/><rect x='680' y='40' width='70' height='160'/><rect x='760' y='70' width='55' height='130'/><rect x='825' y='20' width='80' height='180'/><rect x='915' y='95' width='65' height='105'/><rect x='990' y='50' width='70' height='150'/><rect x='1070' y='80' width='55' height='120'/><rect x='1135' y='35' width='90' height='165'/><rect x='1235' y='90' width='60' height='110'/><rect x='1305' y='60' width='75' height='140'/><rect x='1390' y='100' width='50' height='100'/></g></svg>") no-repeat bottom center / cover; opacity: .9; }
.hero__vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0), rgba(255,255,255,.6) 70%); }
.hero__inner { position: relative; z-index: 2; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 500; color: var(--gray-5); background: #fff; border: 1px solid var(--gray-1); border-radius: 999px; padding: 7px 14px; box-shadow: var(--shadow-sm); margin-bottom: 28px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 0 4px rgba(200,74,54,.20); animation: pulse 2.2s var(--ease) infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(200,74,54,.20); } 50% { box-shadow: 0 0 0 8px rgba(200,74,54,.06); } }
.hero__title { margin-bottom: 22px; }
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--gray-5); max-width: 740px; margin: 0 auto 14px; }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__micro { font-size: .9rem; color: var(--gray-4); margin: 0 0 36px; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; padding: 28px 0; border-top: 1px solid var(--gray-1); border-bottom: 1px solid var(--gray-1); }
.stat__num { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 4px; }
.hero__stats .stat:nth-child(1) .stat__num,
.hero__stats .stat:nth-child(3) .stat__num {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__num--live {
  font-variant-numeric: tabular-nums; letter-spacing: -.01em;
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand-red) 130%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-red); -webkit-text-fill-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(200,74,54,.18);
  animation: liveDotPulse 1.4s var(--ease) infinite; flex: 0 0 auto;
}
@keyframes liveDotPulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(200,74,54,.18); opacity: 1; } 50% { box-shadow: 0 0 0 7px rgba(200,74,54,.03); opacity: .65; } }
.stat__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-4); font-weight: 500; }

/* Trust strip */
.trust { background: var(--bg); border-bottom: 1px solid var(--gray-1); }
.trust__inner { padding: 28px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.trust__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-4); font-weight: 500; }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; font-weight: 600; color: var(--ink); font-size: .92rem; }
.trust__row .sep { color: var(--gray-2); }
.logo-il, .logo-ghl { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; letter-spacing: -.01em; }
.logo-il svg, .logo-ghl svg { width: 22px; height: 22px; flex: 0 0 auto; }
.logo-il__text, .logo-ghl__text { color: var(--ink); }

/* Sections */
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section--soft { background: var(--bg-soft); border-top: 1px solid var(--gray-1); border-bottom: 1px solid var(--gray-1); }
.section--dark { background: radial-gradient(ellipse at top, rgba(30,42,68,.6), transparent 60%), linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%); color: #fff; position: relative; }
.section--dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(200,74,54,.06), transparent 40%), radial-gradient(circle at 80% 70%, rgba(30,42,68,.4), transparent 50%); pointer-events: none; }
.section--dark > .container { position: relative; z-index: 1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--gray-2); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section__head .lead { margin: 0 auto; }

/* Grids */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--cards { gap: 24px; align-items: stretch; }

/* Cards */
.card { background: #fff; border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 28px; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.card:hover { transform: translateY(-3px); border-color: var(--gray-2); box-shadow: var(--shadow); }
.card__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; border-radius: 10px; margin-bottom: 18px; }
.card__icon svg { width: 22px; height: 22px; }
.card__icon--brand { background: #fff; border: 1px solid var(--gray-1); padding: 6px; }
.card__icon--brand svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.card p { margin: 0; font-size: .92rem; color: var(--gray-5); }

.outcomes { margin-top: 56px; text-align: center; padding: 36px; border: 1px solid var(--gray-1); border-radius: var(--radius-lg); background: var(--bg-soft); }
.outcomes__title { font-size: 1rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; color: var(--gray-5); margin-bottom: 18px; }
.outcomes__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.check { display: inline-block; margin-right: 8px; color: var(--brand-red); font-weight: 700; }

/* Split (Nationwide Exposure) */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.split__copy h2 { margin-bottom: 18px; }
.bullets { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 22px; color: var(--ink); font-weight: 500; }
.bullets li::before { content: ""; position: absolute; left: 0; top: .65em; width: 10px; height: 1.5px; background: var(--brand-red); }
.bullets--light li { color: #fff; }
.pillrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,.07); color: #fff; font-size: .85rem; font-weight: 500; border: 1px solid rgba(255,255,255,.12); }
.pill--accent { background: var(--brand-red); border-color: var(--brand-red); }

/* Powered-by lockup */
.powered-by { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: 999px; margin-bottom: 18px; }
.powered-by__label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--gray-3); }
.powered-by__logo { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .92rem; color: #fff; letter-spacing: -.01em; }
.powered-by__logo svg { width: 20px; height: 20px; }

/* Map */
.map { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 460px; margin: 0 auto; background: radial-gradient(ellipse at center, rgba(30,42,68,.18), transparent 60%), linear-gradient(180deg, #111 0%, #0a0a0a 100%); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); overflow: hidden; }
.map__core { position: absolute; inset: 0; }
.map__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; }
.map__pin { width: 14px; height: 14px; background: var(--brand-red); border-radius: 50%; box-shadow: 0 0 0 6px rgba(200,74,54,.30), 0 0 30px rgba(200,74,54,.55); margin: 0 auto 8px; position: relative; z-index: 3; }
.map__label { display: inline-block; padding: 4px 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 6px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.map__ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(200,74,54,.30); border-radius: 50%; transform: translate(-50%, -50%); animation: ringPulse 4s var(--ease) infinite; }
.map__ring--1 { width: 35%; height: 35%; animation-delay: 0s; }
.map__ring--2 { width: 60%; height: 60%; animation-delay: .7s; }
.map__ring--3 { width: 88%; height: 88%; animation-delay: 1.4s; }
@keyframes ringPulse { 0% { opacity: .8; transform: translate(-50%, -50%) scale(.9); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); } }
.map__dot { position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%; opacity: .8; box-shadow: 0 0 12px rgba(255,255,255,.4); }
.map__stats { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: space-between; padding: 14px 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: 10px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.map__stats > div { display: flex; flex-direction: column; }
.map__stats strong { color: #fff; font-size: .95rem; font-weight: 700; }
.map__stats span { color: var(--gray-3); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }

/* Plans */
.plan { position: relative; background: #fff; border: 1px solid var(--gray-1); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); overflow: hidden; }
.plan::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, var(--brand-red) 100%); transform: scaleX(0); transform-origin: left center; transition: transform .35s var(--ease); }
.plan:hover::before { transform: scaleX(1); }
.plan:hover { border-color: var(--ink); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.plan--outline { background: var(--bg-soft); }
.plan__head { border-bottom: 1px solid var(--gray-1); padding-bottom: 20px; }
.plan__tag { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; background: var(--ink); color: #fff; margin-bottom: 14px; }
.plan__tag--alt { background: transparent; color: var(--ink); border: 1px solid var(--gray-2); }
.plan h3 { font-size: 1.6rem; margin-bottom: 14px; }
.plan__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.plan__amount { font-size: clamp(2rem, 3.6vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.plan__unit { font-size: .9rem; color: var(--gray-4); font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }
.plan__sub { font-size: .92rem; color: var(--gray-5); margin: 0; }
.plan__body { display: flex; flex-direction: column; gap: 22px; flex: 1; }
.plan__group h4 { margin-bottom: 10px; }

.checks, .x-list, .dots { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.checks li, .x-list li, .dots li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--ink-3); }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-red); font-weight: 700; }
.x-list li::before { content: "×"; position: absolute; left: 2px; top: -1px; color: var(--gray-3); font-weight: 700; font-size: 1.1rem; }
.dots li::before { content: ""; position: absolute; left: 6px; top: .65em; width: 6px; height: 6px; background: var(--gray-3); border-radius: 50%; }
.dots--tight li { font-size: .9rem; padding-left: 22px; }
.dots--tight li::before { left: 4px; }

/* Inline mini brand logo (HighLevel pill inside list items) */
.inline-logo { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: .82rem; letter-spacing: -.01em; padding: 2px 7px 2px 5px; background: var(--gray-0); border: 1px solid var(--gray-1); border-radius: 5px; margin: 0 4px; vertical-align: 1px; }
.inline-logo svg { width: 14px; height: 14px; flex: 0 0 auto; }
.inline-logo--ghl { color: var(--ink); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 28px; position: relative; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.step:hover { transform: translateY(-3px); border-color: var(--ink); }
.step__num { font-size: .75rem; letter-spacing: .2em; font-weight: 700; color: var(--brand-red); margin-bottom: 14px; display: inline-block; padding: 4px 10px; background: rgba(200,74,54,.08); border-radius: 4px; }
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { font-size: .9rem; margin-bottom: 10px; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why { background: #fff; border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 10px; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.why:hover { transform: translateY(-3px); border-color: var(--ink); }
.why--wide { grid-column: span 3; text-align: center; align-items: center; }
.why__num { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.why__num--accent { background: linear-gradient(135deg, var(--brand-red) 0%, var(--ink) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.why__icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gray-0); border: 1px solid var(--gray-1); border-radius: 8px; font-weight: 700; color: var(--ink); font-size: 1rem; }
.why__icon--brand { padding: 6px; background: #fff; }
.why__icon--brand svg { width: 100%; height: 100%; }
.why__text { font-size: .98rem; color: var(--ink-3); font-weight: 500; }

/* Proof / Track Record */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof { background: #fff; border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 16px; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); position: relative; overflow: hidden; }
.proof::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, var(--brand-red) 100%); opacity: .5; }
.proof:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow); }
.proof__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.proof__badge { display: inline-flex; align-items: center; gap: 6px; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-red); background: rgba(200,74,54,.08); padding: 4px 9px; border-radius: 4px; }
.proof__badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand-red); }
.proof__caption { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-4); font-weight: 500; }
.proof__img-wrap { display: block; width: 100%; margin: 0; padding: 14px; background: repeating-linear-gradient(45deg, rgba(0,0,0,.012) 0 2px, transparent 2px 14px), var(--bg-soft); border: 1px solid var(--gray-1); border-radius: var(--radius-sm); cursor: zoom-in; position: relative; transition: border-color .25s var(--ease), transform .25s var(--ease); overflow: hidden; text-align: left; font: inherit; color: inherit; }
.proof__img-wrap:hover { border-color: var(--ink); }
.proof__img-wrap:hover img { transform: scale(1.02); }
.proof__img-wrap img { display: block; width: 100%; height: auto; border-radius: 4px; transition: transform .35s var(--ease); background: #fff; }
.proof__zoom { position: absolute; top: 22px; right: 22px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; border-radius: 50%; opacity: 0; transform: scale(.85); transition: opacity .2s var(--ease), transform .2s var(--ease); pointer-events: none; box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.proof__img-wrap:hover .proof__zoom { opacity: 1; transform: scale(1); }
.proof__zoom svg { width: 16px; height: 16px; }

.proof--summary { background: radial-gradient(ellipse at top right, rgba(200,74,54,.06), transparent 60%), linear-gradient(180deg, #0c1224 0%, #0b1020 100%); color: #fff; border-color: rgba(255,255,255,.10); text-align: center; align-items: center; justify-content: center; padding: 32px 26px; }
.proof--summary::before { opacity: 1; }
.proof--summary:hover { border-color: rgba(255,255,255,.30); }
.proof-summary__num { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; background: linear-gradient(135deg, #fff 0%, var(--brand-red-2) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 4px; }
.proof-summary__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-2); font-weight: 500; }
.proof-summary__note { font-size: .88rem; color: var(--gray-3); margin: 8px 0 8px; max-width: 26ch; }
.proof--summary .btn { margin-top: 6px; }
.proof-footnote { text-align: center; font-size: .78rem; color: var(--gray-4); margin: 32px 0 0; letter-spacing: .02em; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 999; background: rgba(8,12,24,.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: lbFade .25s var(--ease); }
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__inner { max-width: min(1100px, 96vw); max-height: 90vh; border-radius: var(--radius); overflow: auto; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.5); animation: lbPop .35s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes lbPop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox__img { display: block; width: 100%; height: auto; }
.lightbox__close { position: absolute; top: 18px; right: 24px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.20); border-radius: 50%; font-size: 1.6rem; font-weight: 300; cursor: pointer; line-height: 1; transition: background .2s var(--ease), transform .2s var(--ease); }
.lightbox__close:hover { background: rgba(255,255,255,.22); transform: scale(1.05); }

/* Requirements */
.reqs { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.reqs__head h2 { margin-bottom: 14px; }
.reqs__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reqs__list li { background: #fff; border: 1px solid var(--gray-1); border-radius: var(--radius-sm); padding: 16px 18px; display: flex; align-items: center; gap: 14px; font-weight: 500; color: var(--ink); font-size: .95rem; }
.rnum { font-size: .72rem; letter-spacing: .15em; font-weight: 700; color: var(--brand-red); background: var(--accent-soft); padding: 4px 8px; border-radius: 4px; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq__item { background: #fff; border: 1px solid var(--gray-1); border-radius: var(--radius); overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq__item[open] { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 16px; height: 16px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink); transition: transform .25s var(--ease); }
.faq__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__body { padding: 0 24px 22px; }
.faq__body p { margin: 0; color: var(--gray-5); }

/* CTA + Form */
.cta { background: radial-gradient(ellipse at 50% 0%, rgba(200,74,54,.08), transparent 60%), var(--bg-dark); }
.cta__top { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.form { max-width: 920px; margin: 0 auto; background: radial-gradient(ellipse at top right, rgba(200,74,54,.08), transparent 50%), linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%), #0c1224; border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.02) inset; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: var(--gray-3); }
.field span em { font-style: normal; font-weight: 400; color: var(--gray-4); letter-spacing: .04em; text-transform: none; font-size: .72rem; margin-left: 4px; }
.field__hint { display: block; font-size: .78rem; line-height: 1.5; color: var(--gray-3); margin-top: -2px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.field__hint--top { margin-top: -4px; margin-bottom: 4px; color: var(--gray-3); }
.field input, .field select, .field textarea { font-family: inherit; font-size: .96rem; color: #fff; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 14px 16px; transition: border-color .2s var(--ease), background .2s var(--ease); width: 100%; }
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-red); background: rgba(200,74,54,.06); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gray-3) 50%), linear-gradient(135deg, var(--gray-3) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 13px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #f87171; }

.radio-row { display: flex; gap: 14px; flex-wrap: wrap; }
.radio { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); padding: 12px 16px; border-radius: 10px; cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease); }
.radio:has(input:checked) { border-color: var(--brand-red); background: rgba(200,74,54,.08); }
.radio input { accent-color: var(--brand-red); }
.radio span { color: #fff; font-size: .9rem; letter-spacing: 0; text-transform: none; font-weight: 500; }

.form__foot { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.form__micro { margin: 0; font-size: .82rem; color: var(--gray-3); flex-basis: 100%; }
.form__success { text-align: center; padding: 32px 24px; }
.success__mark { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 18px; }

.cta__book { text-align: center; margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.book__line { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
.cta__book p { color: var(--gray-3); margin: 0; font-size: .9rem; letter-spacing: .04em; }
.book__email { font-size: .85rem; color: var(--gray-4); margin-top: 4px !important; }
.book__email a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; transition: border-color .2s var(--ease); }
.book__email a:hover { border-color: var(--brand-red); }

/* Footer */
.footer { background: var(--bg); border-top: 1px solid var(--gray-1); padding: 56px 0 36px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.footer__brand .brand-text__name { color: var(--ink); }
.footer__tag { max-width: 580px; font-size: .9rem; color: var(--gray-5); margin: 0; }
.footer__contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; color: var(--ink); }
.footer__contact a { color: var(--ink); transition: color .2s var(--ease); }
.footer__contact a:hover { color: var(--accent); }
.footer__contact .sep { color: var(--gray-2); }
.footer__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; font-size: .84rem; color: var(--gray-4); }
.footer__row a:hover { color: var(--ink); }
.footer__row .sep { color: var(--gray-2); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.pop { opacity: 0; transform: translateY(20px) scale(.88); transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.34, 1.56, .64, 1); }
.pop.is-popped { opacity: 1; transform: translateY(0) scale(1); }

/* Responsive */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .reqs { grid-template-columns: 1fr; gap: 28px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why--wide { grid-column: span 2; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .topbar__inner { flex-direction: column; align-items: center; gap: 6px; padding-top: 10px; padding-bottom: 10px; }
  .topbar__contact { gap: 10px; justify-content: center; }
  .topbar__label { display: none; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .brand-text__sub { display: none; }
  .topbar { font-size: .75rem; }
  .topbar__contact a { font-size: .8rem; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--gray-1); padding: 18px 24px 24px; gap: 18px; align-items: flex-start; }
  .grid--2, .grid--4, .steps, .reqs__list { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); padding: 22px 0; gap: 18px; }
  .form__grid { grid-template-columns: 1fr; }
  .plan { padding: 28px; }
  .outcomes__list { flex-direction: column; gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .why--wide { grid-column: span 1; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
