/* ═══════════════════════════════════════════════════════════════════════════
   [BRAND] — Homepage prototype stylesheet
   Single source of truth = committed/market/design-system.md.
   Palette RE-LOCKED 2026-06-20 → "Calm Premium" (research-derived reinvention;
   deeper pine green, crisper canvas, decisive terracotta, committed-bigger
   Fraunces). Old Palette A in design-system.md Appendix A. Component CSS follows
   the tokens below; page-level components (header, trust strip, how-it-works,
   benefits, comparison table, multi-step form) sit under the token block.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══ ROOT TOKENS — "Calm Premium" (research-derived, ratified 2026-06-20) · Type A ═══
   Reinvention of the visual language after the muted Palette A read as dated/"AI-slop".
   Derived from the live competitor study (committed/market/design-research-2026-06/):
   the Lottie/Age Co premium-calm register, applied with COMMITMENT + CONTRAST — deeper
   green, crisper light canvas, one decisive terracotta accent, prominent trust strip.
   Old Palette A values kept in design-system.md Appendix. ═══ */
:root {
  /* Brand tokens — deeper, more confident green + decisive terracotta */
  --primary: #14402F;          /* deep pine-green — headings, form-card header, trust ink (was #2E5E4E) */
  --primary-soft: #1D6F51;     /* softer green — eyebrows, check ticks, accents on light */
  --accent: #C2602F;           /* terracotta — decorative/large only: H1 emphasis, icons, rules, stars */
  --accent-strong: #A8481C;    /* darker terracotta for SMALL accent TEXT — AA-safe (≈5.6:1 on canvas) */
  --cta: #B5531F;              /* terracotta CTA bg — darkened just enough for AA (white text ≈4.9:1) */
  --cta-foreground: #FFFFFF;
  --background: #FAF8F2;        /* crisper, lighter warm-white canvas (was #FBF6EC) */

  /* Functional tokens */
  --foreground: #221F1A;       /* warm near-black body text */
  --muted-foreground: #56524A; /* warm grey — ≥6.5:1 on the lighter canvas */
  --surface: #FFFFFF;
  --surface-warm: #F2ECE0;     /* warm tinted fill for alternating sections */
  --border: #E7DECC;
  --input-border: #B5A88E;
  --ring: #1D6FB8;
  --success: #2E6B3E;
  --warning: #9A6B12;
  --destructive: #B23A2E;
  --info: #1D5A8A;
  --trust-accent: var(--primary);

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px;
  --space-24: 96px; --space-32: 128px;

  /* Radii */
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px;
  --radius-xl: 24px; --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(43,42,38,.06);
  --shadow-md: 0 4px 12px rgba(43,42,38,.08);
  --shadow-lg: 0 12px 32px rgba(43,42,38,.10);

  /* Motion */
  --duration-fast: 150ms; --duration-base: 200ms; --duration-slow: 300ms;
  --ease: cubic-bezier(0.16,1,0.3,1);

  /* Type tokens */
  --font-display: 'Fraunces', serif;
  --font-body: 'Atkinson Hyperlegible', sans-serif;

  --text-display: clamp(2.6rem, 5vw, 3.7rem); /* COMMITTED bigger 2026-06-20: confidence fix — the reduced hero read timid */
  --text-h1: 2.75rem;
  --text-h2: 2.125rem;
  --text-h3: 1.625rem;
  --text-h4: 1.375rem;
  --text-body-lg: 1.3125rem;
  --text-body: 1.1875rem;
  --text-small: 1.0625rem;
  --text-caption: 1rem;
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

img { max-width: 100%; display: block; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: var(--space-4);
  background: var(--primary); color: #fff;
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-md);
  font-size: var(--text-small); font-weight: 600; text-decoration: none;
  z-index: 10000;
}
.skip-link:focus { left: var(--space-4); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

a { color: var(--primary); text-decoration: underline; }
a:hover { text-decoration-thickness: 2px; }

/* Layout helpers */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--space-6); }
.container--wide { max-width: 1240px; }
.container--narrow { max-width: 880px; }
.section { padding: var(--space-24) 0; }
/* Rhythm modifiers — vary vertical pacing so the page breathes instead of marching.
   (Equal padding on every section was the monotony tell.) */
.section--tight { padding: var(--space-16) 0; }
.section--flush-top { padding-top: var(--space-12); }
.section--warm { background: var(--surface-warm); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-small); font-weight: 700; color: var(--accent-strong);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display); font-size: var(--text-h2); font-weight: 600;
  color: var(--foreground); letter-spacing: -0.01em; line-height: 1.15;
  max-width: 22ch;
}
.section-intro {
  font-size: var(--text-body-lg); color: var(--muted-foreground);
  max-width: 60ch; margin-top: var(--space-4);
}
.section-head { margin-bottom: var(--space-12); }
.measure { max-width: 65ch; }
.text-muted { color: var(--muted-foreground); }
.center { text-align: center; }
.center .section-title, .center .section-intro { margin-left: auto; margin-right: auto; }

/* ─── Problem band — full-width darkened "looking up the stairs" photo, white text.
   Its own highlighted section: the dark image sets it apart from the calm sections
   either side (Kiran 2026-06-21). Falls back to deep green if the image is missing. ─── */
.section--problem {
  position: relative;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, rgba(11,26,19,0.80) 0%, rgba(11,26,19,0.88) 100%), url('img/problem-stairs.jpg');
  background-size: cover;
  background-position: center 35%;
  color: #fff;
}
.section--problem .section-eyebrow { color: rgba(255,255,255,0.82); }
.section--problem .section-title { color: #fff; }
.section--problem .section-intro { color: rgba(255,255,255,0.86); }
/* Three white pain-point cards on the dark photo (Kiran 2026-06-21 — hairline rules dropped:
   they cut across the stairs and read oddly). Three across on desktop, stacked on mobile. */
.problem-list {
  list-style: none; margin: var(--space-10) auto 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5);
  max-width: 920px;
}
.problem-list li {
  background: #fff; color: var(--foreground);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  font-family: var(--font-display); font-size: var(--text-body); font-weight: 500;
  line-height: 1.4; text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 760px) {
  .problem-list { grid-template-columns: 1fr; max-width: 420px; gap: var(--space-4); }
}

/* ─── Editorial section head — left-aligned heading column beside its content.
   The asymmetric default that replaces the centred eyebrow→title→grid stack.
   Heading sits in a sticky left rail on desktop; content flows in the right rail. ─── */
.editorial { display: grid; grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.6fr); gap: var(--space-12) var(--space-16); align-items: start; }
/* min-width:0 lets 1fr tracks shrink below a child's min-content (e.g. a nowrap price)
   instead of forcing the whole column — and the page — wider on phones. */
.editorial > * { min-width: 0; }
.editorial-head { position: sticky; top: calc(72px + var(--space-6)); }
.editorial-head .section-title { font-size: var(--text-h2); max-width: 16ch; }
.editorial-lead { font-size: var(--text-body-lg); color: var(--muted-foreground); max-width: 40ch; margin-top: var(--space-4); }
.editorial-aside { margin-top: var(--space-6); }
@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; gap: var(--space-8); }
  .editorial-head { position: static; }
  .editorial-head .section-title { max-width: 24ch; }
  /* ch-based measures can exceed the narrow column on phones — let them fill it */
  .editorial-lead, .editorial-aside { max-width: 100%; }
}

/* Illustrative / placeholder marker (pre-launch honesty) */
.illustrative-note {
  font-size: var(--text-caption); color: var(--warning); font-weight: 600;
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: var(--space-4);
}

