/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  /* Color */
  --color-bg: #0B0A08;
  --color-bg-raised: #16130F;
  --color-bg-card: #120F0C;
  --color-border: rgba(255, 255, 255, 0.09);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-gold: #C9A24E;
  --color-gold-light: #E4C878;
  --color-white: #FFFFFF;
  --color-muted: #9BA1B5;
  --color-muted-strong: #C7CBDA;
  --color-danger: #E5484D;

  /* Type */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 80px;
  --space-9: 128px;
  --section-pad: clamp(64px, 8vw, 128px);
  --container-pad: clamp(24px, 5vw, 48px);
  --container-max: 1200px;

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Shadow */
  --shadow-rest: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 10px 32px rgba(0, 0, 0, 0.45);
  --glow-gold: 0 0 0 1px rgba(201, 162, 78, 0.4);

  /* Motion */
  --transition: 200ms ease;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-white);
  background: var(--color-bg);
}

h1, h2 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-white);
}

p { color: var(--color-muted); }

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
}

.text-strong { color: var(--color-white); }
.text-muted { color: var(--color-muted-strong); }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Background texture: grid lines + radial glow blobs
   ========================================================================== */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-glow::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 78, 0.22), transparent 70%);
  filter: blur(20px);
}
.bg-glow--hero::after { top: 55%; left: 50%; transform: translate(-50%, -50%); }
.bg-glow--cta::after { top: 40%; left: 50%; transform: translate(-50%, -50%); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; padding-block: 15px; }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-bg);
}
.btn--gold:hover { background: var(--color-gold-light); transform: translateY(-1px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.75);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
}
.brand__mark { color: var(--color-white); flex-shrink: 0; }
.brand__word {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-9) var(--space-8);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-muted-strong);
  margin-bottom: var(--space-6);
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.06;
  margin-bottom: var(--space-5);
}
.hero__title .text-strong,
.hero__title .text-muted {
  display: block;
}

.hero__subtitle {
  font-size: 18px;
  max-width: 56ch;
  margin-bottom: var(--space-7);
}

.eyebrow {
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
  display: block;
}

/* ==========================================================================
   Snapshot preview (hero visual) — illustrative example, not live data
   ========================================================================== */
.snapshot-preview {
  width: 100%;
  max-width: 460px;
  margin-bottom: var(--space-7);
}
.snapshot-preview__inner {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 50% 0%, var(--color-bg-raised), var(--color-bg-card) 70%);
  border: 1px solid var(--color-border-strong);
  box-shadow: 0 0 100px rgba(201, 162, 78, 0.12), var(--shadow-rest);
  padding: var(--space-6);
  text-align: center;
}
.snapshot-preview__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  margin-bottom: var(--space-3);
}
.snapshot-preview__note {
  font-size: 12.5px;
  color: var(--color-muted);
  max-width: 34ch;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.gauge-svg { width: 62%; max-width: 200px; margin-inline: auto; display: block; }
.gauge-track {
  fill: none;
  stroke: var(--color-border-strong);
  stroke-width: 16;
  stroke-linecap: round;
}
.gauge-fill {
  fill: none;
  stroke: url(#gaugeFillGold);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 200.6; /* static fallback: shows the target 24% fill without motion */
}
.gauge-readout {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-top: -32px;
}
.gauge-score { font-family: var(--font-serif); font-size: 38px; font-weight: 700; color: var(--color-white); }
.gauge-max { font-size: 14px; color: var(--color-muted); }
.gauge-caption { font-size: 13px; color: var(--color-muted); margin-top: var(--space-1); margin-bottom: var(--space-3); }

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: var(--space-6);
  background: rgba(229, 72, 77, 0.15);
  color: var(--color-danger);
  border: 1px solid rgba(229, 72, 77, 0.3);
}
.status-chip__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

.snapshot-preview__competitors {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
  text-align: left;
}
.snapshot-preview__competitors-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
}
.mini-bars { display: flex; flex-direction: column; gap: var(--space-3); }
.mini-bars li { display: flex; align-items: center; gap: var(--space-3); font-size: 13px; color: var(--color-muted-strong); }
.mini-bars li > span:first-child { flex-shrink: 0; width: 92px; }
.mini-bar { flex: 1; height: 6px; border-radius: var(--radius-full); background: var(--color-bg-raised); overflow: hidden; }
.mini-bar__fill {
  display: block;
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  width: var(--fill, 0%);
}

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal .gauge-fill {
    stroke-dashoffset: 264;
    transition: stroke-dashoffset 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.js .reveal.is-visible .gauge-fill { stroke-dashoffset: 200.6; }

  html.js .reveal .mini-bar__fill {
    width: 0%;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  }
  html.js .reveal.is-visible .mini-bar__fill { width: var(--fill, 0%); }
}

