/* ============================================================
   VDW Schoonmaak — ontwerpsysteem
   Eén stylesheet voor alle pagina's.
   ============================================================ */

:root {
  --g1: #003b8e;
  --g2: #1565c0;
  --g3: #1976d2;
  --g4: #42a5f5;
  --g5: #90caf9;
  --g6: #e3f2fd;
  --cream: #f7f5f0;
  --white: #ffffff;
  --dark: #001a4d;
  --mid: #2c4a7c;
  --soft: #6a89b0;
  --wa: #1da851;
  --ok: #157347;
  --err: #b3261e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 3px solid var(--g3);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--g1); color: #fff; padding: 12px 20px;
  font-size: 13px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  min-height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 6%;
  background: rgba(247,245,240,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21,101,192,0.1);
  gap: 16px;
}

.logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-mono { display: flex; align-items: flex-end; line-height: 1; }
.logo-mono span { font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; line-height: 0.88; }
.logo-mono .lv { color: var(--g1); }
.logo-mono .ld { color: var(--g2); }
.logo-mono .lw { color: var(--g3); }
.logo-line { width: 100%; height: 1.5px; background: linear-gradient(90deg, transparent, var(--g3), transparent); margin: 4px 0 5px; }
.logo-name { font-size: 8.5px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--g1); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none; font-size: 12px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--mid);
  white-space: nowrap; transition: color 0.3s;
}
.nav-links a:hover { color: var(--g3); }
.nav-links a[aria-current="page"] { color: var(--g1); font-weight: 700; }

.nav-btn {
  background: var(--g1) !important; color: var(--white) !important;
  padding: 12px 24px; border-radius: 2px; transition: background 0.3s !important;
}
.nav-btn:hover { background: var(--g2) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--g1); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,27,77,0.5); z-index: 998; }
.mobile-overlay.open { display: block; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: min(100vh, 780px);
  padding-top: 76px;
  display: grid;
  grid-template-columns: 58% 42%;
  position: relative;
  overflow: hidden;
}

.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 72px 5% 72px 8%; position: relative; z-index: 2; min-width: 0; }

.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--g3); margin-bottom: 28px; animation: fadeUp 0.9s ease both;
}
.hero-tag::before { content: ''; width: 32px; height: 1.5px; background: var(--g3); flex-shrink: 0; }

/* FIX: titel mag nooit buiten de container vallen (was afgekapt op mobiel) */
.hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 7.2vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--g1);
  margin-bottom: 26px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-h1 em { font-style: italic; color: var(--g3); }

.hero-p { font-size: 15.5px; font-weight: 300; line-height: 1.85; color: var(--mid); max-width: 430px; margin-bottom: 34px; animation: fadeUp 0.9s ease 0.2s both; }

.hero-usps { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 38px; animation: fadeUp 0.9s ease 0.25s both; }
.hero-usps li { font-size: 13.5px; font-weight: 400; color: var(--mid); display: flex; align-items: flex-start; gap: 10px; }
.hero-usps li::before { content: '✓'; color: var(--g3); font-weight: 700; flex-shrink: 0; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.9s ease 0.3s both; }

