/* ══════════════════════════════════════════
   Bureau Besef · Stylesheet
   ══════════════════════════════════════════ */

/* ── Variabelen ── */
:root {
  --navy:        #2C2C2A;  /* antraciet */
  --navy-mid:    #3a3a38;
  --oranje:      #8B3A7E;  /* pruim */
  --oranje-dk:   #6d2c63;  /* donker pruim */
  --waarschuwing: #ea580c; /* alleen voor hiaat-indicator in scan */
  --geel:        #f59e0b;
  --groen:       #16a34a;
  --wit:         #ffffff;
  --licht:       #F1EFE8;  /* lichtgrijs */
  --licht-mid:   #D3D1C7;  /* middeltint */
  --tekst:       #2C2C2A;  /* antraciet */
  --sub:         #5e5d57;  /* grijs */
  --rand:        #D3D1C7;  /* middeltint */

  --fk-0: #3498db;
  --fk-1: #27ae60;
  --fk-2: #9b59b6;
  --fk-3: #16a085;
  --fk-4: #e67e22;
  --fk-5: #0e7490;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
[hidden] { display: none !important; }

/* ── Accessibility: focus-visible ── */
:focus { outline: none; }

:focus-visible {
  outline: 3px solid var(--oranje);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-link voor toetsenbordgebruikers */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--oranje);
  color: white;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--tekst);
  background: var(--navy);
  overflow: hidden;
  height: 100dvh;
}

/* ══════════════════════════════════════════
   SCROLL CONTAINER
   ══════════════════════════════════════════ */

.main-scroll {
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  /* verberg scrollbar visueel */
  scrollbar-width: none;
}
.main-scroll::-webkit-scrollbar { display: none; }

.screen {
  height: 100dvh;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.screen-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
  height: 100%;
}

/* Achtergrondkleuren */
.s-donker { background: var(--navy); }
.s-licht  { background: var(--licht); }
.s-wit    { background: var(--wit); }

/* ══════════════════════════════════════════
   NAVIGATIEDOTS
   ══════════════════════════════════════════ */

.dots-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.dot-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;       /* min touch target: 44px hoog (10+10+24 dot area) */
  min-width: 44px;       /* WCAG 2.5.5: minimaal 44×44px */
}

.dot-btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(44,44,42,0.18);
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.dot-btn.active::after {
  background: var(--oranje);
  transform: scale(1.35);
}

.dot-btn:hover::after { background: rgba(44,44,42,0.45); }

.dot-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sub);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  white-space: nowrap;
}

.dot-btn:hover .dot-label,
.dot-btn.active .dot-label {
  opacity: 1;
  transform: translateX(0);
}

/* Op gekleurde achtergrond (s4): witte dots */
.dots-nav.op-donker .dot-btn::after        { background: rgba(255,255,255,0.35); }
.dots-nav.op-donker .dot-btn:hover::after  { background: rgba(255,255,255,0.7); }
.dots-nav.op-donker .dot-btn.active::after { background: white; transform: scale(1.35); }
.dots-nav.op-donker .dot-label            { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════
   GEDEELDE STIJLEN
   ══════════════════════════════════════════ */

.label-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oranje-dk);
  margin-bottom: 10px;
}

.sectie-kop h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--tekst);
  letter-spacing: -0.025em;
}

.sectie-kop h2 em {
  font-style: normal;
  color: var(--oranje);
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--oranje);
  color: var(--wit);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(139,58,126,0.35);
}
.btn-main:hover { background: var(--oranje-dk); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { color: white; background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════
   SECTIE 0 · LANDING
   ══════════════════════════════════════════ */

.landing-layout {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 0;
  padding-bottom: 0;
}

/* Header */
.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 3vh, 28px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo {
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.02em;
}
.logo span {
  color: var(--wit);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
}
.logo span em {
  font-style: normal;
  color: var(--oranje);
}

.logo-merk {
  height: clamp(28px, 3.5vw, 40px);
  width: auto;
  display: block;
}

.deadline-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,58,126,0.15);
  border: 1px solid rgba(139,58,126,0.45);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.deadline-pill a {
  color: inherit;
  text-decoration: none;
}

.deadline-pill a:hover {
  text-decoration: underline;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oranje);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Body */
.landing-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4vh, 40px) 0;
  position: relative;
}