/* ═══════════════════════════════════════════════
   BUTTONS  (ported from design system)
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; border: none; cursor: pointer;
  border-radius: var(--radius-md); transition: all var(--duration-base) var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

.btn-lg { min-height: 52px; padding: 0 var(--space-8); font-size: var(--text-body); }
.btn-md { min-height: 48px; padding: 0 var(--space-6); font-size: var(--text-body); }
.btn-sm { min-height: 44px; padding: 0 var(--space-5); font-size: var(--text-small); }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #1f4235; box-shadow: var(--shadow-md); }

.btn-cta { background: var(--cta); color: var(--cta-foreground); box-shadow: var(--shadow-md); }
.btn-cta:hover { filter: brightness(0.9); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .btn-cta:hover { transform: none; } }

.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }

.btn-ghost { background: transparent; color: var(--primary); border: none; }
.btn-ghost:hover { background: var(--surface-warm); }

.btn-link {
  background: transparent; color: var(--primary);
  border: none; text-decoration: underline; padding: 0; min-height: auto;
}
.btn-link:hover { text-decoration-thickness: 2px; }

/* ═══════════════════════════════════════════════
   FORM ELEMENTS  (ported from design system)
   ═══════════════════════════════════════════════ */
.field-group { margin-bottom: var(--space-6); }
.field-label {
  display: block; font-size: var(--text-small); font-weight: 500;
  color: var(--foreground); margin-bottom: var(--space-2);
}
.field-input {
  display: block; width: 100%;
  font-family: var(--font-body); font-size: var(--text-body); color: var(--foreground);
  background: var(--surface); border: 2px solid var(--input-border);
  border-radius: var(--radius-md); padding: var(--space-3) var(--space-4);
  min-height: 52px; transition: border-color var(--duration-base) var(--ease);
  appearance: none; -webkit-appearance: none;
}
.field-input:focus { outline: 2px solid var(--ring); outline-offset: -2px; border-color: var(--ring); box-shadow: 0 0 0 2px rgba(29,111,184,.2); }
.field-input::placeholder { color: var(--muted-foreground); opacity: 0.7; }
.field-input.error { border-color: var(--destructive); }
/* QW-2: positive valid state — green border + subtle tint; no animation (prefers-reduced-motion safe) */
.field-input.valid { border-color: var(--success); background: #d4edda; }
.field-help { font-size: var(--text-caption); color: var(--muted-foreground); margin-top: var(--space-2); }
.field-error {
  font-size: var(--text-small); color: var(--destructive);
  margin-top: var(--space-2); display: none; align-items: center; gap: var(--space-2);
}
.field-error.show { display: flex; }
.field-error svg { flex-shrink: 0; }

/* Checkbox / Radio */
.check-row {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  cursor: pointer; transition: background var(--duration-fast) var(--ease);
  min-height: 48px;
}
.check-row:hover { background: var(--surface-warm); }
.check-row input[type="checkbox"],
.check-row input[type="radio"] {
  width: 24px; height: 24px; flex-shrink: 0;
  accent-color: var(--primary); cursor: pointer;
}
.check-row span { font-size: var(--text-body); cursor: pointer; color: var(--foreground); flex: 1; }

/* Image radio — staircase / choice selector */
.image-radio-group { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.image-radio-card { position: relative; cursor: pointer; flex: 1 1 130px; }
.image-radio-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.image-radio-inner {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  padding: var(--space-6) var(--space-5); border-radius: var(--radius-lg);
  border: 2.5px solid var(--border); background: var(--surface);
  transition: all var(--duration-base) var(--ease); height: 100%;
}
.image-radio-card input:checked + .image-radio-inner {
  border-color: var(--success); background: var(--surface-warm); box-shadow: var(--shadow-md);
}
/* QW-2: green check badge on the selected card (top-right corner, opacity-only reveal = reduced-motion safe) */
.image-radio-card input:checked + .image-radio-inner::after {
  content: "✓";
  position: absolute; top: var(--space-2); right: var(--space-2);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--success); color: #fff;
  font-size: 12px; font-weight: 700; line-height: 22px; text-align: center;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
}
.image-radio-inner { position: relative; }
.image-radio-card:focus-within .image-radio-inner { outline: 2px solid var(--ring); outline-offset: 2px; }
.image-radio-icon {
  width: 56px; height: 56px; background: var(--surface-warm);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.image-radio-card input:checked + .image-radio-inner .image-radio-icon { background: var(--surface); }
.image-radio-label { font-size: var(--text-small); font-weight: 600; color: var(--foreground); text-align: center; }
.image-radio-sub { font-size: var(--text-caption); color: var(--muted-foreground); text-align: center; }
/* Photo option cards (staircase / condition) — real stairlift visuals in a 4:3 frame.
   Icon-only options use the same frame (--icon variant) so every card in a row matches height. */
.image-radio-card--photo .image-radio-inner { padding: var(--space-3) var(--space-3) var(--space-4); gap: var(--space-2); }
.image-radio-photo {
  width: 100%; aspect-ratio: 4 / 3; max-height: 150px; border-radius: var(--radius-md); overflow: hidden;
  background: var(--surface-warm); display: block;
}
.image-radio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-radio-photo--icon { display: flex; align-items: center; justify-content: center; color: var(--primary); }

/* ═══════════════════════════════════════════════
   BADGES / CHIPS  (ported)
   ═══════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: var(--text-caption); font-weight: 600;
}
.badge-primary { background: var(--primary); color: #fff; }
.badge-accent { background: var(--accent); color: #fff; }
.badge-surface { background: var(--surface-warm); color: var(--foreground); border: 1px solid var(--border); }
.badge-success { background: #d4edda; color: var(--success); }
.badge-warning { background: #fff3cd; color: var(--warning); }
.badge-info { background: #cce5ff; color: var(--info); }
/* White credential pill with a filled-green check disc (matched-installer panel) */
.badge-white { background: #fff; color: var(--foreground); border: 1px solid var(--border); padding-left: 6px; }
.badge-white .tick-disc--sm { width: 16px; height: 16px; }
.badge-white .tick-disc--sm svg { width: 10px; height: 10px; }

/* ═══════════════════════════════════════════════
   PROGRESS BAR  (ported)
   ═══════════════════════════════════════════════ */
.progress-wrap { width: 100%; }
.progress-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-small); font-weight: 600; color: var(--foreground);
  margin-bottom: var(--space-2);
}
.progress-track {
  height: 10px; background: var(--surface-warm);
  border-radius: var(--radius-pill); overflow: hidden; border: 1px solid var(--border);
}
.progress-fill {
  height: 100%; background: var(--primary); border-radius: var(--radius-pill);
  transition: width var(--duration-slow) var(--ease); width: 17%;
}

/* ═══════════════════════════════════════════════
   ACCORDION (FAQ)  (ported)
   ═══════════════════════════════════════════════ */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; max-width: 760px; margin: 0 auto; background: var(--surface); }
