/*
 * faq.css — FAQ-pagina-specifieke stijlen
 * Hogeplantenbak.nl · Eleventy redesign
 *
 * Gedeelde tokens:   css/tokens.css
 * Gedeelde compon.:  css/components.css  (nav, footer, buttons, cards, eyebrows)
 *
 * Inhoud
 *  1. Scroll-offset
 *  2. FAQ Hero glaskaart
 *  3. Zoekbalk (.faq-search, .search-status)
 *  4. Trust band (.trust-band)
 *  5. Meest gevraagd (.ma-list, .ma-item)
 *  6. Inhoudsopgave (.toc-list)
 *  7. Q&A stream (.qa-cat, .qa-head, details.q)
 *  8. Service-kaart tussendoor (.td-grid, .td-left, .td-card)
 *  9. Service-kaart knoppen (.td-btn-bel, .td-btn-wa)
 * 10. Offerte CTA sectie (.cta-section)
 * 11. Stap-kaart (.step-card)
 */


/* ============================================================
   1. SCROLL-OFFSET
   ============================================================ */

html {
  scroll-padding-top: 88px;
}


/* ============================================================
   2. FAQ HERO — glaskaart
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero > .max-w-narrow {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  padding: 56px 64px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 60px -24px rgba(0, 53, 39, 0.16);
  transition:
    background 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

/* Mint-variant: solide achtergrond, geen glas */
body[data-hero-mode="mint"] .hero-card {
  background: #f0f5f1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(0, 53, 39, 0.06);
}

/* Wit-variant: solide wit, zoekbalk krijgt lichtgroene achtergrond */
body[data-hero-mode="white"] .hero-card {
  background: var(--surface-card);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(0, 53, 39, 0.06);
}

body[data-hero-mode="white"] .faq-search {
  background: var(--primary-wash-lightest);
  border-color: rgba(4, 120, 87, 0.10);
}

body[data-hero-mode="white"] .faq-search input {
  background: transparent;
}

body[data-hero-mode="white"] .faq-search input::placeholder {
  color: #6b8378;
}

/* Geen-kaart-variant: chrome volledig weg */
body[data-hero-mode="none"] .hero-card {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
  padding: 8px 0 0;
}

@media (max-width: 720px) {
  .hero-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
  }

  body[data-hero-mode="none"] .hero-card {
    padding: 0;
  }
}


/* ============================================================
   3. ZOEKBALK — witte pill met zoekicoon en statusregel
   ============================================================ */

.faq-search {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 600px;
  padding: 0.5rem 0.5rem 0.5rem 1.375rem;
  background: var(--surface-card);
  border: 1px solid rgba(0, 53, 39, 0.08);
  border-radius: var(--radius-pill);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 32px -16px rgba(0, 53, 39, 0.16),
    0 4px 12px -6px rgba(0, 53, 39, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-search:focus-within {
  border-color: rgba(4, 120, 87, 0.30);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.16), 0 12px 32px -16px rgba(0, 53, 39, 0.20);
}

/* Zoekicoon */
.faq-search .ico {
  color: var(--primary-bright);
  display: inline-flex;
  flex: 0 0 auto;
}

.faq-search .ico .material-symbols-outlined {
  font-size: 22px;
}

/* Tekstveld */
.faq-search input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  padding: 10px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--on-surface);
}

.faq-search input::placeholder {
  color: #8a9590;
}

/* Wis-knop (verborgen tenzij .has-value) */
.faq-search .clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--on-surface-muted);
  transition: background 180ms ease, color 180ms ease;
  flex: 0 0 auto;
}

.faq-search .clear:hover {
  background: rgba(0, 53, 39, 0.06);
  color: var(--primary);
}

.faq-search.has-value .clear {
  display: inline-flex;
}

/* Zoek-knop */
.faq-search .submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--primary-bright);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 8px 18px -6px rgba(4, 120, 87, 0.45);
  transition: background 180ms ease, transform 180ms ease;
}

.faq-search .submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .faq-search .submit:hover {
    transform: none;
  }
}

.faq-search .submit .material-symbols-outlined {
  font-size: 18px;
}

/* Statusregel onder de balk */
.search-status {
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--on-surface-muted);
  min-height: 1.25rem;
}

.search-status.no-results {
  color: #b45309;
}


/* ============================================================
   4. TRUST BAND — sterren, klanten, Clint
   ============================================================ */

.trust-band {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 53, 39, 0.10);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 36px;
  max-width: 720px;
}

.trust-band .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--on-surface-secondary);
  font-size: 0.9375rem;
}