.kd-deco {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.landing-body h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--wit);
  letter-spacing: -0.035em;
  margin-bottom: clamp(16px, 3vh, 28px);
  position: relative;
  z-index: 1;
}

.landing-body h1 em {
  font-style: normal;
  color: var(--oranje);
}

.landing-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 55vw;
  margin-bottom: clamp(24px, 4vh, 36px);
  position: relative;
  z-index: 1;
}

.landing-sub strong { color: rgba(255,255,255,0.9); }

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* Footer strip */
.landing-footer {
  border-top: 0px solid rgba(255,255,255,0.07);
  padding: clamp(14px, 2.5vh, 22px) 0;
}

.stat-strip {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 36px);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 800;
  color: var(--wit);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SECTIE 1 · HERKENNING
   ══════════════════════════════════════════ */

.herkenning-layout {
  display: grid;
  grid-template-rows: auto 1fr;
  padding-top: clamp(32px, 6vh, 64px);
  padding-bottom: clamp(32px, 6vh, 64px);
  gap: clamp(24px, 4vh, 40px);
}

.herkenning-layout .sectie-kop h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.quotes-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vh, 32px);
  overflow: hidden;
}

.quotes-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vh, 24px);
}

blockquote {
  font-size: clamp(1.1rem, 2.8vw, 1.9rem);
  font-style: italic;
  color: var(--tekst);
  line-height: 1.5;
  padding-left: clamp(16px, 2.5vw, 28px);
  border-left: 4px solid var(--oranje);
  max-width: 780px;
}

.reactie {
  background: var(--licht-mid);
  border-radius: 12px;
  padding: clamp(14px, 2vw, 22px) clamp(16px, 2.5vw, 28px);
  font-size: clamp(0.88rem, 1.5vw, 1.02rem);
  color: var(--tekst);
  line-height: 1.65;
  max-width: 700px;
}

.reactie strong {
  color: var(--oranje);
}

.quotes-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.q-arrow {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: var(--tekst);
}

.q-arrow:hover { background: var(--licht-mid); border-color: var(--sub); }

.q-dots-row {
  display: flex;
  gap: 8px;
}

.q-dot {
  width: 44px;             /* WCAG 2.5.5: minimaal 44×44px touch target */
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.q-dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rand);
  transition: background 0.25s, transform 0.25s;
  pointer-events: none;
}

.q-dot.active::after { background: var(--oranje); transform: scale(1.3); }

/* ══════════════════════════════════════════
   SECTIE 2 · AANPAK
   ══════════════════════════════════════════ */

.aanpak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.aanpak-tekst h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--tekst);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  margin-top: 8px;
}

.aanpak-tekst p {
  font-size: clamp(0.88rem, 1.5vw, 1.02rem);
  color: var(--sub);
  line-height: 1.7;
  margin-bottom: 20px;
}

.check-lijst {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.check-lijst li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.85rem, 1.4vw, 0.96rem);
  color: var(--tekst);
}