.accordion-item + .accordion-item { border-top: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); background: var(--surface);
  border: none; cursor: pointer; font-family: var(--font-body);
  font-size: var(--text-body); font-weight: 600; color: var(--foreground);
  text-align: left; min-height: 52px;
  transition: background var(--duration-fast) var(--ease);
}
.accordion-trigger:hover { background: var(--surface-warm); }
.accordion-trigger[aria-expanded="true"] { background: var(--surface-warm); }
.accordion-chevron { transition: transform var(--duration-base) var(--ease); flex-shrink: 0; color: var(--primary); }
.accordion-trigger[aria-expanded="true"] .accordion-chevron { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height var(--duration-slow) var(--ease); background: var(--surface-warm); }
.accordion-content.open { max-height: 420px; }
.accordion-content-inner { padding: var(--space-5) var(--space-6); font-size: var(--text-body); color: var(--foreground); }
.accordion-content-inner strong { color: var(--primary); }
/* In the editorial FAQ split, the accordion fills its right rail (no centring). */
.editorial-body .accordion { max-width: none; margin: 0; }
.faq-editorial .editorial-lead a { color: var(--primary); font-weight: 700; }
.trust-mark-block { margin-top: var(--space-16); }

/* ═══════════════════════════════════════════════
   CARD BASE  (ported)
   ═══════════════════════════════════════════════ */
.card {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden;
}
.card-warm {
  background: var(--surface-warm); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden;
}

/* ═══ NN#1 — Un-gated Price Module · V4 "editorial anchor + in-section trust" (ratified 2026-06-22) ═══
   Statement LEFT (heading + the Which? £3,867 UK average as an editorial anchor), priced list RIGHT,
   then ONE in-section trust ribbon (VAT relief · price-certainty · free-to-you). Replaces the busier
   four-pill layout (old .price-vat/.price-which/.price-free/.price-guarantee). Reuses .editorial /
   .price-list / .price-tier / .price-stamp. The £3,867 frames the list as a saving (R076/T012);
   tier name still precedes price in the list (R079, load-bearing). */
/* Editorial benchmark anchor — the average UK price as the left-column hero */
.price-benchmark { margin-top: var(--space-6); }
.price-benchmark-label { font-size: var(--text-body); color: var(--muted-foreground); }
.price-benchmark-figure {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--primary); line-height: 0.95; font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em; margin: var(--space-2) 0 var(--space-3);
}
.price-benchmark-sub { font-size: var(--text-small); color: var(--foreground); max-width: 34ch; }
.price-benchmark-sub strong { color: var(--primary); }
/* Sourced-credit chip — plain "Which?" wordmark (NOT the Trusted Trader endorsement mark, by design:
   the £3,867 is a Which? consumer-survey figure, not an endorsement of us) */
.price-cite {
  display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-4);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 5px 14px; font-size: var(--text-caption); color: var(--muted-foreground);
}
.price-cite svg { color: var(--primary-soft); flex-shrink: 0; }
.price-whichmark { font-family: var(--font-body); font-weight: 700; color: var(--foreground); letter-spacing: -0.02em; }
.price-list { display: flex; flex-direction: column; }
.price-tier {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-6);
  padding: var(--space-6) 0; border-bottom: 1px solid var(--border);
}
.price-tier:first-child { padding-top: 0; }
.price-tier-name { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; color: var(--foreground); display: flex; align-items: center; gap: var(--space-2); }
.price-tier-tag { font-family: var(--font-body); font-size: var(--text-caption); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent-strong); background: var(--surface-warm); border-radius: var(--radius-sm); padding: 1px 8px; }
.price-tier-sub { font-size: var(--text-small); color: var(--muted-foreground); margin-top: var(--space-1); }
.price-tier-value {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.375rem); font-weight: 600;
  color: var(--primary); font-variant-numeric: tabular-nums; white-space: nowrap; letter-spacing: -0.01em;
}
.price-stamp {
  margin-top: var(--space-5); font-size: var(--text-caption); color: var(--muted-foreground);
  display: flex; align-items: center; gap: var(--space-2);
}
.price-stamp svg { flex-shrink: 0; }
/* In-section trust ribbon — VAT relief · price-certainty guarantee · free-to-you, consolidated into
   one tidy three-up block (no left side-stripe; warm surface + full hairline border) */
.price-trust-ribbon {
  margin-top: var(--space-12); background: var(--surface-warm); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-6) var(--space-8);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
}
.price-trust-item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-small); color: var(--foreground); line-height: 1.5; }
.price-trust-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.price-trust-item strong { color: var(--primary); }
@media (max-width: 860px) {
  .price-trust-ribbon { grid-template-columns: 1fr; gap: var(--space-5); }
  .price-benchmark-sub { max-width: 100%; }
}
@media (max-width: 520px) {
  /* On small phones let the price row wrap (value drops below the name) so the
     non-breaking "from ~£X" can never push the page wider. */
  .price-tier { flex-wrap: wrap; gap: var(--space-1) var(--space-4); }
  .price-tier-value { font-size: 1.625rem; }
}

/* ═══ NN#4 — Disclosure Block (ported) ═══ */
.disclosure-block { max-width: 100%; }
.disclosure-block-header {
  background: var(--surface-warm); padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: var(--space-3);
}
.disclosure-block-header h4 { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 500; color: var(--foreground); }
.disclosure-stepper { padding: var(--space-5) var(--space-6); }
.disclosure-step { display: flex; gap: var(--space-4); padding: var(--space-4) 0; }
.disclosure-step + .disclosure-step { border-top: 1px solid var(--border); }
.step-num {
  width: 32px; height: 32px; flex-shrink: 0; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: var(--text-small); font-weight: 700;
}
.step-text { font-size: var(--text-body); color: var(--foreground); }
.step-text strong { color: var(--primary); }

/* ═══ NN#3 — Single-Named-Installer Trust Panel — editorial feature (portrait + detail) ═══ */
.installer-feature {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-12); align-items: start;
  margin-bottom: var(--space-16);
}
.installer-portrait { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--surface); aspect-ratio: 4/5; }
.installer-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
/* Matched-installer = anonymous: blur the photo + overlay the "matched by postcode" message (no specific person implied) */
.installer-portrait--matched img { filter: blur(4px); transform: scale(1.04); object-position: 50% 28%; }
.installer-portrait-veil {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: var(--space-4); padding: var(--space-8);
  background: linear-gradient(180deg, rgba(20,64,47,0.32) 0%, rgba(20,64,47,0.55) 50%, rgba(20,64,47,0.62) 100%); color: #fff;
}
/* Verified-seal badge (lucide badge-check), enlarged, on a soft translucent-white disc so the
   white mark stands out over the image (Kiran 2026-06-22). */
