/* ==========================================================================
   AVG Register Pro
   Thema: registerkaart. Koel wit grondvlak, digitaal turquoise registerlijnen,
   nachtblauw voor inkt en voor de voetband, amber voor termijnen en risico.
   Koppen in IBM Plex Mono, lopende tekst in IBM Plex Sans.
   Mobiel eerst. Breekpunten op 640px, 900px en 1200px.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Ontwerpvariabelen
   -------------------------------------------------------------------------- */

:root {
  /* Grondkleuren. De paginagrond is licht; nachtblauw blijft de inktkleur
     en de kleur van de donkere accentband onderaan. */
  --grond: #f4f8fb;
  --nacht: #0a1728;
  --nacht-2: #ffffff;
  --nacht-3: #e2ecf4;
  --nacht-4: #d3e1ec;
  --lijn: #ccdbe7;
  --lijn-zacht: rgba(11, 26, 45, 0.14);
  --lijn-hard: rgba(7, 106, 90, 0.34);
  --lijn-veld: #74889d;

  /* Accenten. Dezelfde tinten; turquoise en amber krijgen een diepe variant
     omdat de heldere versie op wit onleesbaar is. */
  --turquoise: #35e0c2;
  --turquoise-diep: #076a5a;
  --turquoise-mist: rgba(53, 224, 194, 0.16);
  --amber: #f5a623;
  --amber-diep: #8f5600;
  --amber-mist: rgba(245, 166, 35, 0.16);

  /* Tekst. De namen blijven staan, de waarden draaien mee naar donkere inkt. */
  --wit: #0c1b2e;
  --wit-zacht: #2f4457;
  --grijs: #4a5f73;
  --inkt: #0a1526;
  --inkt-zacht: #33475f;

  /* Papier voor de getinte registerregels */
  --papier: #e9f1f7;
  --papier-2: #dce8f2;

  /* Donkere accentband: de voetbalk */
  --band: #0a1728;
  --band-kop: #f2f7fb;
  --band-tekst: #c8d8e6;
  --band-gedempt: #9fb5c9;
  --band-lijn: rgba(232, 244, 252, 0.16);

  /* Typografie */
  --font-kop: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --font-lijf: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --maat-xs: 0.75rem;
  --maat-s: 0.875rem;
  --maat-m: 1rem;
  --maat-l: 1.125rem;
  --maat-xl: 1.375rem;
  --maat-2xl: 1.75rem;
  --maat-3xl: 2.25rem;
  --maat-4xl: 2.875rem;

  /* Ritme */
  --ruimte-1: 0.25rem;
  --ruimte-2: 0.5rem;
  --ruimte-3: 0.75rem;
  --ruimte-4: 1rem;
  --ruimte-5: 1.5rem;
  --ruimte-6: 2rem;
  --ruimte-7: 3rem;
  --ruimte-8: 4.5rem;
  --breed: 1180px;
  --smal: 720px;

  /* Vormen */
  --rond-s: 3px;
  --rond-m: 6px;
  --rond-l: 10px;
  --schaduw: 0 16px 36px rgba(11, 34, 58, 0.13);
  --schaduw-zacht: 0 6px 16px rgba(11, 34, 58, 0.09);

  /* Motief: datamatrix */
  --raster-fijn:
    repeating-linear-gradient(to right, rgba(7, 106, 90, 0.09) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(to bottom, rgba(7, 106, 90, 0.09) 0 1px, transparent 1px 44px);
  --raster-punten: radial-gradient(rgba(7, 106, 90, 0.18) 1px, transparent 1px);
  --raster-punten-band: radial-gradient(rgba(53, 224, 194, 0.24) 1px, transparent 1px);
  --slot: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23076a5a' stroke-width='1.8' stroke-linecap='round'%3E%3Crect x='4.5' y='10.5' width='15' height='10' rx='2'/%3E%3Cpath d='M8 10.5V7.5a4 4 0 0 1 8 0v3'/%3E%3Ccircle cx='12' cy='15.5' r='1.4'/%3E%3C/svg%3E");
  --vinkje: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23076a5a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   2. Basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background-color: var(--grond);
  background-image: var(--raster-fijn);
  color: var(--wit-zacht);
  font-family: var(--font-lijf);
  font-size: var(--maat-m);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-kop);
  font-weight: 600;
  color: var(--wit);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 var(--ruimte-4);
}

h1 { font-size: var(--maat-3xl); }
h2 { font-size: var(--maat-2xl); }
h3 { font-size: var(--maat-xl); }
h4 { font-size: var(--maat-l); }

p { margin: 0 0 var(--ruimte-4); }

a {
  color: var(--turquoise-diep);
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 106, 90, 0.35);
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

a:hover { color: var(--wit); border-bottom-color: var(--turquoise-diep); }

:focus-visible {
  outline: 2px solid var(--amber-diep);
  outline-offset: 3px;
  border-radius: var(--rond-s);
}

strong { color: var(--wit); font-weight: 600; }

code, kbd, samp { font-family: var(--font-kop); font-size: 0.92em; }

hr { border: 0; border-top: 1px solid var(--lijn-zacht); margin: var(--ruimte-6) 0; }

::selection { background: var(--turquoise); color: var(--nacht); }

.verborgen,
[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--turquoise);
  color: var(--nacht);
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  padding: var(--ruimte-3) var(--ruimte-5);
  border: 0;
  border-radius: 0 0 var(--rond-m) 0;
}

.skip-link:focus {
  left: 0;
  color: var(--nacht);
}

/* --------------------------------------------------------------------------
   3. Herbruikbare onderdelen
   -------------------------------------------------------------------------- */

.omhulsel,
.sectie__inner,
.kopbalk__inner,
.voetbalk__inner {
  width: 100%;
  max-width: var(--breed);
  margin: 0 auto;
  padding-left: var(--ruimte-4);
  padding-right: var(--ruimte-4);
}

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ruimte-2);
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: var(--rond-m);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.knop--accent {
  background: var(--turquoise);
  color: var(--nacht);
  border-color: var(--turquoise-diep);
  box-shadow: 0 0 0 0 rgba(7, 106, 90, 0.5);
}

.knop--accent:hover {
  background: #5bf0d6;
  color: var(--nacht);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 106, 90, 0.28);
}

.knop--rand {
  background: transparent;
  color: var(--wit);
  border-color: var(--lijn-hard);
}

.knop--rand:hover {
  background: var(--turquoise-mist);
  color: var(--wit);
  transform: translateY(-2px);
}