.check-lijst li::before {
  content: '✓';
  min-width: 20px;
  height: 20px;
  background: #dcfce7;
  color: var(--groen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Scan card */
.scan-card {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.scan-titel {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sub);
}

.scan-rij {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scan-rij-kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.scan-rij-kop span:first-child {
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  font-weight: 600;
  color: var(--tekst);
}

.scan-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.groen-badge  { background: #dcfce7; color: #15803d; }
.geel-badge   { background: #fef3c7; color: #92400e; }
.oranje-badge { background: #fff0e8; color: #c2410c; font-weight: 800; }

.scan-balk {
  height: 6px;
  background: var(--licht-mid);
  border-radius: 4px;
  overflow: hidden;
}

.scan-vul {
  height: 100%;
  border-radius: 4px;
  background: var(--groen);
  transition: width 0.6s ease 0.3s;
}

.geel-vul   { background: var(--geel); }
.oranje-vul { background: var(--waarschuwing); }

.scan-rij small {
  font-size: 0.75rem;
  color: var(--sub);
}

.scan-legenda-tekst {
  font-size: 0.78rem;
  color: var(--sub);
  border-top: 1px solid var(--rand);
  padding-top: 14px;
  font-style: italic;
}

/* ══════════════════════════════════════════
   SECTIE 3 · FASES
   ══════════════════════════════════════════ */

.fases-layout {
  display: grid;
  grid-template-rows: 2fr 1fr 2fr;
  padding-top: clamp(28px, 5vh, 52px);
  padding-bottom: clamp(20px, 3.5vh, 36px);
  gap: clamp(16px, 3vh, 28px);
}

.fases-kop {
  text-align: left;
}

.fase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}

.fk {
  background: var(--wit);
  border-radius: 12px;
  padding: clamp(14px, 1.8vw, 22px);
  border-top: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fk:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.fk.f0 { border-color: var(--fk-0); }
.fk.f1 { border-color: var(--fk-1); }
.fk.f2 { border-color: var(--fk-2); }
.fk.f3 { border-color: var(--fk-3); }
.fk.f4 { border-color: var(--fk-4); }
.fk.f5 { border-color: var(--fk-5); }

.fk-nr {
  width: clamp(28px, 3vw, 36px);
  height: clamp(28px, 3vw, 36px);
  min-width: clamp(28px, 3vw, 36px);
  border-radius: 50%;
  color: var(--wit);
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fk.f0 .fk-nr { background: var(--fk-0); }
.fk.f1 .fk-nr { background: var(--fk-1); }
.fk.f2 .fk-nr { background: var(--fk-2); }
.fk.f3 .fk-nr { background: var(--fk-3); }
.fk.f4 .fk-nr { background: var(--fk-4); }
.fk.f5 .fk-nr { background: var(--fk-5); }

.fk-body { flex: 1; min-width: 0; }

.fk-body h3 {
  font-size: clamp(0.82rem, 1.3vw, 0.96rem);
  font-weight: 700;
  color: var(--tekst);
  margin-bottom: 4px;
}

.fk-body p {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  color: var(--sub);
  line-height: 1.5;
  margin-bottom: 8px;
}

.fk-duur {
  font-size: clamp(0.65rem, 1vw, 0.74rem);
  font-weight: 600;
  color: var(--sub);
  background: var(--licht);
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
}

.fases-bottom {
  display: flex;
  align-items: center;
}

/* ══════════════════════════════════════════
   SECTIE 4 · CTA
   ══════════════════════════════════════════ */

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.cta-tekst h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--wit);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  margin-top: 12px;
}

.cta-tekst p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 24px;
}

.gratis-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.35);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-beloften {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-beloften li {
  font-size: clamp(0.85rem, 1.4vw, 0.96rem);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-beloften li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(74,222,128,0.18);
  color: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
}

/* Formulier */
.cta-form-blok {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 40px);
  backdrop-filter: blur(8px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.veld {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.veld label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

.veld-optioneel {
  font-weight: 400;
  opacity: 0.6;
}

.veld input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px;
  padding: 12px 15px;
  color: var(--wit);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.veld input::placeholder { color: rgba(255,255,255,0.55); }
.veld input:focus { border-color: var(--oranje); background: rgba(255,255,255,0.1); }

.veld input.fout { border-color: #e11d48; }

.veld textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px;
  padding: 12px 15px;
  color: var(--wit);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.veld textarea::placeholder { color: rgba(255,255,255,0.55); }
.veld textarea:focus { border-color: var(--oranje); background: rgba(255,255,255,0.1); }

/* Honeypot: volledig verborgen voor mensen */
.hp-veld {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Foutmelding formulier */
.form-fout {
  font-size: 0.82rem;
  color: #e11d48;
  padding: 8px 12px;
  background: rgba(225, 29, 72, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(225, 29, 72, 0.3);
}

.btn-submit {
  width: 100%;
  background: var(--oranje);
  color: var(--wit);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(139,58,126,0.4);
  margin-top: 4px;
}

.btn-submit:hover { background: var(--oranje-dk); transform: translateY(-1px); }

.form-klein {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* Succes-state */
.form-succes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 20px;
  text-align: center;
}

.succes-icon {
  width: 56px;
  height: 56px;
  background: rgba(74,222,128,0.18);
  border: 2px solid #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #4ade80;
}

.form-succes p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* btn-oranje variant (op lichte achtergrond) */
.btn-oranje {
  box-shadow: 0 4px 14px rgba(139,58,126,0.3);
}

/* ══════════════════════════════════════════
   MOBIEL (max-width: 767px)
   ══════════════════════════════════════════ */

@media (max-width: 767px) {

  body { overflow: auto; height: auto; }

  .main-scroll {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }

  .screen {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    scroll-snap-align: none;
  }

  .screen-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Dots: onderaan in plaats van rechts */
  .dots-nav {
    position: fixed;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 16px;
    flex-direction: row;
    gap: 10px;
    background: rgba(44,44,42,0.85);
    padding: 8px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    z-index: 200;
  }

  .dot-label { display: none; }

  .dot-btn::after {
    width: 8px;
    height: 8px;
  }

  /* Landing */
  .landing-layout {
    grid-template-rows: auto 1fr auto;
    padding-bottom: 60px;
  }

  .kd-deco { display: none; }

  .landing-body h1 { font-size: clamp(2.2rem, 12vw, 3.5rem); }

  .stat-strip { gap: 12px; }

  .stat-sep { display: none; }

  /* Herkenning */
  .herkenning-layout {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  blockquote { font-size: 1.1rem; }

  /* Aanpak */
  .aanpak-layout {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 60px;
    gap: 32px;
  }

  /* Fases */
  .fases-layout {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .fase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
  }

  /* CTA */
  .cta-layout {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 80px;
    gap: 32px;
  }

  .cta-tekst h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ══════════════════════════════════════════
   HEEL KLEIN (max-width: 380px)
   ══════════════════════════════════════════ */

@media (max-width: 380px) {

  .fase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .stat-strip { flex-direction: column; gap: 8px; }
}

/* ══════════════════════════════════════════
   SECTIE 3 · IN DE KLAS
   ══════════════════════════════════════════ */

.inklas-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vh, 44px);
  padding-top: clamp(32px, 6vh, 60px);
  padding-bottom: clamp(32px, 6vh, 60px);
}

.inklas-kop { max-width: 680px; }

.label-chip-wit {
  color: rgba(255,255,255,0.55);
}

.inklas-h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--wit);
  margin-bottom: 12px;
}

.inklas-h2 em {
  font-style: normal;
  color: var(--oranje);
}

.inklas-intro {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.stappen-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.stap-kaart {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}

.stap-kaart-actief {
  background: rgba(139,58,126,0.2);
  border-color: rgba(139,58,126,0.5);
}

.stap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stap-nr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stap-eigenaar {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.stap-wij   { background: rgba(255,255,255,0.1);  color: rgba(255,255,255,0.55); }
.stap-samen { background: rgba(139,58,126,0.35); color: rgba(255,255,255,0.9);  }
.stap-jij   { background: rgba(22,163,74,0.25);  color: #4ade80; }

.stap-kaart h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--wit);
  letter-spacing: -0.015em;
}

.stap-kaart p {
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  flex: 1;
}

.eigenaar-balk {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.eb-vul {
  height: 100%;
  border-radius: 2px;
}

.eb-wij   { width: 100%; background: rgba(255,255,255,0.25); }
.eb-samen { width: 100%; background: var(--oranje); }
.eb-jij   { width: 100%; background: #16a34a; }

.stap-pijl {
  flex-shrink: 0;
  width: clamp(28px, 4vw, 48px);
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.2);
}

@media (max-width: 767px) {
  .inklas-layout {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .stappen-grid {
    flex-direction: column;
    gap: 12px;
  }
  .stap-pijl {
    transform: rotate(90deg);
    width: auto;
  }
}

/* ══════════════════════════════════════════
   SECTIE-SPECIFIEKE OVERRIDES
   ══════════════════════════════════════════ */

/* ── Hero: lichtgrijs ── */
#s0 { background: var(--licht); }

#s0 .landing-header { border-color: var(--rand); }

#s0 .logo { color: var(--sub); }
#s0 .logo span { color: var(--navy); }

#s0 .deadline-pill {
  background: rgba(139,58,126,0.08);
  border-color: rgba(139,58,126,0.3);
  color: var(--oranje-dk);
}

#s0 .pulse-dot { background: var(--oranje); }

#s0 .landing-body h1 { color: var(--navy); }
#s0 .landing-sub { color: var(--sub); }
#s0 .landing-sub strong { color: var(--tekst); }

#s0 .btn-ghost {
  color: var(--navy);
  border-color: var(--rand);
}
#s0 .btn-ghost:hover {
  color: var(--tekst);
  background: var(--licht-mid);
}

#s0 .kd-deco { color: rgba(44,44,42,0.04); }

#s0 .landing-footer { border-color: var(--rand); }
#s0 .stat strong { color: var(--navy); }
#s0 .stat span   { color: var(--sub); }
#s0 .stat-sep    { background: var(--rand); }

/* ── Hero-afbeelding ── */
#s0 .landing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: 0;
}

.landing-body-tekst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.landing-body-beeld {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: clamp(0px, 2.7vh, 32px) 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  max-height: 62vh;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(44,44,42,0.14);
  display: block;
  object-position: 80% 50%;
}

@media (max-width: 767px) {
  .landing-header {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  /* Hero-achtergrondafbeelding op mobiel, fade naar onder */
  #s0 {
    background:
      linear-gradient(
        to bottom,
        rgba(241,239,232,0.45) 0%,
        rgba(241,239,232,0.75) 55%,
        rgba(241,239,232,1)   85%
      ),
      url('../imgs/klas_uitleg.jfif') 80% top / cover no-repeat;
    position: relative;
  }

  /* Tekst pakt volledige breedte */
  #s0 .landing-body {
    grid-template-columns: 1fr;
  }

  .landing-sub {
    max-width: 100%;
  }

  .landing-body-beeld { display: none; }
}

/* ── In de klas: antraciet ── */
#s3 { background: linear-gradient(140deg, #2C2C2A 0%, #1a1a18 100%); }

/* ── CTA: antraciet ── */
#s5 { background: linear-gradient(140deg, #2C2C2A 0%, #1a1a18 100%); }

#s5 .gratis-badge {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: white;
}

#s5 .cta-tekst h2       { color: white; }
#s5 .cta-tekst p        { color: rgba(255,255,255,0.8); }

#s5 .cta-beloften li {
  color: rgba(255,255,255,0.85);
}
#s5 .cta-beloften li::before {
  background: rgba(255,255,255,0.15);
  color: white;
}

#s5 .cta-form-blok {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

#s5 .veld label  { color: rgba(255,255,255,0.65); }
#s5 .veld input  {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
#s5 .veld input::placeholder { color: rgba(255,255,255,0.3); }
#s5 .veld input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}

#s5 .btn-submit {
  background: white;
  color: var(--oranje);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
#s5 .btn-submit:hover {
  background: #f8f8f8;
  transform: translateY(-1px);
}

#s5 .form-klein     { color: rgba(255,255,255,0.45); }
#s5 .succes-icon    { border-color: white; color: white; background: rgba(255,255,255,0.15); }
#s5 .form-succes p  { color: white; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.screen-footer {
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  border-top: 3px solid var(--oranje);
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(36px, 6vh, 56px);
  padding-bottom: clamp(36px, 6vh, 56px);
}

