:root {
  --primary: #FF3B30;
  --primary-dark: #E0241A;
  --primary-light: #FFE0DE;
  --accent-orange: #FF8A30;
  --dark: #0B1325;
  --dark-soft: #111B33;
  --steel-blue: #23324A;
  --gray-900: #0B1325;
  --gray-700: #23324A;
  --gray-500: #6B7280;
  --gray-300: #cbd5e1;
  --gray-100: #F2F4F7;
  --gray-50: #F8FAFC;
  --success: #22C55E;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.15);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========== NAVIGATIE ========== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
}
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}
footer .logo-img { width: 32px; height: 32px; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta {
  background: var(--dark);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
  min-height: 44px;
  line-height: 1.4;
}
.nav-cta:hover { background: var(--primary); text-decoration: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  color: var(--dark);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--gray-100); }
@media (max-width: 768px) {
  .nav-inner { padding: 12px 18px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0; list-style: none; }
  .nav-links a {
    display: block;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-100);
    font-weight: 500;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { font-size: 0.85rem; padding: 10px 14px; }
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: white;
  padding: 80px 24px 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,59,48,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 60px;
  align-items: center;
}
.hero-inner > * { flex: 1 1 0; min-width: 0; }
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 32px; align-items: stretch; }
  .hero { padding: 40px 20px 64px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #FF6B5C 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}
.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* USP-cards in hero (vervangt platte stats met badge-stijl) */
.hero-usps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-usp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.hero-usp-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-usp-icon svg { width: 24px; height: 24px; display: block; }
.hero-usp-text { display: flex; flex-direction: column; line-height: 1.15; }
.hero-usp-value { font-weight: 800; color: white; font-size: 1rem; }
.hero-usp-label { font-size: 0.78rem; color: #cbd5e1; }

/* Trust strip onder hero (full width) */
.hero-trust {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: #cbd5e1;
  font-size: 0.85rem;
}
.trust-item { display: inline-flex; align-items: center; gap: 12px; }
.trust-item img,
.trust-item svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.trust-item .trust-stars { margin-left: 6px; }
.trust-stars { letter-spacing: 1px; color: #FFC107; font-size: 0.95rem; }
.trust-strong { color: white; font-weight: 600; }

/* ========== FORMULIER (in hero) ========== */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  color: var(--gray-900);
}
.form-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-card .subtitle {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
label .req { color: var(--primary); }
input, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--gray-50);
  transition: all 0.15s;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,59,48,0.1);
}
input.error, textarea.error { border-color: var(--primary); }
textarea { resize: vertical; min-height: 70px; }
.hp-wrap { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.prijs-preview {
  background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
  display: none;
}
.prijs-preview.zichtbaar { display: block; animation: slideIn 0.3s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.prijs-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  font-weight: 600;
}
.prijs-bedrag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 2px 0;
  letter-spacing: -0.02em;
}
.prijs-sub { font-size: 0.8rem; color: var(--gray-500); }

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  box-shadow: 0 4px 12px rgba(255,59,48,0.3);
  text-align: center;
  text-decoration: none;
}
a.btn-primary { display: inline-block; width: auto; }
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,59,48,0.4);
}
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.fout {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 12px;
}
.fout.zichtbaar { display: block; }

.succes-state { display: none; text-align: center; padding: 24px 0; }
.succes-state.zichtbaar { display: block; animation: slideIn 0.4s ease; }
.succes-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--success), #059669);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}
.succes-state h3 { font-size: 1.4rem; margin-bottom: 8px; }
.succes-state p { color: var(--gray-500); font-size: 0.95rem; }