.trust-band .item .strong {
  color: var(--primary);
  font-weight: 700;
}

.trust-band .item .ico {
  color: var(--primary-bright);
  display: inline-flex;
  align-items: center;
}

.trust-band .item .ico .material-symbols-outlined {
  font-size: 18px;
}

/* Sterren (oranje accent) */
.trust-band .stars {
  display: inline-flex;
  gap: 1px;
  color: var(--tertiary);
}

.trust-band .stars .material-symbols-outlined {
  font-size: 14px;
  font-variation-settings: 'FILL' 1;
}

/* Verticale scheidslijn tussen items */
.trust-band .divider {
  width: 1px;
  height: 18px;
  background: rgba(0, 53, 39, 0.14);
}

@media (max-width: 720px) {
  .trust-band {
    gap: 12px 24px;
  }

  .trust-band .divider {
    display: none;
  }
}


/* ============================================================
   5. MEEST GEVRAAGD — genummerde <details> accordions
   ============================================================ */

.ma-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ma-item {
  border-top: 1px solid rgba(0, 53, 39, 0.10);
}

.ma-item:last-child {
  border-bottom: 1px solid rgba(0, 53, 39, 0.10);
}

.ma-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  transition: padding 180ms ease;
}

/* Verberg standaard driehoek in WebKit */
.ma-item summary::-webkit-details-marker {
  display: none;
}

.ma-item summary:hover {
  padding-left: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .ma-item summary {
    transition: none;
  }
}

.ma-item[open] summary {
  padding-bottom: 6px;
}

/* Volgnummer */
.ma-item summary .num {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--on-surface-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  min-width: 28px;
}

/* Vraagtekst */
.ma-item summary .q-text {
  font-family: var(--font-headline);
  font-weight: 500;
  color: var(--primary);
  font-size: 1.1875rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.ma-item[open] summary .q-text {
  font-weight: 700;
}

/* Chevron */
.ma-item summary .chev {
  color: var(--primary-bright);
  transition: transform 220ms ease;
}

.ma-item summary .chev .material-symbols-outlined {
  font-size: 22px;
}

.ma-item[open] summary .chev {
  transform: rotate(90deg);
}

@media (prefers-reduced-motion: reduce) {
  .ma-item summary .chev {
    transition: none;
  }
}

/* Antwoord */
.ma-item .answer {
  padding: 4px 0 22px calc(28px + 18px);
  font-size: 1.0625rem;
  color: var(--on-surface-secondary);
  line-height: 1.7;
  max-width: 44rem;
}

.ma-item .answer p {
  margin: 0;
}

.ma-item .answer p + p {
  margin-top: 12px;
}


/* ============================================================
   6. INHOUDSOPGAVE — 2-koloms ankerlijst met categorie-iconen
   ============================================================ */

.toc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1040px;
}

@media (min-width: 720px) {
  .toc-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 72px;
  }
}

.toc-list a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 8px;
  text-decoration: none;
  border-top: 1px solid rgba(0, 53, 39, 0.10);
  transition: padding 180ms ease, background 180ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .toc-list a {
    transition: none;
  }
}

.toc-list a:hover {
  padding-left: 14px;
  background: rgba(4, 120, 87, 0.03);
}

/* Categorie-icoon */
.toc-list .ico {
  color: var(--primary-bright);
  display: inline-flex;
}

.toc-list .ico .material-symbols-outlined {
  font-size: 24px;
}

/* Categorienaam */
.toc-list .label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--primary);
}

/* Vraag-teller */
.toc-list .count {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--on-surface-muted);
  padding: 4px 10px;
  background: rgba(0, 53, 39, 0.05);
  border-radius: var(--radius-pill);
}

/* Pijltje */
.toc-list .arrow {
  color: var(--on-surface-muted);
  transition: color 180ms ease, transform 180ms ease;
}

.toc-list a:hover .arrow {
  color: var(--primary-bright);
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .toc-list .arrow {
    transition: none;
  }
}

.toc-list .arrow .material-symbols-outlined {
  font-size: 18px;
}


/* ============================================================
   7. Q&A STREAM — categorie-secties en <details> vragen
   ============================================================ */

/* Categorie-blok */
.qa-cat {
  scroll-margin-top: 96px;
  padding-top: 96px;
  padding-bottom: 24px;
}

.qa-cat:first-child {
  padding-top: 0;
}

