/* ============================================================
   BESTE MOBIELE AIRCO — Stylesheet
   ============================================================ */

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

:root {
  --blauw:     #0C4A6E;
  --blauw2:    #0369A1;
  --accent:    #0EA5E9;
  --accent2:   #38BDF8;
  --oranje:    #F97316;
  --oranje2:   #FB923C;
  --groen:     #16A34A;
  --wit:       #FFFFFF;
  --bg:        #F0F9FF;
  --bg2:       #E0F2FE;
  --grijs:     #F8FAFC;
  --grijs2:    #E2E8F0;
  --border:    #CBD5E1;
  --tekst:     #0C1A2E;
  --mid:       #475569;
  --licht:     #94A3B8;
  --r:         8px;
  --r2:        14px;
  --s1:        0 2px 8px rgba(14,165,233,.08), 0 1px 3px rgba(0,0,0,.06);
  --s2:        0 8px 24px rgba(14,165,233,.12), 0 2px 8px rgba(0,0,0,.06);
  --s3:        0 20px 48px rgba(14,165,233,.16), 0 4px 16px rgba(0,0,0,.08);
  --t:         all .18s ease;
  --max:       1160px;
}

html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--tekst);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
}
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; line-height: 1.3; }
p { color: var(--mid); line-height: 1.78; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.sectie { padding: 80px 0; }
.sectie-grijs { background: var(--grijs); }
.sectie-blauw { background: var(--blauw); }
.sectie-bg { background: var(--bg); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sectie-header { text-align: center; margin-bottom: 52px; }
.sectie-header h2 { margin-bottom: 14px; }
.sectie-header p { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg2);
  color: var(--blauw2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.topbalk {
  background: var(--blauw);
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbalk span {
  color: rgba(255,255,255,.65);
  font-size: .76rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbalk strong { color: #fff; }

header {
  background: #fff;
  border-bottom: 1px solid #E8F4FD;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 #E8F4FD, 0 4px 20px rgba(14,165,233,.07);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(140deg, var(--accent) 0%, var(--blauw2) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(14,165,233,.3);
}
.logo-tekst strong { display: block; font-size: .92rem; font-weight: 800; color: var(--blauw); line-height: 1.1; }
.logo-tekst span { font-size: .66rem; color: var(--licht); }

nav ul { display: flex; list-style: none; gap: 2px; align-items: center; }
nav ul a {
  padding: 7px 12px;
  border-radius: 7px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--mid);
  transition: var(--t);
  display: block;
  white-space: nowrap;
}
nav ul a:hover, nav ul a.actief {
  color: var(--blauw2);
  background: var(--bg2);
}
.nav-cta {
  background: var(--oranje) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--oranje2) !important;
  box-shadow: 0 4px 14px rgba(249,115,22,.3) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--blauw);
  border-radius: 2px;
  transition: var(--t);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mob-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  border-top: 2px solid var(--bg2);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 13px 16px;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--mid);
  background: var(--grijs);
  margin-bottom: 2px;
}
.mob-nav .mob-cta {
  background: var(--oranje);
  color: #fff !important;
  text-align: center;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 8px;
  padding: 14px;
}

/* ============================================================
   KNOPPEN
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: var(--t);
  text-align: center;
  justify-content: center;
}
.btn-oranje { background: var(--oranje); color: #fff; }
.btn-oranje:hover {
  background: var(--oranje2);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249,115,22,.35);
}
.btn-blauw { background: var(--blauw); color: #fff; }
.btn-blauw:hover { background: var(--blauw2); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blauw2); border: 2px solid var(--grijs2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .8rem; }
.btn-blok { display: flex; width: 100%; justify-content: center; }

.bol-btn {
  background: #0000a4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--t);
}
.bol-btn:hover {
  background: #0000c8;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,164,.25);
}
.bol-btn svg { width: 18px; height: 18px; }

/* ============================================================
   HERO — licht, fris, zomer
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #F0F9FF 0%, #E0F2FE 40%, #BAE6FD 100%);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  padding-bottom: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,.12);
  border: 1.5px solid rgba(14,165,233,.25);
  color: var(--blauw2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { color: var(--tekst); margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-sub {
  color: var(--mid);
  font-size: 1.1rem;
  margin-bottom: 34px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
.hero-stat {
  padding: 12px 24px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(14,165,233,.15);
  backdrop-filter: blur(8px);
  text-align: center;
}
.hero-stat:first-child { border-radius: 10px 0 0 10px; }
.hero-stat:last-child { border-radius: 0 10px 10px 0; border-left: none; }
.hero-stat:not(:first-child):not(:last-child) { border-left: none; }
.hero-stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--blauw);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-stat span { font-size: .68rem; color: var(--licht); margin-top: 3px; display: block; text-transform: uppercase; letter-spacing: .05em; }

.hero-kaart {
  background: #fff;
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--s2);
}
.hero-kaart h3 { color: var(--blauw); font-size: 1.05rem; margin-bottom: 6px; }
.hero-kaart p { color: var(--mid); font-size: .84rem; margin-bottom: 20px; }
.hero-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hero-checklist li {
  color: var(--tekst);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.hero-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230EA5E9' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   VERTROUWENSBALK
   ============================================================ */
.vertrouwen {
  background: #fff;
  border-top: 1px solid #E0F2FE;
  border-bottom: 1px solid #E0F2FE;
  padding: 16px 0;
}
.vertrouwen-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.vi {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .81rem;
  color: var(--mid);
  font-weight: 500;
  background: var(--grijs);
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid var(--grijs2);
}
.vi-score { font-size: 1rem; font-weight: 800; color: var(--blauw); }
.vi-sep { display: none; }
.sterren { color: #F59E0B; letter-spacing: 1px; font-size: .85rem; }

/* ============================================================
   PRODUCTKAARTEN
   ============================================================ */
.product-kaart {
  background: var(--wit);
  border: 1.5px solid var(--grijs2);
  border-radius: var(--r2);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.product-kaart > * { padding: 0 22px; }
.product-kaart > *:first-child { padding-top: 22px; }
.product-kaart > *:last-child { padding-bottom: 22px; }
.product-kaart:hover { box-shadow: var(--s3); border-color: var(--accent); transform: translateY(-5px); }
.product-kaart.top { border-color: var(--oranje); }
.product-kaart.top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--oranje), var(--oranje2));
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .66rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.product-img {
  width: calc(100% + 0px);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  margin: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--grijs2);
}
.product-img img { max-height: 160px; object-fit: contain; }
.product-img-placeholder { font-size: 3.5rem; }
.product-merk {
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 18px;
}
.product-naam { font-size: 1.05rem; font-weight: 800; color: var(--tekst); line-height: 1.25; margin-bottom: 4px; }
.product-score { display: flex; align-items: center; gap: 7px; font-size: .8rem; }
.ster { font-size: .85rem; }
.ster.vol { color: #F59E0B; }
.ster.half { color: #F59E0B; opacity: .5; }
.ster.leeg { color: var(--grijs2); }
.score-getal { font-weight: 700; color: var(--tekst); }
.score-aantal { color: var(--licht); }

.product-prijs {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blauw);
  letter-spacing: -.04em;
  line-height: 1;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  border-top: 1px solid var(--grijs2);
  border-bottom: 1px solid var(--grijs2);
  margin: 10px 0;
}
.product-prijs-sub { font-size: .72rem; font-weight: 400; color: var(--licht); }
.product-specs { display: flex; flex-direction: column; gap: 0; }
.spec-rij {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .79rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--grijs);
}
.spec-rij:last-child { border-bottom: none; }
.spec-label { color: var(--licht); }
.spec-waarde { font-weight: 600; color: var(--tekst); }

.product-plus-min { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 10px !important; }
.plus-lijst, .min-lijst { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.plus-lijst li { font-size: .77rem; color: var(--mid); display: flex; gap: 6px; line-height: 1.4; }
.plus-lijst li::before { content: '+'; color: var(--groen); font-weight: 800; flex-shrink: 0; width: 12px; }
.min-lijst li { font-size: .77rem; color: var(--mid); display: flex; gap: 6px; line-height: 1.4; }
.min-lijst li::before { content: '−'; color: #EF4444; font-weight: 800; flex-shrink: 0; width: 12px; }
.product-btns { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 16px !important; }

/* ============================================================
   TOP-3 KAARTEN (homepage)
   ============================================================ */
.top3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.top3-nr {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.top3-nr.nr1 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.top3-nr.nr2 { background: linear-gradient(135deg, #94A3B8, #64748B); }
.top3-nr.nr3 { background: linear-gradient(135deg, #CD7C36, #B45309); }
.top3-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding: 22px 22px 0 !important; }

/* ============================================================
   VERGELIJKINGSTABEL
   ============================================================ */
.tabel-wrap {
  overflow-x: auto;
  border-radius: var(--r2);
  box-shadow: var(--s2);
  border: 1px solid #E0F2FE;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wit);
  font-size: .85rem;
  min-width: 640px;
}
thead th {
  background: var(--blauw);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
thead th:first-child { border-radius: var(--r2) 0 0 0; }
thead th:last-child { border-radius: 0 var(--r2) 0 0; }
tbody tr { border-bottom: 1px solid #F0F9FF; transition: background .12s; }
tbody tr:hover { background: #F8FBFF; }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 13px 18px; color: var(--mid); vertical-align: middle; }
tbody td:first-child { font-weight: 700; color: var(--tekst); }
.tabel-score { display: flex; align-items: center; gap: 6px; }
.tabel-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.check { color: var(--groen); font-weight: 700; }
.kruis { color: #EF4444; }
.tabel-prijs { font-weight: 800; color: var(--blauw); font-size: .92rem; }
.tabel-bol {
  background: #0000a4;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  display: inline-block;
  transition: var(--t);
  white-space: nowrap;
}
.tabel-bol:hover { background: #0000c8; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--grijs2);
  border-radius: var(--r);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--t);
}
.faq-item.open { border-color: var(--accent); box-shadow: var(--s1); }
.faq-vraag {
  width: 100%;
  text-align: left;
  padding: 17px 20px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--tekst);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  transition: color .15s;
}
.faq-vraag:hover { color: var(--blauw2); }
.faq-icon {
  width: 26px;
  height: 26px;
  background: var(--grijs);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--licht);
  flex-shrink: 0;
  transition: var(--t);
  font-weight: 700;
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-antwoord { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-antwoord-inner {
  padding: 0 20px 18px;
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.82;
  border-top: 1px solid var(--grijs2);
  padding-top: 14px;
}
.faq-item.open .faq-antwoord { max-height: 400px; }

/* ============================================================
   CTA SECTIE
   ============================================================ */
.cta-sectie {
  background: linear-gradient(135deg, #0C4A6E 0%, #0369A1 50%, #0284C7 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sectie::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-sectie h2 { color: #fff; margin-bottom: 14px; }
.cta-sectie p { color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   VOORDELEN KAARTEN
   ============================================================ */
.voordeel-kaart {
  background: var(--wit);
  border: 1px solid var(--grijs2);
  border-radius: var(--r2);
  padding: 28px;
  transition: var(--t);
  text-align: left;
}
.voordeel-kaart:hover { box-shadow: var(--s2); transform: translateY(-3px); border-color: var(--accent); }
.voordeel-icon {
  width: 52px;
  height: 52px;
  background: var(--bg2);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.voordeel-kaart h3 { font-size: .98rem; margin-bottom: 8px; }
.voordeel-kaart p { font-size: .84rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .77rem;
  color: var(--licht);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent2); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--licht); }

/* ============================================================
   PAGINA HERO (subpagina's)
   ============================================================ */
.pagina-hero {
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg2) 100%);
  border-bottom: 1px solid #BAE6FD;
  padding: 52px 0 40px;
}
.pagina-hero h1 { margin-bottom: 12px; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.pagina-hero p { max-width: 600px; font-size: 1rem; }
.pagina-hero .badge-rij { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.pagina-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wit);
  border: 1.5px solid #BAE6FD;
  border-radius: 50px;
  padding: 5px 13px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--blauw2);
}

/* ============================================================
   INHOUDSOPGAVE
   ============================================================ */
.toc {
  background: var(--bg);
  border: 1.5px solid #BAE6FD;
  border-radius: var(--r);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.toc h4 { font-size: .84rem; font-weight: 700; color: var(--blauw); margin-bottom: 12px; }
.toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.toc li a { font-size: .84rem; color: var(--accent); }
.toc li a:hover { text-decoration: underline; }

/* ============================================================
   ARTIKEL CONTENT
   ============================================================ */
.artikel { max-width: 760px; }
.artikel h2 { margin: 44px 0 14px; padding-top: 16px; }
.artikel h3 { margin: 28px 0 10px; color: var(--blauw2); }
.artikel p { margin-bottom: 16px; }
.artikel ul, .artikel ol { padding-left: 22px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.artikel li { color: var(--mid); font-size: .95rem; line-height: 1.72; }
.artikel .tip-box {
  background: var(--bg2);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 22px 0;
  font-size: .9rem;
}
.artikel .tip-box strong { color: var(--blauw2); }
.artikel .waarschuwing {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 14px 18px;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 22px 0;
  font-size: .9rem;
}

/* ============================================================
   DISCLAIMER BALK
   ============================================================ */
.disclaimer-balk {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: .81rem;
  color: #78350F;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.disclaimer-balk strong { display: block; margin-bottom: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #07253F;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-merk p {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
}
.footer-col h4 {
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--accent2); }
.footer-disclaimer {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: .77rem;
  color: rgba(255,255,255,.25);
  line-height: 1.75;
  margin-bottom: 28px;
}
.footer-bodem {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bodem p { font-size: .75rem; color: rgba(255,255,255,.2); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .75rem; color: rgba(255,255,255,.28); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-kaart { display: none; }
  .top3-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sectie { padding: 56px 0; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .product-plus-min { grid-template-columns: 1fr; }
  .vertrouwen-inner { gap: 8px; justify-content: flex-start; }
  .tabel-wrap table { font-size: .8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 0; }
  .hero-stat:first-child { border-radius: 10px 0 0 10px; }
  .hero-stat:last-child { border-radius: 0 10px 10px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .topbalk span:not(:first-child) { display: none; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .hero-stat { border-radius: 10px !important; border-left: 1px solid rgba(14,165,233,.15) !important; }
}