.btn-p, .btn-s, .btn-wa {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; cursor: pointer; text-align: center;
  transition: background 0.3s, transform 0.2s, color 0.3s;
}
.btn-p { background: var(--g1); color: var(--white); border: 1.5px solid var(--g1); }
.btn-p:hover { background: var(--g2); border-color: var(--g2); transform: translateY(-2px); }
.btn-s { border: 1.5px solid var(--g1); color: var(--g1); background: transparent; }
.btn-s:hover { background: var(--g1); color: var(--white); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; border: 1.5px solid var(--wa); }
.btn-wa:hover { background: #178f44; border-color: #178f44; transform: translateY(-2px); }
a.btn-wa:link, a.btn-wa:visited, a.btn-wa:hover, a.calc-btn-wa:link, a.calc-btn-wa:visited, a.calc-btn-wa:hover { color: #fff; }
a.btn-p:link, a.btn-p:visited, a.btn-p:hover { color: var(--white); }
.zij-kaart.donker a.btn-p:link, .zij-kaart.donker a.btn-p:visited, .zij-kaart.donker a.btn-p:hover { color: var(--g1); }

.hero-right { background: var(--g1); position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: flex-start; margin: 0; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(66,165,245,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(21,101,192,0.2) 0%, transparent 50%);
  z-index: 2;
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-right:has(.hero-photo)::before { display: none; }
.hero-right::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,26,77,0.12) 0%, rgba(0,26,77,0) 40%, rgba(0,26,77,0.82) 100%);
}
.hero-badge { position: relative; z-index: 3; padding: 0 clamp(22px, 4vw, 40px) clamp(26px, 4vw, 40px); max-width: 460px; animation: fadeUp 0.9s ease 0.35s both; }
.hero-badge-eye { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--g5); margin-bottom: 10px; }
.hero-badge strong { display: block; font-family: 'Sora', sans-serif; font-size: clamp(19px, 2.3vw, 26px); font-weight: 800; color: #fff; line-height: 1.25; }
.hero-badge-sub { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.76); margin-top: 8px; line-height: 1.7; }
.hero-tel2 { font-size: 13px; font-weight: 300; color: var(--mid); margin-top: 16px; }
.hero-tel2 a { color: var(--g1); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(21,101,192,0.35); }
.hero-tel2 a:hover { color: var(--g3); }

.hero-emblem { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; animation: fadeUp 0.9s ease 0.4s both; padding: 30px; }
.emblem-letters { display: flex; align-items: flex-end; gap: 6px; }
.emblem-letters span { font-family: 'Sora', sans-serif; font-weight: 800; line-height: 0.88; font-size: clamp(72px, 9vw, 140px); }
.emblem-letters .ev { color: rgba(255,255,255,0.95); }
.emblem-letters .ed { color: rgba(66,165,245,0.85); }
.emblem-letters .ew { color: rgba(66,165,245,0.42); }
.emblem-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(66,165,245,0.5), transparent); margin: 14px 0 16px; }
.emblem-sub { font-size: clamp(10px, 1.4vw, 12px); font-weight: 500; letter-spacing: 7px; text-transform: uppercase; color: rgba(255,255,255,0.78); text-align: center; }
.emblem-tag { font-size: 9px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: rgba(66,165,245,0.7); margin-top: 8px; text-align: center; }

.hero-orb-1 { position: absolute; width: 380px; height: 380px; border: 1px solid rgba(66,165,245,0.1); border-radius: 50%; top: -60px; right: -100px; animation: spin 25s linear infinite; z-index: 2; }
.hero-orb-2 { position: absolute; width: 560px; height: 560px; border: 1px solid rgba(66,165,245,0.06); border-radius: 50%; bottom: -200px; left: -120px; z-index: 2; }

/* ── VERTROUWENSBALK ─────────────────────────────────── */
.stats { background: var(--white); display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(21,101,192,0.08); }
.stat { padding: 36px 22px; text-align: center; border-right: 1px solid rgba(21,101,192,0.08); }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Sora', sans-serif; font-size: clamp(18px, 2.2vw, 28px); font-weight: 800; color: var(--g1); line-height: 1.15; overflow-wrap: break-word; }
.stat-l { font-size: 10px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase; color: var(--soft); margin-top: 10px; line-height: 1.5; }

/* ── SECTIES ─────────────────────────────────────────── */
.sec { padding: 96px 8%; }
.sec-white { background: var(--white); }
.sec-head { text-align: center; margin-bottom: 60px; }

.sec-eye {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--g3); margin-bottom: 16px;
}
.sec-eye::before, .sec-eye::after { content: ''; width: 24px; height: 1.5px; background: var(--g3); flex-shrink: 0; }