.knop--amber {
  background: var(--amber);
  color: var(--inkt);
  border-color: var(--amber-diep);
}

.knop--amber:hover { background: #ffb944; color: var(--inkt); transform: translateY(-2px); }

.knop--vol { width: 100%; }

.label {
  display: inline-block;
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise-diep);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--rond-s);
  padding: 0.15rem 0.5rem;
}

.label--amber { color: var(--amber-diep); border-color: rgba(143, 86, 0, 0.42); }

/* --------------------------------------------------------------------------
   4. Kopbalk en navigatie
   -------------------------------------------------------------------------- */

.kopbalk {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 248, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lijn-zacht);
}

.kopbalk::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(to right, var(--turquoise-diep) 0%, var(--turquoise) 22%, transparent 22%, transparent 100%);
  opacity: 0.85;
}

.kopbalk__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-4);
  min-height: 4.25rem;
}

.merk {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-3);
  border-bottom: 0;
  color: var(--wit);
}

.merk__slot {
  width: 2.25rem;
  height: 2.25rem;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--lijn-hard);
  border-radius: var(--rond-m);
  background-color: var(--papier);
  background-image: var(--slot);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.3rem 1.3rem;
}

.merk__naam {
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--wit);
  line-height: 1.15;
}

.merk__onder {
  display: block;
  font-size: var(--maat-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grijs);
}

.navigatie { display: none; }

.navigatie__lijst {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--ruimte-5);
  margin: 0;
  padding: 0;
}

.navigatie__link {
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  color: var(--wit-zacht);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.navigatie__link:hover,
.navigatie__link[aria-current="page"] {
  color: var(--turquoise);
  border-bottom-color: var(--turquoise);
}

.kopbalk__acties { display: flex; align-items: center; gap: var(--ruimte-3); }

.kopbalk__cta { display: none; }

.menuschakelaar {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-2);
  background: transparent;
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-m);
  color: var(--wit);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.menuschakelaar__streep {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--turquoise);
}

.menuschakelaar__streep::before,
.menuschakelaar__streep::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--turquoise);
  transition: transform 0.2s ease;
}

.menuschakelaar__streep::before { top: -6px; }
.menuschakelaar__streep::after { top: 6px; }

.menuschakelaar::-webkit-details-marker { display: none; }
.menuschakelaar::marker { content: ""; }

.mobielmenu-wrap[open] .menuschakelaar__streep { background: transparent; }
.mobielmenu-wrap[open] .menuschakelaar__streep::before { transform: translateY(6px) rotate(45deg); }
.mobielmenu-wrap[open] .menuschakelaar__streep::after { transform: translateY(-6px) rotate(-45deg); }

.mobielmenu-wrap { position: static; }

.mobielmenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 55;
  border-top: 1px solid var(--lijn-zacht);
  border-bottom: 1px solid var(--lijn-hard);
  background: var(--nacht-2);
  background-image: var(--raster-punten);
  background-size: 14px 14px;
  box-shadow: var(--schaduw);
  animation: uitklap 0.22s ease-out;
}

@keyframes uitklap {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobielmenu__lijst {
  list-style: none;
  margin: 0;
  padding: var(--ruimte-3) var(--ruimte-4) var(--ruimte-5);
  max-width: var(--breed);
  margin-inline: auto;
}

.mobielmenu__item { border-bottom: 1px solid var(--lijn-zacht); }
.mobielmenu__item:last-child { border-bottom: 0; }

.mobielmenu__link {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  color: var(--wit);
  border-bottom: 0;
}

.mobielmenu__link:hover { color: var(--turquoise); }

/* --------------------------------------------------------------------------
   5. Secties als registerregels
   -------------------------------------------------------------------------- */

.sectie {
  padding: var(--ruimte-7) 0;
  border-top: 1px solid var(--lijn-zacht);
  position: relative;
}

.sectie--licht {
  background: var(--papier);
  color: var(--inkt-zacht);
  border-top-color: rgba(10, 21, 38, 0.12);
}

.sectie--licht h2,
.sectie--licht h3,
.sectie--licht h4 { color: var(--inkt); }

.sectie--licht a { color: var(--turquoise-diep); border-bottom-color: rgba(7, 106, 90, 0.42); }
.sectie--licht a:hover { color: var(--inkt); }

.regelkop {
  display: flex;
  align-items: center;
  gap: var(--ruimte-3);
  margin: 0 0 var(--ruimte-4);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.regelkop__code {
  color: var(--nacht);
  background: var(--turquoise);
  border-radius: var(--rond-s);
  padding: 0.1rem 0.45rem;
  font-weight: 700;
}

.regelkop__label { color: var(--grijs); }

.sectie--licht .regelkop__label { color: var(--inkt-zacht); }

.regelkop::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--lijn-hard), transparent);
}

.sectie__titel { max-width: 22ch; }

.sectie__lead {
  max-width: 62ch;
  font-size: var(--maat-l);
  color: var(--wit-zacht);
}

.sectie--licht .sectie__lead { color: var(--inkt-zacht); }

/* --------------------------------------------------------------------------
   6. Hero met verwerkingsmatrix
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: var(--ruimte-7) 0 var(--ruimte-8);
  border-top: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--raster-punten);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  max-width: 620px;
  max-height: 620px;
  background: radial-gradient(circle, rgba(53, 224, 194, 0.26), transparent 68%);
  pointer-events: none;
}

.hero__grid { position: relative; display: grid; gap: var(--ruimte-6); }

.hero__titel {
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--ruimte-4);
}

.hero__titel .accent { color: var(--turquoise-diep); }

.hero__belofte {
  font-size: var(--maat-l);
  max-width: 54ch;
  color: var(--wit-zacht);
}

.hero__acties {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-3);
  margin-bottom: var(--ruimte-5);
}

.hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-2);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.06em;
  color: var(--grijs);
}

.hero__meta li { padding-left: 1.4rem; position: relative; }

.hero__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.9rem;
  height: 0.9rem;
  background-image: var(--vinkje);
  background-repeat: no-repeat;
  background-size: contain;
}

.matrixkaart {
  background: var(--nacht-2);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-l);
  box-shadow: var(--schaduw);
  overflow: hidden;
}

.matrixkaart__kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-3);
  padding: var(--ruimte-3) var(--ruimte-4);
  border-bottom: 1px solid var(--lijn-zacht);
  background: linear-gradient(to right, rgba(53, 224, 194, 0.14), transparent);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wit);
}

.matrixkaart__punt {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--turquoise-diep);
  box-shadow: 0 0 0 0 rgba(53, 224, 194, 0.6);
  animation: puls 2.8s ease-out infinite;
}

.matrixkaart__scroll { overflow-x: auto; }

.matrixkaart__tabel {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
}

.matrixkaart__tabel th,
.matrixkaart__tabel td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--lijn-zacht);
  vertical-align: top;
}

.matrixkaart__tabel th {
  color: var(--grijs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--papier);
}

.matrixkaart__tabel td { color: var(--wit-zacht); }
.matrixkaart__tabel tr:last-child td { border-bottom: 0; }
.matrixkaart__tabel tbody tr:hover td { background: rgba(53, 224, 194, 0.14); }

.statuslabel {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.05rem 0.4rem;
  border-radius: var(--rond-s);
  border: 1px solid currentColor;
}

.statuslabel--ok { color: var(--turquoise-diep); }
.statuslabel--let-op { color: var(--amber-diep); }

.matrixkaart__voet {
  padding: var(--ruimte-3) var(--ruimte-4);
  border-top: 1px solid var(--lijn-zacht);
  font-size: var(--maat-xs);
  color: var(--grijs);
  background: var(--papier);
  margin: 0;
}

/* --------------------------------------------------------------------------
   7. Probleem, oplossing, functies, voordelen
   -------------------------------------------------------------------------- */

