/* ==========================================================================
   Orivion Installatie B.V. — Stylesheet
   Strak & professioneel: diepblauw met fris groen accent.
   Inhoud: 0. @font-face  1. Tokens  2. Reset/basis  3. Typografie  4. Layout
           5. Knoppen  6. Header  7. Hero  8. Componenten
           9. Formulieren 10. Footer 11. Animaties 12. Responsive
   ========================================================================== */

/* 0. WEBFONTS (self-hosted) ================================================
   WOFF2-bronnen liggen in /public/fonts/ en worden vanaf eigen origin geserveerd.
   Bestanden komen uit @fontsource-variable npm packages (zie package.json) —
   bij update: kopieer de nieuwe woff2's van node_modules naar public/fonts/.
   AVG-conform (geen Google call), CSP 'self' compatibel, font-display: swap
   voorkomt onzichtbare tekst tijdens download. */
@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-ext.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                 U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
                 U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                 U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
                 U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* 1. DESIGN TOKENS ========================================================= */
:root {
  /* Kleuren — merk */
  --brand:        #001233;
  --brand-2:      #00214a;
  --brand-dark:   #000d1a;
  --brand-deeper: #000816;
  --brand-tint:   #f0fff5;
  --brand-tint-2: #e0ffe9;

  /* Kleuren — accent */
  --accent:       #00d348;
  --accent-dark:  #00b33d;
  --accent-darker:#008a2e;
  --accent-deep:  #006b24; /* WCAG AA-veilig op wit: 6.22:1 */
  --accent-tint:  #e8fff0;

  /* Kleuren — neutraal */
  --ink:          #0f1a2a;
  --muted:        #51617a;
  --line:         #e2e8f1;
  --line-soft:    #eef2f7;
  --surface:      #ffffff;
  --surface-soft: #f6f8fa;
  --surface-soft-2:#edf0f3;

  /* Tekstkleuren — aliassen voor section 14 */
  --text:         #0f1a2a;  /* = --ink */
  --text-soft:    #51617a;  /* = --muted */

  /* Accent warm (alleen decoratief, bv. zon) */
  --sun:          #ffc861;

  /* Typografie — self-hosted variable fonts (zie public/fonts/ + style.css §0)
     Body: Inter Variable — extreem leesbaar op het scherm, ondersteunt NL prima.
     Heading: Manrope Variable — verfijnd geometrisch, strak en professioneel
              zonder design-y trekjes. Alleen wght-axis (200-800). */
  --font: "Inter Variable", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Manrope Variable", "Manrope", "Inter Variable", "Inter",
          -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Schaduw */
  --shadow-xs: 0 1px 2px rgba(0, 18, 51, .06);
  --shadow-sm: 0 4px 14px rgba(0, 18, 51, .07);
  --shadow:    0 14px 34px rgba(0, 18, 51, .10);
  --shadow-lg: 0 28px 60px rgba(0, 18, 51, .16);
  --shadow-brand: 0 18px 40px rgba(0, 18, 51, .22);
  --shadow-accent: 0 14px 30px rgba(0, 211, 72, .28);

  /* Maatvoering */
  --container: 1180px;
  --container-narrow: 880px;
  --header-h: 112px;
  --section-y: clamp(3.75rem, 2.2rem + 6vw, 7rem);

  /* Easing */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* 2. RESET / BASIS ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Inter OpenType features: 'cv11' = single-story 'a' (modern), 'ss03' = curved 'l',
     'kern' + 'liga' standaard aan. Verbetert schermleesbaarheid van NL teksten. */
  font-feature-settings: "cv11", "ss03", "kern", "liga";
}

img, svg, picture { display: block; max-width: 100%; }
svg { height: auto; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; padding: 0; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: var(--brand-deeper); }

/* Skip-link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; text-decoration: none; }

/* 3. TYPOGRAFIE ============================================================ */
/* Headings krijgen Manrope Variable. Manrope heeft alleen een wght-axis
   (200-800), dus geen font-variation-settings nodig — letter-spacing
   doet het werk om grotere koppen optisch strakker te laten ogen. */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.15rem, 1.45rem + 3vw, 3.5rem);
  letter-spacing: -.035em;
}
h2 {
  font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.6rem);
  letter-spacing: -.028em;
}
h3 {
  font-size: clamp(1.2rem, 1.05rem + .55vw, 1.5rem);
  letter-spacing: -.018em;
}
h4 {
  font-size: 1.125rem;
  letter-spacing: -.012em;
}

p { color: var(--muted); }
strong { color: var(--ink); font-weight: 700; }

.lead {
  font-size: clamp(1.05rem, .98rem + .4vw, 1.275rem);
  line-height: 1.6;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-deep); /* 6.22:1 op wit — voldoet WCAG 1.4.3 AA */
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #7dffb0; }
.eyebrow--light::before { background: var(--accent); }

.text-accent { color: var(--accent-deep); }
.text-grad {
  background: linear-gradient(90deg, #00d348, #93f125);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Windows High Contrast Mode: background-clip:text rendert als transparent.
   Forced-colors zet expliciet een systeemkleur zodat de tekst zichtbaar blijft. */
@media (forced-colors: active) {
  .text-grad,
  .section-head h2,
  .stats--light .stat__num {
    color: CanvasText;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
  }
}

/* 4. LAYOUT ================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section[id], [id].service-anchor { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.section--soft { background: var(--surface-soft); }
.section--tint { background: linear-gradient(180deg, #fff, var(--surface-soft)); }
.section--dark {
  background: var(--brand-deeper);
  color: #cdd9ec;
  position: relative;
  overflow: hidden;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--flush-top { padding-top: 0; }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: .85rem; }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.6rem; }

/* Decoratieve achtergrond-blobs voor donkere secties */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.blob--1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(0,18,51,.90), transparent 68%); top: -180px; right: -120px; }
.blob--2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(0,211,72,.25), transparent 70%); bottom: -160px; left: -120px; }
.section--dark > .container { position: relative; z-index: 1; }

/* 5. KNOPPEN =============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.5rem;
  min-height: 44px; /* WCAG 2.5.5 — minimaal taptarget */
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn--primary {
  background: var(--accent);
  color: var(--brand-deeper);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn--secondary {
  background: var(--surface);
  color: var(--brand);
  border: 1.5px solid var(--line);
}
.btn--secondary:hover { border-color: var(--brand); background: var(--brand-tint); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--brand); padding-inline: 1rem; }
.btn--ghost:hover { background: var(--brand-tint); }

.btn--light {
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, .1); transform: translateY(-2px); }

.btn--lg { padding: 1.075rem 1.9rem; font-size: 1.05rem; }
.btn--sm { padding: .7rem 1.15rem; font-size: .9rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Tekstlink met pijl */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--brand);
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg { transform: translateX(4px); }

