/* =============================================
   WIA Management - Stylesheet
   ============================================= */

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

:root {
  --blauw: #0055CC;
  --blauw-donker: #003D99;
  --blauw-licht: #EBF2FF;
  --groen: #00875A;
  --groen-licht: #E3FCEF;
  --tekst: #1A1A2E;
  --grijs: #64748B;
  --grijs-licht: #F8FAFC;
  --wit: #FFFFFF;
  --rand: #E2E8F0;
  --schaduw: 0 4px 24px rgba(0,0,0,.08);
  --schaduw-groot: 0 8px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-groot: 20px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--tekst);
  background: var(--wit);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---- NAVIGATIE ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--rand);
  padding: 0;
  transition: box-shadow .25s;
}
nav.scrolled {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blauw);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blauw);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo span { color: var(--tekst); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--grijs);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blauw);
  background: var(--blauw-licht);
}

.nav-cta {
  background: var(--blauw) !important;
  color: var(--wit) !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(0,85,204,.25);
  transition: background .2s, transform .1s, box-shadow .2s !important;
}

.nav-cta:hover {
  background: var(--blauw-donker) !important;
  color: var(--wit) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,85,204,.35) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tekst);
  border-radius: 2px;
  transition: all .25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sticky mobiele CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: white;
  border-top: 1px solid var(--rand);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -2px 16px rgba(0,0,0,.08);
  transform: translateY(0);
  transition: transform .3s ease;
}
.sticky-cta.hidden-scroll {
  transform: translateY(110%);
}

.sticky-cta a {
  display: block;
  text-align: center;
  background: var(--blauw);
  color: white;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  min-height: 44px;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #0055CC 0%, #003D99 60%, #00236B 100%);
  color: var(--wit);
  padding: clamp(40px, 8vw, 80px) 0 clamp(36px, 7vw, 70px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(125,211,252,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,179,237,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(1.7rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: #7DD3FC;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.78;
  margin-bottom: 0;
  max-width: 440px;
  line-height: 1.75;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.88rem;
  opacity: 0.75;
  color: white;
}

.hero-sterren {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Hero formulier kaart */
.hero-card {
  background: var(--wit);
  border-radius: var(--radius-groot);
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 32px);
  box-shadow: var(--schaduw-groot);
  color: var(--tekst);
  position: sticky;
  top: 80px;
}

.hero-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--tekst);
}

.hero-card .card-sub {
  font-size: 0.88rem;
  color: var(--grijs);
  margin-bottom: 24px;
}

/* ---- FORMULIER ---- */
.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tekst);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--rand);
  border-radius: 8px;
  font-size: 1rem; /* 16px — voorkomt iOS auto-zoom */
  color: var(--tekst);
  background: var(--wit);
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blauw);
  box-shadow: 0 0 0 3px rgba(0,85,204,.1);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.btn-primary {
  width: 100%;
  padding: 15px;
  background: var(--blauw);
  color: var(--wit);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 4px;
}

.btn-primary:hover { background: var(--blauw-donker); }
.btn-primary:active { transform: scale(0.99); }

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grijs);
  margin-top: 10px;
}

/* ---- SOCIAL PROOF BALK ---- */
.proof-bar {
  background: var(--grijs-licht);
  border-bottom: 1px solid var(--rand);
  padding: 20px 0;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--tekst);
}

.proof-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blauw);
}

/* ---- SECTIES ---- */
section { padding: clamp(48px, 8vw, 80px) 0; }

.section-label {
  display: inline-block;
  background: var(--blauw-licht);
  color: var(--blauw);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--grijs);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: clamp(28px, 5vw, 48px);
}

/* ---- PERFORMANCE: content-visibility op zware off-screen secties ---- */
.doelgroep,
.testimonials,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ---- HOE HET WERKT ---- */
.steps { background: var(--wit); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--grijs-licht);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px) clamp(18px, 3.5vw, 28px);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,85,204,.1);
  border-color: #C7D9F8;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--blauw);
  color: var(--wit);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p { font-size: 0.95rem; color: var(--grijs); line-height: 1.7; }

/* ---- VOOR WIE ---- */
.doelgroep { background: var(--blauw-licht); }

.doelgroep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doelgroep-card {
  background: var(--wit);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px) clamp(18px, 3.5vw, 28px);
  box-shadow: var(--schaduw);
  transition: transform .25s ease, box-shadow .25s ease;
}

.doelgroep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.doelgroep-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.doelgroep-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.doelgroep-card p { font-size: 0.92rem; color: var(--grijs); line-height: 1.7; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--wit); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  border-color: #C7D9F8;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: var(--blauw-licht);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-tekst {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--tekst);
  margin-bottom: 20px;
  margin-top: 24px;
}