/* Categorie-header: icoon + titel + "Terug"-link */
.qa-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.qa-head .ico {
  color: var(--primary-bright);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qa-head .ico .material-symbols-outlined {
  font-size: 28px;
}

.qa-head h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.625rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

/* Kleine dot voor de categorietitel */
.qa-head h2::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: var(--radius-pill);
  background: rgba(0, 53, 39, 0.22);
  flex-shrink: 0;
}

/* "Terug naar boven"-link */
.qa-head .back {
  text-decoration: none;
  color: var(--on-surface-muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  transition: color 180ms ease, background 180ms ease;
}

.qa-head .back:hover {
  color: var(--primary);
  background: rgba(0, 53, 39, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  .qa-head .back {
    transition: none;
  }
}

.qa-head .back .material-symbols-outlined {
  font-size: 16px;
}

/* Individuele vraag-accordion */
details.q {
  border-bottom: 1px solid rgba(0, 53, 39, 0.08);
}

details.q:first-of-type {
  border-top: 0;
}

details.q summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  transition: padding 180ms ease;
}

details.q summary::-webkit-details-marker {
  display: none;
}

details.q summary:hover {
  padding-left: 10px;
}

@media (prefers-reduced-motion: reduce) {
  details.q summary {
    transition: none;
  }
}

details.q summary h4 {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 500;
  color: var(--primary);
  font-size: 1.1875rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

details.q[open] summary h4 {
  font-weight: 700;
}

/* Chevron in Q&A stream */
details.q summary .chev {
  color: var(--primary-bright);
  transition: transform 220ms ease;
}

details.q summary .chev .material-symbols-outlined {
  font-size: 22px;
}

details.q[open] summary .chev {
  transform: rotate(90deg);
}

@media (prefers-reduced-motion: reduce) {
  details.q summary .chev {
    transition: none;
  }
}

/* Antwoordtekst */
details.q .answer {
  padding: 0 4px 22px 4px;
  font-size: 1.0625rem;
  color: var(--on-surface-secondary);
  line-height: 1.7;
  max-width: 44rem;
}

details.q .answer p + p {
  margin-top: 12px;
}

details.q .answer a {
  color: var(--primary-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(4, 120, 87, 0.30);
}

details.q .answer a:hover {
  color: var(--primary-hover);
  text-decoration-color: var(--primary-hover);
}

/* Zoekresultaat-highlight */
details.q[data-search-match] {
  background: rgba(240, 253, 244, 0.40);
}


/* ============================================================
   8. SERVICE-KAART TUSSENDOOR — editorial break (fresh bg)
      Twee kolommen: tekst links, USP-kaart rechts
   ============================================================ */

.td-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Linkerkolom: eyebrow, koptekst, alinea, knoppen */
.td-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 28rem;
}

.td-left h2 {
  margin: 8px 0 4px;
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 16ch;
  text-wrap: balance;
}

.td-left p {
  margin: 0;
  max-width: 26rem;
  color: var(--on-surface-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.td-left .actions {
  display: inline-flex;
  gap: 10px;
  margin-top: 6px;
}

/* Rechterkolom: witte kaart met USP-lijst */
.td-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow:
    0 24px 60px -24px rgba(0, 53, 39, 0.14),
    0 4px 20px -4px rgba(0, 53, 39, 0.06);
  overflow: hidden;
  max-width: 440px;
  margin-left: auto;
  width: 100%;
}

.td-card .inner {
  padding: 44px 44px 40px;
  text-align: center;
}

/* Kaart-eyebrow */
.td-card .label {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-bright);
  display: block;
  margin-bottom: 6px;
}

/* Kaart-titel */
.td-card .title {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 auto 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 53, 39, 0.08);
  max-width: 22ch;
}

/* USP-lijstitems */
.td-card .usps {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 380px;
  text-align: left;
}

.td-card .usps li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 16px;
  align-items: center;
}

.td-card .usps li .ico {
  color: var(--primary-bright);
  display: inline-flex;
  align-items: center;
}

.td-card .usps li .ico .material-symbols-outlined {
  font-size: 22px;
}

.td-card .usps li .what {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9375rem;
  line-height: 1.3;
  display: block;
}

.td-card .usps li .sub {
  color: var(--on-surface-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  display: block;
  margin-top: 2px;
}

/* Gratis-badge op USP-item */
.td-card .usps li .pop {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-bright);
  background: var(--primary-wash-lightest);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .td-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .td-card .inner {
    padding: 32px 24px;
  }
}


/* ============================================================
   9. SERVICE-KAART KNOPPEN — bel en WhatsApp
   ============================================================ */

