/* ============================================================
   THE GROWTH POINT — Sleek Revision
   Dark hero + thin proof bar; light theme body; dark footer.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Accent — emerald legible on light */
  --accent: #1f9d5f;
  --accent-bright: #26b56e;
  --accent-deep: #0f5c37;
  --accent-tint: rgba(31, 157, 95, 0.10);

  /* Dark palette (hero / proof / footer) */
  --dark-bg: #0a0f0c;
  --dark-bg-2: #0d1410;
  --dark-surface: #101812;
  --dark-border: #1f2c25;
  --dark-text: #f4f6f4;
  --dark-text-muted: #a7b3ac;
  --dark-text-faint: #6c7871;

  /* Light palette (body) */
  --light-bg: #f6f7f4;
  --light-bg-2: #eef1eb;
  --light-surface: #ffffff;
  --light-border: #e0e4db;
  --light-text: #101812;
  --light-text-muted: #55605a;
  --light-text-faint: #8b968f;

  /* Active theme aliases (default = light body) */
  --color-text: var(--light-text);
  --color-text-muted: var(--light-text-muted);
  --color-text-faint: var(--light-text-faint);

  /* Type scale — tightened */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: clamp(0.9rem, 0.87rem + 0.13vw, 0.9688rem);
  --text-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-xl: clamp(1.1rem, 1rem + 0.45vw, 1.375rem);
  --text-2xl: clamp(1.4rem, 1.15rem + 1.2vw, 2.15rem);
  --text-3xl: clamp(1.75rem, 1.35rem + 1.7vw, 2.85rem);
  --text-hero: clamp(2.2rem, 1.45rem + 3.35vw, 4rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii — squared */
  --radius-input: 2px;
  --radius-card: 6px;
  --radius-pill: 100px;

  --container: 1180px;
  --container-narrow: 720px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--light-text);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; }
strong { font-weight: 600; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-head { max-width: 44rem; margin-bottom: var(--space-10); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-2xl); }
.section-head p { margin-top: var(--space-4); color: var(--color-text-muted); font-size: var(--text-lg); }

/* ---------- Buttons — squared outline → fill on scroll ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.7em 1.4em;
  border-radius: var(--radius-input);
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.2s var(--ease);
}
.btn--lg { font-size: var(--text-base); padding: 0.85em 1.7em; }
.btn:hover { transform: translateY(-2px); }
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* When scrolled, all buttons fill full emerald */
body.scrolled .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
body.scrolled .btn:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--space-4);
  background: rgba(10, 15, 12, 0);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Over the dark hero: light chrome text */
.header .brand span,
.header .nav__links a { color: var(--dark-text); }
.header .nav__links a { opacity: 0.82; }
.header .brand__logo { filter: none; }

/* Scrolled into the light body */
.header.is-light {
  background: rgba(246, 247, 244, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--light-border);
  padding-block: var(--space-3);
}
.header.is-light .brand span,
.header.is-light .nav__links a { color: var(--light-text); }
.header.is-light .nav__links a { opacity: 0.75; }
/* swap logo: white hides, dark shows */
.header.is-light .brand__logo--white { display: none; }
.header .brand__logo--dark { display: none; }
.header.is-light .brand__logo--dark { display: block; }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }

.brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.brand__logo { height: 20px; width: auto; }
.brand svg { width: 26px; height: 26px; color: var(--accent); }
.brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
}

.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__links { display: flex; gap: var(--space-6); }
.nav__links a { font-size: var(--text-sm); font-weight: 500; transition: opacity 0.2s, color 0.2s; }
.nav__links a:hover { opacity: 1; color: var(--accent); }

/* Header CTA: solid fill so it stays legible over the bright hero imagery */
.header .nav > .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.header .nav > .btn:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