/* 6. HEADER ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(15, 26, 42, .09);
  border-bottom-color: var(--line);
}

/* Topbar */
.topbar {
  background: var(--brand-deeper);
  color: #b9c8df;
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
}
.topbar__usp { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.topbar__usp svg { width: 1rem; height: 1rem; color: var(--accent); }
.topbar__contact { display: flex; gap: 1.4rem; }
.topbar a { color: #cdd9ec; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar a svg { width: 1rem; height: 1rem; color: var(--accent); }

/* Navigatie */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand__mark { height: 38px; width: auto; max-width: 180px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand__sub {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-darker);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
}
.nav__list { display: flex; align-items: center; gap: .2rem; }
.nav__link {
  display: block;
  padding: .55rem .75rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__link:hover { background: var(--brand-tint); color: var(--brand); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--brand); background: var(--brand-tint); }
/* Bespaarcheck als subtiel accent in de topbalk — leadgen-tool verdient nadruk */
.nav__link--accent {
  position: relative;
  color: var(--accent-deep);
}
.nav__link--accent::before {
  content: "";
  width: .35rem; height: .35rem;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: .4rem;
  vertical-align: middle;
  transform: translateY(-1px);
}
.nav__link--accent:hover { background: var(--accent); color: #fff; }
.nav__link--accent:hover::before { background: #fff; }
.nav__link--accent[aria-current="page"] { background: var(--accent); color: #fff; }
.nav__link--accent[aria-current="page"]::before { background: #fff; }

.nav__actions { display: flex; align-items: center; gap: .65rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--brand-tint);
  margin-left: auto;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2.2px;
  background: var(--brand);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav__toggle span:nth-child(3) { transform: translate(-50%, 7px); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* 7. HERO ================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 520px at 88% -8%, var(--brand-tint), transparent 60%),
    linear-gradient(180deg, #fff, var(--surface-soft));
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.75rem, 1.5rem + 5vw, 5.5rem);
}
.hero__content { max-width: 560px; }
.hero h1 { margin-top: 1.1rem; }
.hero__text { margin-top: 1.25rem; max-width: 30em; }
.hero__actions { margin-top: 1.9rem; align-items: center; }
.hero__actions-link { margin-left: .35rem; }

.hero__trust {
  margin-top: 2.1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
.trust-item { display: flex; flex-direction: column; gap: .15rem; }
.trust-item strong { font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.trust-item span { font-size: .85rem; color: var(--muted); }
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--sun);
  line-height: 1;
}
.stars svg { width: 1.05rem; height: 1.05rem; flex-shrink: 0; }

/* Hero-visual */
.hero__visual { position: relative; }
.hero-panel {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, var(--brand-2), var(--brand-deeper));
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 220px at 82% 14%, rgba(0,211,72,.32), transparent 70%),
    radial-gradient(260px 260px at 12% 92%, rgba(255,255,255,.10), transparent 70%);
  pointer-events: none;
}
.hero-illustration { position: relative; width: 100%; height: auto; }

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border-radius: var(--r);
  padding: .7rem .95rem;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink);
  z-index: 2;
}
.hero-chip small { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); }
.hero-chip__icon {
  width: 2.1rem; height: 2.1rem;
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-chip__icon svg { width: 1.15rem; height: 1.15rem; }
.hero-chip__icon--green { background: var(--accent-tint); color: var(--accent-darker); }
.hero-chip__icon--blue { background: var(--brand-tint); color: var(--brand); }
.hero-chip__icon--sun { background: #fff3da; color: #c98a17; }
.hero-chip--tl { top: 8%; left: -1rem; }
.hero-chip--br { bottom: 9%; right: -1rem; }
.hero-chip--ml { bottom: 32%; left: -1rem; }

/* Logobalk (vertrouwen) */
.trustbar { border-top: 1px solid var(--line-soft); }
.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-block: 1.6rem;
}
.trustbar__label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.trustbar__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2.3rem; }
.brand-logo {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: #97a4b8;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.brand-logo:hover { color: var(--brand); }
.brand-logo span { color: var(--accent-dark); }

/* 8. COMPONENTEN =========================================================== */

/* USP-balk */
.usp-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.usp {
  background: #fff;
  padding: 1.5rem 1.35rem;
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.usp__icon {
  width: 2.6rem; height: 2.6rem;
  border-radius: 11px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.usp__icon svg { width: 1.35rem; height: 1.35rem; }
.usp h3 { font-size: 1rem; }
.usp p { font-size: .9rem; margin-top: .15rem; }

/* Algemene kaart */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}

/* Dienst-kaarten (overzicht) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}
.cards-grid--quad { grid-template-columns: repeat(4, 1fr); }
.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.85rem;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 3.4rem; height: 3.4rem;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--brand-tint), #fff);
  border: 1px solid var(--line);
  color: var(--brand);
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 1.8rem; height: 1.8rem; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .94rem; }
.service-card .link-arrow { margin-top: 1.2rem; }
.service-card__spacer { flex: 1; }

/* Uitgelichte kaart (bijv. "Compleet pakket") */
.service-card--featured {
  background: linear-gradient(155deg, var(--brand), var(--brand-deeper));
  border-color: transparent;
  color: #fff;
}
.service-card--featured .service-icon {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: #c6d4e8; }
.service-card--featured .link-arrow { color: #fff; }
.service-card--featured::after { background: linear-gradient(90deg, var(--accent), rgba(255,255,255,.5)); }

/* Split — twee kolommen content + visual */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__visual { order: -1; }
.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Checklijst */
.checklist { display: grid; gap: .85rem; }
.checklist li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 500;
}
.checklist li::before {
  content: "";
  width: 1.5rem; height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23008a2e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / .9rem no-repeat;
  margin-top: .08rem;
}
.checklist--light li { color: #dde7f3; }
.checklist--light li::before {
  background-color: rgba(0, 211, 72, .2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff66' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Proces / stappen */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.step { position: relative; }
.step__num {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 3rem;
  right: -1.4rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; }
.steps--dark .step__num { background: var(--accent); color: var(--brand-deeper); }
.steps--dark .step h3 { color: #fff; }
.steps--dark .step p { color: #b6c5da; }
.steps--dark .step:not(:last-child)::after {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 8px, transparent 8px 16px);
}

/* Statistieken */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  text-align: center;
  padding: 1.25rem 1rem;
}
.stat__num {
  font-size: clamp(2.3rem, 1.8rem + 1.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(120deg, #fff, #7dffb0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { margin-top: .5rem; font-size: .95rem; color: #b6c5da; }
.stats--light .stat__num {
  background: linear-gradient(120deg, var(--brand), var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats--light .stat__label { color: var(--muted); }

/* Stats-blok met scheidingslijn — gebruikt in donkere secties */
.stats--divider {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: clamp(2rem, 1.5rem + 2vw, 3rem);
}

/* Testimonials */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.testimonial__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.testimonial__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--sun);
  line-height: 1;
}
.testimonial__stars svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.testimonial__google-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.testimonial__google-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.testimonial__quote { color: var(--ink); font-size: 1.02rem; font-weight: 500; line-height: 1.6; }
.testimonial__quote::before { content: "\201C"; }
.testimonial__quote::after { content: "\201D"; }
.testimonial__person { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar {
  width: 2.85rem; height: 2.85rem;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  flex-shrink: 0;
}
.testimonial__name { display: block; font-weight: 700; color: var(--ink); font-size: .95rem; }
.testimonial__role { display: block; font-size: .82rem; color: var(--muted); }
.avatar--photo { object-fit: cover; }

.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}
.reviews-footer__link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.reviews-footer__link svg { flex-shrink: 0; }
.reviews-footer__link:hover { color: var(--accent-darker); }

/* Waarde-/feature-kaarten */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  height: 100%;
}
.feature__icon {
  width: 3rem; height: 3rem;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-darker);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.feature__icon svg { width: 1.5rem; height: 1.5rem; }
.feature h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.feature p { font-size: .93rem; }

/* Team */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  text-align: center;
}
.team-card .avatar {
  width: 5rem; height: 5rem;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1.1rem; }
.team-card__role { color: var(--accent-darker); font-weight: 700; font-size: .9rem; }
.team-card p { font-size: .9rem; margin-top: .55rem; }

/* Badges / keurmerken */
.badges { display: flex; flex-wrap: wrap; gap: .8rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1rem;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
}
.badge svg { width: 1.1rem; height: 1.1rem; color: var(--accent-darker); }
.badge--dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #fff; }
.badge--dark svg { color: var(--accent); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent-darker);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .02em;
}

/* Accordion / FAQ — native details */
.faq { display: grid; gap: .8rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq__item[open] { border-color: var(--brand-tint-2); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brand); }
.faq__icon {
  width: 1.7rem; height: 1.7rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.faq__icon svg { width: .95rem; height: .95rem; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--accent); color: var(--brand-deeper); }
.faq__a { padding: 0 1.35rem 1.3rem; }
.faq__a p { font-size: .96rem; }

/* CTA-band */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--brand), var(--brand-deeper));
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 360px at 88% 10%, rgba(0,211,72,.32), transparent 65%),
    radial-gradient(380px 320px at 6% 110%, rgba(255,255,255,.08), transparent 65%);
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-block: clamp(2.5rem, 1.8rem + 3vw, 4rem);
}
.cta-band__text { max-width: 36rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c6d4e8; margin-top: .6rem; }
.cta-band .btn-row { flex-shrink: 0; }

/* Pagina-hero (subpagina's) */
.page-hero {
  position: relative;
  background: linear-gradient(150deg, var(--brand), var(--brand-deeper));
  color: #fff;
  overflow: hidden;
  padding-block: clamp(2.5rem, 1.8rem + 4vw, 4.75rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 420px at 85% -10%, rgba(0,18,51,.9), transparent 62%),
    radial-gradient(420px 360px at 6% 120%, rgba(0,211,72,.22), transparent 64%);
}
.page-hero__inner { position: relative; max-width: 720px; }
.page-hero h1 { color: #fff; margin-top: .9rem; }
.page-hero p { color: #c6d4e8; margin-top: 1rem; font-size: 1.1rem; }
.page-hero .eyebrow { color: #7dffb0; }
.page-hero .eyebrow::before { background: var(--accent); }
/* Service-hero-elementen (CTA-rij + trust-strip) op de donkere pagina-hero */
.page-hero .btn-row { margin-top: 1.75rem; }
.page-hero .trust-strip { justify-content: flex-start; margin-top: 1.75rem; }
.page-hero .trust-strip__item { color: #c6d4e8; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.breadcrumbs a { color: #aebfd6; font-weight: 600; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: #7e92b0; }
.breadcrumbs [aria-current] { color: #fff; font-weight: 700; }
/* Lichte variant — kruimelpad op een witte achtergrond (merkpagina's) */
.breadcrumbs--light { padding-top: 1rem; }
.breadcrumbs--light a { color: var(--text-soft); }
.breadcrumbs--light a:hover { color: var(--accent-darker); }
.breadcrumbs--light span { color: var(--text-soft); opacity: .55; }
.breadcrumbs--light [aria-current] { color: var(--text); }

/* Dienst-detailblok */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
.service-detail--reverse .service-detail__visual { order: -1; }
.service-visual {
  position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--brand-tint), #fff);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  display: grid;
  place-items: center;
  min-height: 280px;
}
.service-visual__big {
  width: clamp(8rem, 6rem + 12vw, 12rem);
  height: clamp(8rem, 6rem + 12vw, 12rem);
  border-radius: 28px;
  background: linear-gradient(155deg, var(--brand-2), var(--brand-deeper));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.service-visual__big svg { width: 52%; height: 52%; }
.service-visual__tag {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: .65rem .9rem;
  font-weight: 700;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-visual__tag svg { width: 1.05rem; height: 1.05rem; color: var(--accent-darker); }
.service-visual__tag--t { top: 1.25rem; right: 1.25rem; }
.service-visual__tag--b { bottom: 1.25rem; left: 1.25rem; }
.service-detail__num {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--accent-darker);
}
.service-detail h2 { margin: .5rem 0 .9rem; }

/* Info-/contactkaarten */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 3.2rem; height: 3.2rem;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
}
.contact-card__icon svg { width: 1.5rem; height: 1.5rem; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card p { font-size: .9rem; margin: .3rem 0 .8rem; }
.contact-card a { font-weight: 700; }
.contact-card__big { font-size: 1.1rem; font-weight: 800; color: var(--brand); }

/* Openingstijden */
.hours { display: grid; gap: .1rem; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.hours__row:last-child { border-bottom: 0; }
.hours__row span:first-child { color: var(--muted); font-weight: 600; }
.hours__row span:last-child { font-weight: 700; color: var(--ink); }
.hours__row--closed span:last-child { color: var(--muted); font-weight: 600; }

/* Kaart-placeholder */
.map-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  background: #e9eef5;
  min-height: 340px;
}
.map-card svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -100%);
  color: var(--accent-dark);
  filter: drop-shadow(0 6px 10px rgba(15,26,42,.3));
}
.map-pin svg { width: 3rem; height: 3rem; }
.map-card__info {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem; right: 1.1rem;
  background: #fff;
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .8rem;
}
.map-card__info svg { width: 1.5rem; height: 1.5rem; color: var(--brand); flex-shrink: 0; }

/* 9. FORMULIEREN =========================================================== */
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field__label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.field__label .req { color: var(--accent-darker); }
.field__hint { font-size: .8rem; color: var(--muted); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  padding: .82rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2351617a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.6rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; /* suppressed for mouse — keyboard gets focus-visible below */
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-tint);
}
/* Keyboard focus: restore visible ring on top of the custom border/shadow */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa7bb; }

.field__error {
  display: none;
  font-size: .82rem;
  font-weight: 600;
  color: #c0392b;
}

/* Verborgen live-regio voor schermlezer-aankondigingen */
.sr-announcer {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #e07a6f; }
.field.is-invalid input:focus,
.field.is-invalid select:focus,
.field.is-invalid textarea:focus { box-shadow: 0 0 0 4px #fbe6e3; }
.field.is-invalid .field__error { display: block; }
.fieldset-group.is-invalid > [data-group-error] { display: block; }
.fieldset-group.is-invalid .field__error { display: block; }
.fieldset-group.is-invalid .choice__box { border-color: #e07a6f; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
.form-grid .field--full { grid-column: 1 / -1; }

/* Keuzekaarten (checkbox/radio als kaart) */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: .9rem;
}
.choice { position: relative; display: block; cursor: pointer; }
.choice input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.choice__box {
  display: flex;
  align-items: center;
  gap: .85rem;
  height: 100%;
  padding: 1.05rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease);
}
.choice__icon {
  width: 2.6rem; height: 2.6rem;
  border-radius: 10px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.choice__icon svg { width: 1.4rem; height: 1.4rem; }
.choice__text { display: flex; flex-direction: column; }
.choice__title { font-weight: 700; color: var(--ink); font-size: .96rem; }
.choice__desc { font-size: .8rem; color: var(--muted); }
.choice__tick {
  margin-left: auto;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background-color .15s var(--ease), border-color .15s var(--ease);
}
.choice__tick svg { width: .85rem; height: .85rem; color: #fff; opacity: 0; }
.choice:hover .choice__box { border-color: var(--brand-tint-2); }
.choice input:focus-visible ~ .choice__box {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
}
.choice:has(input:checked) .choice__box,
.choice.is-selected .choice__box {
  border-color: var(--accent);
  background: var(--accent-tint);
  box-shadow: 0 0 0 3px rgba(0,211,72,.14);
}
.choice:has(input:checked) .choice__icon,
.choice.is-selected .choice__icon { background: var(--accent); color: var(--brand-deeper); }
.choice:has(input:checked) .choice__tick,
.choice.is-selected .choice__tick { background: var(--accent-dark); border-color: var(--accent-dark); }
.choice:has(input:checked) .choice__tick svg,
.choice.is-selected .choice__tick svg { opacity: 1; }

/* Fieldset-reset — verwijder browserstijlen voor semantische radiogroepen */
fieldset.calc-group {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
fieldset.calc-group legend.calc-label {
  float: left;
  width: 100%;
  margin-bottom: .5rem;
}
fieldset.calc-group legend.calc-label + * { clear: both; }

/* Eenvoudige radiogroep (rij) */
.radio-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-pill { position: relative; cursor: pointer; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: block;
  padding: .6rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .9rem;
  transition: all .15s var(--ease);
}
.radio-pill:hover span { border-color: var(--brand-tint-2); }
.radio-pill input:focus-visible ~ span { outline: 3px solid var(--accent-dark); outline-offset: 2px; }
.radio-pill input:checked ~ span {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--accent-darker);
}

/* Checkbox (consent) */
.check {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: .9rem;
  color: var(--muted);
}
.check input { position: absolute; opacity: 0; }
.check__box {
  width: 1.4rem; height: 1.4rem;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: #fff;
  margin-top: .05rem;
  transition: all .15s var(--ease);
}
.check__box svg { width: .9rem; height: .9rem; color: #fff; opacity: 0; }
.check input:focus-visible ~ .check__box { outline: 3px solid var(--accent-dark); outline-offset: 2px; }
.check input:checked ~ .check__box { background: var(--accent-dark); border-color: var(--accent-dark); }
.check input:checked ~ .check__box svg { opacity: 1; }
.check.is-invalid .check__box { border-color: #e07a6f; }
.check.is-invalid + .field__error { display: block; }

/* Meerstaps-formulier */
.quote-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  align-items: start;
}
.quote-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem);
}

/* Voortgangsindicator */
.form-progress {
  display: flex;
  align-items: center;
  margin-bottom: 1.9rem;
}
.form-progress__step {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .85rem;
  color: var(--muted);
}
.form-progress__dot {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--surface-soft-2);
  color: var(--muted);
  display: grid; place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: all .25s var(--ease);
}
.form-progress__dot svg { width: 1rem; height: 1rem; opacity: 0; }
.form-progress__line {
  flex: 1;
  height: 2px;
  background: var(--surface-soft-2);
  margin-inline: .55rem;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.form-progress__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.form-progress__step.is-active .form-progress__dot { background: var(--brand); color: #fff; }
.form-progress__step.is-active { color: var(--ink); }
.form-progress__step.is-done .form-progress__dot { background: var(--accent); color: var(--brand-deeper); }
.form-progress__step.is-done .form-progress__num { display: none; }
.form-progress__step.is-done .form-progress__dot svg { opacity: 1; }
.form-progress__line.is-done::after { transform: scaleX(1); }
.form-progress__label { display: none; }

.form-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.form-step__title { font-size: 1.3rem; margin-bottom: .35rem; }
.form-step__intro { font-size: .94rem; margin-bottom: 1.4rem; }
.js .form-step[hidden] { display: none; }
.js .form-step { animation: fadeStep .35s var(--ease); }
@keyframes fadeStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.form-nav .btn-prev { margin-right: auto; }
/* Zonder JS: stapnavigatie verbergen, alles in één keer tonen */
.btn-next, .btn-prev { display: none; }
.js .btn-next, .js .btn-prev { display: inline-flex; }
.js .form-nav--first { justify-content: flex-end; }

.fieldset-group { margin-bottom: 1.6rem; }
.fieldset-group > legend,
.group-label {
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: .6rem;
  padding: 0;
}

/* Succes-status */
.form-success {
  text-align: center;
  padding: clamp(1.5rem, 1rem + 2vw, 3rem) 1rem;
}
.form-success__icon {
  width: 5rem; height: 5rem;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-darker);
  display: grid; place-items: center;
  animation: pop .4s var(--ease);
}
.form-success__icon svg { width: 2.4rem; height: 2.4rem; }
@keyframes pop {
  0% { transform: scale(.5); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success h2 { margin-bottom: .6rem; }
.form-success p { max-width: 30rem; margin-inline: auto; }
.form-success__ref {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .55rem 1.1rem;
  border-radius: var(--r-pill);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .9rem;
}
.form-success__steps {
  text-align: left;
  max-width: 28rem;
  margin: 1.2rem auto 0;
  display: grid;
  gap: .6rem;
  counter-reset: s;
  padding: 0;
  list-style: none;
}
.form-success__steps li {
  position: relative;
  padding-left: 2rem;
  font-size: .95rem;
  color: var(--muted);
  counter-increment: s;
}
.form-success__steps li::before {
  content: counter(s);
  position: absolute;
  left: 0;
  top: -.05rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-darker);
  font-weight: 800;
  font-size: .8rem;
  display: grid;
  place-items: center;
}

/* Intro-geruststellingsregel boven het offerteformulier */
.form-intro-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--accent-tint);
  color: var(--accent-darker);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1rem;
  border-radius: var(--r);
  margin-bottom: 1.4rem;
}

/* Zijpaneel offerte */
.quote-aside { display: grid; gap: 1.3rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
}
.aside-card--dark {
  background: linear-gradient(155deg, var(--brand), var(--brand-deeper));
  color: #fff;
  border-color: transparent;
}
.aside-card--dark h3 { color: #fff; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.aside-steps { display: grid; gap: 1rem; }
.aside-step { display: flex; gap: .8rem; align-items: flex-start; }
.aside-step__num {
  width: 1.8rem; height: 1.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.aside-step strong { display: block; font-size: .95rem; }
.aside-step span { font-size: .85rem; color: #b9c8df; }
.aside-contact { display: flex; align-items: center; gap: .9rem; }
.aside-contact__icon {
  width: 2.8rem; height: 2.8rem;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-darker);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.aside-contact__icon svg { width: 1.4rem; height: 1.4rem; }

/* 10. FOOTER =============================================================== */
.footer {
  background: var(--brand-deeper);
  color: #9fb1c9;
  padding-top: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: #2bd588; }
.footer__about { font-size: .92rem; margin-top: 1.1rem; max-width: 30ch; color: #9fb1c9; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer__social a {
  width: 2.4rem; height: 2.4rem;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: grid; place-items: center;
  color: #cdd9ec;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover { background: var(--accent); color: var(--brand-deeper); transform: translateY(-2px); }
.footer__social svg { width: 1.15rem; height: 1.15rem; }
.footer__col h3 {
  color: #fff;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__col ul { display: grid; gap: .65rem; }
.footer__col a { color: #9fb1c9; font-size: .94rem; }
.footer__col a:hover { color: #fff; }
.footer__contact-item { display: flex; gap: .65rem; align-items: flex-start; font-size: .94rem; margin-bottom: .8rem; }
.footer__contact-item svg { width: 1.15rem; height: 1.15rem; color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.footer__contact-item a { color: #cdd9ec; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  font-size: .85rem;
}
.footer__bottom p { color: #7e92b0; }
.footer__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }

/* Mobiele actiebalk */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  gap: .6rem;
  padding: .6rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(15,26,42,.1);
}
.mobile-bar .btn { flex: 1; }

/* 11. ANIMATIES ============================================================ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Hulpklassen */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hide-mobile { }
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 12. RESPONSIVE =========================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  :root { --header-h: 70px; }

  .topbar { display: none; }

  .nav { min-height: 70px; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    margin-left: 0;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
  }
  .nav__menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav__link { padding: .85rem .9rem; font-size: 1.05rem; }
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
  .nav__actions .btn { width: 100%; padding-block: .9rem; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__content { max-width: none; }

  .usp-bar { grid-template-columns: 1fr 1fr; }
  .cards-grid--quad { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }

  .stats { grid-template-columns: 1fr 1fr; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__visual { order: 0; }

  .service-detail { grid-template-columns: 1fr; }
  .service-detail--reverse .service-detail__visual { order: 0; }
  .service-detail__visual { max-width: 460px; }

  .quote-layout { grid-template-columns: 1fr; }
  .quote-aside { position: static; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 4.5rem; }
  .footer { margin-bottom: 0; }

  .hero-chip--ml { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }

  .usp-bar { grid-template-columns: 1fr; }
  .cards-grid--quad { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }

  .stats { grid-template-columns: 1fr 1fr; gap: .5rem; }

  .form-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }

  .hero-chip { font-size: .78rem; padding: .55rem .7rem; }
  .hero-chip--tl { left: 0; top: 2%; }
  .hero-chip--br { right: 0; bottom: 3%; }

  .form-progress__step span.form-progress__label { display: none; }
  .btn-row { width: 100%; }
  .btn-row .btn { flex: 1; }
  .cta-band .btn-row .btn { flex: 1 1 auto; }
}

@media (min-width: 921px) {
  .form-progress__label { display: inline; }
}

/* 13. WOW FEATURES ========================================================= */

/* 13a. Savings Ticker ------------------------------------------------------- */
#savingsTicker { font-variant-numeric: tabular-nums; font-weight: 800; }

/* 13b. WhatsApp Widget ------------------------------------------------------ */
.wa-widget {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 96;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
  opacity: 0;
  transform: translateY(12px) scale(.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.wa-widget--visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-widget__wrap { position: relative; }
.wa-widget__btn {
  position: relative;
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-widget__btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.6); text-decoration: none; }
.wa-widget__icon { width: 1.8rem; height: 1.8rem; }
.wa-widget__btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: wa-pulse 2.2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes wa-pulse {
  0%   { opacity: .8; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.55); }
  100% { opacity: 0;  transform: scale(1.55); }
}
@media (prefers-reduced-motion: reduce) { .wa-widget__btn::before { animation: none; } }
.wa-widget__close {
  position: absolute;
  top: -6px; right: -6px;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(0,18,51,.3);
  z-index: 1;
  transition: background-color .15s var(--ease);
}
.wa-widget__close:hover { background: #c0392b; }
.wa-widget__close svg { width: .7rem; height: .7rem; }
.wa-widget__tooltip {
  background: var(--brand);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  pointer-events: none;
}
.wa-widget:hover .wa-widget__tooltip,
.wa-widget:focus-within .wa-widget__tooltip { opacity: 1; transform: none; }
@media (min-width: 921px) { .wa-widget { bottom: 1.75rem; } }

/* 13c. Calculator ----------------------------------------------------------- */
.calc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.calc-inputs {
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 1.8rem;
}
.calc-results {
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: linear-gradient(155deg, var(--brand-tint) 0%, #fff 55%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.calc-group { display: flex; flex-direction: column; gap: .6rem; }
.calc-label {
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.calc-value-display {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-darker);
  font-variant-numeric: tabular-nums;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,211,72,.4);
  cursor: grab;
  transition: transform .15s var(--ease);
}
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,211,72,.4);
  cursor: grab;
}
.calc-slider-labels { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-top: .25rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.radio-pill { display: flex; align-items: center; cursor: pointer; }
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill span {
  display: block;
  padding: .45rem .9rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color .15s var(--ease), background-color .15s var(--ease), color .15s var(--ease);
  cursor: pointer;
}
.radio-pill input:checked + span { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-darker); }
.radio-pill span:hover { border-color: var(--accent-dark); }
.radio-pill:focus-within span { outline: 2px solid var(--accent); outline-offset: 2px; }
.calc-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.calc-result-item { text-align: center; }
.calc-result-num {
  display: block;
  font-size: clamp(1.3rem, 1rem + .9vw, 1.8rem);
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.03em;
}
.calc-result-label { display: block; font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.calc-independence { display: grid; gap: .55rem; }
.calc-independence-label { display: flex; justify-content: space-between; font-size: .88rem; font-weight: 600; color: var(--ink); }
.calc-progress-track { height: 10px; border-radius: var(--r-pill); background: var(--line); overflow: hidden; }
.calc-progress-bar {
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent), #93f125);
  width: 0%;
  transition: width .7s var(--ease);
}
.calc-cta { text-align: center; margin-top: auto; }
.calc-cta-note { font-size: .82rem; color: var(--muted); margin-top: .6rem; }
@media (max-width: 780px) {
  .calc-card { grid-template-columns: 1fr; }
  .calc-inputs { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) { .calc-result-grid { grid-template-columns: 1fr 1fr; } }

/* 13d. House Story ---------------------------------------------------------- */
.story-section {
  height: calc(1600px + 100vh);
  position: relative;
  background: linear-gradient(180deg, #fff, var(--surface-soft));
}
.story-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  width: 100%;
}
.story-copy { position: relative; min-height: 340px; }
.story-chapter {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.story-chapter--active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.story-chapter .eyebrow { margin-bottom: .75rem; }
.story-chapter h2 { margin-bottom: .85rem; }
.story-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.story-house {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 12px 30px rgba(0,18,51,.10));
}
.story-badge {
  position: absolute;
  bottom: -.5rem;
  right: 0;
  background: var(--brand);
  color: #fff;
  border-radius: var(--r-lg);
  padding: .85rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 155px;
}
.story-badge__label { display: block; font-size: .75rem; opacity: .7; }
.story-badge__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  letter-spacing: -.02em;
}
@media (max-width: 860px) {
  .story-section { height: auto; padding-block: var(--section-y); }
  .story-sticky { position: static; height: auto; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-visual { order: -1; }
  .story-copy { min-height: unset; }
  .story-chapter { position: static; opacity: 1; transform: none; pointer-events: auto; display: none; }
  .story-chapter--active { display: block; }
}

/* 13e. Hero Canvas ---------------------------------------------------------- */
.hero-canvas {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  display: block;
}
.hero-illustration { position: relative; z-index: 2; }

/* ==========================================================================
   14. Merkpagina's & Categoriehubs
   ========================================================================== */

/* 14a. Nav dropdown --------------------------------------------------------- */
/* Positie-context op nav.nav zodat het mega-menu gecentreerd wordt op de
   volledige nav-breedte in plaats van op het smalle <li>-element.          */
.nav__item--has-dropdown { position: static; }
.nav { position: relative; }
.nav__dropdown-btn {
  /* Deelt de .nav__link-klasse voor identieke sizing als de overige nav-links —
     daarom géén padding/font/color overrides hier. */
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__dropdown-btn .chev {
  width: .85rem; height: .85rem;
  transition: transform .2s var(--ease);
}
.nav__dropdown-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mega {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(820px, 96vw);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,18,51,.13), 0 4px 16px rgba(0,18,51,.07);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 200;
}
/* invisible hover bridge so the panel doesn't close while crossing the gap */
.mega::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -.85rem;
  height: .85rem;
}
/* Focus-within enkel op desktop — op mobiel overschrijft de hogere
   specificiteit anders de transform: none uit de mobile override.          */
@media (min-width: 921px) {
  .nav__item--has-dropdown:focus-within .mega {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}
.mega--open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega__inner {
  display: grid;
  grid-template-columns: 1fr .72fr .52fr;
  gap: 0;
}
/* Diensten-mega: services + promo-aside (geen 'Meer'-kolom meer) */
.mega__inner--diensten {
  grid-template-columns: 1fr .55fr;
}
/* Over-ons-mega: kleinere dropdown met twee links-kolommen */
.mega--sm { width: min(560px, 94vw); }
.mega__inner--sm { grid-template-columns: 1fr 1fr; }
.mega__list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .15rem .4rem;
}
.mega__list--grid .mega__card { padding: .55rem .55rem; }
.mega__section {
  padding: 1.4rem 1.25rem 1.25rem;
}
.mega__section + .mega__section {
  border-left: 1px solid var(--line-soft);
}
.mega__label {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.mega__label::before {
  content: "";
  width: .45rem; height: .45rem;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.mega__list {
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.mega__links {
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
/* Service cards */
.mega__card {
  display: flex;
  gap: .7rem;
  align-items: center;
  padding: .6rem .65rem .6rem .55rem;
  border-left: 2.5px solid transparent;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  text-decoration: none;
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.mega__card:hover {
  background: var(--brand-tint);
  border-left-color: var(--accent);
  text-decoration: none;
}
.mega__card[aria-current="page"] {
  background: var(--brand-tint);
  border-left-color: var(--accent);
}
/* Icon: licht tinted — rustiger, minder visueel gewicht */
.mega__ic {
  flex: none;
  width: 2.35rem; height: 2.35rem;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--brand-tint);
  color: var(--brand);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.mega__ic svg { width: 1.1rem; height: 1.1rem; }
.mega__card:hover .mega__ic { background: var(--accent); color: #fff; }
.mega__body { display: flex; flex-direction: column; gap: .12rem; flex: 1; min-width: 0; }
.mega__t { font-weight: 700; font-size: .92rem; color: var(--ink); }
.mega__d { font-size: .77rem; line-height: 1.35; color: var(--muted); }
/* Arrow affordance */
.mega__card::after {
  content: "→";
  font-size: .8rem;
  color: var(--accent-deep);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .15s var(--ease), transform .15s var(--ease);
  flex-shrink: 0;
}
.mega__card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
/* Footer "alle diensten" link */
.mega__section-all {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .77rem;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
  margin-top: .7rem;
  padding: 0 .55rem;
  opacity: .85;
  transition: opacity .14s var(--ease);
}
.mega__section-all:hover { opacity: 1; text-decoration: none; }
/* Quick links (tweede kolom) */
.mega__link {
  display: flex;
  gap: .6rem;
  align-items: center;
  padding: .58rem .7rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background .15s var(--ease);
}
.mega__link:hover { background: var(--surface-soft); text-decoration: none; }
.mega__link-ic {
  flex: none;
  width: 2.15rem; height: 2.15rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--surface-soft-2);
  color: var(--brand);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.mega__link-ic svg { width: 1.05rem; height: 1.05rem; }
.mega__link:hover .mega__link-ic { background: var(--brand-tint); color: var(--accent-deep); }
/* Beschrijvingen in de "Meer" kolom verbergen — alleen titel tonen */
.mega__links .mega__d { display: none; }
.mega__links .mega__t { font-size: .9rem; }
/* CTA-link: offerte aanvragen — groen, springt eruit */
.mega__link--accent {
  background: var(--accent-tint);
  margin-top: .5rem;
  border: 1px solid rgba(0,211,72,.18);
}
.mega__link--accent .mega__t { color: var(--accent-darker); font-weight: 800; }
.mega__link--accent .mega__d { color: var(--accent-deep); opacity: .8; }
.mega__link--accent .mega__link-ic { background: var(--accent); color: #fff; }
.mega__link--accent:hover {
  background: var(--accent);
  border-color: transparent;
}
.mega__link--accent:hover .mega__t,
.mega__link--accent:hover .mega__d { color: #fff; opacity: 1; }
.mega__link--accent:hover .mega__link-ic { background: rgba(255,255,255,.22); color: #fff; }
/* Promo panel (rechts) */
.mega__promo {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: linear-gradient(155deg, var(--brand-2) 0%, var(--brand-deeper) 100%);
  color: #fff;
  padding: 1.4rem 1.25rem;
}
.mega__promo-eyebrow {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.mega__promo-title { font-size: .98rem; font-weight: 800; line-height: 1.3; color: #fff; }
.mega__promo-text { font-size: .79rem; line-height: 1.5; color: rgba(255,255,255,.72); flex: 1; }
.mega__promo .btn { align-self: stretch; text-align: center; margin-top: .2rem; }
.mega__promo-stats {
  display: flex;
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.mega__promo-stats > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .05rem;
  text-align: center;
}
.mega__promo-stats > div + div { border-left: 1px solid rgba(255,255,255,.12); }
.mega__promo-stats strong { font-size: .9rem; font-weight: 800; color: var(--accent); display: block; }
.mega__promo-stats small { font-size: .62rem; color: rgba(255,255,255,.5); line-height: 1.3; }
/* ---- Mobiel ---- */
@media (max-width: 920px) {
  .mega {
    position: static;
    transform: none;
    width: auto;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    display: none;
    padding: .25rem 0 .5rem;
    background: transparent;
  }
  .mega::before { display: none; }
  .mega--open { display: block; transform: none; opacity: 1; pointer-events: auto; }
  .mega__inner,
  .mega__inner--diensten,
  .mega__inner--sm { grid-template-columns: 1fr; gap: .35rem; }
  .mega__list--grid { grid-template-columns: 1fr; gap: 0; }
  .mega__section {
    padding: .6rem .25rem .5rem;
    border-left: none !important;
  }
  .mega__section + .mega__section {
    border-top: 1px solid var(--line-soft);
    padding-top: .65rem;
    margin-top: 0;
  }
  .mega__label {
    font-size: .6rem;
    margin-bottom: .35rem;
    padding-bottom: .3rem;
    padding-left: .5rem;
  }
  .mega__list, .mega__links { gap: 0; }
  .mega__card {
    border-left: none;
    border-radius: var(--r-sm);
    padding: .6rem .6rem;
    min-height: 48px;
    align-items: center;
  }
  .mega__card::after { display: none; }
  .mega__ic { width: 2rem; height: 2rem; border-radius: 8px; }
  .mega__ic svg { width: 1rem; height: 1rem; }
  .mega__t { font-size: .9rem; }
  .mega__d { display: none; } /* beschrijving verbergen op mobiel voor compactheid */
  .mega__link {
    padding: .6rem .6rem;
    min-height: 44px;
  }
  .mega__link-ic { width: 1.85rem; height: 1.85rem; }
  .mega__link--accent { margin-top: .25rem; }
  .mega__section-all { display: none; }
  .mega__promo { display: none; }
}

/* 14b. Trust-strip — vertrouwensitems onder de hero-CTA's ------------------- */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-soft);
  font-weight: 500;
}
.trust-strip__item svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }

/* 14d. Brand-pill (merklinks in diensten.html) ------------------------------ */
.brand-pill-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.brand-pill-label { font-size: .82rem; color: var(--text-soft); font-weight: 500; }
.brand-pill {
  display: inline-block;
  padding: .3rem .8rem;
  background: var(--brand-tint);
  border: 1px solid var(--accent-tint);
  color: var(--accent-deep); /* #006b24 = 6.22:1 op brand-tint — voldoet WCAG 1.4.3 AA */
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
}
.brand-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }

/* 14e. Werkgebied-chips ----------------------------------------------------- */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .85rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
}
.city-chip svg { width: .75rem; height: .75rem; color: var(--accent); }

/* 14f. Merkkaarten (categoriehub-grid) -------------------------------------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.brand-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--text);
}
.brand-card__name { font-size: 1.05rem; font-weight: 700; color: var(--brand); }
.brand-card__desc { font-size: .88rem; color: var(--text-soft); line-height: 1.5; flex: 1; }
.brand-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-darker);
}
.brand-card__arrow svg { width: .85rem; height: .85rem; transition: transform .15s; }
.brand-card:hover .brand-card__arrow svg { transform: translateX(3px); }

/* brand-card rich variant (merken-overzicht met afbeelding) */
.brand-grid--rich {
  /* Vaste 1 / 2 / 3 kolommen i.p.v. auto-fill — rustiger raster, geen wezen-rij,
     bredere cards zodat afbeelding en beschrijving voldoende ruimte krijgen. */
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .brand-grid--rich { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .brand-grid--rich { grid-template-columns: repeat(3, 1fr); }
}
.brand-grid--rich .brand-card { padding: 0; }
.brand-card__media {
  position: relative;
  border-radius: calc(var(--r-xl) - 1px) calc(var(--r-xl) - 1px) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
}
.brand-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 1.75rem;
}
.brand-card__category {
  position: absolute;
  bottom: .65rem;
  left: .65rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .73rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .02em;
}
.brand-card__category svg {
  width: .8rem;
  height: .8rem;
  color: var(--accent-darker);
  flex-shrink: 0;
}
.brand-card__badge {
  position: absolute;
  top: .65rem;
  right: .65rem;
  padding: .28rem .65rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.brand-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

/* 14f-bis. Type-kaarten ("Welke soorten/types zijn er?" op dienstenpagina's) - */
.type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  counter-reset: type;
}
@media (min-width: 720px) {
  .type-grid { grid-template-columns: repeat(3, 1fr); }
}
.type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 2rem 1.6rem 1.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  counter-increment: type;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.type-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}
.type-card::after {
  content: counter(type, decimal-leading-zero);
  position: absolute;
  top: .85rem;
  right: 1.25rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--surface-soft-2);
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
  transition: color .3s ease;
  pointer-events: none;
  z-index: 0;
}
.type-card > * { position: relative; z-index: 1; }
.type-card:hover {
  border-color: rgba(0, 211, 72, .35);
  box-shadow: 0 20px 40px -24px rgba(0, 18, 51, .22);
  transform: translateY(-3px);
}
.type-card:hover::after { color: var(--accent-tint); }
.type-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.3;
  letter-spacing: -.005em;
  margin-top: .35rem;
  max-width: calc(100% - 2.5rem);
}
.type-card__desc {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}

/* 14g. USP-kaarten (merkpagina: Waarom [Merk]?) ----------------------------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.usp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.25rem;
}
.usp-card__icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--accent-tint);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}
.usp-card__icon svg { width: 1.2rem; height: 1.2rem; color: var(--accent-darker); }
.usp-card__title { font-weight: 700; font-size: .95rem; margin-bottom: .35rem; }
.usp-card__body { font-size: .87rem; color: var(--text-soft); line-height: 1.55; }

/* 14h. Installatiestappen --------------------------------------------------- */
.install-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.install-step {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.install-step__num {
  width: 2.2rem; height: 2.2rem;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.install-step__title { font-weight: 700; font-size: .95rem; }
.install-step__body { font-size: .87rem; color: var(--text-soft); line-height: 1.55; }
.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .8rem;
  background: var(--brand-tint);
  border: 1px solid var(--accent-tint);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-darker);
}
.cert-badge svg { width: .8rem; height: .8rem; }

/* 14i. FAQ accordion (merkpagina's) ---------------------------------------- */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font: inherit;
  font-size: .97rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__q svg { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform .2s var(--ease); color: var(--accent); }
.faq-item__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}
.faq-item__a-inner {
  padding: 0 1.25rem 1.1rem;
  font-size: .93rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* 14k. Merken-overzichtspagina ---------------------------------------------- */

/* Sticky filter-bar boven het grid */
.merken-filter {
  position: sticky;
  top: calc(var(--header-h) - 2.25rem);
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-block: 1px solid var(--line);
  margin-block: 1.5rem 2rem;
  padding-block: .85rem;
}
.merken-filter__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}
.merken-filter__label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: .35rem;
}
.merken-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--r-pill);
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  transition: border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease);
  appearance: none;
  font-family: inherit;
}
.merken-filter__btn:hover { border-color: var(--accent); color: var(--accent-deep); }
.merken-filter__btn[aria-pressed="true"] { background: var(--brand); color: #fff; border-color: var(--brand); }
.merken-filter__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.merken-filter__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 .25rem;
  background: var(--surface-soft);
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
}
.merken-filter__btn[aria-pressed="true"] .merken-filter__count {
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
}
.merken-empty { display: none; }
.merken-empty[data-visible="true"] {
  display: block;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  background: var(--surface-soft);
  border-radius: var(--r-lg);
  margin-top: 2rem;
}

/* ==========================================================================
   15. KENNISBANK / BLOG  (rustig, magazine-stijl à la Beter Duurzaam)
   ==========================================================================
   Vaste blokken op elk artikel:
     1. Navy hero met titel + (optioneel) afbeelding rechts
     2. 2-kolomslayout: sticky sidebar (TOC + offerte-CTA) + main column
     3. Optionele "Belangrijkste punten"-strook bovenaan main
     4. Prose-body, lichte typografie
     5. Optionele FAQ (subtiel, geen kaartjes)
     6. Deelknoppen onderaan
     7. Gerelateerde artikelen + eind-CTA-banner
   ========================================================================== */

/* ------- 15a. Blog index (overzichtspagina) ------------------------------ */
.blog-list { padding: 2rem 0 5rem; }
.blog-filter {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}
.blog-filter__btn {
  appearance: none; border: 1px solid var(--line); background: #fff; color: var(--ink);
  font: inherit; font-weight: 600; font-size: .9rem; padding: .55rem 1.1rem;
  border-radius: var(--r-pill); cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.blog-filter__btn:hover { border-color: var(--accent); color: var(--accent-deep); }
.blog-filter__btn[aria-selected="true"] { background: var(--brand); color: #fff; border-color: var(--brand); }
.blog-filter__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.blog-grid__item[hidden] { display: none; }
.blog-empty {
  text-align: center; padding: 3rem 1rem; color: var(--muted);
  background: var(--surface-soft); border-radius: var(--r-lg);
}

/* Article card (op overzicht én related) */
.article-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-tint); }
.article-card__media { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-soft); }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.article-card:hover .article-card__media img { transform: scale(1.03); }
.article-card__body { padding: 1.1rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.article-card__meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; font-size: .78rem; color: var(--muted); }
.article-card__title { font-size: 1.15rem; line-height: 1.3; margin: 0; }
.article-card__title a { color: var(--ink); text-decoration: none; }
.article-card__title a:hover { color: var(--accent-deep); }
.article-card__desc {
  font-size: .9rem; color: var(--muted); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card__read { margin-top: auto; display: inline-flex; align-items: center; gap: .3rem; color: var(--accent-deep); font-weight: 700; font-size: .85rem; }
.article-card__read svg { width: .95rem; height: .95rem; transition: transform .2s var(--ease); }
.article-card:hover .article-card__read svg { transform: translateX(3px); }

/* Categorie-chips (overzicht en related) */
.chip {
  display: inline-block; padding: .22rem .65rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--r-pill); background: var(--surface-soft); color: var(--ink); border: 1px solid var(--line);
}
.chip--kennis    { background: var(--brand-tint); color: var(--accent-deep); border-color: var(--accent-tint); }
.chip--subsidies { background: #fff4e0; color: #8a5a00; border-color: #ffe2b3; }
.chip--cases     { background: #ecf2ff; color: #1d3a8a; border-color: #d6e3ff; }
.chip--tips      { background: var(--accent-tint); color: var(--accent-deep); border-color: var(--accent-tint); }

/* ------- 15b. Artikelpagina: navy hero ------------------------------------ */
.post { background: #fff; }

.post__hero {
  position: relative;
  background: linear-gradient(150deg, var(--brand), var(--brand-deeper));
  color: #fff;
  padding-block: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  overflow: hidden;
}
.post__hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(520px 420px at 85% -10%, rgba(0,18,51,.55), transparent 62%),
    radial-gradient(420px 360px at 6% 120%, rgba(0,211,72,.22), transparent 64%);
  pointer-events: none;
}
.post__hero > * { position: relative; }

.post__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-top: .5rem;
}
@media (min-width: 880px) {
  .post__hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 2.5rem; }
}
.post__hero-text { max-width: 38rem; }
.post__eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 .85rem;
}
.post__title {
  font-size: clamp(1.85rem, 1.3rem + 2.6vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: #fff;
  margin: 0 0 .9rem;
}
.post__lead {
  font-size: clamp(1rem, .9rem + .35vw, 1.15rem);
  line-height: 1.6;
  color: #c6d4e8;
  margin: 0 0 1.1rem;
  max-width: 38rem;
}
.post__meta {
  display: flex; flex-wrap: wrap; gap: .55rem;
  font-size: .82rem; color: #aebfd6; margin: 0;
}
.post__meta time { color: #d8e2ee; }

.post__hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.04);
}
.post__hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ------- 15c. 2-kolomslayout: sidebar + main ----------------------------- */
.post__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: clamp(2rem, 1.5rem + 2vw, 3rem);
}
@media (min-width: 960px) {
  .post__layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  }
}

.post__sidebar {
  align-self: start;
}
@media (min-width: 960px) {
  .post__sidebar {
    position: sticky;
    top: calc(var(--header-h, 112px) + 1.25rem);
  }
}
.post__sidebar-cta {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}

.post__main { min-width: 0; max-width: 720px; }

/* Sidebar TOC */
.post-toc {
  font-size: .9rem;
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.post-toc__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .65rem;
}
.post-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  counter-reset: tocnum;
}
.post-toc__list li {
  counter-increment: tocnum;
  position: relative;
  padding-left: 1.65rem;
}
.post-toc__list li::before {
  content: counter(tocnum, decimal-leading-zero);
  position: absolute; left: 0; top: .35rem;
  font-size: .68rem; font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.post-toc__list a {
  display: block;
  padding: .35rem 0;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
  border-bottom: 1px solid var(--line-soft);
  transition: color .15s var(--ease);
}
.post-toc__list li:last-child a { border-bottom: 0; }
.post-toc__list a:hover { color: var(--accent-deep); }

/* ------- 15d. KeyPoints (subtiel, geen groene box) ----------------------- */
.post-keypoints {
  margin: 0 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-soft);
  border-radius: var(--r);
  border-left: 3px solid var(--accent);
}
.post-keypoints__title {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .75rem;
}
.post-keypoints__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}
.post-keypoints__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .98rem;
  line-height: 1.5;
  color: var(--ink);
}
.post-keypoints__list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ------- 15e. Prose ------------------------------------------------------ */
.post__body.prose,
.prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.prose > * + * { margin-top: 1.15rem; }
.prose > h2 + *, .prose > h3 + * { margin-top: .75rem; }
.prose p { margin: 0; }
.prose h2 {
  font-size: clamp(1.4rem, 1.15rem + .85vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -.005em;
  margin-top: 2.5rem;
  margin-bottom: .25rem;
  color: var(--brand);
  scroll-margin-top: calc(var(--header-h, 112px) + 1rem);
}
.prose h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin-top: 1.85rem;
  margin-bottom: .35rem;
  color: var(--brand);
}
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li + li { margin-top: .35rem; }
.prose ul li::marker { color: var(--accent); }
.prose a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}
.prose a:hover { text-decoration-thickness: 2px; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: .25rem 1.1rem;
  color: var(--muted);
  font-style: italic;
}
.prose blockquote p { margin: 0; }
.prose code {
  background: var(--surface-soft);
  padding: .12rem .35rem;
  border-radius: 4px;
  font-size: .9em;
}
.prose img {
  max-width: 100%; height: auto;
  border-radius: var(--r);
  display: block;
  margin: 1.5rem auto;
}
.prose hr { border: 0; height: 1px; background: var(--line-soft); margin: 2.5rem 0; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .95rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.prose th, .prose td {
  text-align: left;
  padding: .7rem .9rem;
  border-bottom: 1px solid var(--line-soft);
}
.prose th { background: var(--surface-soft); font-weight: 700; color: var(--brand); }
.prose tbody tr:last-child td { border-bottom: 0; }

/* ------- 15f. Bronvermelding (subtiel, geen gele box) -------------------- */
.post__source {
  margin-top: 2rem;
  padding: .75rem 0 0;
  border-top: 1px solid var(--line-soft);
  font-size: .88rem;
  color: var(--muted);
}

/* ------- 15g. FAQ (rustig, geen kaartjes) -------------------------------- */
.post-faq { margin-top: 3rem; }
.post-faq__title {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.65rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: var(--brand);
}
.post-faq__list { margin: 0; padding: 0; }
.post-faq__item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.post-faq__item:first-child { border-top: 1px solid var(--line-soft); }
.post-faq__q {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
  margin: 0 0 .4rem;
}
.post-faq__a {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .97rem;
}

/* ------- 15h. Share buttons --------------------------------------------- */
.share {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
}
.share__label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.share__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.share__btn {
  --share-c: var(--brand);
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 600; text-decoration: none;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.share__btn:hover { background: var(--share-c); color: #fff; border-color: var(--share-c); }
.share__btn:focus-visible { outline: 2px solid var(--share-c); outline-offset: 2px; }
.share__btn svg { width: .95rem; height: .95rem; }
.share__name { display: inline; }
@media (max-width: 480px) {
  .share__name { display: none; }
  .share__btn { padding: .5rem; }
}

/* ------- 15i. Gerelateerde artikelen ------------------------------------- */
.related {
  padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) 0;
  background: var(--surface-soft);
  border-top: 1px solid var(--line-soft);
}
.related__title {
  font-size: clamp(1.4rem, 1.15rem + 1vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 .35rem;
  color: var(--brand);
}
.related__sub { margin: 0 0 2rem; color: var(--muted); font-size: .98rem; }
.related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

/* ------- 15j. Eind-CTA-banner -------------------------------------------- */
.post__endbanner {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background:
    radial-gradient(ellipse at center top, rgba(0,211,72,.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-deeper) 100%);
  color: #fff;
  text-align: center;
}
.post__endbanner .eyebrow { color: var(--accent); letter-spacing: .12em; font-size: .75rem; font-weight: 800; text-transform: uppercase; margin-bottom: .65rem; display: block; }
.post__endbanner h2 { font-size: clamp(1.7rem, 1.25rem + 2vw, 2.3rem); line-height: 1.15; margin: 0 0 .75rem; color: #fff; }
.post__endbanner p { color: rgba(255,255,255,.82); max-width: 50ch; margin: 0 auto 1.75rem; font-size: 1.02rem; line-height: 1.55; }
.post__endbanner .btn-row { justify-content: center; display: flex; flex-wrap: wrap; gap: .85rem; }

/* ==========================================================================
   16. MERKDETAILPAGINA  (product-header, gallery, details, spec, compare)
   ========================================================================== */

/* ------- 16a. Product-header: 2-koloms (afbeelding links, details rechts) -- */
.product-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 1rem;
}
@media (min-width: 800px) {
  .product-header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: start;
  }
}

/* ------- 16b. Media-kolom (hoofd-afbeelding + thumbnail-gallery) ----------- */
.product-header__media { display: flex; flex-direction: column; gap: .85rem; }

.product-header__main-img {
  position: relative;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.product-header__main-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  padding: 2rem;
}
.product-header__main-img-badge {
  position: absolute;
  top: .85rem; left: .85rem;
  padding: .3rem .8rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 2;
}

/* ------- 16c. Thumbnail-gallery ------------------------------------------- */
.product-gallery {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-gallery::-webkit-scrollbar { display: none; }
.product-gallery__thumb {
  flex-shrink: 0;
  width: 4.5rem; height: 4.5rem;
  background: var(--surface-soft);
  border: 2px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  padding: .35rem;
  cursor: pointer;
  transition: border-color .15s var(--ease);
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumb:hover { border-color: var(--accent-dark); }
.product-gallery__thumb.is-active,
.product-gallery__thumb[aria-selected="true"] {
  border-color: var(--accent);
  background: var(--accent-tint);
}

/* ------- 16d. Details-kolom (rechts) --------------------------------------- */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 800px) {
  .product-details {
    position: sticky;
    top: calc(var(--header-h, 112px) + 1.5rem);
  }
}
.product-details__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.product-details__brand {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.product-details__category {
  font-size: .78rem;
  color: var(--text-soft);
  padding: .22rem .65rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.product-details__subtitle {
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-top: -.25rem;
}
.product-details__price {
  display: flex;
  align-items: baseline;
  gap: .45rem;
}
.product-details__price-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-soft);
}
.product-details__price-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand);
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -.02em;
}
.product-details__price-note {
  display: block;
  font-size: .8rem;
  color: var(--text-soft);
  margin-top: -.4rem;
}

/* ------- 16e. USP-lijst ---------------------------------------------------- */
.product-usp-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1rem 1.1rem;
  background: var(--surface-soft);
  border-radius: var(--r-lg);
}
.product-usp-list__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
}
.product-usp-list__item svg {
  width: 1rem; height: 1rem;
  color: var(--accent-darker);
  flex-shrink: 0;
}

/* ------- 16f. CTA-knoppen + trust-rij -------------------------------------- */
.product-details__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.product-details__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.15rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line-soft);
}
.product-details__trust-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-soft);
}
.product-details__trust-item svg {
  width: .88rem; height: .88rem;
  color: var(--accent-darker);
  flex-shrink: 0;
}