.installer-portrait-badge {
  width: 108px; height: 108px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.installer-portrait-badge svg { color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }
.installer-portrait-title { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; color: #fff; line-height: 1.25; max-width: 18ch; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.installer-portrait-sub { font-size: var(--text-small); color: rgba(255,255,255,0.92); max-width: 24ch; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.installer-portrait-tag {
  position: absolute; left: var(--space-4); bottom: var(--space-4);
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(20,64,47,0.92); color: #fff; font-size: var(--text-caption); font-weight: 700;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}
.installer-portrait-tag svg { color: #fff; }
.installer-detail .section-title { margin-bottom: var(--space-6); }
.installer-name-block { padding-bottom: var(--space-4); border-bottom: 1px solid var(--border); margin-bottom: var(--space-5); }
.installer-name-block h4 { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 600; color: var(--primary); }
.installer-area { font-size: var(--text-small); color: var(--muted-foreground); margin-top: var(--space-1); }
.installer-chips-lead { font-size: var(--text-small); font-weight: 600; color: var(--foreground); margin-bottom: var(--space-3); }
.installer-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-6); }
.installer-differentiator {
  background: var(--primary); color: #fff;
  padding: var(--space-5) var(--space-6); border-radius: var(--radius-md);
  font-size: var(--text-body); font-weight: 600; display: flex; align-items: center; gap: var(--space-3);
}
@media (max-width: 860px) {
  .installer-feature { grid-template-columns: 1fr; gap: var(--space-8); margin-bottom: var(--space-12); }
  .installer-portrait { max-width: 360px; }
}

/* ═══ NN#2 — Surveyor Band (centred pull-quote; full border, no side stripe) ═══ */
.surveyor-band {
  background: var(--surface-warm); border: 1px solid var(--border);
  padding: var(--space-10) var(--space-10) var(--space-8); border-radius: var(--radius-lg);
  max-width: 760px; margin: 0 auto; text-align: center;
}
.surveyor-band::before {
  content: "\201C"; display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 3.5rem; line-height: 0.6; color: var(--accent); opacity: 0.4; margin-bottom: var(--space-3);
}
.surveyor-band p { font-size: var(--text-body-lg); font-style: italic; color: var(--foreground); }
.surveyor-band-attribution { font-size: var(--text-small); color: var(--muted-foreground); margin-top: var(--space-4); font-weight: 600; font-style: normal; }

/* ═══ NN#5 — Trust Mark Row (ported) ═══ */
.trust-mark-row {
  display: flex; flex-wrap: wrap; gap: var(--space-6); align-items: center; justify-content: center;
  padding: var(--space-6) var(--space-8); background: var(--surface);
  border-radius: var(--radius-lg); border: 1px solid var(--border); max-width: 760px; margin: 0 auto;
}
.trust-mark-item { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); min-width: 100px; }
.trust-mark-box {
  width: 110px; height: 56px; background: var(--surface-warm);
  border: 1.5px dashed var(--input-border); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-caption); font-weight: 700; letter-spacing: 0.04em;
  color: var(--muted-foreground); text-align: center; padding: var(--space-2); line-height: 1.3;
}
.trust-mark-name { font-size: var(--text-caption); font-weight: 600; color: var(--muted-foreground); text-align: center; }

/* ═══ NN#7 — Whole-Life-Cost honesty block — clean editorial list (right rail) ═══ */
.whole-life-items { display: flex; flex-direction: column; }
.wlc-item { display: flex; align-items: flex-start; gap: var(--space-5); padding: var(--space-6) 0; border-bottom: 1px solid var(--border); }
.wlc-item:first-child { padding-top: 0; }
.wlc-item:last-child { border-bottom: none; padding-bottom: 0; }
.wlc-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.wlc-label { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; color: var(--foreground); }
.wlc-detail { font-size: var(--text-small); color: var(--muted-foreground); margin-top: var(--space-1); max-width: 56ch; }

/* ═══ Testimonial (ported) ═══ */
.testimonial { max-width: 560px; padding: var(--space-8); position: relative; }
.testimonial-quote-mark {
  font-family: var(--font-display); font-size: 5rem; line-height: 0.5;
  color: var(--accent); opacity: 0.3; position: absolute; top: var(--space-6); left: var(--space-6);
  font-weight: 600; pointer-events: none;
}
.testimonial-text { font-size: var(--text-body-lg); font-style: italic; line-height: 1.6; color: var(--foreground); position: relative; padding-left: var(--space-8); margin-bottom: var(--space-5); }
.testimonial-text strong { font-style: normal; color: var(--primary); }
.testimonial-attribution { display: flex; align-items: center; gap: var(--space-3); padding-left: var(--space-8); }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--surface-warm);
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted-foreground); flex-shrink: 0;
}
.testimonial-name { font-size: var(--text-small); font-weight: 600; color: var(--foreground); }
.testimonial-detail { font-size: var(--text-caption); color: var(--muted-foreground); }
.testimonial-stars { color: var(--accent); font-size: var(--text-small); letter-spacing: 2px; margin-bottom: var(--space-3); padding-left: var(--space-8); }

/* ═══════════════════════════════════════════════════════════════════════════
   NEW PAGE-LEVEL COMPONENTS  (homepage prototype — same tokens)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Site header / nav (sections-only links, no traffic leaks) ─── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,242,0.92); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: var(--space-6); min-height: 72px; }
/* Provisional typographic wordmark — name PARKED (High-tier, Kiran only).
   "KindStep" is a labelled visual STAND-IN (documented front-runner) to show the lockup
   quality; swap to the chosen name when it lands. Two-tone Fraunces + soft abstract mark
   (home + gentle rise) per design-system §8 — no crest, no medical cross, no literal stairlift. */
.brand-wordmark {
  display: inline-flex; align-items: center; gap: var(--space-2);
  text-decoration: none; margin-right: auto; line-height: 1;
}
.brand-wordmark:hover { text-decoration: none; }
.brand-mark { flex-shrink: 0; display: block; }
.brand-name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: -0.015em;
}
.brand-name .bn-1 { color: var(--primary); }
.brand-name .bn-2 { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: var(--space-6); }
.main-nav a { font-size: var(--text-small); font-weight: 600; color: var(--foreground); text-decoration: none; }
.main-nav a:hover { color: var(--primary); text-decoration: underline; }
/* The nav CTA is a button: keep its white-on-terracotta (5.8:1 AA) — the .main-nav a rule
   above would otherwise force dark ink on orange (~2.7:1, fails WCAG). */
.main-nav a.btn-cta { color: var(--cta-foreground); }
.main-nav a.btn-cta:hover { color: var(--cta-foreground); text-decoration: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-height: 44px; padding: 0 var(--space-2); font-size: var(--text-small);
  font-weight: 700; color: var(--primary); text-decoration: none; white-space: nowrap;
}
.header-phone:hover { text-decoration: underline; }
.header-phone svg { flex-shrink: 0; }
@media (max-width: 860px) {
  /* Freephone stays visible on mobile (escape hatch); sits beside the menu button */
  .header-phone { font-size: var(--text-caption); padding: 0; }
}
@media (max-width: 430px) {
  /* Icon-only freephone on phones (covers 390/414/430) so the header never overflows;
     the number stays a tap target and is repeated in the hero + footer. */
  .header-phone span { position: absolute; left: -9999px; }
}
.nav-toggle { display: none; align-items: center; justify-content: center; min-width: 48px; min-height: 48px; background: none; border: none; cursor: pointer; color: var(--foreground); padding: var(--space-2); }
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header .container { gap: var(--space-3); }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2);
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--background); border-bottom: 1px solid var(--border);
    padding: var(--space-4) var(--space-6); box-shadow: var(--shadow-md);
  }
  /* :not(.btn) so this vertical-only padding doesn't strip the "See my prices" button's
     own horizontal padding — that left its label hugging the edges (Kiran 2026-06-22). */
  .main-nav.open a:not(.btn), .main-nav.open .header-phone { padding: var(--space-2) 0; }
  .main-nav.open a.btn-cta { margin-top: var(--space-2); }
}

/* ─── Hero (A — Attention · PT-10 left/right split) ─── */
.hero { padding: var(--space-20) 0 var(--space-16); }