/* ---------- Hero (dark) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: calc(100svh - 74px); /* hero + thin proof bar fill the fold */
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  color: var(--dark-text);
  padding-block: var(--space-20) var(--space-10);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url("assets/hero.png");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,15,12,0.94) 0%, rgba(10,15,12,0.78) 42%, rgba(10,15,12,0.30) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero__content { max-width: 36rem; margin-top: var(--space-12); }
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
.hero h1 .accent { color: var(--accent-bright); font-style: italic; font-weight: 500; }
.hero__sub {
  font-size: var(--text-base);
  color: var(--dark-text-muted);
  max-width: 31rem;
  margin-bottom: var(--space-6);
}
.hero__cta { margin-bottom: var(--space-5); }
.hero .btn--lg { font-size: var(--text-sm); padding: 0.75em 1.45em; }
/* Hero buttons: outline on dark, emerald */
.hero .btn { border-color: var(--accent-bright); color: var(--accent-bright); }
body.scrolled .hero .btn { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero__hook {
  font-size: var(--text-sm);
  color: var(--dark-text-faint);
  padding-left: var(--space-4);
  border-left: 2px solid var(--accent);
  max-width: 30rem;
}

/* ---------- Proof Bar (dark, thin) ---------- */
.proof {
  background: var(--dark-bg-2);
  border-block: 1px solid var(--dark-border);
  padding-block: var(--space-3);
  color: var(--dark-text);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.proof__item {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.proof__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--accent-bright);
  white-space: nowrap;
}
.proof__label {
  font-size: var(--text-xs);
  color: var(--dark-text-muted);
  line-height: 1.35;
}

/* ============================================================
   LIGHT BODY
   ============================================================ */
.problem, .solution, .method, .results, .gap, .guarantee, .about, .final {
  background: var(--light-bg);
  color: var(--light-text);
}
.problem, .method, .guarantee, .about {
  padding-block: clamp(var(--space-16), 6vw, var(--space-24));
}
.solution, .results, .gap, .final {
  padding-block: clamp(var(--space-16), 6vw, var(--space-24));
}
.solution { background: var(--light-bg-2); }
.results { background: var(--light-bg-2); }

/* ---------- Problem ---------- */
.problem h2 { font-size: var(--text-2xl); }
.problem__lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 46rem;
  margin-bottom: var(--space-4);
}
.problem__lead strong { color: var(--light-text); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.pain {
  position: relative;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: var(--space-6) var(--space-5) var(--space-5);
  overflow: hidden;
  box-shadow: 0 4px 18px -12px rgba(16, 24, 18, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
/* always-on top accent bar — reads as intentional at rest (no cursor needed) */
.pain::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform-origin: left;
  transition: height 0.35s var(--ease);
}
/* faint tinted corner glow for depth */
.pain::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-tint) 0%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.pain:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px -14px rgba(16, 24, 18, 0.24);
}
.pain:hover::before { height: 5px; }
.pain:hover::after { opacity: 1; transform: scale(1.15); }
/* icon tile: emerald-filled at rest so it's vivid on mobile too */
.pain__icon {
  position: relative;
  z-index: 1;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--radius-input);
  background: rgba(31, 157, 95, 0.16);
  color: var(--accent-deep);
  margin-bottom: var(--space-4);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.pain:hover .pain__icon {
  transform: scale(1.08) rotate(-3deg);
}
.pain__icon svg { width: 21px; height: 21px; }
.pain h3 { position: relative; z-index: 1; font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-2); font-family: var(--font-body); letter-spacing: -0.005em; }
.pain p { position: relative; z-index: 1; font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }

/* ---------- Solution ---------- */
.solution h2 { font-size: var(--text-2xl); }
.solution__body {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 50rem;
  margin-bottom: var(--space-10);
}
.solution__body strong { color: var(--light-text); }
.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.service {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px -12px rgba(16, 24, 18, 0.15);
}
.service--flagship { border-color: var(--accent); background: var(--accent-tint); }
.service__num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: flex; flex-direction: column; gap: var(--space-1);
}
.service__tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(31,157,95,0.16);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}
.service h3 { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-2); font-family: var(--font-body); letter-spacing: -0.005em; }
.service p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }

/* ---------- Method ---------- */
.method h2 { font-size: var(--text-2xl); }
.method__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
  position: relative;
}
.method__steps::before {
  content: "";
  position: absolute;
  top: 24px; left: 10%; right: 10%;
  height: 1px;
  background: var(--light-border);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 48px; height: 48px;
  margin: 0 auto var(--space-4);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--light-surface);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }
.method__close {
  text-align: center;
  margin-top: var(--space-12);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

/* ---------- Results ---------- */
.results h2 { font-size: var(--text-2xl); }
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.result {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: var(--space-8) var(--space-6);
}
.result__stat {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.05;
  margin-bottom: var(--space-4);
}
.result__stat .sub {
  display: block;
  font-size: 0.42em;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-faint);
  margin-top: var(--space-1);
}
.result p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.55; }
.results__note {
  text-align: center;
  margin-top: var(--space-10);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

/* ---------- Ghost button (secondary CTA) ---------- */
.btn--ghost {
  background: transparent;
  border-color: var(--light-border);
  color: var(--color-text-muted);
}
body.scrolled .btn--ghost {
  background: transparent;
  border-color: var(--light-border);
  color: var(--color-text-muted);
}
body.scrolled .btn--ghost:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
/* Ghost over the dark hero: light outline */
.hero .btn--ghost { border-color: rgba(244,246,244,0.28); color: var(--dark-text-muted); }
body.scrolled .hero .btn--ghost { background: transparent; border-color: rgba(244,246,244,0.28); color: var(--dark-text-muted); }
.hero .btn--ghost:hover { border-color: var(--accent-bright); color: var(--accent-bright); }

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.final__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-bottom: var(--space-5); }

/* ---------- Free Audit (dark band) ---------- */
.audit {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding-block: clamp(var(--space-16), 6vw, var(--space-24));
  border-block: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.audit::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,181,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.audit .container { position: relative; z-index: 1; }
.audit__wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.audit .eyebrow { color: var(--accent-bright); }
.audit h2 { font-size: var(--text-2xl); margin-bottom: var(--space-5); }
.audit__lead {
  font-size: var(--text-base);
  color: var(--dark-text-muted);
  max-width: 34rem;
  margin-bottom: var(--space-4);
}
.audit__lead strong { color: var(--dark-text); }
.audit__cta { margin-top: var(--space-6); margin-bottom: var(--space-3); }
/* Audit buttons: emerald outline on dark, fill on scroll */
.audit .btn { border-color: var(--accent-bright); color: var(--accent-bright); }
body.scrolled .audit .btn { background: var(--accent); border-color: var(--accent); color: #fff; }
body.scrolled .audit .btn:hover { background: var(--accent-bright); border-color: var(--accent-bright); }
.audit__micro { font-size: var(--text-sm); color: var(--dark-text-faint); }

.audit__panel {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-card);
  padding: var(--space-8);
}
.audit__panel h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-text-faint);
  margin-bottom: var(--space-5);
}
.audit__dims { display: grid; gap: var(--space-4); margin-bottom: var(--space-8); }
.audit__dims li { display: flex; align-items: flex-start; gap: var(--space-3); }
.d-mark {
  flex-shrink: 0;
  width: 9px; height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(38,181,110,0.16);
}
.d-text { font-size: var(--text-sm); color: var(--dark-text-muted); line-height: 1.5; }
.d-text strong { color: var(--dark-text); font-weight: 600; }
.audit__scoreline { border-top: 1px solid var(--dark-border); padding-top: var(--space-5); }
.audit__scorelabel {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text-faint);
  margin-bottom: var(--space-3);
}
.audit__scorebar {
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--dark-bg-2);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.audit__scorefill {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
}
.audit__scoretiers {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2);
  font-size: 0.6875rem;
  color: var(--dark-text-faint);
}