.probleemlijst {
  list-style: none;
  margin: var(--ruimte-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-4);
}

.probleemlijst__item {
  border-left: 2px solid var(--amber);
  background: linear-gradient(to right, var(--amber-mist), transparent 65%);
  padding: var(--ruimte-3) var(--ruimte-4);
  border-radius: 0 var(--rond-m) var(--rond-m) 0;
}

.probleemlijst__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  color: var(--wit);
  margin: 0 0 var(--ruimte-2);
}

.probleemlijst__item p { margin: 0; font-size: var(--maat-s); }

.stappen {
  list-style: none;
  counter-reset: stap;
  margin: var(--ruimte-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-4);
}

.stap {
  counter-increment: stap;
  position: relative;
  padding: var(--ruimte-4) var(--ruimte-4) var(--ruimte-4) 3.75rem;
  background: var(--nacht-2);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-m);
}

.sectie--licht .stap {
  background: #ffffff;
  border-color: rgba(10, 21, 38, 0.12);
}

.stap::before {
  content: "0" counter(stap);
  position: absolute;
  left: var(--ruimte-4);
  top: var(--ruimte-4);
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  font-weight: 700;
  color: var(--turquoise-diep);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--rond-s);
  padding: 0.1rem 0.4rem;
}

.stap__kop { margin: 0 0 var(--ruimte-2); font-size: var(--maat-l); }
.stap p { margin: 0; }

.functies {
  display: grid;
  gap: var(--ruimte-4);
  margin-top: var(--ruimte-5);
}

.functie {
  background: var(--nacht-2);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-m);
  padding: var(--ruimte-5) var(--ruimte-4);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.functie::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--raster-punten);
  background-size: 12px 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.functie:hover { transform: translateY(-3px); border-color: var(--lijn-hard); }
.functie:hover::before { opacity: 0.6; }

.functie__code {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.14em;
  color: var(--turquoise-diep);
  display: block;
  margin-bottom: var(--ruimte-2);
}

.functie__kop { font-size: var(--maat-l); margin-bottom: var(--ruimte-2); }
.functie p { margin: 0; font-size: var(--maat-s); }

.voordelen {
  display: grid;
  gap: var(--ruimte-4);
  margin-top: var(--ruimte-5);
  list-style: none;
  padding: 0;
}

.voordeel {
  padding: var(--ruimte-4);
  border-top: 2px solid var(--turquoise-diep);
  background: var(--nacht-2);
  border-radius: 0 0 var(--rond-m) var(--rond-m);
}

.voordeel__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  margin: 0 0 var(--ruimte-2);
}

.voordeel p { margin: 0; font-size: var(--maat-s); }

/* --------------------------------------------------------------------------
   8. Vertrouwen
   -------------------------------------------------------------------------- */

.vertrouwen { display: grid; gap: var(--ruimte-4); margin-top: var(--ruimte-5); }

.vertrouwen__blok {
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-m);
  padding: var(--ruimte-5) var(--ruimte-4) var(--ruimte-4);
  background: var(--nacht-2);
  position: relative;
}

.vertrouwen__blok::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: var(--ruimte-3);
  background-image: var(--slot);
  background-repeat: no-repeat;
  background-size: contain;
}

.vertrouwen__kop { font-size: var(--maat-l); margin-bottom: var(--ruimte-2); }
.vertrouwen__blok p { margin: 0 0 var(--ruimte-3); font-size: var(--maat-s); }
.vertrouwen__blok p:last-child { margin-bottom: 0; }

.praktijkkader {
  margin-top: var(--ruimte-5);
  border: 1px dashed var(--lijn-hard);
  border-radius: var(--rond-m);
  padding: var(--ruimte-5) var(--ruimte-4);
  background: linear-gradient(to bottom right, rgba(53, 224, 194, 0.08), transparent);
}

.praktijkkader__kop { font-size: var(--maat-l); margin-bottom: var(--ruimte-2); }
.praktijkkader__disclaimer {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.06em;
  color: var(--amber-diep);
  margin-bottom: var(--ruimte-3);
}

/* Correcties voor de lichte registerregels */

.sectie--licht .stap::before { color: var(--turquoise-diep); border-color: rgba(7, 106, 90, 0.35); }
.sectie--licht .functie { background: var(--nacht-2); border-color: rgba(10, 21, 38, 0.12); }
.sectie--licht .functie__code { color: var(--turquoise-diep); }
.sectie--licht .functie p,
.sectie--licht .stap p,
.sectie--licht .voordeel p { color: var(--inkt-zacht); }
.sectie--licht .voordeel { border-top-color: var(--turquoise-diep); background: var(--nacht-2); }
.sectie--licht .regelkop::after { background: linear-gradient(to right, rgba(7, 106, 90, 0.45), transparent); }
.sectie--licht .regelkop__code { background: var(--turquoise-diep); color: #ffffff; }
.sectie--licht .praktijkkader { border-color: rgba(7, 106, 90, 0.4); background: rgba(7, 106, 90, 0.05); }
.sectie--licht .praktijkkader__disclaimer { color: var(--amber-diep); }

/* --------------------------------------------------------------------------
   9. Tarieven
   -------------------------------------------------------------------------- */

.tarieven { display: grid; gap: var(--ruimte-4); margin-top: var(--ruimte-5); }

.tarief {
  display: flex;
  flex-direction: column;
  background: var(--nacht-2);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-l);
  padding: var(--ruimte-5) var(--ruimte-4);
}