/* PT-10 hero grid (CW lead-gen wireframe): form spans the RIGHT; intro above proof on the LEFT.
   Areas let mobile restack to intro → form → proof (the canonical mobile wireframe order). */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "intro form" "proof form";
  column-gap: var(--space-12);
  row-gap: var(--space-6);
  align-items: start;
}
.hero-intro { grid-area: intro; }
.hero-proof { grid-area: proof; display: flex; flex-direction: column; }
.hero-right { grid-area: form; position: sticky; top: calc(72px + var(--space-6)); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-small); font-weight: 700; color: var(--primary-soft);
  margin-bottom: var(--space-4); letter-spacing: 0.02em;
}
.hero-headline {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 700;
  line-height: 1.07; color: var(--primary); letter-spacing: -0.015em; margin-bottom: var(--space-5);
}
.hero-headline em { font-style: normal; color: var(--accent); } /* terracotta emphasis on the wedge phrase */
.hero-bullets { list-style: none; margin-bottom: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.hero-bullets li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-body); color: var(--foreground); }
.hero-bullets .tick-disc {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-soft); color: #fff; flex-shrink: 0; margin-top: 2px;
}
.hero-bullets .tick-disc svg { color: #fff; stroke-width: 3; }
/* Small filled tick (white check in a green disc) — reused by the review's "Verified customer" badge */
.tick-disc--sm { width: 18px; height: 18px; border-radius: 50%; background: var(--primary-soft);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tick-disc--sm svg { color: #fff; stroke-width: 3; }
.hero-bullets strong { font-weight: 700; }
/* Social-proof eyebrow ABOVE the headline — stars + text, NO pill enclosure (Kiran 2026-06-21). */
.hero-socialproof {
  display: inline-flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
  max-width: 100%; margin-bottom: var(--space-5);
}
@media (max-width: 520px) {
  .hero-socialproof .sp-text { font-size: var(--text-caption); line-height: 1.35; }
}
.hero-socialproof .sp-text { font-size: var(--text-small); color: var(--primary-soft); font-weight: 700; }
/* White-star-in-green-square marks (Trustpilot-style treatment, OUR brand green — NOT Trustpilot's stars).
   OWNER-RATIFIED 2026-06-21 (Kiran). Reusable: used by the social-proof eyebrow AND the review card.
   Flagged for a solicitor check before the page goes LIVE (legal-envelope C2). */
.brand-stars { display: inline-flex; gap: 3px; flex-shrink: 0; }
.brand-star {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
  background: var(--primary-soft); color: #fff; font-size: 11px; line-height: 1;
}
.hero-socialproof .sp-text em { font-style: normal; color: var(--muted-foreground); font-weight: 400; }
.hero-image-frame {
  aspect-ratio: 4/3; background: var(--surface-warm);
  border-radius: var(--radius-xl); overflow: hidden;
  border: 4px solid var(--surface); box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-5);
}
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; }
/* Real photography fills avatar slots (Phase 3 assets) */
.testimonial-avatar img, .installer-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.installer-avatar img { object-position: 50% 12%; } /* surveyor is full-body 3:4 — frame the face */
.testimonial-avatar:has(img), .installer-avatar:has(img) { background: none; }
.hero-talk-link {
  font-size: var(--text-small); color: var(--muted-foreground);
  display: flex; align-items: center; gap: var(--space-2); margin-top: var(--space-2);
}
.hero-talk-link svg { color: var(--muted-foreground); flex-shrink: 0; }

/* Form card in hero right column — distinct elevated surface, NEVER white-on-white */
.hero-right .form-card {
  max-width: 100%;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Anti-spam line below the submit button (padlock left + merged privacy line) */
.form-antispam {
  font-size: var(--text-caption); color: var(--muted-foreground);
  margin-top: var(--space-4);
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}
.form-antispam svg { color: var(--muted-foreground); flex-shrink: 0; }

/* ─── Borrowed-authority trust strip (hard under the hero) ───
   Reworked 2026-06-20: the old dark-green band with pale items didn't stand out (Kiran).
   Now a light band with a decisive terracotta top-rule and high-contrast badge chips —
   each the matched installer's GENUINE accreditation (borrowed authority; no Trustpilot). */
.policy-bar { background: var(--surface); border-top: 3px solid var(--accent); box-shadow: inset 0 -1px 0 var(--border); }
/* Copy on the LEFT, logos on the RIGHT (Kiran 2026-06-21); wraps to stacked on narrow screens. */
.policy-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-5) var(--space-8); padding-top: var(--space-6); padding-bottom: var(--space-6); }
.policy-lead { font-family: var(--font-display); font-weight: 600; color: var(--primary); font-size: var(--text-body); flex: 1 1 300px; max-width: 480px; }
.policy-lead strong { font-weight: 700; color: var(--primary); }
.policy-item {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-small); font-weight: 700; color: var(--primary);
  background: #F3F7F3; border: 1px solid #D7E4DA;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-md);
}
.policy-item .policy-ic {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.policy-item .policy-ic svg { width: 16px; height: 16px; }
/* Real accreditation logo strip (the installers' marks) — enlarged 2026-06-21 (Kiran:
   bigger logos read as more credible at a glance). */
.policy-logos { display: inline-flex; align-items: center; gap: var(--space-8); flex-wrap: wrap; justify-content: flex-end; }
.policy-logo { height: 80px; width: auto; display: block; }
.policy-logo--wide { height: 56px; }
/* Mobile: centre the strip — lead copy and logos both centred (Kiran 2026-06-22).
   The two square logos already wrap onto the top row and the wide TrustMark onto the
   row below; justify-content:center simply centres each row (no forced break needed). */
@media (max-width: 760px) {
  .policy-bar .container { justify-content: center; text-align: center; gap: var(--space-6) var(--space-8); }
  .policy-lead { flex-basis: 100%; max-width: 100%; text-align: center; }
  .policy-logos { width: 100%; justify-content: center; }
}

/* ─── How it works (T — Transformation) — editorial numbered flow, NOT centred cards.
   Oversized Fraunces numerals carry the rhythm; a hairline connects the stages; the
   final stage (the outcome) is emphasised in terracotta. Left-aligned throughout. ─── */
.how-head { max-width: 32ch; margin-bottom: var(--space-12); }
.how-flow {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
}
/* No connecting line — the numerals + terracotta ticks group the steps on their own. */
.how-num {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 3.25rem;
  line-height: 1; color: var(--primary); letter-spacing: -0.02em; margin-bottom: var(--space-5);
  position: relative;
}
.how-num::after {
  content: ""; position: absolute; left: 0; bottom: -0.3em; width: 1.5em; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.how-stage-body h3 { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 600; color: var(--foreground); margin-bottom: var(--space-3); line-height: 1.2; }
.how-stage-body p { font-size: var(--text-body); color: var(--muted-foreground); max-width: 32ch; }
.how-stage--outcome .how-num { color: var(--accent); }
/* Real lifestyle still per stage (dignity, not animated characters) — sits above the numeral */
.how-stage-img {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: var(--space-6); background: var(--surface-warm); box-shadow: var(--shadow-sm);
}
.how-stage-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .how-flow { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* ─── Benefits (I — Interest) — asymmetric bento, NOT a 2×2 grid of clones.
   The wedge ("No bombardment") is the dominant block in deep green; the other three
   read as a quieter stacked list beside it. Different shapes break the card monotony. ─── */
.benefit-bento { display: grid; grid-template-columns: 1.05fr 1.25fr; gap: var(--space-8); align-items: stretch; }
.benefit-lead {
  background: var(--primary); color: #fff; border-radius: var(--radius-xl);
  padding: var(--space-10); display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.benefit-lead-icon {
  width: 60px; height: 60px; margin-bottom: var(--space-6); border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff;
}
.benefit-lead h3 { font-family: var(--font-display); font-size: var(--text-h2); font-weight: 600; line-height: 1.1; margin-bottom: var(--space-4); }
.benefit-lead p { font-size: var(--text-body-lg); color: rgba(255,255,255,0.88); }
.benefit-lead strong { color: #fff; font-weight: 700; box-shadow: inset 0 -0.5em 0 rgba(194,96,47,0.45); }
.benefit-rest { display: flex; flex-direction: column; gap: var(--space-5); }
.benefit-item {
  display: flex; gap: var(--space-5); align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6); box-shadow: var(--shadow-sm); flex: 1;
}
.benefit-item-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-md);
  background: var(--surface-warm); display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.benefit-item h3 { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; color: var(--foreground); margin-bottom: var(--space-1); }
.benefit-item p { font-size: var(--text-small); color: var(--muted-foreground); }
@media (max-width: 860px) {
  .benefit-bento { grid-template-columns: 1fr; gap: var(--space-5); }
  .benefit-lead { padding: var(--space-8); }
  .benefit-lead h3 { font-size: var(--text-h3); }
}

/* ─── Comparison table (C — Compare; our column dominates) ─── */
.compare-wrap { max-width: 820px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px; }
.compare-table th, .compare-table td { padding: var(--space-4) var(--space-5); text-align: left; font-size: var(--text-body); }
.compare-table thead th { font-family: var(--font-display); font-weight: 600; font-size: var(--text-body-lg); border-bottom: 2px solid var(--border); }
.compare-table .col-us { background: var(--primary); color: #fff; text-align: center; }
.compare-table thead .col-us { border-bottom: 2px solid var(--primary); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.compare-table .col-them { color: var(--muted-foreground); text-align: center; }
.compare-table tbody td.col-us { background: var(--primary); color: #fff; font-weight: 600; }
.compare-table tbody tr:last-child td.col-us { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.compare-table tbody td { border-bottom: 1px solid var(--border); }
.compare-table .row-label { font-weight: 600; color: var(--foreground); }
.compare-table .tick { color: #fff; }
.compare-table .cross { color: var(--destructive); }
.compare-table .col-us .tick svg, .compare-table .col-us .label-strong { color: #fff; }

/* ─── Compare as the page's one DARK focal moment (art-direction-per-section) ───
   Deep-green drench; the KindStep column inverts to a bright cream band so it pops,
   the "usual way" column recedes. One confident beat that breaks the cream rhythm. */
.compare-section { background: var(--primary); color: #fff; }
.compare-head .section-eyebrow { color: #fff; opacity: 0.85; }
.compare-head .section-eyebrow svg { color: var(--accent); opacity: 1; }
.compare-head .section-title { color: #fff; }
.compare-section .compare-wrap { margin-top: var(--space-10); }
.compare-section .compare-table thead th { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.18); }
.compare-section .compare-table .row-label { color: rgba(255,255,255,0.92); }
.compare-section .compare-table tbody td { border-bottom-color: rgba(255,255,255,0.12); }
.compare-section .compare-table .col-them { color: rgba(255,255,255,0.62); } /* recessive but AA+ (~5.1:1) */
.compare-section .compare-table .col-them .cross { color: rgba(255,255,255,0.5); }
/* Our column becomes the bright, raised cream band */
.compare-section .compare-table thead .col-us { background: var(--surface); color: var(--primary); }
.compare-section .compare-table tbody td.col-us { background: var(--surface); color: var(--primary); }
.compare-section .compare-table .col-us .tick { color: var(--success); }
.compare-section .compare-table .col-us .tick svg { color: var(--success); }

/* ─── Multi-step lead form (now in hero right column; also used standalone) ─── */
.form-card {
  background: var(--surface); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); overflow: hidden;
  /* When used standalone (outside hero), constrain and centre */
  max-width: 620px; margin: 0 auto;
}
/* In the hero right column, let the grid column determine the width */
.hero-right .form-card { max-width: 100%; margin: 0; }
.form-card-header { background: var(--primary); color: #fff; padding: var(--space-6) var(--space-8); }
.form-card-header .form-outcome { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 600; }
.form-card-header .form-time { font-size: var(--text-small); opacity: 0.9; margin-top: var(--space-2); display: flex; align-items: center; gap: var(--space-2); }
.form-card-body { padding: var(--space-8); }
.form-progress { margin-bottom: var(--space-8); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeStep var(--duration-base) var(--ease); }
@keyframes fadeStep { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .form-step.active { animation: none; } }
.form-step-question { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; color: var(--foreground); margin-bottom: var(--space-2); }
.form-step-hint { font-size: var(--text-small); color: var(--muted-foreground); margin-bottom: var(--space-6); }
.form-nav { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-8); }
.form-nav .btn-back { order: -1; margin-right: auto; }
.consent-row { margin-top: var(--space-2); }
.summary-list { list-style: none; background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4) var(--space-6); margin-bottom: var(--space-6); }
.summary-list li { display: flex; justify-content: space-between; gap: var(--space-4); padding: var(--space-2) 0; font-size: var(--text-small); }
.summary-list li + li { border-top: 1px solid var(--border); }
.summary-list .s-label { color: var(--muted-foreground); }
.summary-list .s-value { font-weight: 600; color: var(--foreground); text-align: right; }
.form-success { text-align: center; padding: var(--space-4) 0; }
.form-success .success-icon { width: 64px; height: 64px; margin: 0 auto var(--space-4); background: #d4edda; color: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success h3 { font-family: var(--font-display); font-size: var(--text-h3); color: var(--foreground); margin-bottom: var(--space-5); line-height: 1.2; }
/* Heading receives programmatic focus on success (screen-reader announce) — no visible box for sighted users */
.form-success h3:focus, .form-success h3:focus-visible { outline: none; }

/* Matched-installer card (humanised handoff) */
.success-match {
  display: flex; align-items: center; gap: var(--space-4); text-align: left;
  background: var(--surface-warm); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); margin-bottom: var(--space-6);
}
.success-surveyor {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: 50% 12%;
  flex-shrink: 0; border: 2px solid var(--surface);
}
.success-match-label { display: block; font-size: var(--text-caption); color: var(--muted-foreground); }
.success-match-name { display: block; font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; color: var(--primary); margin: 2px 0 var(--space-2); }
.success-match-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.success-match-chips span { display: inline-flex; align-items: center; gap: 4px; font-size: var(--text-caption); font-weight: 600; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 2px 10px; color: var(--foreground); }
.success-match-chips span svg { color: var(--success); }
.success-match-name { font-size: var(--text-body-lg) !important; }
.success-match-note { display: block; font-size: var(--text-caption); color: var(--muted-foreground); margin-top: var(--space-2); line-height: 1.45; }

/* What-happens-next steps */
.success-steps { list-style: none; counter-reset: s; text-align: left; display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-5); }
.success-steps li { position: relative; padding-left: var(--space-10); font-size: var(--text-small); color: var(--foreground); line-height: 1.5; }
.success-steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0; width: 28px; height: 28px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--text-caption);
}
.success-steps strong { color: var(--primary); }
.success-prototype { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-caption); color: var(--muted-foreground); font-style: italic; }
.success-prototype svg { flex-shrink: 0; }

/* QW-1: decision reassurance (post-rationalisation) */
.success-reassure { text-align: left; background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5); margin-bottom: var(--space-5); }
.success-reassure-lead { display: flex; align-items: center; gap: var(--space-2); font-weight: 600; color: var(--primary); font-size: var(--text-small); margin-bottom: var(--space-3); }
.success-reassure-lead svg { color: var(--success); flex-shrink: 0; }
.success-reasons { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.success-reasons li { display: flex; align-items: flex-start; gap: var(--space-2); font-size: var(--text-small); color: var(--foreground); line-height: 1.5; }
.success-reasons li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.success-reasons strong { color: var(--primary); }

/* QW-1: while-you-wait momentum-holder */
.success-meanwhile { text-align: left; border: 1px dashed var(--border); border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); margin-bottom: var(--space-5); }
.success-meanwhile-label { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-caption); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted-foreground); margin-bottom: var(--space-2); }
.success-meanwhile-label svg { color: var(--primary); }
.success-meanwhile p { font-size: var(--text-small); color: var(--foreground); line-height: 1.5; margin: 0; }
.success-meanwhile strong { color: var(--primary); }

/* Ownership screen-out note (gentle, reveals for tenant/other) */
.ownership-note {
  display: none; align-items: flex-start; gap: var(--space-2);
  margin-top: var(--space-5); padding: var(--space-4) var(--space-5);
  background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: var(--text-small); color: var(--foreground);
}
.ownership-note.show { display: flex; }
.ownership-note svg { color: var(--info); flex-shrink: 0; margin-top: 2px; }

/* Assertive anti-spam guarantee at point of capture (deviation g) */
.antispam-assert {
  display: flex; align-items: flex-start; gap: var(--space-2);
  margin-bottom: var(--space-6); padding: var(--space-4) var(--space-5);
  background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: var(--text-small); color: var(--foreground);
}
.antispam-assert svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.antispam-assert strong { color: var(--primary); }

/* "Scanning postcode…" transition (deviation d) */
.form-scan { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-5); padding: var(--space-16) var(--space-6); text-align: center; }
.form-scan[hidden] { display: none; } /* respect the hidden attribute (class beats UA + base rule) */
.scan-spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 4px solid var(--surface-warm); border-top-color: var(--primary);
  animation: scanSpin 0.9s linear infinite;
}
.scan-text { font-size: var(--text-body); color: var(--foreground); max-width: 28ch; }
.scan-text strong { color: var(--primary); text-transform: uppercase; }
@keyframes scanSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .scan-spinner { animation: none; border-top-color: var(--primary); }
}