/* ========== SECTIE ========== */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ========== VOORDELEN ========== */
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.voordeel-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.voordeel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.voordeel-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.voordeel-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.voordeel-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ========== PROCES ========== */
.proces { background: var(--gray-50); }
.stappen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stap {
  position: relative;
  padding: 28px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
}
.stap-nummer {
  position: absolute;
  top: -14px;
  left: 28px;
  width: 32px;
  height: 32px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.stap h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.stap p { color: var(--gray-500); font-size: 0.95rem; }

/* ========== FAQ ========== */
.faq-lijst { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-vraag {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  user-select: none;
}
.faq-vraag:hover { background: var(--gray-50); }
.faq-teken {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-teken { transform: rotate(45deg); }
.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--gray-700);
}
.faq-item.open .faq-antwoord {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ========== CTA ========== */
.cta-sectie {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: white;
  text-align: center;
  padding: 72px 24px;
}
.cta-sectie h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-sectie p { color: #cbd5e1; margin-bottom: 28px; }
.cta-knop {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.cta-knop:hover { background: var(--primary-dark); text-decoration: none; }

/* ========== FOOTER ========== */
footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 48px 24px 24px;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}
footer h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 14px;
  font-weight: 600;
}
footer a { color: #94a3b8; display: inline-block; padding: 8px 0; min-height: 32px; line-height: 1.4; }
footer a:hover { color: white; }
footer ul { list-style: none; }
footer li { margin-bottom: 2px; }
footer .logo { color: white; margin-bottom: 16px; }
.is-hidden { display: none; }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ========== COOKIEBANNER ========== */
#cookiebanner {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: white;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.25);
  z-index: 999;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e2e8f0;
}
#cookiebanner p { font-size: 0.9rem; color: #334155; line-height: 1.5; margin: 0; }
#cookiebanner .cookie-knoppen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#cookiebanner button {
  padding: 11px 18px;
  border-radius: 8px;
  border: none;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
#cookiebanner .accept { background: var(--primary); color: white; }
#cookiebanner .accept:hover { background: var(--primary-dark); }
#cookiebanner .reject { background: var(--gray-100); color: var(--gray-700); border: 1px solid var(--gray-300); }
#cookiebanner .reject:hover { background: var(--gray-300); }
#cookiebanner a { color: var(--primary); text-decoration: underline; }

/* ========== PRIVACY CHECKBOX ========== */
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 6px;
  font-size: 0.85rem;
  color: var(--gray-700);
}
.privacy-check input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
}
.privacy-check label { margin: 0; font-weight: 400; font-size: 0.85rem; cursor: pointer; }
.privacy-check a { color: var(--primary); }
.privacy-check input.error + label { color: var(--primary); font-weight: 600; }