.tarief--uitgelicht {
  border-color: var(--turquoise-diep);
  box-shadow: 0 0 0 1px rgba(7, 106, 90, 0.22), var(--schaduw-zacht);
  position: relative;
}

.tarief--uitgelicht::after {
  content: "Meest gekozen opzet";
  position: absolute;
  top: -0.75rem;
  left: var(--ruimte-4);
  font-family: var(--font-kop);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--turquoise);
  color: var(--nacht);
  padding: 0.15rem 0.5rem;
  border-radius: var(--rond-s);
}

.tarief__naam {
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise-diep);
  margin: 0 0 var(--ruimte-2);
}

.tarief__prijs { display: flex; align-items: baseline; gap: var(--ruimte-2); margin-bottom: var(--ruimte-2); }
.tarief__bedrag { font-family: var(--font-kop); font-size: var(--maat-3xl); color: var(--wit); line-height: 1; }
.tarief__periode { font-size: var(--maat-xs); color: var(--grijs); font-family: var(--font-kop); }
.tarief__voor { font-size: var(--maat-s); color: var(--wit-zacht); margin-bottom: var(--ruimte-4); }

.tarief__lijst { list-style: none; margin: 0 0 var(--ruimte-5); padding: 0; display: grid; gap: var(--ruimte-2); font-size: var(--maat-s); }
.tarief__lijst li { position: relative; padding-left: 1.5rem; }
.tarief__lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.9rem;
  height: 0.9rem;
  background-image: var(--vinkje);
  background-repeat: no-repeat;
  background-size: contain;
}

.tarief__knop { margin-top: auto; }

.tarieven__voet { margin-top: var(--ruimte-4); font-size: var(--maat-s); color: var(--grijs); }

/* --------------------------------------------------------------------------
   10. Veelgestelde vragen
   -------------------------------------------------------------------------- */

.faqlijst { display: grid; gap: var(--ruimte-3); margin-top: var(--ruimte-5); }

.faq {
  border: 1px solid rgba(10, 21, 38, 0.14);
  border-radius: var(--rond-m);
  background: #ffffff;
  padding: 0 var(--ruimte-4);
}

.faq[open] { border-color: var(--turquoise-diep); }

.faq__vraag {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  color: var(--inkt);
  padding: var(--ruimte-4) 2rem var(--ruimte-4) 0;
  position: relative;
}

.faq__vraag::-webkit-details-marker { display: none; }

.faq__vraag::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--maat-xl);
  color: var(--turquoise-diep);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq[open] .faq__vraag::after { content: "-"; }

.faq__antwoord {
  margin: 0;
  padding: 0 0 var(--ruimte-4);
  border-top: 1px solid rgba(10, 21, 38, 0.1);
  padding-top: var(--ruimte-3);
  color: var(--inkt-zacht);
  font-size: var(--maat-s);
}

/* --------------------------------------------------------------------------
   11. Artikelkaarten
   -------------------------------------------------------------------------- */

.kaarten { display: grid; gap: var(--ruimte-5); margin-top: var(--ruimte-5); list-style: none; padding: 0; }

.kaart {
  display: flex;
  flex-direction: column;
  background: var(--nacht-2);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-l);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.kaart:hover { transform: translateY(-4px); border-color: var(--lijn-hard); }

.kaart__foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.kaart__lijf { padding: var(--ruimte-4); display: flex; flex-direction: column; gap: var(--ruimte-2); flex: 1; }

.kaart__rubriek {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise-diep);
  margin: 0;
}

.kaart__titel {
  font-size: var(--maat-l);
  margin: 0;
  line-height: 1.3;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: pretty;
}
.kaart__titel a { color: var(--wit); border-bottom: 0; }
.kaart__titel a:hover { color: var(--turquoise-diep); }
.kaart__tekst { font-size: var(--maat-s); margin: 0; }
.kaart__meta { font-family: var(--font-kop); font-size: var(--maat-xs); color: var(--grijs); margin: auto 0 0; }

.kaarten__meer { margin-top: var(--ruimte-5); }

/* --------------------------------------------------------------------------
   12. Contact en formulier
   -------------------------------------------------------------------------- */

.contact__grid { display: grid; gap: var(--ruimte-6); margin-top: var(--ruimte-5); }
.contact__tekst p { font-size: var(--maat-m); }

.contact__alternatief {
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  border-left: 2px solid var(--turquoise-diep);
  padding-left: var(--ruimte-3);
}

.formulier {
  background: var(--nacht-2);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-l);
  padding: var(--ruimte-5) var(--ruimte-4);
  box-shadow: var(--schaduw-zacht);
  display: grid;
  gap: var(--ruimte-3);
}

.formulier label {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wit-zacht);
  display: block;
  margin-bottom: var(--ruimte-1);
}

.formulier input[type="text"],
.formulier input[type="email"],
.formulier select,
.formulier textarea {
  width: 100%;
  font-family: var(--font-lijf);
  font-size: var(--maat-m);
  color: var(--wit);
  background: var(--grond);
  border: 1px solid var(--lijn-veld);
  border-radius: var(--rond-m);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.formulier textarea { resize: vertical; min-height: 8rem; }

.formulier input:focus,
.formulier select:focus,
.formulier textarea:focus {
  border-color: var(--turquoise-diep);
  box-shadow: 0 0 0 3px rgba(7, 106, 90, 0.22);
  outline: none;
}

.formulier__veld { margin: 0; }

.formulier__voet { font-size: var(--maat-xs); color: var(--grijs); margin: 0; }

/* --------------------------------------------------------------------------
   13. Voetbalk
   -------------------------------------------------------------------------- */

/* Dit is de donkere accentband van de site. De rest van de pagina is licht. */
.voetbalk {
  background: var(--band);
  color: var(--band-tekst);
  border-top: 2px solid var(--turquoise);
  padding-top: var(--ruimte-7);
  margin-top: var(--ruimte-7);
  position: relative;
}

.voetbalk::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--raster-punten-band);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.voetbalk .merk__naam { color: var(--band-kop); }
.voetbalk .merk__slot { border-color: rgba(53, 224, 194, 0.5); }
.voetbalk a { color: var(--band-tekst); }
.voetbalk a:hover { color: var(--band-kop); border-bottom-color: var(--turquoise); }