.footer-merk {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--sub);
  letter-spacing: 0.06em;
}

.footer-kop {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sub);
  margin-bottom: 12px;
}

.footer-lijst {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-lijst li {
  font-size: 0.88rem;
  color: var(--tekst);
}

.footer-lijst a {
  color: var(--tekst);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-lijst a:hover { color: var(--oranje); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--sub);
  margin-top: 20px;
}

@media (max-width: 767px) {
  .screen-footer { height: auto; }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 80px;
  }
}

/* ── Mobiele dots: lichte pill ── */
@media (max-width: 767px) {
  .dots-nav {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
  }
  .dots-nav.op-donker {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.2);
  }
}

/* ══════════════════════════════════════════
   AANVRAAG PAGINA (/aanvraag)
   ══════════════════════════════════════════ */

body.aanvraag-pagina {
  overflow: auto;
  height: auto;
  background: linear-gradient(140deg, #2C2C2A 0%, #1a1a18 100%);
  min-height: 100vh;
}

.aanvraag-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.aanvraag-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
}

/* Header */
.aanvraag-hdr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: clamp(18px, 3vh, 28px) 0;
}

.aanvraag-logo-link { text-decoration: none; display: inline-block; }

/* Main */
.aanvraag-main {
  flex: 1;
  padding: clamp(48px, 8vh, 96px) 0;
}