.sec-h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 800; color: var(--g1); line-height: 1.1;
  overflow-wrap: break-word;
}
.sec-h2 em { font-style: italic; color: var(--g3); }
.sec-sub { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--mid); max-width: 620px; margin: 18px auto 0; }

/* ── DIENSTEN ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: rgba(21,101,192,0.06); }

.svc { background: var(--white); padding: 0 0 40px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.svc::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--g2), var(--g4)); transition: width 0.45s ease; }
.svc:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,59,142,0.1); }
.svc:hover::after { width: 100%; }
.svc-body { padding: 34px 36px 0; display: flex; flex-direction: column; flex: 1; }
.svc-icon { width: 52px; height: 52px; background: var(--g6); color: var(--g2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 22px; }
.svc-icon svg { width: 26px; height: 26px; }
.svc:hover .svc-icon { background: var(--g1); color: #fff; }
.svc-icon { transition: background 0.3s, color 0.3s; }
.svc-title { font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 700; color: var(--g1); margin-bottom: 12px; line-height: 1.25; }
.svc-title a { color: inherit; text-decoration: none; }
.svc-title a:hover { color: var(--g3); }
.svc-desc { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 18px; }
.svc-price { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--g3); margin-top: auto; }
.svc-link { font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--g1); text-decoration: none; margin-top: 14px; display: inline; line-height: 1.9; }
.svc-link:hover { color: var(--g3); }
.svc-media { aspect-ratio: 16 / 10; width: 100%; overflow: hidden; background: var(--g1); }
.svc-media img { transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.svc-kaart:hover .svc-media img { transform: scale(1.05); }
.svc-media img, .svc-media .fotoplek { width: 100%; height: 100%; object-fit: cover; }

/* Fotoplek: ziet er bewust uit tot de echte foto er staat */
.fotoplek {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(66,165,245,0.28) 0%, transparent 60%),
    linear-gradient(135deg, var(--g1) 0%, var(--g2) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.fotoplek::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.fotoplek-mono {
  position: relative; z-index: 2;
  font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800;
  letter-spacing: 5px; color: rgba(255,255,255,0.5);
}

/* ── WAAROM ──────────────────────────────────────────── */
.why-sec { background: var(--g1); padding: 96px 8%; position: relative; overflow: hidden; }
.why-sec::before {
  content: 'VDW'; position: absolute; font-family: 'Sora', sans-serif; font-size: 300px; font-weight: 800;
  color: rgba(255,255,255,0.025); right: -40px; top: 50%; transform: translateY(-50%); line-height: 1; pointer-events: none;
}
.why-sec .sec-eye { color: var(--g4); }
.why-sec .sec-eye::before, .why-sec .sec-eye::after { background: var(--g4); }
.why-sec .sec-h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; position: relative; }
.why-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(66,165,245,0.14); padding: 38px; transition: background 0.3s; }
.why-item:hover { background: rgba(66,165,245,0.08); }
.why-n { font-family: 'Sora', sans-serif; font-size: 54px; font-weight: 800; color: rgba(66,165,245,0.2); line-height: 1; margin-bottom: 14px; }
.why-t { font-size: 13px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.why-d { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.62); }

/* ── WERKWIJZE ───────────────────────────────────────── */
.stappen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: stap; }
.stap { background: var(--white); border-top: 3px solid var(--g4); padding: 32px 28px; }
.stap-n { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--g3); margin-bottom: 14px; }
.stap-t { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--g1); margin-bottom: 10px; line-height: 1.3; }
.stap-d { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--mid); }

/* ── OFFERTEFORMULIER ────────────────────────────────── */
.calc-sec { background: var(--g6); padding: 88px 8%; }
.calc-box { background: var(--white); border-radius: 6px; box-shadow: 0 8px 48px rgba(0,59,142,0.1); padding: 48px; max-width: 940px; margin: 0 auto; border-top: 4px solid var(--g2); }
.calc-intro { text-align: center; margin-bottom: 38px; }
.calc-intro p { font-size: 14px; font-weight: 300; color: var(--mid); margin-top: 12px; line-height: 1.8; max-width: 620px; margin-left: auto; margin-right: auto; }