.voetbalk__inner { position: relative; display: grid; gap: var(--ruimte-6); padding-bottom: var(--ruimte-6); }

.voetkolom__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin: 0 0 var(--ruimte-3);
  padding-bottom: var(--ruimte-2);
  border-bottom: 1px solid var(--band-lijn);
}

.voetkolom__lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--ruimte-2); font-size: var(--maat-s); }
.voetkolom__lijst a { color: var(--band-tekst); border-bottom-color: transparent; }
.voetkolom__lijst a:hover { color: var(--turquoise); border-bottom-color: var(--turquoise); }

.voetmerk { display: flex; align-items: center; gap: var(--ruimte-3); margin-bottom: var(--ruimte-3); }
.voetkolom--merk p { font-size: var(--maat-s); max-width: 40ch; }
.voetkolom--merk a { color: var(--turquoise); }
.voetkolom--merk a:hover { color: var(--band-kop); }

.netwerklijst { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--ruimte-3); }

.netwerklijst__item {
  display: flex;
  align-items: flex-start;
  gap: var(--ruimte-3);
  border: 1px solid var(--band-lijn);
  border-left-width: 2px;
  border-left-color: var(--turquoise);
  border-radius: var(--rond-m);
  background: rgba(232, 244, 252, 0.05);
  padding: var(--ruimte-3);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.netwerklijst__item:hover {
  border-color: rgba(53, 224, 194, 0.45);
  border-left-color: var(--turquoise);
  background: rgba(53, 224, 194, 0.10);
  transform: translateX(3px);
}

.netwerklijst__link {
  flex: 1;
  font-size: var(--maat-s);
  color: var(--band-tekst);
  border-bottom: 1px solid transparent;
  line-height: 1.45;
}

.netwerklijst__link:hover { color: var(--band-kop); border-bottom-color: var(--turquoise); }

.netwerklijst__code {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--turquoise);
  flex: none;
  padding-top: 0.15rem;
  letter-spacing: 0.08em;
}

.voetkolom--netwerk .voetkolom__intro {
  font-size: var(--maat-xs);
  color: var(--band-gedempt);
  margin: 0 0 var(--ruimte-3);
}

.voetbalk__onder {
  position: relative;
  border-top: 1px solid var(--band-lijn);
  padding: var(--ruimte-4) 0;
}

.voetbalk__onder .voetbalk__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-3);
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--band-gedempt);
}

.voetbalk__onder a { color: var(--band-tekst); border-bottom-color: rgba(53, 224, 194, 0.42); }
.voetbalk__onder a:hover { color: var(--turquoise); border-bottom-color: var(--turquoise); }

/* --------------------------------------------------------------------------
   14. Kruimelpad
   -------------------------------------------------------------------------- */

.kruimels { padding: var(--ruimte-4) 0 0; }

.kruimels__lijst {
  max-width: var(--breed);
  margin: 0 auto;
  padding: 0 var(--ruimte-4);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.06em;
  color: var(--grijs);
}

.kruimels__item { display: flex; align-items: center; gap: var(--ruimte-2); }
.kruimels__item + .kruimels__item::before { content: "/"; color: var(--turquoise-diep); }
.kruimels__item a { color: var(--grijs); border-bottom: 0; }
.kruimels__item a:hover { color: var(--turquoise-diep); }

/* --------------------------------------------------------------------------
   15. Artikelopmaak van de generator
   -------------------------------------------------------------------------- */

.artikel { padding: var(--ruimte-5) 0 var(--ruimte-7); }

.artikel__inner {
  max-width: var(--smal);
  margin: 0 auto;
  padding: 0 var(--ruimte-4);
}

.artikel-kop { margin-bottom: var(--ruimte-5); }

.artikel-kop__rubriek {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-diep);
  margin: 0 0 var(--ruimte-3);
}

.artikel-kop__titel { font-size: clamp(1.8rem, 5.5vw, 2.6rem); margin-bottom: var(--ruimte-4); }

.artikel-kop__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ruimte-2) var(--ruimte-4);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--grijs);
  border-top: 1px solid var(--lijn-zacht);
  border-bottom: 1px solid var(--lijn-zacht);
  padding: var(--ruimte-3) 0;
}

.artikel-kop__auteur { color: var(--wit-zacht); }
.artikel-kop__datum,
.artikel-kop__leestijd { color: var(--grijs); }

.artikel-hero { margin: 0 0 var(--ruimte-5); }

.artikel-hero__foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--rond-l);
  border: 1px solid var(--lijn-zacht);
}

.artikel-hero__credit {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--grijs);
  margin: var(--ruimte-2) 0 0;
}

.artikel-hero__credit a { color: var(--grijs); }
.artikel-hero__credit a:hover { color: var(--turquoise-diep); }

.chapo {
  font-size: var(--maat-l);
  color: var(--wit);
  border-left: 3px solid var(--turquoise-diep);
  padding-left: var(--ruimte-4);
  margin-bottom: var(--ruimte-5);
}

.artikel__body { font-size: var(--maat-m); }

.artikel__body h2 {
  font-size: var(--maat-2xl);
  margin: var(--ruimte-6) 0 var(--ruimte-3);
  padding-top: var(--ruimte-3);
  border-top: 1px solid var(--lijn-zacht);
}

.artikel__body h3 { font-size: var(--maat-xl); margin: var(--ruimte-5) 0 var(--ruimte-3); color: var(--turquoise-diep); }
.artikel__body p { margin: 0 0 var(--ruimte-4); }

.artikel__body ul,
.artikel__body ol { margin: 0 0 var(--ruimte-4); padding-left: var(--ruimte-5); }
.artikel__body li { margin-bottom: var(--ruimte-2); }
.artikel__body ul { list-style: none; padding-left: 0; }

.artikel__body ul li {
  position: relative;
  padding-left: 1.5rem;
}

.artikel__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--turquoise-diep);
  border-radius: 1px;
}

.artikel__body ol { counter-reset: reg; list-style: none; padding-left: 0; }
.artikel__body ol li { position: relative; padding-left: 2.2rem; counter-increment: reg; }
.artikel__body ol li::before {
  content: counter(reg, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  color: var(--turquoise-diep);
}

.artikel__body blockquote {
  margin: var(--ruimte-5) 0;
  padding: var(--ruimte-4);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--rond-m);
  background: var(--turquoise-mist);
  color: var(--wit);
  font-size: var(--maat-l);
}

