/* ==========================================================================
   NAVIGATORS BENEFITS — STYLESHEET
   --------------------------------------------------------------------------
   Organized in sections. Search for "SECTION:" to jump around.
   Design tokens (colors, type, spacing) live at the top — edit there first.
   ========================================================================== */

/* ==========================================================================
   SECTION: Design Tokens
   ========================================================================== */
:root {
  /* --- Color: Navy (primary / trust) --- */
  --navy-950: #081a2c;
  --navy-900: #0c2338;
  --navy-800: #123049;
  --navy-700: #1c435f;
  --navy-500: #3f5c72;
  --navy-300: #7c93a3;

  /* --- Color: Green (accent / growth) --- */
  --green-800: #0a4a34;
  --green-700: #0b5e3e;
  --green-600: #0e7a4f;
  --green-500: #17945f;
  --green-400: #2fae76;
  --green-100: #e6f3ec;
  --green-50: #f2f8f5;

  /* --- Color: Neutrals --- */
  --white: #ffffff;
  --paper: #f7faf8;
  --line: #e4e9e6;
  --line-strong: #cdd7d2;
  --ink: #10241f;
  --body: #4a5a60;
  --body-soft: #7c8b8a;

  /* --- Gradients --- */
  --gradient-hero: linear-gradient(155deg, #0c2338 0%, #0a3327 62%, #0b4a34 100%);
  --gradient-panel: linear-gradient(180deg, rgba(14, 122, 79, 0.06) 0%, rgba(14, 122, 79, 0) 55%);
  --gradient-ring: conic-gradient(from 180deg, #0e7a4f, #17945f, #0c2338, #0e7a4f);

  /* --- Typography --- */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  --font-script: 'Caveat', cursive;

  /* --- Spacing scale --- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* --- Radius / shadow --- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(8, 26, 44, 0.06);
  --shadow-md: 0 8px 30px rgba(8, 26, 44, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 26, 44, 0.14);
  --shadow-glow: 0 0 0 1px rgba(14, 122, 79, 0.12), 0 20px 50px rgba(14, 122, 79, 0.12);

  /* --- Layout --- */
  --container-w: 1240px;
  --header-h: 84px;

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
}

/* ==========================================================================
   SECTION: Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { outline: none; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-700);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  z-index: 999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-9) 0;
}
.section-alt {
  background: var(--paper);
}

/* Tightened from the default section padding: with a single centered
   testimonial, the full 96px felt airy relative to how little content
   the section now holds. */
#who-we-help {
  padding: var(--sp-8) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 500;
}

.section-head {
  max-width: 640px;
  margin: 0 auto var(--sp-8);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: var(--sp-3);
}
.section-head p {
  margin-top: var(--sp-4);
  font-size: 17px;
  color: var(--body-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Script annotation accent — used sparingly (2 spots max) */
.script-note {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.script-note svg { flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(10, 30, 22, 0.2);
}
.btn-primary:hover {
  background: var(--green-600);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy-900);
}
.btn-ghost:hover {
  border-color: var(--navy-500);
  background: var(--paper);
}
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   SECTION: Header / Navigation
   ========================================================================== */
.site-header {
  /* No filter/backdrop-filter on this element itself: either would create a
     new containing block for position:fixed descendants (the mobile nav
     overlay below), pinning it to the header's box instead of the
     viewport. The blur lives on ::before instead. */
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: -1;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(8,26,44,0.02), 0 12px 24px -18px rgba(8,26,44,0.18);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-950);
  line-height: 1.15;
}
.brand-name span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--green-700);
  font-weight: 500;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.main-nav a:not(.btn) {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-800);
  position: relative;
  padding: var(--sp-2) 0;
  transition: color var(--dur-fast);
}
.main-nav a:not(.btn):hover { color: var(--green-700); }
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out);
}
.main-nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--sp-2);
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--navy-950); }