.calc-tabs { display: flex; gap: 6px; margin-bottom: 32px; background: var(--g6); padding: 6px; border-radius: 4px; }
.calc-tab {
  flex: 1; padding: 12px 8px; text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--mid);
  border-radius: 3px; cursor: pointer; transition: all 0.3s; border: none; background: transparent;
}
.calc-tab[aria-selected="true"] { background: var(--g2); color: var(--white); box-shadow: 0 4px 12px rgba(21,101,192,0.3); }
.calc-panel[hidden] { display: none; }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field.vol { grid-column: 1 / -1; }
.calc-field label { font-size: 10px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--g1); }
.calc-field .hint { font-size: 11.5px; font-weight: 300; color: var(--soft); }

.calc-field input, .calc-field select, .calc-field textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(21,101,192,0.2);
  background: #f5f9ff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--dark);
  border-radius: 3px; outline: none; width: 100%;
  transition: border-color 0.3s, background 0.3s;
}
.calc-field textarea { min-height: 120px; resize: vertical; }
.calc-field input:focus, .calc-field select:focus, .calc-field textarea:focus { border-color: var(--g2); background: var(--white); }
.calc-field input:user-invalid, .calc-field textarea:user-invalid { border-color: var(--err); }
.veld-fout { font-size: 12px; color: var(--err); font-weight: 500; }