.artikel__body blockquote p:last-child { margin-bottom: 0; }

.artikel__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--ruimte-5);
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  display: block;
  overflow-x: auto;
}

.artikel__body th,
.artikel__body td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--lijn-zacht);
  vertical-align: top;
}

.artikel__body th { color: var(--wit); background: var(--nacht-3); letter-spacing: 0.06em; }
.artikel__body strong { color: var(--wit); }
.artikel__body a { border-bottom-color: var(--turquoise-diep); }

/* Auteursblok */

.auteur-blok {
  display: grid;
  gap: var(--ruimte-4);
  margin: var(--ruimte-7) 0 0;
  padding: var(--ruimte-5) var(--ruimte-4);
  background: var(--nacht-2);
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-l);
}

.auteur-blok__foto {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--turquoise-diep);
}

.auteur-blok__tekst { min-width: 0; }

.auteur-blok__naam { font-family: var(--font-kop); font-size: var(--maat-l); color: var(--wit); margin: 0 0 var(--ruimte-2); }
.auteur-blok__bio { font-size: var(--maat-s); margin: 0 0 var(--ruimte-3); }
.auteur-blok__links { display: flex; flex-wrap: wrap; gap: var(--ruimte-3); font-family: var(--font-kop); font-size: var(--maat-xs); }

/* Verder lezen */

.verder { margin-top: var(--ruimte-7); }

.verder__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turquoise-diep);
  margin-bottom: var(--ruimte-4);
  padding-bottom: var(--ruimte-2);
  border-bottom: 1px solid var(--lijn-zacht);
}

.verder__lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--ruimte-4); }

.verder__item {
  border: 1px solid var(--lijn-zacht);
  border-radius: var(--rond-m);
  overflow: hidden;
  background: var(--nacht-2);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.verder__item:hover { border-color: var(--lijn-hard); transform: translateY(-3px); }
.verder__link { display: block; color: inherit; border-bottom: 0; }
.verder__foto { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.verder__titel { font-family: var(--font-kop); font-size: var(--maat-m); color: var(--wit); margin: var(--ruimte-3) var(--ruimte-3) var(--ruimte-2); }
.verder__meta { font-family: var(--font-kop); font-size: var(--maat-xs); color: var(--grijs); margin: 0 var(--ruimte-3) var(--ruimte-3); }

/* Foutpagina */

.fout { padding: var(--ruimte-8) 0; }
.fout__inner { max-width: var(--smal); margin: 0 auto; padding: 0 var(--ruimte-4); text-align: center; }
.fout__code { font-family: var(--font-kop); font-size: clamp(3rem, 16vw, 6rem); color: var(--turquoise-diep); line-height: 1; margin: 0 0 var(--ruimte-3); letter-spacing: 0.05em; }
.fout__titel { font-size: var(--maat-2xl); margin-bottom: var(--ruimte-3); }
.fout__tekst { color: var(--wit-zacht); margin-bottom: var(--ruimte-5); }
.fout__acties { display: flex; flex-wrap: wrap; gap: var(--ruimte-3); justify-content: center; }
.fout__knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-kop);
  font-size: var(--maat-s);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: var(--rond-m);
  background: var(--turquoise);
  color: var(--nacht);
  border: 1px solid var(--turquoise-diep);
}

.fout__knop:hover { background: #5bf0d6; color: var(--nacht); }
.fout__link { font-family: var(--font-kop); font-size: var(--maat-s); }

/* --------------------------------------------------------------------------
   16. Animatie
   -------------------------------------------------------------------------- */

@keyframes puls {
  0% { box-shadow: 0 0 0 0 rgba(53, 224, 194, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(53, 224, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 224, 194, 0); }
}

@keyframes scanlijn {
  from { background-position: 0 0; }
  to { background-position: 0 44px; }
}

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

/* --------------------------------------------------------------------------
   17. Breekpunten
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .sectie { padding: var(--ruimte-8) 0; }
  .functies { grid-template-columns: repeat(2, 1fr); }
  .voordelen { grid-template-columns: repeat(2, 1fr); }
  .kaarten { grid-template-columns: repeat(2, 1fr); }
  .verder__lijst { grid-template-columns: repeat(2, 1fr); }
  .vertrouwen { grid-template-columns: repeat(2, 1fr); }
  .auteur-blok { grid-template-columns: 5rem 1fr; align-items: start; }
  .formulier { padding: var(--ruimte-6) var(--ruimte-5); }
  h1 { font-size: var(--maat-4xl); }
}

@media (min-width: 900px) {
  .omhulsel,
  .sectie__inner,
  .kopbalk__inner,
  .voetbalk__inner { padding-left: var(--ruimte-5); padding-right: var(--ruimte-5); }

  .navigatie { display: block; }
  .kopbalk__cta { display: inline-flex; }
  .menuschakelaar { display: none; }
  .mobielmenu-wrap { display: none; }

  .hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: var(--ruimte-7); }
  .stappen { grid-template-columns: repeat(2, 1fr); }
  .functies { grid-template-columns: repeat(3, 1fr); }
  .voordelen { grid-template-columns: repeat(3, 1fr); }
  .tarieven { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .kaarten { grid-template-columns: repeat(3, 1fr); }
  .kaart__titel { font-size: var(--maat-m); }
  .verder__lijst { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .probleemlijst { grid-template-columns: repeat(2, 1fr); }
  .voetbalk__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .voetkolom--netwerk { grid-column: 1 / -1; }
  .netwerklijst { grid-template-columns: repeat(2, 1fr); }
  .artikel__inner { padding: 0 var(--ruimte-5); }
  .sectie__titel { font-size: var(--maat-3xl); }
}

@media (min-width: 1200px) {
  .voetbalk__inner { grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr 1.5fr; }
  .voetkolom--netwerk { grid-column: auto; }
  .netwerklijst { grid-template-columns: 1fr; }
  .stappen { grid-template-columns: repeat(4, 1fr); }
  .hero { padding-bottom: 6rem; }
  .sectie__lead { font-size: var(--maat-xl); }
}

@media (min-width: 1400px) {
  :root { --breed: 1240px; }
}

/* --------------------------------------------------------------------------
   18. Afdrukken
   -------------------------------------------------------------------------- */

@media print {
  body { background: #ffffff; color: #000000; }
  .kopbalk, .voetbalk, .mobielmenu, .formulier, .hero::after { display: none !important; }
  a { color: #000000; border: 0; }
  .artikel__inner { max-width: none; }
}

/* --------------------------------------------------------------------------
   19. Binnenpagina's: paginakop
   -------------------------------------------------------------------------- */

.pagina { display: block; }

.paginakop {
  position: relative;
  padding: var(--ruimte-7) 0 var(--ruimte-6);
  border-bottom: 1px solid var(--lijn);
  background:
    radial-gradient(120% 100% at 8% 0%, rgba(53, 224, 194, 0.22), transparent 60%),
    var(--papier);
  overflow: hidden;
}

.paginakop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--raster-punten);
  background-size: 22px 22px;
  opacity: 0.45;
  pointer-events: none;
}

.paginakop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(to right, var(--turquoise-diep), rgba(7, 106, 90, 0));
}

.paginakop__inner { position: relative; }

.paginakop__titel {
  font-size: clamp(1.85rem, 5.4vw, 2.6rem);
  max-width: 24ch;
  margin-bottom: var(--ruimte-4);
}

.paginakop__lead {
  font-size: var(--maat-l);
  color: var(--wit-zacht);
  max-width: 62ch;
  margin-bottom: 0;
}

.paginakop__stempel {
  display: inline-flex;
  align-items: center;
  gap: var(--ruimte-2);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grijs);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-s);
  padding: 0.2rem 0.6rem;
  margin-top: var(--ruimte-5);
  margin-bottom: 0;
}