/* ==========================================================================
   Lead capture card (Netlify Forms)
   ========================================================================== */
.lead-card {
  width: 100%;
  max-width: 460px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-card), var(--color-bg-card)) padding-box,
    linear-gradient(135deg, rgba(201, 162, 78, 0.45), rgba(255, 255, 255, 0.06) 45%, rgba(201, 162, 78, 0) 80%) border-box;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 0 60px rgba(201, 162, 78, 0.1), var(--shadow-rest);
  margin-bottom: var(--space-6);
  text-align: left;
}
.lead-card--compact { max-width: 520px; padding: var(--space-5); }

.lead-form__honeypot { position: absolute; left: -9999px; }

.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.lead-form__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.lead-form__input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color var(--transition);
}
.lead-form__input::placeholder { color: var(--color-muted); }
.lead-form__input:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px;
  border-color: var(--color-gold);
}
.lead-form__submit { flex-shrink: 0; }

.lead-form__consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: var(--space-5);
  cursor: pointer;
}
.lead-form__consent input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
}

.lead-form__microtrust {
  color: var(--color-muted);
  font-size: 14px;
  margin-top: var(--space-3);
}
.lead-form__microtrust a { color: var(--color-gold); font-weight: 600; }

@media (min-width: 560px) {
  .lead-card--compact .lead-form__row { flex-direction: row; }
  .lead-card--compact .lead-form__input { flex: 1; }
}

/* ==========================================================================
   Trust chips
   ========================================================================== */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-5);
}
.trust-chips li {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  background: rgba(201, 162, 78, 0.1);
  border: 1px solid rgba(201, 162, 78, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 14px;
}

.hero__alt {
  font-size: 14.5px;
  color: var(--color-muted);
}
.hero__alt a { color: var(--color-gold); font-weight: 600; }

/* ==========================================================================
   Section shared
   ========================================================================== */
section { padding-block: var(--section-pad); position: relative; }

.section-head {
  max-width: 60ch;
  margin-bottom: var(--space-8);
}
.section-head h2 { margin-bottom: var(--space-4); }

/* ==========================================================================
   Problem / agitation
   ========================================================================== */
.problem__title {
  max-width: 22ch;
  margin-bottom: var(--space-7);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
.problem__graphic {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(201, 162, 78, 0.16), var(--color-bg-raised) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.problem__graphic-inner {
  position: relative;
  width: 55%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem__graphic-icon {
  width: 100%;
  height: 100%;
  color: var(--color-gold);
}
@media (prefers-reduced-motion: no-preference) {
  .problem__graphic-icon circle:nth-child(2),
  .problem__graphic-icon circle:nth-child(3) {
    animation: radar-ping 2.8s ease-out infinite;
    transform-origin: center;
  }
  .problem__graphic-icon circle:nth-child(3) { animation-delay: 0.9s; }
}
@keyframes radar-ping {
  0% { opacity: 0.9; transform: scale(0.85); }
  70% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.15); }
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.problem__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: 16px;
  color: var(--color-muted-strong);
}
.problem__item--good { color: var(--color-white); font-size: 17px; }

.icon-badge {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.icon-badge--bad { background: rgba(229, 72, 77, 0.15); color: var(--color-danger); }
.icon-badge--good { background: rgba(201, 162, 78, 0.18); color: var(--color-gold); }

/* ==========================================================================
   Pull statement (typographic break between Problem and Services)
   ========================================================================== */
.pull-statement { padding-block: var(--space-7); text-align: center; }
.pull-statement__text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.4;
  max-width: 32ch;
  margin-inline: auto;
  color: var(--color-muted-strong);
}
.text-gold { color: var(--color-gold); }

/* ==========================================================================
   Feature cards (services)
   ========================================================================== */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.feature-card {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-card), var(--color-bg-card)) padding-box,
    linear-gradient(135deg, rgba(201, 162, 78, 0.3), rgba(255, 255, 255, 0.05) 45%, rgba(201, 162, 78, 0) 80%) border-box;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card__banner {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}
.feature-card__banner svg { width: 30%; height: 30%; }
.feature-card__banner--01 { background: radial-gradient(circle at 30% 30%, rgba(201, 162, 78, 0.18), var(--color-bg-raised)); }
.feature-card__banner--02 { background: radial-gradient(circle at 70% 30%, rgba(201, 162, 78, 0.14), var(--color-bg-raised)); }
.feature-card__banner--03 { background: radial-gradient(circle at 50% 70%, rgba(201, 162, 78, 0.16), var(--color-bg-raised)); }

.feature-card__body { padding: var(--space-6); }
.feature-card__step {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.feature-card__body h3 { font-size: 22px; margin-bottom: var(--space-2); }
.feature-card__tagline {
  color: var(--color-muted-strong);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: var(--space-4);
}
.feature-card__body > p:not(.feature-card__tagline):not(.feature-card__step) { margin-bottom: var(--space-5); }

.check-list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-muted-strong);
  font-size: 14.5px;
  margin-bottom: var(--space-3);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 162, 78, 0.15);
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Why / stat tiles
   ========================================================================== */