/* Final CTA band — structured closing moment (everything on its own line, centred column) */
.final-cta { text-align: center; }
.final-cta-inner { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.final-cta .section-title { margin: 0 auto var(--space-4); }
.final-cta-lead { font-size: var(--text-body-lg); color: var(--muted-foreground); max-width: 44ch; margin: 0 auto var(--space-6); }
.final-cta-btn { margin-bottom: var(--space-4); }
.final-reassure {
  font-size: var(--text-body); color: var(--muted-foreground); margin: 0 0 var(--space-5);
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}

/* ─── Footer ─── */
.site-footer { background: var(--foreground); color: rgba(255,255,255,0.66); padding: 0; font-size: var(--text-caption); }
.site-footer .container { padding-top: var(--space-12); padding-bottom: var(--space-10); }
.site-footer strong { color: #fff; font-weight: 700; }
.site-footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

/* Brand lockup recoloured for dark footer */
.fvf-brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.fvf-brand .brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.01em; }
.fvf-brand .bn-1 { color: #fff; }
.fvf-brand .bn-2 { color: var(--accent); }

/* Quiet trust-badge row */
.fvf-badges { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); align-items: center; }
.fvf-badge { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-caption); color: rgba(255,255,255,0.72); }
.fvf-badge svg { color: var(--accent); flex-shrink: 0; }