.paginakop__stempel::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--slot) center / contain no-repeat;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   20. Tekstkolom voor juridische en informatieve pagina's
   -------------------------------------------------------------------------- */

.tekstblok { padding: var(--ruimte-7) 0 var(--ruimte-8); }

.tekstblok__inner {
  width: 100%;
  max-width: var(--smal);
  margin: 0 auto;
  padding-left: var(--ruimte-4);
  padding-right: var(--ruimte-4);
}

.tekstblok--breed .tekstblok__inner { max-width: var(--breed); }

.tekstblok__intro {
  font-size: var(--maat-l);
  color: var(--wit-zacht);
  border-left: 2px solid var(--turquoise-diep);
  padding-left: var(--ruimte-4);
  margin-bottom: var(--ruimte-6);
}

.regelblok {
  border-top: 1px solid var(--lijn);
  padding-top: var(--ruimte-5);
  margin-top: var(--ruimte-6);
}

.regelblok:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }

.regelblok__kop {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--ruimte-3);
  font-size: var(--maat-xl);
  margin-bottom: var(--ruimte-4);
}

.regelblok__code {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.1em;
  color: var(--nacht);
  background: var(--turquoise);
  border-radius: var(--rond-s);
  padding: 0.15rem 0.45rem;
  white-space: nowrap;
}

.regelblok h3 {
  font-size: var(--maat-l);
  color: var(--turquoise-diep);
  margin: var(--ruimte-5) 0 var(--ruimte-3);
}

.regelblok p { margin: 0 0 var(--ruimte-4); }

.regelblok ul,
.regelblok ol { margin: 0 0 var(--ruimte-4); padding-left: 0; list-style: none; }

.regelblok li { margin-bottom: var(--ruimte-2); }

.regelblok ul li { position: relative; padding-left: 1.6rem; }

.regelblok ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--turquoise-diep);
  border-radius: 1px;
  background: var(--turquoise-mist);
}

.regelblok ol { counter-reset: regelnr; }
.regelblok ol li { position: relative; padding-left: 2.3rem; counter-increment: regelnr; }

.regelblok ol li::before {
  content: counter(regelnr, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--turquoise-diep);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--rond-s);
  padding: 0 0.3rem;
  line-height: 1.6;
}

.regelblok table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--ruimte-4);
  font-size: var(--maat-s);
}

.regelblok th,
.regelblok td {
  border: 1px solid var(--lijn);
  padding: var(--ruimte-3);
  text-align: left;
  vertical-align: top;
}

.regelblok th {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wit);
  background: var(--nacht-3);
}

.tabelwikkel { overflow-x: auto; margin-bottom: var(--ruimte-4); }

.notitie {
  border: 1px solid rgba(143, 86, 0, 0.38);
  border-left-width: 3px;
  background: var(--amber-mist);
  border-radius: var(--rond-m);
  padding: var(--ruimte-4);
  margin: 0 0 var(--ruimte-5);
}

.notitie__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-diep);
  margin: 0 0 var(--ruimte-2);
}

.notitie p:last-child { margin-bottom: 0; }

.feitenlijst {
  margin: 0 0 var(--ruimte-5);
  display: grid;
  gap: 0;
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  overflow: hidden;
  font-size: var(--maat-s);
}

.feitenlijst dt {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--turquoise-diep);
  background: var(--papier);
  padding: var(--ruimte-3) var(--ruimte-4) var(--ruimte-1);
}

.feitenlijst dd {
  margin: 0;
  padding: 0 var(--ruimte-4) var(--ruimte-3);
  background: var(--nacht-2);
  color: var(--wit-zacht);
  border-bottom: 1px solid var(--lijn);
}

.feitenlijst dd:last-of-type { border-bottom: 0; }

.inhoudsopgave {
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  background: var(--nacht-2);
  padding: var(--ruimte-4);
  margin: 0 0 var(--ruimte-6);
}

.inhoudsopgave__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grijs);
  margin: 0 0 var(--ruimte-3);
}

.inhoudsopgave__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-2);
  font-size: var(--maat-s);
}

.inhoudsopgave__lijst a { border-bottom-color: transparent; }
.inhoudsopgave__lijst a:hover { border-bottom-color: var(--turquoise-diep); }

/* --------------------------------------------------------------------------
   21. Auteurspagina
   -------------------------------------------------------------------------- */

.auteurkaart {
  display: grid;
  gap: var(--ruimte-5);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-l);
  background: var(--nacht-2);
  padding: var(--ruimte-5);
  margin-bottom: var(--ruimte-6);
  position: relative;
  overflow: hidden;
}

.auteurkaart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--raster-punten);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

.auteurkaart__figuur { position: relative; margin: 0; }

.auteurkaart__foto {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--rond-m);
  border: 1px solid var(--lijn-hard);
  filter: saturate(0.92);
}

.auteurkaart__bijschrift {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--grijs);
  margin: var(--ruimte-3) 0 0;
}

.auteurkaart__tekst { position: relative; min-width: 0; }

.auteurkaart__naam {
  font-family: var(--font-kop);
  font-size: var(--maat-xl);
  color: var(--wit);
  margin: 0 0 var(--ruimte-2);
}