.why {
  padding-block: var(--section-pad);
  background: var(--color-bg-raised);
}

.stat-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.stat-tile {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.stat-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 78, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.stat-tile__icon svg { width: 22px; height: 22px; }
.stat-tile__title { color: var(--color-white); font-weight: 700; font-size: 18px; margin-bottom: var(--space-1); }
.stat-tile__label { font-size: 14px; }

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works {
  background: var(--color-bg-raised);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}

.step {
  position: relative;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.step__number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-gold);
  background: rgba(201, 162, 78, 0.1);
  border: 1px solid rgba(201, 162, 78, 0.3);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: var(--space-4);
}
.step h3 { margin-bottom: var(--space-2); }
.step p { font-size: 14.5px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__list {
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-5);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--color-white);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  color: var(--color-gold);
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: var(--space-4);
  max-width: 68ch;
  font-size: 15px;
}
.faq__item a { color: var(--color-gold); font-weight: 600; }

/* ==========================================================================
   Closing CTA band
   ========================================================================== */
.cta-band {
  text-align: center;
  overflow: hidden;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-band__inner h2 {
  max-width: 24ch;
  margin-bottom: var(--space-4);
}
.cta-band__sub {
  font-size: 17px;
  margin-bottom: var(--space-7);
}
.cta-band__alt {
  color: var(--color-muted);
  font-size: 14px;
  margin-top: var(--space-4);
}
.cta-band__alt a { color: var(--color-gold); font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-7);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}
.site-footer__links a {
  color: var(--color-muted);
  font-size: 14px;
  transition: color var(--transition);
}
.site-footer__links a:hover { color: var(--color-gold); }
.site-footer__copy {
  color: var(--color-muted);
  font-size: 13px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Only hide .reveal content when JS has confirmed it can un-hide it later
   (html.js is added by a blocking inline script in <head>). Without JS,
   content is fully visible from first paint — no permanently-stuck opacity:0. */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
  }
  html.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger grouped items so they cascade in rather than popping together */
  .feature-cards .reveal:nth-child(2) { transition-delay: 90ms; }
  .feature-cards .reveal:nth-child(3) { transition-delay: 180ms; }

  .steps .reveal:nth-child(2) { transition-delay: 80ms; }
  .steps .reveal:nth-child(3) { transition-delay: 160ms; }
  .steps .reveal:nth-child(4) { transition-delay: 240ms; }

  .faq__item.reveal:nth-child(n+2) { transition-delay: 30ms; }
  .faq__item.reveal:nth-child(n+3) { transition-delay: 60ms; }
  .faq__item.reveal:nth-child(n+4) { transition-delay: 90ms; }
  .faq__item.reveal:nth-child(n+5) { transition-delay: 120ms; }
  .faq__item.reveal:nth-child(n+6) { transition-delay: 150ms; }
}

/* ==========================================================================
   Scroll-margin so anchors land below the sticky header
   ========================================================================== */
#services, #how-it-works, #faq, #get-audit {
  scroll-margin-top: 88px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 640px) {
  .problem__grid { grid-template-columns: 0.9fr 1.1fr; }
}

@media (min-width: 768px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .stat-tiles { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
}