/* Legal links row */
.fvf-legal { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); font-size: var(--text-caption); }

/* Copyright caption */
.fvf-copy { font-size: var(--text-caption); color: rgba(255,255,255,0.5); }

/* Disclosure sentence */
.fvf-disclosure { line-height: 1.6; color: rgba(255,255,255,0.6); }
.fvf-disclosure strong { color: #fff; font-weight: 700; }

/* Footer A layout */
.fa-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-10); align-items: start; }
.fa-left { display: flex; flex-direction: column; align-items: flex-start; }
.fa-reassure { margin-top: var(--space-4); font-family: var(--font-display); font-size: var(--text-body-lg); color: rgba(255,255,255,0.9); max-width: 30ch; line-height: 1.35; }
.fa-badges { margin-top: var(--space-6); gap: var(--space-3) var(--space-6); }
.fa-right { display: flex; justify-content: flex-end; padding-top: 6px; }
.fa-right .fvf-legal { gap: var(--space-2) var(--space-5); justify-content: flex-end; }
.fa-disclosure { max-width: 72ch; margin-top: var(--space-8); }
/* Oversized wordmark signoff */
.fa-signoff { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1; font-size: clamp(4rem, 16vw, 13rem); color: rgba(255,255,255,0.07); user-select: none; margin: var(--space-6) 0 var(--space-2); }
.fa-signoff .s2 { color: rgba(194,96,47,0.16); }
.fa-baseline { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-5); }
@media (max-width: 720px) {
  .fa-top { grid-template-columns: 1fr; gap: var(--space-6); }
  .fa-signoff { font-size: clamp(3.4rem, 22vw, 6rem); }
  .site-footer .fa-right { justify-content: flex-start; }
  .site-footer .fa-right .fvf-legal { justify-content: flex-start; }
  /* Each group stacks into a clean single column rather than wrapping 2-then-1
     (Kiran 2026-06-22): badges = BHTA vetted / ICO registered / Free, no obligation;
     legal = Privacy policy / Cookie settings / ICO registration. */
  .fa-badges, .site-footer .fvf-legal { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ─── Mid-page Interest CTA band ─── */
.interest-cta-band {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
  margin-top: var(--space-12); text-align: center;
}
/* In the final CTA the band sits straight under the lead, so it needs no big top gap */
.final-cta .interest-cta-band { margin-top: 0; }
.interest-cta-reassure {
  font-size: var(--text-small); color: var(--muted-foreground);
  display: flex; align-items: center; gap: var(--space-2);
}
.interest-cta-reassure svg { color: var(--success); flex-shrink: 0; }

/* ─── Reusable grouped CTA trust component ─── */
/* Tight cluster: social-proof line + reassurance + privacy. Inner margins zeroed so the
   only spacing is this stack's gap — the three read as one unit, not three stray lines. */
.cta-trust-stack {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.cta-trust-stack > .final-cta-socialproof,
.cta-trust-stack > .cta-reassure,
.cta-trust-stack > .form-antispam { margin: 0; }
.cta-reassure {
  font-size: var(--text-small); color: var(--muted-foreground);
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}
.cta-reassure svg { color: var(--success); flex-shrink: 0; }

/* ─── Final CTA social proof row ─── */
.final-cta-socialproof {
  display: flex; align-items: center; gap: var(--space-3); justify-content: center;
  margin-top: var(--space-4); margin-bottom: var(--space-5);
}
.final-cta-socialproof .stars { color: var(--accent); letter-spacing: 2px; font-size: var(--text-body); }
.final-cta-socialproof .sp-text { font-size: var(--text-small); color: var(--muted-foreground); font-weight: 600; }
/* Qualitative trust line (replaces the old mocked rating) — calm, no stars, no number */
.sp-text--quiet { font-family: var(--font-display); font-style: italic; color: var(--primary-soft) !important; font-weight: 500 !important; font-size: var(--text-body) !important; }

/* ─── Guarantee line ─── */
.guarantee-line {
  font-size: var(--text-small); color: var(--muted-foreground);
  display: flex; align-items: flex-start; gap: var(--space-2); justify-content: center;
  max-width: 54ch; margin: var(--space-5) auto var(--space-8);
}
.guarantee-line svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ─── Hero context sentence (PT-10: one calm line below H1) ─── */
.hero-context {
  font-size: var(--text-body); color: var(--muted-foreground); line-height: 1.5;
  margin-bottom: var(--space-6); max-width: 52ch;
}

/* ─── Review card (reusable) ─── */
/* White card — green-square/white-star marks at the top, no green banner, no photo (Kiran 2026-06-21).
   One shared component for the hero, the matched-installer panel and the testimonials grid. */
.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}
.hero-testimonial.review-card { margin-bottom: var(--space-6); }
.review-stars { margin-bottom: var(--space-3); }
.review-quote {
  font-family: var(--font-display); font-size: var(--text-body); font-style: italic;
  color: var(--foreground); margin-bottom: var(--space-2); font-weight: 500;
}
.review-attrib { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.review-name { font-size: var(--text-caption); font-weight: 700; color: var(--foreground); }
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: var(--text-caption); font-weight: 700; color: var(--primary-soft);
}
.review-verified .tick-disc--sm svg { color: #fff; flex-shrink: 0; }
.review-provenance {
  margin-top: var(--space-1); font-size: var(--text-caption); color: var(--muted-foreground);
  opacity: 0.7;
}

/* Standalone feature review (matched-installer panel) — centred, hero-width */
.review-card--feature { max-width: 640px; margin: 0 auto; }

/* ─── Testimonials grid: 3 equal-height review cards ─── */
.review-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
  align-items: stretch;
}
.review-card--testimonial { display: flex; flex-direction: column; }
/* The notable pull line, then the rest of the review; push attribution to the foot so the
   three cards line up regardless of body length. */
.review-card--testimonial .review-quote { font-size: var(--text-body-lg); line-height: 1.3; margin-bottom: var(--space-3); }
.review-body {
  font-size: var(--text-small); line-height: 1.55; color: var(--muted-foreground);
  margin-bottom: var(--space-4);
}
.review-body strong { color: var(--foreground); font-weight: 700; }
.review-card--testimonial .review-attrib { margin-top: auto; }
.testimonial-rating-num {
  font-size: var(--text-caption); font-weight: 700; color: var(--muted-foreground);
  letter-spacing: 0; margin-left: var(--space-2);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* PT-10 mobile order (canonical CW lead-gen mobile wireframe):
     intro (rating → headline → context → bullets) → FORM → proof (testimonial, image, phone) */
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "form" "proof";
    gap: var(--space-8);
  }
  .hero-right { position: static; }
  .hero-proof .hero-image-frame { aspect-ratio: 1/1; }

  /* Three review cards stack on narrow screens */
  .review-card-grid { grid-template-columns: 1fr; gap: var(--space-5); }

  /* Full-width standalone CTA buttons (course rule: 2× conversion lift on mobile) */
  /* Excludes the small header nav CTA which stays compact inside the mobile menu */
  .interest-cta-band .btn,
  .final-cta .btn { width: 100%; }

  /* CTA social proof: stars on their OWN line, the "Join the thousands…" line then runs
     full-width end-to-end instead of being squeezed beside the stars (Kiran 2026-06-22).
     Applies to both the mid-page and final CTA — they share this component. */
  .final-cta-socialproof { flex-direction: column; gap: var(--space-2); }

  .section { padding: var(--space-16) 0; }
  .hero { padding: var(--space-12) 0 var(--space-12); }
  .section-title { font-size: var(--text-h3); }
}
@media (max-width: 520px) {
  .hero-right .form-card form.form-card-body { padding: var(--space-5); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   C2 — Two-card narrative split (compare section)
   KindStep card is the wider LEFT column (1.12fr); usual-way card is RIGHT (1fr).
   ═══════════════════════════════════════════════════════════════════════════ */
.c2-grid { display: grid; grid-template-columns: 1.12fr 1fr; gap: var(--space-6); max-width: 920px; margin: var(--space-10) auto 0; align-items: stretch; }
.c2-card { border-radius: var(--radius-xl); padding: var(--space-8); display: flex; flex-direction: column; }
.c2-card--them { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); }
.c2-card--us { background: var(--surface); box-shadow: 0 20px 52px rgba(0,0,0,.34); }
.c2-eyebrow { font-size: var(--text-small); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-2); }
.c2-card--them .c2-eyebrow { color: rgba(255,255,255,0.55); }
.c2-card--us .c2-eyebrow { color: var(--accent-strong); }
.c2-title { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; margin-bottom: var(--space-5); }
.c2-card--them .c2-title { color: rgba(255,255,255,0.85); }
.c2-card--us .c2-title { color: var(--primary); }
.c2-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.c2-list li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-body); line-height: 1.45; }
.c2-list li svg { flex-shrink: 0; margin-top: 3px; }
.c2-card--them .c2-list li { color: rgba(255,255,255,0.62); }
.c2-card--them .c2-list li svg { color: rgba(255,255,255,0.42); }
.c2-card--us .c2-list li { color: var(--foreground); }
.c2-card--us .c2-list li svg { color: var(--success); }
.c2-card--us .c2-list li strong { color: var(--primary); }
.c2-cta { margin-top: var(--space-8); }
.c2-cta .btn { width: 100%; }
@media (max-width: 760px) { .c2-grid { grid-template-columns: 1fr; } }