.testimonial-besparing {
  display: inline-block;
  background: var(--groen-licht);
  color: var(--groen);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.testimonial-auteur {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auteur-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blauw-licht);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blauw);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.auteur-naam { font-weight: 700; font-size: 0.9rem; }
.auteur-functie { font-size: 0.82rem; color: var(--grijs); }

/* ---- FAQ ---- */
.faq { background: var(--grijs-licht); }

.faq-lijst { max-width: 720px; }

.faq-item {
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--wit);
  overflow: hidden;
}

.faq-vraag {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--tekst);
  font-family: inherit;
}

.faq-vraag .chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform .25s;
  color: var(--blauw);
}

.faq-item.open .chevron { transform: rotate(180deg); }

.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 0.95rem;
  color: var(--grijs);
  line-height: 1.75;
  padding: 0 24px;
}

.faq-item.open .faq-antwoord {
  max-height: 800px;
  padding: 0 24px 20px;
}

/* ---- CTA BLOK ---- */
.cta-blok {
  background: linear-gradient(135deg, #0055CC, #003D99);
  color: var(--wit);
  padding: 80px 0;
  text-align: center;
}

.cta-blok h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-blok p {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 36px;
}

.btn-wit {
  display: inline-block;
  padding: 16px 36px;
  background: var(--wit);
  color: var(--blauw);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.btn-wit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ---- FOOTER ---- */
footer {
  background: var(--tekst);
  color: rgba(255,255,255,.7);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: var(--wit); }
.footer-brand p {
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.7;
}

footer h4 {
  color: var(--wit);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .2s;
}
footer ul a:hover { color: var(--wit); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- SUCCES PAGINA ---- */
.succes-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.succes-icon {
  width: 80px;
  height: 80px;
  background: var(--groen-licht);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ---- MEERSTAPS FORMULIER ---- */
.stap-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #94A3B8;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}

.stap-dot.actief {
  background: var(--blauw);
  color: white;
}

.stap-dot.klaar {
  background: var(--groen);
  color: white;
}

.stap-lijn {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
  transition: background .3s;
}

.stap-lijn.actief {
  background: var(--blauw);
}

.situatie-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 16px;
  background: white;
  border: 1.5px solid var(--rand);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color .2s, background .2s;
}

.situatie-btn:hover {
  border-color: var(--blauw);
  background: var(--blauw-licht);
}

.situatie-btn.geselecteerd {
  border-color: var(--blauw);
  background: var(--blauw-licht);
  box-shadow: 0 0 0 3px rgba(0,85,204,.1);
}

/* ---- REKENTOOL GRID ---- */
.rekentool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) {
  .rekentool-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- AFBEELDING SECTIE ---- */
.foto-sectie {
  padding: 72px 0;
  background: white;
}

.foto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.foto-inner img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--schaduw-groot);
  object-fit: cover;
  max-height: 420px;
}

@media (max-width: 900px) {
  .foto-inner {
    grid-template-columns: 1fr;
  }
  .foto-inner img {
    max-height: 300px;
  }
}

/* ---- RESPONSIVE ---- */

/* 900px — tablets liggend */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-card {
    max-width: 520px;
    position: static; /* geen sticky in gestapelde layout */
  }
  .steps-grid,
  .doelgroep-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .foto-inner { grid-template-columns: 1fr; }
}

/* 768px — hamburger + sticky CTA */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--rand);
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; font-size: 0.95rem; min-height: 44px; display: flex; align-items: center; }
  .nav-cta { text-align: center; margin-left: 0 !important; justify-content: center; }
  .sticky-cta { display: block; }
  /* Body padding zodat sticky CTA geen content bedekt */
  body { padding-bottom: 72px; }
  /* Hero card: volle breedte op mobiel */
  .hero-card { max-width: 100%; }
  /* Formulier knoppen: hogere touch target */
  .btn-primary { min-height: 48px; font-size: 1rem; }
  .situatie-btn { min-height: 52px; }
  /* Proof bar compacter */
  .proof-bar-inner { gap: 20px; }
  .proof-item { font-size: 0.85rem; }
  .proof-number { font-size: 1.2rem; }
  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* 600px — kleine telefoons */