/* ------- 16g. Prose + samenvatting (2-koloms tekstsectie) ------------------ */
.prose-with-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 860px) {
  .prose-with-summary {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 3rem;
  }
}
.prose-block h2 { color: var(--brand); margin-bottom: .5rem; }
.prose-block h3 { color: var(--brand); margin: 1.5rem 0 .4rem; }
.prose-block p + p { margin-top: .9rem; }
.prose-block .lead { font-size: 1.08rem; color: var(--text-soft); line-height: 1.65; margin-bottom: .9rem; }

/* Product samenvatting (pros/cons aside) */
.product-summary {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 860px) {
  .product-summary {
    position: sticky;
    top: calc(var(--header-h, 112px) + 1.5rem);
  }
}
.product-summary__section { display: flex; flex-direction: column; gap: .6rem; }
.product-summary__title {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin: 0;
}
.product-summary__title svg { width: .9rem; height: .9rem; flex-shrink: 0; }
.product-summary__title--pros { color: var(--accent-deep); }
.product-summary__title--pros svg { color: var(--accent-darker); }
.product-summary__title--cons { color: var(--muted); }
.product-summary__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.product-summary__item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.product-summary__item svg {
  width: .88rem; height: .88rem;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--muted);
}
.product-summary__item--pros svg { color: var(--accent-darker); }