/* Primaire bel-knop (emerald, pill) */
.td-btn-bel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--primary-bright);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 10px 22px -10px rgba(4, 120, 87, 0.45);
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.td-btn-bel:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .td-btn-bel:hover {
    transform: none;
  }
}

.td-btn-bel .material-symbols-outlined {
  font-size: 18px;
}

/* Secundaire WhatsApp-knop (wit met border) */
.td-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--surface-card);
  color: var(--primary);
  border: 1px solid rgba(0, 53, 39, 0.10);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.td-btn-wa:hover {
  border-color: rgba(4, 120, 87, 0.40);
  background: var(--primary-wash-lightest);
}

.td-btn-wa .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary-bright);
}


/* ============================================================
  10. OFFERTE CTA SECTIE — twee-koloms, kaart hergebruikt .td-card
   ============================================================ */

/*
 * De CTA-sectie gebruikt het .td-card component (zie sectie 8).
 * Aanvullende layout-CSS voor de twee-koloms grid staat inline
 * via Tailwind in het HTML. In de Eleventy-build wordt dit:
 */

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr minmax(380px, 440px);
    gap: 4rem;
  }
}

.cta-left h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(2rem, 3.6vw, 2.625rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 18ch;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.cta-left p {
  color: var(--on-surface-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}


/* ============================================================
  11. STAP-KAART — genummerde stappen in een kaart
   ============================================================ */

.step-card {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 53, 39, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card .num {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary-bright);
}

.step-card h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.step-card p {
  margin: 0;
  color: var(--on-surface-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 22rem;
}


/* ============================================================
  12. PAGINA-LAYOUT — secties, hero, section-headers
      (Eleventy-specifiek, vervangt Tailwind utility classes)
   ============================================================ */

/* ── Secties: achtergrond + padding ── */
.section {
  width: 100%;
}

.section--warm  { background-color: var(--surface-warm); }
.section--sky   { background-color: var(--surface-sky); }
.section--fresh { background-color: #f0f5f1; }

/* Padding varianten */
.section--py-lg  { padding-top: 7rem; padding-bottom: 7rem; }
.section--pb-lg  { padding-bottom: 7rem; }
.section--pt-lg  { padding-top: 7rem; }
.section--py-md  { padding-top: 5rem; padding-bottom: 6rem; }
.section--pt-sm  { padding-top: 3rem; }
.section--pb-sm  { padding-bottom: 3rem; }
.section--pb-xl  { padding-bottom: 8rem; }

@media (min-width: 1024px) {
  .section--py-lg  { padding-top: 9rem; padding-bottom: 9rem; }
  .section--pb-lg  { padding-bottom: 9rem; }
  .section--pt-lg  { padding-top: 9rem; }
  .section--py-md  { padding-top: 5rem; padding-bottom: 6rem; }
  .section--pt-sm  { padding-top: 4rem; }
  .section--pb-sm  { padding-bottom: 4rem; }
  .section--pb-xl  { padding-bottom: 8rem; }
}

/* ── Hero FAQ-sectie ── */
.hero--faq {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: var(--surface-warm);
}

@media (min-width: 1024px) {
  .hero--faq {
    padding-top: 11rem;
    padding-bottom: 7rem;
  }
}

/* Hero-kaart gecentreerd */
.hero-card--center {
  text-align: center;
}

/* Hero FAQ typografie */
.hero-faq__title {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 30ch;
  text-wrap: balance;
  margin: 1.25rem auto 1.5rem;
}

.hero-faq__intro {
  font-family: var(--font-body);
  color: var(--on-surface-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 56rem;
  margin-inline: auto;
}

/* Zoekbalk: in hero max-width vergroot */
.faq-search--hero {
  max-width: 760px;
  margin-inline: auto;
}

/* Trust band gecentreerd */
.trust-band--centered {
  margin-inline: auto;
  justify-content: center;
  max-width: 960px;
}


/* ── Section-header ── */
.section-header {
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 3.5rem;
  }
}

.section-header--center {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.section-header__title {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(1.875rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.section-header__sub {
  color: var(--on-surface-muted);
  font-size: 1rem;
}


/* ── ma-list breedte-beperking ── */
.ma-list--wide {
  max-width: 880px;
  margin-inline: auto;
}


/* ── toc-list breedte-beperking ── */
.toc-list--wide {
  margin-inline: auto;
}


/* ── Q&A stream: max-width wrapper ── */
.qa-stream {
  max-width: 920px;
  margin-inline: auto;
}


/* ── Eyebrow-quiet (gedempte grijs-groene variant) ── */
.eyebrow-quiet {
  color: var(--on-surface-muted);
  font-weight: 700;
}