@media (max-width: 600px) {
  .proof-bar-inner { gap: 16px; flex-direction: column; align-items: flex-start; padding: 0 8px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  /* Secties compacter */
  section { padding: clamp(32px, 6vw, 48px) 0; }
  /* Steps: smaller gap + compacter padding */
  .steps-grid { gap: 12px; }
  .doelgroep-grid { gap: 12px; }
  .testimonials-grid { gap: 12px; }
  .step-card, .doelgroep-card { padding: 18px 16px; }
  /* CTA blok */
  .cta-blok { padding: 40px 0; }
  .cta-blok h2 { font-size: 1.4rem; }
  /* Section headings */
  .section-title { font-size: clamp(1.25rem, 5vw, 1.6rem); margin-bottom: 10px; }
  .section-sub { font-size: 0.92rem; margin-bottom: clamp(20px, 4vw, 32px); }
  .section-label { font-size: 0.75rem; margin-bottom: 10px; }
}

/* 480px — kleine Android / iPhone SE */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-inner { gap: 20px; }
  .hero-sub { font-size: 0.92rem; line-height: 1.65; }
  .hero-badge { font-size: 0.76rem; padding: 5px 11px; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 1.9rem); margin-bottom: 12px; }
  .hero-social-proof { margin-top: 18px; font-size: 0.82rem; }
  .hero-card { border-radius: 14px; padding: 20px 18px; }
  .hero-card h2 { font-size: 1.1rem; }
  .nav-inner { height: 60px; }
  .nav-links { top: 60px; }
  body { padding-bottom: 68px; }
  .sticky-cta { padding: 8px 12px; }
  .sticky-cta a { padding: 11px; font-size: 0.9rem; }
  .step-card, .doelgroep-card, .testimonial-card { border-radius: 10px; }
  .step-card, .doelgroep-card { padding: 16px 14px; }
  .step-num { width: 38px; height: 38px; font-size: 1rem; margin-bottom: 14px; }
  .step-card h3 { font-size: 1rem; margin-bottom: 8px; }
  .step-card p, .doelgroep-card p { font-size: 0.88rem; }
  .faq-vraag { font-size: 0.92rem; padding: 14px 16px; }
  .faq-antwoord { padding: 0 16px; font-size: 0.88rem; }
  .faq-item.open .faq-antwoord { padding: 0 16px 14px; }
  /* Foto sectie */
  .foto-inner { gap: 20px; }
  .foto-inner img { max-height: 200px; }
  /* Testimonial kaart */
  .testimonial-card { padding: 18px 16px; }
  .testimonial-card::before { font-size: 2.5rem; top: 10px; left: 14px; }
  .testimonial-tekst { font-size: 0.87rem; margin-top: 18px; }
  /* Proof bar */
  .proof-bar { padding: 14px 0; }
  .proof-number { font-size: 1.2rem; }
  .proof-item { font-size: 0.82rem; }
}

/* 360px — kleinste Android schermen */
@media (max-width: 360px) {
  html { font-size: 15px; }
  .container { padding: 0 12px; }
  .hero-card { padding: 18px 16px; }
  .situatie-btn { padding: 10px 12px; }
  .proof-bar-inner { gap: 12px; }
}

/* ---- PREFERS REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  /* AOS uitschakelen */
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- TOUCH DEVICES: hover effects uitschakelen ---- */
@media (hover: none) {
  .step-card:hover,
  .doelgroep-card:hover,
  .testimonial-card:hover { transform: none; box-shadow: var(--schaduw); }
  .btn-wit:hover { transform: none; }
  .nav-cta:hover { transform: none; }
}

/* ---- EXIT-INTENT POPUP ---- */
#exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#exit-overlay.active {
  opacity: 1;
  pointer-events: all;
}
#exit-box {
  background: white;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: clamp(24px, 5vw, 40px) clamp(20px, 5vw, 36px);
  text-align: center;
  position: relative;
  transform: translateY(16px);
  transition: transform .3s;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#exit-overlay.active #exit-box { transform: translateY(0); }
#exit-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #94A3B8;
  line-height: 1;
  padding: 4px;
}
#exit-close:hover { color: #1A1A2E; }
.exit-badge {
  display: inline-block;
  background: #E3FCEF;
  color: #00875A;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
#exit-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 12px;
  line-height: 1.25;
}
#exit-box p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 24px;
}
.exit-checklist {
  text-align: left;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  list-style: none;
}
.exit-checklist li {
  font-size: 0.9rem;
  color: #374151;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.exit-checklist li::before {
  content: '✓';
  color: #00875A;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.exit-btn-primary {
  display: block;
  width: 100%;
  background: #0055CC;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 12px;
  transition: background .2s;
}
.exit-btn-primary:hover { background: #003D99; color: white; }
.exit-skip {
  font-size: 0.82rem;
  color: #94A3B8;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: underline;
}
.exit-skip:hover { color: #64748B; }

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1A1A2E;
  color: rgba(255,255,255,.88);
  padding: 14px 20px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  font-size: 0.85rem;
  line-height: 1.6;
}
#cookie-banner a { color: #7DD3FC; }
#cookie-banner-accept {
  background: var(--blauw);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background .2s;
}
#cookie-banner-accept:hover { background: var(--blauw-donker); }
#cookie-banner.hidden { display: none; }