/* ------- 16h. Spec-tabel --------------------------------------------------- */
.spec-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0 .35rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 460px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.spec-table th {
  background: var(--surface-soft);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand);
}
.spec-table tbody tr:last-child td { border-bottom: 0; }
.spec-table tbody tr:nth-child(even) td { background: var(--surface-soft); }
.spec-table__note {
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-top: .5rem;
}

/* ------- 16i. Vergelijkingstabel ------------------------------------------- */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .91rem;
  min-width: 520px;
}
.compare-table th,
.compare-table td {
  text-align: center;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--brand);
  background: var(--surface-soft);
  white-space: nowrap;
  padding-left: 1.25rem;
  font-size: .88rem;
}
.compare-table thead th {
  background: var(--surface-soft);
  font-weight: 600;
  color: var(--brand);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: top;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table__featured { background: var(--brand-tint) !important; }
.compare-table thead .compare-table__featured {
  background: var(--accent-tint) !important;
  border-top: 2px solid var(--accent);
  position: relative;
  padding-top: 2.35rem;
}
.compare-table__featured-tag {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .2rem .75rem;
  border-radius: 0 0 var(--r-pill) var(--r-pill);
  white-space: nowrap;
}
.compare-table__brand-name {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  color: var(--brand);
  letter-spacing: 0;
  text-transform: none;
}
.compare-table__brand-sub {
  display: block;
  font-weight: 500;
  font-size: .75rem;
  color: var(--text-soft);
  letter-spacing: 0;
  text-transform: none;
  margin-top: .15rem;
}
.compare-table__note {
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.55;
  padding: .85rem 1.25rem;
  background: var(--surface-soft);
  border-top: 1px solid var(--line-soft);
}
.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
}
.compare-icon svg { width: .85rem; height: .85rem; stroke-width: 2.5; }
.compare-icon--yes { background: var(--accent-tint); color: var(--accent-darker); }
.compare-icon--no  { background: #fff0f0; color: #d93025; }
.compare-icon--partial { background: #fffbef; color: #d97706; }

/* ------- 16j. CTA-banner (productpagina-einde) ----------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deeper) 100%);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.75rem) clamp(1.5rem, 1rem + 2vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.cta-banner > div:first-child,
.cta-banner > p:not(:last-child) { flex: 1; }
.cta-banner h2 {
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.6rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 .45rem;
}
.cta-banner > p,
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 48ch;
}
.cta-banner .btn { flex-shrink: 0; align-self: flex-start; }
@media (min-width: 640px) {
  .cta-banner .btn { align-self: center; }
}

/* ==========================================================================
   17. Bespaarcheck, klikbare stedengrid & cookie-consent
   ========================================================================== */

/* 17a. Klikbare stedengrid -------------------------------------------------- */
a.city-chip {
  text-decoration: none;
  transition: border-color .2s var(--ease), background-color .2s var(--ease),
              color .2s var(--ease), transform .2s var(--ease);
}
a.city-chip:hover {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--brand);
  transform: translateY(-1px);
}
a.city-chip:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}