/* ==========================================================================
   SECTION: Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: var(--sp-9) 0 var(--sp-8);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 420px at 14% 8%, rgba(14, 122, 79, 0.08), transparent 60%),
    radial-gradient(600px 500px at 92% 30%, rgba(8, 26, 44, 0.05), transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: var(--sp-9);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: var(--sp-5); }
.hero-copy h1 {
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.02em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--green-700);
}
.hero-copy p.lede {
  margin-top: var(--sp-5);
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  max-width: 46ch;
}
.hero-actions {
  margin-top: var(--sp-7);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: var(--sp-8);
  display: flex;
  gap: var(--sp-7);
}
.hero-trust div { font-family: var(--font-mono); }
.hero-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy-950);
  font-weight: 600;
}
.hero-trust span {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--body-soft);
  text-transform: uppercase;
}

/* Hero preview ledger card (mirrors calculator, read-only) */
.impact-preview {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-6);
}
.impact-preview::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-ring);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  pointer-events: none;
}
.impact-preview-head {
  text-align: center;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px dashed var(--line-strong);
}
.impact-preview-head span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body-soft);
}
.impact-preview-head h3 {
  font-size: 18px;
  margin-top: var(--sp-2);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5) var(--sp-4);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg { width: 18px; height: 18px; }
.stat-label {
  font-size: 12.5px;
  color: var(--body-soft);
  line-height: 1.35;
}
.stat-value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-950);
  letter-spacing: -0.01em;
}

.impact-preview-foot {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.preview-foot-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-pill);
  background: var(--navy-950);
  color: var(--green-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.preview-foot-icon svg { width: 16px; height: 16px; }
.impact-preview-foot p {
  font-size: 13.5px;
  color: var(--body);
}

/* ==========================================================================
   SECTION: How It Works (Plain English)
   ========================================================================== */
.plain-english-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  margin-bottom: var(--sp-8);
}
.plain-english-card .eyebrow { margin-bottom: var(--sp-3); }
.plain-english-card h2 { font-size: clamp(24px, 2.8vw, 30px); margin-bottom: var(--sp-4); }
.plain-english-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: var(--sp-4);
}
.plain-english-card p:last-of-type { margin-bottom: 0; }
.mono-figure { font-family: var(--font-mono); color: var(--green-700); }
.plain-english-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px dashed var(--line-strong);
}
.plain-english-stat-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plain-english-stat-icon svg { width: 19px; height: 19px; }
.plain-english-stat p {
  font-size: 14.5px;
  color: var(--body-soft);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION: Calculator
   ========================================================================== */
.calculator {
  padding: var(--sp-9) 0;
}
.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--sp-6);
  align-items: stretch;
}

.calc-inputs {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-7);
}
.calc-field {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--line);
}
.calc-field:first-child { padding-top: 0; }
.calc-field:last-of-type { border-bottom: none; }

.calc-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
  gap: var(--sp-4);
}
.calc-field-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-950);
}
.calc-field-label-text {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.calc-field-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calc-field-icon svg { width: 16px; height: 16px; }

.help-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--body-soft);
  color: var(--body-soft);
  font-size: 10.5px;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  position: relative;
}
.help-dot .tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy-950);
  color: var(--white);
  font-size: 12.5px;
  line-height: 1.4;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm);
  width: 220px;
  text-align: left;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  box-shadow: var(--shadow-md);
  z-index: 20;
}
.help-dot:hover .tip, .help-dot:focus-visible .tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.calc-field-value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 15px;
  color: var(--green-700);
  background: var(--green-50);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  min-width: 92px;
  text-align: center;
}

/* Range slider — custom styled, fill driven by JS via background gradient */
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--line);
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-700);
  box-shadow: 0 2px 6px rgba(8,26,44,0.18);
  transition: transform var(--dur-fast) var(--ease-out);
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.slider:active::-webkit-slider-thumb { transform: scale(1.2); }
.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-700);
  box-shadow: 0 2px 6px rgba(8,26,44,0.18);
  transition: transform var(--dur-fast) var(--ease-out);
}
.slider::-moz-range-progress {
  background: var(--green-700);
  height: 6px;
  border-radius: var(--radius-pill);
}

.select-wrap {
  position: relative;
}
.select-wrap svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--body-soft);
  pointer-events: none;
}
.select-field {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 13px 42px 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-950);
  transition: border-color var(--dur-fast);
}
.select-field:hover { border-color: var(--navy-500); }
.select-field:focus-visible { border-color: var(--green-600); }

.calc-privacy {
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12.5px;
  color: var(--body-soft);
}
.calc-privacy svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Results ledger — the signature panel */
.calc-results {
  background: var(--navy-950);
  background-image: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.calc-results::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(47, 174, 118, 0.25), transparent 70%);
  pointer-events: none;
}
.calc-results-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-400);
  font-weight: 500;
}
.result-grid {
  margin-top: var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6) var(--sp-5);
  position: relative;
  z-index: 1;
}
.result-stat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--green-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
}
.result-stat-icon svg { width: 18px; height: 18px; }
.result-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.35;
}
.result-stat-value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--white);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.result-stat-caption {
  margin-top: var(--sp-2);
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
  max-width: 26ch;
}