.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.calc-note { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.75; margin-bottom: 22px; padding: 14px 18px; background: var(--g6); border-left: 3px solid var(--g2); border-radius: 2px; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--g2); }
.consent-row label { font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.consent-row a { color: var(--g2); }

.calc-acties { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.calc-btn {
  width: 100%; background: var(--g1); color: #fff; border: none; padding: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; border-radius: 3px; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.calc-btn:hover { background: var(--g2); transform: translateY(-2px); }
.calc-btn[disabled] { opacity: 0.65; cursor: progress; transform: none; }
.calc-btn-wa { width: 100%; background: var(--wa); color: #fff; border: none; padding: 18px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: background 0.3s, transform 0.2s; text-decoration: none; display: flex; align-items: center; justify-content: center; text-align: center; }
.calc-btn-wa:hover { background: #178f44; transform: translateY(-2px); }

.form-status { margin-top: 18px; padding: 16px 18px; border-radius: 3px; font-size: 14px; line-height: 1.7; display: none; }
.form-status.zichtbaar { display: block; }
.form-status.bezig { background: var(--g6); color: var(--mid); }
.form-status.fout { background: #fdecea; color: var(--err); border-left: 3px solid var(--err); }
.form-status.fout a { color: var(--err); font-weight: 600; }

/* ── PRIJZEN ─────────────────────────────────────────── */
.prijs-tabel { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14px; }
.prijs-tabel caption { text-align: left; font-size: 12.5px; font-weight: 300; color: var(--soft); padding-bottom: 12px; line-height: 1.7; }
.prijs-tabel th, .prijs-tabel td { padding: 16px 18px; text-align: left; border-bottom: 1px solid rgba(21,101,192,0.1); }
.prijs-tabel th { font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--g1); background: var(--g6); }
.prijs-tabel td:last-child { font-weight: 600; color: var(--g1); }
.prijs-tabel td:last-child { min-width: 130px; }
.prijs-tabel tr:last-child td { border-bottom: none; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid rgba(21,101,192,0.12); border-radius: 4px; margin-bottom: 10px; }
.faq summary {
  cursor: pointer; padding: 20px 24px; font-family: 'Sora', sans-serif;
  font-size: 15.5px; font-weight: 600; color: var(--g1); line-height: 1.5;
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--g3); line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding: 0 24px 22px; font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--mid); }

/* ── TEKSTPAGINA'S ───────────────────────────────────── */
.crumbs { padding: 100px 8% 0; font-size: 12px; font-weight: 300; color: var(--soft); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs a { color: var(--g2); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs li + li::before { content: '›'; margin-right: 8px; color: var(--soft); }

.page-hero { padding: 34px 8% 0; }
.page-hero .hero-h1 { font-size: clamp(28px, 5.6vw, 50px); margin-bottom: 20px; }
.page-hero .lead { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--mid); max-width: 680px; margin-bottom: 30px; }
.page-hero .hero-btns { margin-bottom: 8px; }

.artikel { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; padding: 72px 8%; align-items: start; }
.artikel-body { min-width: 0; }
.artikel-body h2 { font-family: 'Sora', sans-serif; font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; color: var(--g1); line-height: 1.25; margin: 44px 0 16px; overflow-wrap: break-word; }
.artikel-body h2:first-child { margin-top: 0; }
.artikel-body h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--g1); margin: 30px 0 12px; }
.artikel-body p { font-size: 15.5px; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 18px; }
.artikel-body ul, .artikel-body ol { margin: 0 0 20px 0; padding-left: 22px; }
.artikel-body li { font-size: 15.5px; font-weight: 300; line-height: 1.9; color: var(--mid); margin-bottom: 8px; }
.artikel-body strong { font-weight: 600; color: var(--dark); }
.artikel-body a { color: var(--g2); }
.artikel-figuur { margin: 28px 0; }
.artikel-figuur .fotoplek, .artikel-figuur img { aspect-ratio: 16 / 9; width: 100%; border-radius: 4px; object-fit: cover; }
.artikel-figuur figcaption { font-size: 12px; font-weight: 300; color: var(--soft); margin-top: 10px; }

.zij { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.zij-kaart { background: var(--white); border-top: 3px solid var(--g3); padding: 28px; }
.zij-kaart.donker { background: var(--g1); border-top-color: var(--g4); }
.zij-kaart h2, .zij-kaart h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--g1); margin-bottom: 14px; line-height: 1.35; }
.zij-kaart.donker h2, .zij-kaart.donker h3 { color: var(--white); }
.zij-kaart p { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: var(--mid); margin-bottom: 14px; }
.zij-kaart.donker p { color: rgba(255,255,255,0.7); }
.zij-kaart ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.zij-kaart li { font-size: 13.5px; font-weight: 300; line-height: 1.7; color: var(--mid); }
.zij-kaart a { color: var(--g2); text-decoration: none; }
.zij-kaart a:hover { text-decoration: underline; }
.zij-kaart .btn-p, .zij-kaart .btn-wa { display: block; width: 100%; margin-top: 8px; }
.zij-kaart.donker .btn-p { background: var(--white); color: var(--g1); border-color: var(--white); }
.zij-kaart.donker .btn-p:hover { background: var(--g5); border-color: var(--g5); color: var(--g1); }
.zij-kaart .btn-wa { margin-top: 10px; }
.zij-kaart a.btn-wa, .zij-kaart a.btn-wa:hover { color: #fff; }
.zij-kaart a.btn-p { color: var(--white); }
.zij-kaart.donker a.btn-p { color: var(--g1); }
.zij-tel { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); text-decoration: none; display: block; margin-bottom: 6px; }

.zij-kaart.donker a.zij-tel, .zij-kaart.donker a.zij-tel:hover { color: var(--white); }
.zij-tel2 { font-size: 14.5px; font-weight: 500; text-decoration: none; display: block; margin-bottom: 14px; }
.zij-kaart.donker a.zij-tel2 { color: rgba(255,255,255,0.82); }
.zij-kaart.donker a.zij-tel2:hover { color: var(--white); }
.midden-tel2 { font-size: 13.5px; font-weight: 300; color: var(--mid); margin-top: 20px; }
.midden-tel2 a { color: var(--g1); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(21,101,192,0.35); }
.contact-wa-noot { font-size: 12.5px; font-weight: 300; color: var(--soft); }

.tekstpagina { max-width: 820px; margin: 0 auto; padding: 40px 8% 80px; }
.tekstpagina h2 { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--g1); margin: 40px 0 14px; }
.tekstpagina h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--g1); margin: 26px 0 10px; }
.tekstpagina p, .tekstpagina li { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--mid); }
.tekstpagina p { margin-bottom: 16px; }
.tekstpagina ul, .tekstpagina ol { margin: 0 0 18px 22px; }
.tekstpagina li { margin-bottom: 8px; }
.tekstpagina table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 14px; }
.tekstpagina th, .tekstpagina td { border: 1px solid rgba(21,101,192,0.14); padding: 12px 14px; text-align: left; vertical-align: top; color: var(--mid); font-weight: 300; }
.tekstpagina th { background: var(--g6); color: var(--g1); font-weight: 600; font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; }