/* ---------- G.A.P. ---------- */
.gap__wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.gap h2 { font-size: var(--text-2xl); }
.gap__body { font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.gap__who { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-8); }
.gap__panel {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: var(--space-8);
}
.gap__panel h4 { font-size: var(--text-lg); margin-bottom: var(--space-5); }
.gap__sessions { display: grid; gap: var(--space-3); margin-bottom: var(--space-6); }
.gap__sessions li { display: flex; align-items: center; gap: var(--space-3); }
.s-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
}
.s-text { font-size: var(--text-sm); font-weight: 500; }
.gap__extras { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.55; }

/* ---------- Guarantee ---------- */
.guarantee__card {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-card);
  padding: var(--space-12) var(--space-8);
}
.guarantee__badge {
  width: 52px; height: 52px;
  margin: 0 auto var(--space-5);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
}
.guarantee__badge svg { width: 26px; height: 26px; }
.guarantee h2 { font-size: var(--text-2xl); margin-bottom: var(--space-5); }
.guarantee__promise { font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.guarantee__promise strong { color: var(--accent-deep); }
.guarantee__sub { font-size: var(--text-sm); color: var(--color-text-faint); max-width: 36rem; margin-inline: auto; }

/* ---------- About (text only, centered) ---------- */
.about__wrap { max-width: 46rem; margin-inline: auto; text-align: center; }
.about h2 { font-size: var(--text-2xl); margin-bottom: var(--space-6); }
.about__text p { font-size: var(--text-base); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.about__text strong { color: var(--light-text); }
.about__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--accent-deep) !important;
  margin-top: var(--space-6);
}

/* ---------- Final CTA ---------- */
.final { text-align: center; background: var(--light-bg-2); }
.final h2 { font-size: var(--text-3xl); margin-bottom: var(--space-5); }
.final p { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 40rem; margin: 0 auto var(--space-8); }
.final .btn { margin-bottom: 0; }
.final__micro { font-size: var(--text-sm); color: var(--color-text-faint); }

/* ---------- Footer (dark) ---------- */
.footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding-block: var(--space-16) var(--space-8);
  border-top: 1px solid var(--dark-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer__brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.footer__brand svg { width: 26px; height: 26px; color: var(--accent-bright); }
.footer__logo { height: 24px; width: auto; }
.footer__brand span { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); }
.footer__tag { font-family: var(--font-display); font-style: italic; color: var(--dark-text-muted); font-size: var(--text-base); }
.footer__col h5 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark-text-faint); margin-bottom: var(--space-4); }
.footer__col ul { display: grid; gap: var(--space-2); }
.footer__col a { font-size: var(--text-sm); color: var(--dark-text-muted); transition: color 0.2s; }
.footer__col a:hover { color: var(--accent-bright); }
.footer__news p { font-size: var(--text-sm); color: var(--dark-text-muted); margin-bottom: var(--space-4); }
.footer__form { display: flex; gap: var(--space-2); }
.footer__form input {
  flex: 1; min-width: 0;
  padding: 0.6em 0.8em;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-input);
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}
.footer__form input::placeholder { color: var(--dark-text-faint); }
.footer__form button {
  padding: 0.6em 1em;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-input);
  color: var(--accent-bright);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.footer__form button:hover { background: var(--accent); color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid var(--dark-border);
  font-size: var(--text-xs);
  color: var(--dark-text-faint);
}
.footer__logo--dark { display: none; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .problem__grid, .services { grid-template-columns: repeat(3, 1fr); }
  .method__steps { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-8); }
  .method__steps::before { display: none; }
  .gap__wrap { grid-template-columns: 1fr; gap: var(--space-8); }
  .audit__wrap { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .results__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .container { padding-inline: var(--space-5); }
  .problem__grid, .services { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 88vh; }
}
@media (max-width: 460px) {
  .problem__grid, .services { grid-template-columns: 1fr; }
}