.calc-footnote {
  margin-top: auto;
  padding-top: var(--sp-6);
  position: relative;
  z-index: 1;
}
.calc-footnote-bar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.calc-footnote-bar svg {
  width: 22px; height: 22px;
  color: var(--green-400);
  flex-shrink: 0;
}
.calc-footnote-bar p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.calc-cta {
  margin-top: var(--sp-7);
  text-align: center;
}

/* Value flash animation on update */
@keyframes valuePulse {
  0% { opacity: 0.55; transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}
.value-updated { animation: valuePulse var(--dur-med) var(--ease-out); }

/* Scroll reveal (subtle — respects prefers-reduced-motion via the global rule above) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   SECTION: Feature cards ("More Than Savings")
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-5);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 {
  font-size: 16.5px;
  margin-bottom: var(--sp-2);
}
.feature-card p {
  font-size: 14px;
  color: var(--body-soft);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION: Who We Help / Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.industry-chip {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
  display: inline-flex;
  align-items: center;
  min-height: 41px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy-950);
  font-weight: 500;
  flex-grow: 1;
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after { content: "\201D"; }
.testimonial-result {
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-700);
  font-weight: 500;
}
.testimonial-person {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* When there's only one testimonial, present it as a single featured
   quote instead of a sparse 3-column grid. Reverts automatically once
   a second entry is added to assets/data/testimonials.js. */
.testimonial-grid:has(> .testimonial-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.testimonial-grid:has(> .testimonial-card:only-child) .testimonial-card {
  align-items: center;
  text-align: center;
  padding: var(--sp-8);
}
.testimonial-grid:has(> .testimonial-card:only-child) .industry-chip {
  align-self: center;
}
.testimonial-grid:has(> .testimonial-card:only-child) .testimonial-quote {
  font-size: 22px;
}
.testimonial-grid:has(> .testimonial-card:only-child) .testimonial-person {
  justify-content: center;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--green-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-person strong {
  display: block;
  font-size: 14px;
  color: var(--navy-950);
}
.testimonial-person span {
  font-size: 12.5px;
  color: var(--body-soft);
}

/* ==========================================================================
   SECTION: Real Results
   --------------------------------------------------------------------------
   Anonymized case data, not testimonials — no quote marks, no invented
   first-person voice. Shares the .industry-chip component with the
   testimonial cards above.
   ========================================================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.result-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.result-challenge {
  flex-grow: 1;
}
.result-challenge-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: var(--sp-2);
}
.result-challenge p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy-950);
}
.result-card-stats {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.result-card-stats > div {
  display: flex;
  flex-direction: column;
}
.result-card-stat-value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-700);
}
.result-card-stat-caption {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--body-soft);
}

/* ==========================================================================
   SECTION: Why It Matters
   ========================================================================== */
.why-matters {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-9);
  align-items: center;
}
.why-matters-copy .eyebrow { margin-bottom: var(--sp-5); }
.why-matters-copy h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}
.why-matters-copy p {
  margin-top: var(--sp-5);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
}
.why-list-heading {
  font-size: 21px;
  margin-bottom: var(--sp-4);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-5);
  border-radius: var(--radius-md);
  transition: background var(--dur-fast);
}
.why-item:hover { background: var(--paper); }
.why-item-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--navy-950);
  color: var(--green-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item-icon svg { width: 19px; height: 19px; }
.why-item h4 {
  font-size: 15.5px;
  color: var(--navy-950);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--body-soft);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION: Contact Reassurance
   ========================================================================== */
.contact-strip { padding: var(--sp-6) 0; }
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  text-align: center;
}
.contact-strip-inner p {
  font-size: 14.5px;
  color: var(--body-soft);
}
.contact-strip-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-6);
}
.contact-strip-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--green-700);
  white-space: nowrap;
}
.contact-strip-links a:hover { color: var(--green-600); }
.contact-strip-links svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ==========================================================================
   SECTION: Resources
   ========================================================================== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  max-width: 780px;
  margin: 0 auto;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.resource-card.is-highlight {
  background: var(--gradient-hero);
  border-color: transparent;
}
.resource-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: var(--sp-4);
}
.resource-card.is-highlight .resource-tag { color: var(--green-400); }
.resource-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}
.resource-card.is-highlight .resource-icon {
  background: rgba(255,255,255,0.1);
  color: var(--green-400);
}
.resource-icon svg { width: 22px; height: 22px; }
.resource-card h3 {
  font-size: 18px;
  margin-bottom: var(--sp-3);
}
.resource-card.is-highlight h3,
.resource-card.is-highlight p { color: var(--white); }
.resource-card p {
  font-size: 14px;
  color: var(--body-soft);
  line-height: 1.6;
  flex-grow: 1;
}
.resource-card.is-highlight p { color: rgba(255,255,255,0.75); }
.resource-link {
  margin-top: var(--sp-6);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
}
.resource-card.is-highlight .resource-link { color: var(--white); }
.resource-link svg {
  width: 15px; height: 15px;
  transition: transform var(--dur-fast) var(--ease-out);
}
.resource-card:hover .resource-link svg { transform: translateX(3px); }