/* ── LINKKAARTEN ─────────────────────────────────────── */
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.link-kaart { background: var(--white); border: 1px solid rgba(21,101,192,0.12); border-left: 3px solid var(--g4); padding: 22px 24px; text-decoration: none; display: block; transition: transform 0.3s, box-shadow 0.3s; }
.link-kaart:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,59,142,0.08); }
.link-kaart strong { display: block; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--g1); margin-bottom: 6px; }
.link-kaart span { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-sec { background: var(--white); padding: 96px 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-left .sec-h2 { text-align: left; font-size: clamp(28px, 3.4vw, 46px); }
.contact-left .sec-eye { justify-content: flex-start; }
.contact-left .sec-eye::before { display: none; }
.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.ci { display: flex; align-items: flex-start; gap: 16px; }
.ci-dot { width: 10px; height: 10px; background: var(--g3); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.ci-body strong { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: var(--g1); margin-bottom: 6px; }
.ci-body span { display: block; font-size: 14.5px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.ci-body a { color: var(--g2); text-decoration: none; }
.ci-body a:hover { text-decoration: underline; }

.contact-cta { background: var(--g6); border-radius: 6px; padding: 40px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.contact-cta h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--g1); line-height: 1.35; }
.contact-cta p { font-size: 14.5px; font-weight: 300; line-height: 1.85; color: var(--mid); }
.contact-cta .rij { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--g1); padding: 66px 8% 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(66,165,245,0.12); }
.footer-brand .logo { align-items: flex-start; }
.footer-brand .logo-mono span { font-size: 46px; }
.footer-brand .logo-mono .lv { color: rgba(255,255,255,0.95); }
.footer-brand .logo-mono .ld { color: rgba(66,165,245,0.85); }
.footer-brand .logo-mono .lw { color: rgba(66,165,245,0.45); }
.footer-brand .logo-line { background: linear-gradient(90deg, rgba(66,165,245,0.5), transparent); }
.footer-brand .logo-name { color: rgba(255,255,255,0.7); font-size: 9px; }
.footer-tagline { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.45); margin-top: 18px; max-width: 280px; }
.ft { font-size: 10px; font-weight: 600; letter-spacing: 2.6px; text-transform: uppercase; color: var(--g4); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { text-decoration: none; font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.32); letter-spacing: 0.6px; }

/* ── WHATSAPP ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 997; color: #fff;
  width: 58px; height: 58px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(29,168,81,0.4); text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(29,168,81,0.5); }

.mob-bar { display: none; }
@media (max-width: 760px) {
  .wa-float { display: none; }
  .mob-bar {
    display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: stretch;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 997;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(21,101,192,0.14);
    box-shadow: 0 -6px 24px rgba(0,26,77,0.1);
  }
  .mob-bel {
    display: flex; align-items: center; justify-content: center;
    background: var(--g1); color: #fff; text-decoration: none; border-radius: 4px;
    font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase; padding: 15px 10px;
  }
  .mob-wa {
    display: flex; align-items: center; gap: 7px; justify-content: center;
    background: var(--wa); color: #fff; text-decoration: none; border-radius: 4px;
    padding: 15px 18px; font-family: 'Sora', sans-serif; font-size: 12.5px;
    font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  }
  .mob-wa svg { width: 18px; height: 18px; fill: #fff; }
  body { padding-bottom: 72px; }
  .cookiebar { bottom: 78px; }
}

/* ── COOKIEMELDING ───────────────────────────────────── */
.cookiebar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); color: rgba(255,255,255,0.86);
  padding: 18px 6%; display: none;
  align-items: center; justify-content: space-between; gap: 18px;
  font-size: 13px; font-weight: 300; line-height: 1.65;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.24); flex-wrap: wrap;
}
.cookiebar.zichtbaar { display: flex; }
.cookiebar a { color: var(--g4); }
.cookiebar .knoppen { display: flex; gap: 10px; flex-shrink: 0; }
.cookiebar button {
  border: none; padding: 11px 24px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; white-space: nowrap;
}
.cookie-ja { background: var(--g3); color: #fff; }
.cookie-nee { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.35) !important; }