/* Compare section footnote (white-on-dark, mirrors cv-foot from the scratch preview) */
.compare-foot { max-width: 820px; margin: var(--space-8) auto 0; font-size: var(--text-caption); color: rgba(255,255,255,0.6); display: flex; align-items: flex-start; gap: var(--space-2); }
.compare-foot svg { flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════════════════
   F2 — Categorised accordion (FAQ section, 5 theme groups, 14 questions)
   ═══════════════════════════════════════════════════════════════════════════ */
.f2-wrap { max-width: 860px; margin: 0 auto; }
.f2-group { margin-top: var(--space-12); }
.f2-group:first-child { margin-top: 0; }
.f2-grouphead { display: flex; align-items: center; gap: var(--space-3); padding-bottom: var(--space-4); margin-bottom: var(--space-5); border-bottom: 2px solid var(--border); }
.f2-grouphead svg { color: var(--accent); flex-shrink: 0; }
.f2-grouphead h3 { font-family: var(--font-display); font-size: var(--text-h4); font-weight: 600; color: var(--primary); }
.f2-grouphead .f2-count { margin-left: auto; font-size: var(--text-caption); color: var(--muted-foreground); font-weight: 400; }
.f2-contact { max-width: 640px; margin: var(--space-12) auto 0; text-align: center; background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-8); }
.f2-contact-icon { width: 48px; height: 48px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4); }
.f2-contact-icon svg { color: var(--primary); }
.f2-contact h3 { font-family: var(--font-display); font-size: var(--text-h4); color: var(--primary); }
.f2-contact p { font-size: var(--text-small); color: var(--muted-foreground); margin: var(--space-2) auto 0; max-width: 50ch; }

/* Accordion overrides scoped to #faq (lifted max-height for longer answers + larger triggers) */
#faq .accordion-content.open { max-height: 760px; }
/* Question text dropped one step (body-lg → body) — still bold to separate it from the
   answer, just less oversized (Kiran 2026-06-22). */
#faq .accordion-trigger { min-height: 60px; font-size: var(--text-body); padding: var(--space-5) var(--space-6); align-items: flex-start; }
#faq .accordion-chevron { margin-top: 3px; }
#faq .accordion-content-inner { font-size: var(--text-body); line-height: 1.6; }
#faq .f2-wrap .accordion { max-width: none; margin: 0; }