/* ==========================================================================
   SECTION: Lead Form
   ========================================================================== */
/* "Simple Implementation" is a short, single text block sandwiched between
   Why It Matters and the lead form — tightened on all sides so it reads as
   a deliberate, compact transition rather than empty space. */
#why-it-matters { padding-bottom: var(--sp-6); }
.section-implementation { padding: var(--sp-8) 0; background: var(--paper); }
.lead-section { padding: var(--sp-6) 0 var(--sp-9); }

/* Compact, deliberately understated — a quiet trust signal after the ask,
   not a prominent About section. */
.section-founder { padding: var(--sp-7) 0; }
.section-founder .section-head { max-width: 600px; }
.section-founder .section-head p {
  font-size: 15.5px;
  line-height: 1.6;
}
.founder-link {
  margin-top: var(--sp-6);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
}
.founder-link svg {
  width: 15px; height: 15px;
  transition: transform var(--dur-fast) var(--ease-out);
}
.founder-link:hover svg { transform: translateX(3px); }
.lead-panel {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  box-shadow: var(--shadow-lg);
}
.lead-copy {
  padding: var(--sp-8);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-copy .eyebrow { color: var(--green-400); margin-bottom: var(--sp-4); }
.lead-copy h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 34px);
}
.lead-copy > p {
  margin-top: var(--sp-4);
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.6;
}
.lead-checklist {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.lead-checklist li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
}
.lead-checklist svg {
  width: 18px; height: 18px;
  color: var(--green-400);
  flex-shrink: 0;
}

.lead-form-wrap {
  background: var(--white);
  padding: var(--sp-8);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
}
.form-field input,
.form-field select {
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-field input:hover, .form-field select:hover { border-color: var(--navy-500); }
.form-field input:focus-visible,
.form-field select:focus-visible {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(14,122,79,0.12);
}
/* Red border only appears after a failed submit attempt (JS adds
   .was-validated to the form) — not on untouched, empty required fields. */
#lead-form.was-validated input:invalid,
#lead-form.was-validated select:invalid {
  border-color: #c94a3a;
}

.form-privacy {
  margin-top: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 12.5px;
  color: var(--body-soft);
}
.form-privacy svg { width: 14px; height: 14px; }

.form-status {
  margin-top: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}
.form-status.is-success {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--green-50);
  color: var(--green-800);
  border: 1px solid var(--green-100);
}
.form-status.is-error {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #fdf1ef;
  color: #9c2f22;
  border: 1px solid #f4d9d3;
}
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

.lead-success {
  display: none;
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
}
.lead-success.is-visible { display: block; }
.lead-form.is-hidden { display: none; }
.lead-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
}
.lead-success-icon svg { width: 30px; height: 30px; }
.lead-success h3 { font-size: 22px; }
.lead-success p { margin-top: var(--sp-3); color: var(--body-soft); font-size: 15px; }

/* ==========================================================================
   SECTION: Trust bar
   ========================================================================== */
.trust-bar {
  border-top: 1px solid var(--line);
  padding: var(--sp-7) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.trust-item-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 20px; height: 20px; }
.trust-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy-950);
}
.trust-item span {
  font-size: 13px;
  color: var(--body-soft);
}