/* 17b. Bespaarcheck-wizard -------------------------------------------------- */
.scan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.75rem);
  max-width: 820px;
  margin: 0 auto;
}

.scan-report { margin-bottom: 1.75rem; }
.scan-report__lead {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.scan-report .calc-result-grid { margin-bottom: 1.4rem; }
.scan-report .calc-independence { margin-bottom: 1.4rem; }
.scan-report__note {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 1.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.scan-measures__title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent-deep);
  margin: 0 0 .6rem;
}
.scan-measures ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.scan-measures li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .9rem;
  background: var(--surface-soft);
  border-radius: var(--r-sm);
  font-size: .92rem;
}
.scan-measures li span:first-child { font-weight: 600; color: var(--ink); }
.scan-measures li span:last-child {
  color: var(--accent-deep);
  font-weight: 700;
  white-space: nowrap;
}

.scan-lead {
  margin-top: 1.75rem;
  padding: clamp(1.25rem, 1rem + 1vw, 1.85rem);
  background: var(--accent-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.scan-lead__title {
  font-size: 1.15rem;
  margin: 0 0 .35rem;
  color: var(--brand);
}
.scan-lead__text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

/* 17c. Cookie-consent banner ------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--brand-deeper);
  color: #fff;
  border-top: 2px solid var(--accent);
  box-shadow: 0 -10px 40px rgba(0, 18, 51, .3);
  padding: 1.1rem 0;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text { flex: 1; min-width: 15rem; }
.cookie-banner__title {
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 .2rem;
}
.cookie-banner__text p:last-child {
  margin: 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
}
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
}
@media (max-width: 920px) {
  .cookie-banner { bottom: 4.6rem; }
}
@media (max-width: 560px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* 17d. Footer — privacylink & cookievoorkeuren ------------------------------ */
.footer__legal a,
.footer__cookie-btn {
  color: inherit;
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: .85;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.footer__legal a:hover,
.footer__cookie-btn:hover {
  opacity: 1;
  color: var(--accent);
}
.footer__legal a:focus-visible,
.footer__cookie-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