.auteurkaart__rol {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise-diep);
  margin: 0 0 var(--ruimte-4);
}

.auteurkaart__tekst p { font-size: var(--maat-s); }

.profiellinks {
  list-style: none;
  margin: var(--ruimte-4) 0 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-2);
}

.profiellink {
  display: flex;
  align-items: center;
  gap: var(--ruimte-3);
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--wit-zacht);
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  padding: var(--ruimte-2) var(--ruimte-3);
  background: var(--papier);
}

.profiellink:hover {
  color: var(--wit);
  border-color: var(--lijn-hard);
  background: var(--turquoise-mist);
}

.profiellink__code {
  color: var(--turquoise-diep);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.artikelindex {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-3);
}

.artikelindex__item {
  border: 1px solid var(--lijn);
  border-left: 2px solid var(--turquoise-diep);
  border-radius: var(--rond-m);
  background: var(--nacht-2);
  padding: var(--ruimte-4);
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.artikelindex__item:hover { transform: translateX(3px); border-color: var(--lijn-hard); }

.artikelindex__code {
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  letter-spacing: 0.1em;
  color: var(--turquoise-diep);
  display: block;
  margin-bottom: var(--ruimte-1);
}

.artikelindex__link {
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  color: var(--wit);
  border-bottom: 0;
  line-height: 1.4;
}

.artikelindex__link:hover { color: var(--turquoise-diep); }

.artikelindex__meta {
  font-size: var(--maat-xs);
  font-family: var(--font-kop);
  color: var(--grijs);
  margin: var(--ruimte-2) 0 0;
}

/* --------------------------------------------------------------------------
   22. Blogoverzicht, sitemap en bedankpagina
   -------------------------------------------------------------------------- */

.blogintro { padding: var(--ruimte-6) 0 0; }
.blogintro__inner p { max-width: 68ch; }

.kaarten--blog { margin-top: var(--ruimte-6); }

.kaart__tijd { font-family: var(--font-kop); }

.sitemapgroepen {
  display: grid;
  gap: var(--ruimte-5);
  margin: 0;
  padding: 0;
}

.sitemapgroep {
  border: 1px solid var(--lijn);
  border-radius: var(--rond-m);
  background: var(--nacht-2);
  padding: var(--ruimte-5);
}

.sitemapgroep__kop {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--ruimte-3);
  font-size: var(--maat-l);
  margin-bottom: var(--ruimte-4);
}

.sitemapgroep__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--ruimte-3);
  font-size: var(--maat-s);
}

.sitemapgroep__lijst li { padding-left: 1.5rem; position: relative; }

.sitemapgroep__lijst li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 1px;
  background: var(--turquoise-diep);
}

.sitemapgroep__lijst a { border-bottom-color: transparent; }
.sitemapgroep__lijst a:hover { border-bottom-color: var(--turquoise-diep); }

.sitemapgroep__toelichting { font-size: var(--maat-xs); color: var(--grijs); margin: var(--ruimte-4) 0 0; }

.bedanktkader {
  border: 1px solid var(--lijn-hard);
  border-radius: var(--rond-l);
  background: var(--nacht-2);
  padding: var(--ruimte-5);
  margin: 0 0 var(--ruimte-6);
  position: relative;
  overflow: hidden;
}

.bedanktkader::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: var(--slot) center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.bedanktkader__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-l);
  color: var(--wit);
  margin: 0 0 var(--ruimte-3);
}

.bedanktkader p:last-child { margin-bottom: 0; }

ol.tijdlijn {
  list-style: none;
  margin: 0 0 var(--ruimte-5);
  padding: 0;
  counter-reset: stapnr;
  display: grid;
  gap: var(--ruimte-4);
}

ol.tijdlijn .tijdlijn__item {
  position: relative;
  padding-left: 2.6rem;
  counter-increment: stapnr;
}

ol.tijdlijn .tijdlijn__item::before {
  content: counter(stapnr, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-kop);
  font-size: var(--maat-xs);
  color: var(--turquoise-diep);
  border: 1px solid var(--lijn-hard);
  border-radius: var(--rond-s);
  padding: 0.1rem 0.35rem;
}

.tijdlijn__kop {
  font-family: var(--font-kop);
  font-size: var(--maat-m);
  color: var(--wit);
  margin: 0 0 var(--ruimte-2);
}

ol.tijdlijn .tijdlijn__item p { margin: 0; font-size: var(--maat-s); }

/* --------------------------------------------------------------------------
   23. Breekpunten voor de binnenpagina's
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .auteurkaart { grid-template-columns: 220px 1fr; align-items: start; gap: var(--ruimte-6); }
  .profiellinks { grid-template-columns: repeat(2, 1fr); }
  .sitemapgroepen { grid-template-columns: repeat(2, 1fr); }
  .feitenlijst { grid-template-columns: 15rem 1fr; }
  .feitenlijst dt { padding: var(--ruimte-3) var(--ruimte-4); border-bottom: 1px solid var(--lijn); }
  .feitenlijst dd { padding: var(--ruimte-3) var(--ruimte-4); }
  .feitenlijst dt:last-of-type { border-bottom: 0; }
}

@media (min-width: 900px) {
  .tekstblok__inner { padding-left: var(--ruimte-5); padding-right: var(--ruimte-5); }
  .paginakop { padding: var(--ruimte-8) 0 var(--ruimte-7); }
  .kaarten--blog { grid-template-columns: repeat(3, 1fr); }
  .artikelindex { grid-template-columns: repeat(2, 1fr); }
  .sitemapgroepen { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .profiellinks { grid-template-columns: 1fr; }
}

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

@media print {
  .paginakop::before,
  .paginakop::after,
  .auteurkaart::before,
  .bedanktkader::after { display: none !important; }
  .tekstblok__inner { max-width: none; }
}

.sitemapgroep--breed { margin-top: var(--ruimte-5); }

@media (min-width: 900px) {
  .sitemapgroep--breed .sitemapgroep__lijst { grid-template-columns: repeat(2, 1fr); gap: var(--ruimte-3) var(--ruimte-5); }
}

/* De artikelindex is een lijst zonder opsommingsteken, ook binnen een regelblok. */
.regelblok ul.artikelindex { display: grid; gap: var(--ruimte-3); margin-bottom: var(--ruimte-4); }
.regelblok ul.artikelindex > li { padding-left: 0; margin-bottom: 0; }
.regelblok ul.artikelindex > li::before { content: none; display: none; }