/* ==========================================================================
   SECTION: Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: var(--sp-7) 0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-5);
  font-size: 13.5px;
}
.footer-contact a { white-space: nowrap; }
.footer-contact a:hover { color: var(--white); }
.footer-links {
  display: flex;
  gap: var(--sp-6);
  font-size: 13.5px;
}
.footer-links a:hover { color: var(--white); }
.footer-meta {
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-meta a { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   SECTION: Business Impact Guide
   ========================================================================== */
.guide-hero {
  position: relative;
  padding: var(--sp-7) 0 var(--sp-6);
  overflow: hidden;
}
.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 420px at 14% 8%, rgba(14, 122, 79, 0.08), transparent 60%),
    radial-gradient(600px 500px at 92% 30%, rgba(8, 26, 44, 0.05), transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.guide-hero .container { max-width: 720px; }
.guide-hero .eyebrow { margin-bottom: var(--sp-3); }
.guide-hero h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
}
.guide-hero .lede {
  margin-top: var(--sp-3);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--body);
  max-width: 62ch;
}

.guide-body { padding-top: var(--sp-8); }
.guide-main { max-width: 680px; margin: 0 auto; }
#see-what-it-means .btn { margin-top: var(--sp-2); }

.guide-section { margin-bottom: var(--sp-8); }
.guide-section:last-child { margin-bottom: 0; }
.guide-section h2 {
  font-size: clamp(24px, 2.6vw, 28px);
  margin-bottom: var(--sp-4);
}
.guide-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: var(--sp-4);
}
.guide-section p:last-child { margin-bottom: 0; }

.faq-list {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item h3 { font-size: 16.5px; margin-bottom: var(--sp-2); }
.faq-item p { font-size: 15px; line-height: 1.65; color: var(--body); margin-bottom: 0; }

.guide-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
}
.guide-bullets li {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy-950);
}
.guide-bullet-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.guide-bullet-icon svg { width: 17px; height: 17px; }

.guide-callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  margin-bottom: var(--sp-8);
}
.guide-callout h2 { font-size: clamp(22px, 2.4vw, 26px); margin: var(--sp-4) 0 var(--sp-4); }
.guide-callout p { font-size: 15.5px; line-height: 1.7; color: var(--body); margin-bottom: var(--sp-4); }
.guide-callout p:last-child { margin-bottom: 0; }
.guide-callout .guide-card-icon { margin-bottom: 0; }

.guide-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.guide-card-icon svg { width: 20px; height: 20px; }

/* Full-width closing CTA — the article's one strong, deliberate ask,
   placed at the natural end of the read. */
.guide-closing-cta { padding: 0 0 var(--sp-9); }
.guide-closing-panel {
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--navy-950);
  background-image: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-7);
  box-shadow: var(--shadow-lg);
}
.guide-closing-panel::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(47, 174, 118, 0.25), transparent 70%);
  pointer-events: none;
}
.guide-closing-panel .guide-card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-400);
  margin: 0 auto var(--sp-5);
  position: relative;
  z-index: 1;
}
.guide-closing-panel h2 {
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}
.guide-closing-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto var(--sp-6);
  position: relative;
  z-index: 1;
}
.guide-closing-panel .btn { position: relative; z-index: 1; }

/* ==========================================================================
   SECTION: Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .why-matters { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .impact-preview { max-width: 460px; }
  .calc-grid { grid-template-columns: 1fr; }
  .lead-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }
  .container { padding: 0 var(--sp-5); }
  .section { padding: var(--sp-8) 0; }

  .main-nav ul, .main-nav .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.is-open {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-6) var(--sp-5);
    gap: var(--sp-6);
    overflow-y: auto;
  }
  .main-nav.is-open ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-2);
  }
  .main-nav.is-open ul a {
    display: block;
    padding: var(--sp-4);
    font-size: 17px;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open .btn { display: inline-flex; }

  .hero { padding: var(--sp-7) 0 var(--sp-7); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: var(--sp-5); }

  .calc-inputs, .calc-results { padding: var(--sp-5); }
  .result-grid { gap: var(--sp-5) var(--sp-4); }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-copy, .lead-form-wrap { padding: var(--sp-6); }

  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-contact { flex-wrap: wrap; gap: var(--sp-4); }
  .footer-links { flex-wrap: wrap; gap: var(--sp-4); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .stat-grid { gap: var(--sp-4) var(--sp-3); }
  .stat-value { font-size: 20px; }
}