/* ========== SPOED TOGGLE ========== */
.spoed-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 2px solid #fcd34d;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.spoed-toggle:hover {
  background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%);
  transform: translateY(-1px);
}
.spoed-toggle.active {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-color: #c2410c;
  color: white;
}
.spoed-icon { font-size: 1.8rem; flex-shrink: 0; }
.spoed-tekst { flex: 1; }
.spoed-titel { font-weight: 700; font-size: 0.98rem; line-height: 1.2; }
.spoed-sub { font-size: 0.8rem; opacity: 0.9; margin-top: 3px; }
.spoed-switch {
  width: 44px; height: 24px;
  background: #cbd5e1;
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.spoed-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.spoed-toggle.active .spoed-switch { background: white; }
.spoed-toggle.active .spoed-switch::after { transform: translateX(20px); background: #f97316; }
.spoed-info {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: -4px 0 14px;
  padding: 0 4px;
  line-height: 1.4;
}

/* ========== DATUM QUICK PICKER ========== */
.datum-wrap { position: relative; }
.datum-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
  position: relative;
}
.datum-native {
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(50% - 4px);
  height: 100%;
  opacity: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: 16px;
}
.datum-native::-webkit-calendar-picker-indicator { opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.datum-btn.actief { font-weight: 700; }
.datum-btn {
  padding: 9px 4px;
  border: 1.5px solid var(--gray-300);
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  color: var(--gray-700);
}
.datum-btn:hover { border-color: var(--primary); background: white; }
.datum-btn.actief {
  background: var(--primary);
  color: white;
  border-color: var(--primary-dark);
}
/* Subtiele bevestigingsregel i.p.v. een tweede rode "pill" naast de Vandaag-knop. */
.datum-display {
  font-size: 0.8rem;
  color: var(--gray-700);
  padding: 2px 2px;
  text-align: left;
  font-weight: 600;
  margin-top: 4px;
}
.datum-display::before { content: "Gekozen: "; color: var(--gray-500); font-weight: 400; }
.datum-display.leeg { color: var(--gray-500); font-weight: 400; }
.datum-display.leeg::before { content: ""; }
.datum-picker {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 20;
  margin-top: 4px;
}
.datum-picker.zichtbaar { display: block; }
.datum-picker-kop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}
.datum-picker-knop {
  background: var(--gray-100);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--gray-700);
}
.datum-picker-knop:hover { background: var(--primary-light); color: var(--primary); }
.datum-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.datum-grid .dagnaam {
  text-align: center;
  font-size: 0.7rem;
  color: var(--gray-500);
  padding: 4px 0;
  font-weight: 600;
}
.datum-grid .dag {
  text-align: center;
  padding: 12px 0;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.datum-grid .dag:hover { background: var(--primary-light); color: var(--primary); }
.datum-grid .dag.vandaag { font-weight: 700; border-color: var(--primary); }
.datum-grid .dag.gekozen { background: var(--primary); color: white; }
.datum-grid .dag.verleden { color: var(--gray-300); cursor: not-allowed; pointer-events: none; }
.datum-grid .dag.leeg { visibility: hidden; }

/* ===== utility classes (vervangen van inline style= voor CSP-compat) ===== */
.section-intro { max-width: 720px; margin: 0 auto 2rem; text-align: center; color: var(--gray-700); }
.section-intro--narrow { max-width: 700px; margin: 0 auto; text-align: center; color: var(--gray-700); }
.link-plain { text-decoration: none; color: inherit; }
.link-cta { color: var(--gray-900); font-weight: 600; text-decoration: none; display: inline-block; padding: 10px 0; min-height: 44px; line-height: 1.4; }
.link-cta:hover { color: var(--primary); }
.footer-bottom a { padding: 8px 4px; }
.btn-center { display: inline-block; text-align: center; text-decoration: none; }

/* ========== MOBILE VERBETERINGEN ========== */
@media (max-width: 768px) {
  section { padding: 48px 20px; }
  .cta-sectie { padding: 48px 20px; }
  .cta-sectie h2 { font-size: 1.5rem; }
  .form-card { padding: 24px 18px; border-radius: 16px; }
  footer { padding: 40px 20px 20px; }
  .hero-badge { font-size: 0.8rem; }
  .hero p { font-size: 1rem; margin-bottom: 24px; }
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 1.5rem; }
  .stat-label { font-size: 0.8rem; }
  .section-title { margin-bottom: 32px; }
  .voordelen-grid { gap: 16px; }
  .voordeel-card { padding: 24px 20px; }
  .stappen { gap: 20px; margin-top: 32px; }
  .stap { padding: 24px 20px; }
  .faq-vraag { padding: 16px 18px; font-size: 0.95rem; }
  .faq-item.open .faq-antwoord { padding: 0 18px 16px; }
  .faq-antwoord { padding: 0 18px; }
  .footer-inner { gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
@media (max-width: 768px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  textarea,
  select {
    font-size: 16px;
  }
}

/* ========================================================================
   POLISH (frontend-design): line-iconen, sectie-ritme, scroll-reveals,
   hero-stagger en micro-interacties. Alle CSS hier (CSP verbiedt inline).
   ======================================================================== */

/* ---- Inline SVG-sprite verbergen (position i.p.v. display:none zodat <use> blijft renderen) ---- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---- Line-iconen in kaarten (vervangen emoji) ---- */
.voordeel-icon svg,
.voordeel-icon .ico {
  width: 28px;
  height: 28px;
  display: block;
}
.voordeel-icon {
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.voordeel-card:hover .voordeel-icon { transform: scale(1.08); }
/* "Wat we niet doen" — neutrale tint i.p.v. de positieve merk-rood. */
.voordeel-icon--muted { background: var(--gray-100); color: var(--steel-blue); }
.voordeel-card:hover .voordeel-icon--muted { background: var(--gray-100); }

/* ---- Sectie-ritme: zachte afwisseling licht/grijs ---- */
.section-alt { background: var(--gray-50); }

/* ---- Scroll-reveal (progressive enhancement: .reveal wordt door JS gezet,
        dus zonder JS blijft alles zichtbaar) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  .reveal.in-view { opacity: 1; transform: none; }

  /* Cascade binnen grids/stappen voor een verzorgde stagger. */
  .voordelen-grid .reveal:nth-child(2),
  .stappen .reveal:nth-child(2) { transition-delay: 0.08s; }
  .voordelen-grid .reveal:nth-child(3),
  .stappen .reveal:nth-child(3) { transition-delay: 0.16s; }
  .voordelen-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

  /* ---- Hero-load stagger ---- */
  .hero-badge,
  .hero h1,
  .hero p,
  .hero-usps,
  .form-card { animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .hero h1 { animation-delay: 0.06s; }
  .hero p { animation-delay: 0.14s; }
  .hero-usps { animation-delay: 0.22s; }
  .form-card { animation-delay: 0.10s; }

  /* ---- Cookiebanner entrance ---- */
  #cookiebanner { animation: cookieIn 0.4s ease both; }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Cookiebanner uit de weg van het offerteformulier op desktop (form = rechterkolom). */
@media (min-width: 901px) {
  #cookiebanner { right: auto; margin: 0; }
}