.aanvraag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

/* Info kolom */
.aanvraag-h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--wit);
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}

.aanvraag-intro {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.aanvraag-beloften li       { color: rgba(255,255,255,0.82); }
.aanvraag-beloften li::before {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.aanvraag-verwachting {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.aanvraag-stap-kop {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.aanvraag-stappen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: stap;
}

.aanvraag-stappen li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.85rem, 1.4vw, 0.94rem);
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  counter-increment: stap;
}

.aanvraag-stappen li::before {
  content: counter(stap);
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(139,58,126,0.25);
  border: 1px solid rgba(139,58,126,0.5);
  color: var(--oranje);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Formulierblok */
.aanvraag-form-blok {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 40px);
}

.aanvraag-form-blok .contact-form { display: flex; flex-direction: column; gap: 14px; }

.aanvraag-form-blok .veld label   { color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; }
.aanvraag-form-blok .veld input   { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 9px; padding: 12px 15px; color: var(--wit); font-size: 0.92rem; font-family: inherit; outline: none; width: 100%; transition: border-color 0.2s, background 0.2s; }
.aanvraag-form-blok .veld input::placeholder { color: rgba(255,255,255,0.55); }
.aanvraag-form-blok .veld input:focus { border-color: var(--oranje); background: rgba(255,255,255,0.12); }
.aanvraag-form-blok .veld input.fout { border-color: #e11d48; }
.aanvraag-form-blok .veld textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 9px; padding: 12px 15px; color: var(--wit); font-size: 0.92rem; font-family: inherit; outline: none; resize: vertical; width: 100%; transition: border-color 0.2s, background 0.2s; }
.aanvraag-form-blok .veld textarea::placeholder { color: rgba(255,255,255,0.55); }
.aanvraag-form-blok .veld textarea:focus { border-color: var(--oranje); background: rgba(255,255,255,0.12); }

.aanvraag-btn-submit {
  width: 100%;
  background: var(--wit);
  color: var(--oranje);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  margin-top: 4px;
}
.aanvraag-btn-submit:hover { background: #f0eef8; transform: translateY(-1px); }

.aanvraag-form-blok .form-succes  { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 40px 20px; text-align: center; }
.aanvraag-form-blok .succes-icon  { width: 56px; height: 56px; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--wit); }
.aanvraag-form-blok .form-succes p { font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* Footer */
.aanvraag-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.aanvraag-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.aanvraag-footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.aanvraag-footer-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.aanvraag-footer-link:hover { color: rgba(255,255,255,0.72); }

/* Mobiel */
@media (max-width: 767px) {
  .aanvraag-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ══════════════════════════════════════════
   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;
  }
}