/* ── BEDANKT / 404 ───────────────────────────────────── */
.midden { min-height: 78vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 130px 8% 80px; }
.midden .vinkje { width: 74px; height: 74px; border-radius: 50%; background: var(--g6); color: var(--g2); display: flex; align-items: center; justify-content: center; font-size: 34px; margin-bottom: 26px; }
.midden h1 { font-family: 'Sora', sans-serif; font-size: clamp(26px, 5.4vw, 48px); font-weight: 800; color: var(--g1); line-height: 1.12; margin-bottom: 18px; overflow-wrap: break-word; }
.midden p { font-size: 15.5px; font-weight: 300; line-height: 1.85; color: var(--mid); max-width: 560px; margin-bottom: 14px; }
.midden .hero-btns { margin-top: 22px; justify-content: center; }

/* ── ANIMATIES ───────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── RESPONSIEF ──────────────────────────────────────── */
@media (max-width: 1180px) {
  .artikel { grid-template-columns: 1fr; gap: 40px; }
  .zij { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stappen { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; position: fixed; top: 0; right: 0; width: min(300px, 84vw); height: 100vh;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 96px 32px 40px; gap: 24px; z-index: 999; box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .nav-links .nav-btn { width: 100%; text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-right { min-height: 300px; order: 2; }
  .hero-left { padding: 52px 6% 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-sec::before { font-size: 180px; opacity: 0.7; }
  .contact-sec { grid-template-columns: 1fr; padding: 64px 6%; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sec, .why-sec, .calc-sec { padding: 64px 6%; }
  .crumbs { padding: 96px 6% 0; }
  .page-hero { padding: 26px 6% 0; }
  .artikel { padding: 52px 6%; }
  .tekstpagina { padding: 34px 6% 64px; }
  .calc-tabs { flex-wrap: wrap; gap: 4px; }
  .calc-tab { flex: 1 1 auto; min-width: calc(50% - 4px); font-size: 10px; padding: 12px 8px; white-space: nowrap; }
  .calc-box { padding: 30px 20px; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-acties { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stappen { grid-template-columns: 1fr; }
  .contact-cta { padding: 30px 24px; }
  .midden { padding: 110px 6% 64px; }
}

@media (max-width: 420px) {
  .logo-mono span { font-size: 32px; }
  .btn-p, .btn-s, .btn-wa { padding: 15px 22px; font-size: 10.5px; letter-spacing: 1.4px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(21,101,192,0.08); padding: 26px 18px; }
  .prijs-tabel th, .prijs-tabel td { padding: 12px 10px; font-size: 13px; }
}

@media print {
  nav, .wa-float, .mob-bar, .cookiebar, .calc-sec, .hamburger { display: none !important; }
  body { background: #fff; }
}
