/* ==========================================================================
   STIJLGIDS — StartersHUB
   Bron-van-waarheid voor design-tokens + design-keuzes van deze site.
   Bij elke kleur-/font-/spacing-wijziging: pas zowel de :root-variabele
   hieronder als deze comments aan, zodat de stijlgids in sync blijft.
   ========================================================================== */

/* PRIMAIRE KLEUR
   #4289BD — blauw uit de bestaande merkidentiteit van StartersHUB.
   Gebruikt voor: navigatie, secundaire knoppen, links, section-labels,
   stap-nummers, structurele elementen. Communiceert betrouwbaarheid en rust —
   belangrijk voor een doelgroep die twijfelt en structuur zoekt. */

/* ACCENT / CTA-KLEUR
   #CC2174 — magenta/roze, energiek en onderscheidend.
   Gebruikt voor: ALLE primaire CTA-knoppen (.btn-accent), badge-achtergrond,
   section-label borders, check-icons, stap-nummer hover-state.
   Bewust spaarzaam ingezet: alleen op de meest kritieke conversie-elementen,
   niet als decoratieve kleur door de hele pagina. */

/* ACHTERGROND
   --color-surface: #F7F9FC — zacht, koel neutraal. Geeft een moderne, luchtige
   look. Alternerend met --color-surface-alt (#FFFFFF) voor sectie-afwisseling. */

/* TEKST
   Body: #1A2E3D (diep navy — meer karakter dan zwart, hoge leesbaarheid).
   Headings: #0F1C28 (iets donkerder voor maximaal contrast).
   Secondaire tekst: #40484F. Lijn-hoogte body 1.65, headings 1.2. */

/* TYPOGRAFIE
   Headings: Manrope — geometrisch, modern, confident. Geladen via @font-face
   of system-fallback (geen externe Google Fonts call wegens AVG).
   Body: Open Sans → system-ui → -apple-system → sans-serif stack.
   Schaal: 1rem body (16px), 1.125rem lead-tekst, h3 1.25rem,
   h2 clamp(1.5rem, 4vw, 2rem), h1 clamp(2rem, 5vw, 3rem).
   Letter-spacing headings: -0.02em voor impact. */

/* SPACING-SCHAAL (8px baseline)
   xs: 4px · sm: 12px · md: 24px · lg: 48px · xl: 80px
   Section-padding: clamp(3rem, 8vw, 5rem) vertical. Container: 1080px max. */

/* RADIUS + SHADOWS
   --radius: 8px (knoppen, inputs), --radius-lg: 12px (cards, foto's).
   Shadows: subtiel ambient (rgba(26,46,61,.08)) met grote blur (16-24px).
   High-priority cards: iets diepere shadow (rgba(26,46,61,.12)). */

/* KNOPPEN
   .btn-accent: magenta (#CC2174) achtergrond, witte tekst, geen border,
   radius 8px, min-height 48px, hover: #A81960 (10% donkerder).
   .btn-outline: blauwe border (#4289BD), blauwe tekst, transparante achtergrond,
   hover: lichtblauwe achtergrond.
   .btn-whatsapp: #25D366 achtergrond (WhatsApp groen), witte tekst.
   Mobile: full-width via .btn-full. */

/* ==========================================================================
   CSS RESET + MOBILE FUNDAMENT (verplicht — niet wijzigen)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; max-width: 100%; }
body {
  overflow-x: hidden;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-surface);
}
img, video, iframe, svg { max-width: 100%; height: auto; }
table { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; word-wrap: break-word; }
p, li, dd, dt, td, h1, h2, h3, h4 { overflow-wrap: anywhere; word-break: normal; }

/* ==========================================================================
   CSS CUSTOM PROPERTIES (design tokens)
   ========================================================================== */

:root {
  --color-primary: #4289BD;
  --color-primary-dark: #356A90;
  --color-accent: #CC2174;
  --color-accent-dark: #A81960;
  --color-surface: #F7F9FC;
  --color-surface-alt: #FFFFFF;
  --color-surface-container: #EEF2F6;
  --color-ink: #1A2E3D;
  --color-ink-dark: #0F1C28;
  --color-ink-muted: #40484F;
  --color-border: #D1D9E0;
  --color-whatsapp: #25D366;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(26,46,61,.06);
  --shadow-md: 0 4px 16px rgba(26,46,61,.08);
  --shadow-lg: 0 8px 32px rgba(26,46,61,.12);
  --container: 1080px;
  --section-v: clamp(3rem, 8vw, 5rem);
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 12px;
  background: var(--color-accent);
  color: #fff;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   DIALOG / MODALS — must be first, prevents visible-below-footer bug
   ========================================================================== */

dialog:not([open]) { display: none; }

dialog.modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(640px, 100% - 32px);
  max-height: min(80vh, 600px);
  border: none;
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--color-surface-alt);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  z-index: 1000;
  color: var(--color-ink);
}

dialog.modal::backdrop {
  background: rgba(15,28,40,.55);
  backdrop-filter: blur(2px);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink-muted);
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: background .15s;
}
.modal-close:hover { background: var(--color-surface-container); }

.modal h2 {
  margin: 0 0 1rem;
  color: var(--color-primary-dark);
  padding-right: 2rem;
}

.modal-body p { margin: 0 0 1rem; }
.modal-body a { color: var(--color-primary); }

@media (max-width: 600px) {
  dialog.modal {
    position: fixed;
    inset: auto 0 0 0;
    margin: auto auto 0;
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */

.container {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-ink-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1rem; }

a { color: var(--color-primary); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent);
  padding-left: .5rem;
  margin-bottom: .75rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, border-color .2s, color .2s, transform .1s;
  white-space: normal;
  text-align: center;
}

.btn:active { transform: translateY(1px); }

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: rgba(66,137,189,.08);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

.btn-full { width: 100%; }

@media (min-width: 721px) {
  .btn { white-space: nowrap; }
  .btn-full { width: auto; }
}

/* ==========================================================================
   DEMO BANNER
   ========================================================================== */

.demo-banner {
  background: #FFF3CD;
  border-bottom: 2px solid #FFC107;
  padding: 10px 16px;
  text-align: center;
  font-size: .875rem;
  color: #664D03;
  z-index: 200;
  position: relative;
}
.demo-banner p { margin: 0; }
.demo-banner a { color: #664D03; font-weight: 600; }

/* ==========================================================================
   NAVIGATION + HAMBURGER
   ========================================================================== */

.nav-toggle { display: none; }

.site-header {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 20px;
  gap: 14px;
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-ink-dark);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.1rem;
}
.brand-icon { font-size: 1.4rem; }

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 500;
  font-size: .9rem;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.nav-menu a:hover { background: var(--color-surface-container); }
.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--color-accent-dark) !important; }

@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-toggle {
    display: block;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    z-index: 101;
  }
  .nav-toggle:focus-visible ~ .site-header .hamburger {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
    padding: 8px 0;
    background: var(--color-surface-alt);
    border-top: 1px solid var(--color-border);
  }
  .nav-menu li { border-top: 1px solid rgba(0,0,0,.06); }
  .nav-menu a { display: block; padding: 14px 20px; border-radius: 0; }
  .nav-cta { margin: 12px 20px; border-radius: var(--radius) !important; }
  .nav-toggle:checked ~ .site-header .nav-menu { display: flex; }
  .nav-toggle:checked ~ .site-header .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .nav-toggle:checked ~ .site-header .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .site-header .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,28,40,.82) 0%, rgba(66,137,189,.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(2rem, 8vw, 4rem);
  padding-bottom: clamp(6rem, 12vw, 8rem);
}

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

.hero h1 {
  color: #fff;
  margin: 0 0 1.25rem;
  max-width: 680px;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,.9);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-trust li {
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

@media (max-width: 720px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: .5rem; }
}

/* ==========================================================================
   VOOR-WIE
   ========================================================================== */

.voor-wie {
  background: var(--color-surface-alt);
  padding: var(--section-v) 0;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.persona-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-primary);
}
.persona-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.persona-card h3 { margin: 0 0 .75rem; }
.persona-quote {
  font-style: italic;
  color: var(--color-ink-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: .75rem;
  margin: 0 0 1rem;
}

@media (max-width: 720px) {
  .persona-grid { grid-template-columns: 1fr; }
  .persona-card { padding: 1.25rem; box-shadow: var(--shadow-sm); }
}

/* ==========================================================================
   UITKOMST
   ========================================================================== */

.uitkomst {
  background: var(--color-surface);
  padding: var(--section-v) 0;
}

.uitkomst-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.uitkomst-text h2 { margin: 0 0 1rem; }

.uitkomst-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.uitkomst-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.check-icon {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.uitkomst-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 720px) {
  .uitkomst-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .uitkomst-img { box-shadow: var(--shadow-md); }
}

/* ==========================================================================
   METHODE
   ========================================================================== */

.methode {
  background: var(--color-primary-dark);
  padding: var(--section-v) 0;
  color: rgba(255,255,255,.9);
}
.methode .section-label { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.4); }
.methode h2 { color: #fff; }
.methode .section-intro { color: rgba(255,255,255,.8); }

.stappen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.stap-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}

.stap-nummer {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Manrope', system-ui, sans-serif;
}

.stap-card h3 {
  color: #fff;
  margin: 0 0 .75rem;
  font-size: 1.1rem;
}
.stap-card p { font-size: .9rem; color: rgba(255,255,255,.8); margin: 0 0 1rem; }

.stap-meta {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.methode-cta {
  margin-top: 3rem;
  text-align: center;
}
.methode-cta p { color: rgba(255,255,255,.8); margin-bottom: 1rem; }

@media (max-width: 1000px) {
  .stappen-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .stappen-grid { grid-template-columns: 1fr; }
  .stap-card { padding: 1.25rem; }
}

/* ==========================================================================
   BEWIJS / TESTIMONIALS
   ========================================================================== */

.bewijs {
  background: var(--color-surface-alt);
  padding: var(--section-v) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.testimonial-card p {
  font-style: italic;
  color: var(--color-ink);
  margin: 0;
  line-height: 1.7;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-ink-dark);
  font-size: .9rem;
}
.testimonial-stars { color: #F59E0B; font-size: .9rem; }

@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.25rem; box-shadow: var(--shadow-sm); }
}

/* Founders strip */
.founders-strip {
  background: var(--color-surface-container);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.founders-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.founder-avatar { flex-shrink: 0; }
.avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.avatar-joyce { background: var(--color-primary); }
.avatar-marian { background: var(--color-accent); }

.founders-text { flex: 1; min-width: 240px; }
.founders-intro { margin: 0 0 .75rem; }
.founders-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.founders-contact a {
  font-size: .9rem;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 500;
}
.founders-contact a span { color: var(--color-primary); }
.founders-contact a:hover span { text-decoration: underline; }

@media (max-width: 600px) {
  .founders-inner { flex-direction: column; align-items: flex-start; }
  .founders-contact { flex-direction: column; gap: .5rem; }
}

/* ==========================================================================
   AANBOD
   ========================================================================== */

.aanbod {
  background: var(--color-surface);
  padding: var(--section-v) 0;
}

.aanbod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.aanbod-card {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.aanbod-card h3 { margin: 0; font-size: 1.1rem; }
.aanbod-card p { margin: 0; font-size: .95rem; color: var(--color-ink-muted); }

.aanbod-gratis {
  grid-column: span 2;
  background: linear-gradient(135deg, #F0F7FF 0%, #FDF0F6 100%);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.aanbod-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
  width: fit-content;
}

.aanbod-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.aanbod-list li {
  display: flex;
  gap: .75rem;
  font-size: .95rem;
  align-items: flex-start;
}
.aanbod-list .check-icon { margin-top: .1rem; }

.aanbod-prijs {
  font-size: .85rem;
  color: var(--color-ink-muted);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid var(--color-border);
}
.aanbod-prijs a { color: var(--color-primary); font-weight: 600; }
.prijs-bedrag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}
.prijs-bedrag small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--color-ink-muted);
}
.prijs-note { font-size: .8rem; color: var(--color-ink-muted); }

.aanbod-community { background: var(--color-surface-container); }

.aanbod-note {
  background: var(--color-surface-container);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.aanbod-note p { margin: 0; font-weight: 500; }

@media (max-width: 900px) {
  .aanbod-grid { grid-template-columns: repeat(2, 1fr); }
  .aanbod-gratis { grid-column: span 2; }
}

@media (max-width: 720px) {
  .aanbod-grid { grid-template-columns: 1fr; }
  .aanbod-gratis { grid-column: span 1; }
  .aanbod-card { padding: 1.25rem; box-shadow: none; }
  .aanbod-note { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
  .aanbod-note .btn { width: 100%; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  background: var(--color-surface-alt);
  padding: var(--section-v) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-ink-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform .2s;
  font-weight: 400;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--color-primary); }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}
.faq-answer p { margin: 0; }
.faq-answer a { color: var(--color-primary); }

.faq-cta {
  background: var(--color-surface-container);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 760px;
}
.faq-cta p { margin: 0 0 1rem; font-weight: 500; }
.faq-cta-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .faq-item summary { padding: 1rem 1.25rem; }
  .faq-answer { padding: 0 1.25rem 1rem; }
  .faq-cta { padding: 1.25rem; }
  .faq-cta-links .btn { flex: 1; min-width: 140px; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact {
  background: var(--color-surface);
  padding: var(--section-v) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--color-ink-dark);
}
.optional {
  font-weight: 400;
  color: var(--color-ink-muted);
  font-size: .85rem;
}
.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-surface);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-privacy {
  font-size: .8rem;
  color: var(--color-ink-muted);
  margin: .75rem 0 0;
}
.form-privacy a { color: var(--color-primary); }

.form-status {
  margin-top: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  background: #ECFDF5;
  color: #065F46;
  font-weight: 600;
  font-size: .9rem;
}

.cf-turnstile { margin-bottom: 1rem; }

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-block h3 { margin: 0 0 1rem; }

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.contact-icon { flex-shrink: 0; font-size: 1.1rem; }
.contact-details a { color: var(--color-ink); text-decoration: none; font-weight: 500; }
.contact-details a:hover { color: var(--color-primary); text-decoration: underline; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-whatsapp);
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  transition: background .2s;
}
.whatsapp-btn:hover { background: #1ebe5d; color: #fff; }
.whatsapp-icon { font-size: 1.75rem; flex-shrink: 0; }
.whatsapp-btn strong { display: block; font-size: 1rem; }
.whatsapp-btn small { display: block; font-size: .8rem; opacity: .85; }

.locatie-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.locatie-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.locatie-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15,28,40,.75);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

@media (max-width: 720px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-wrap { padding: 1.25rem; box-shadow: var(--shadow-sm); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.85);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand .brand-icon { font-size: 1.4rem; }
.footer-brand .brand-name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.footer-tagline {
  margin: .5rem 0 .25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.footer-adres {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 .5rem;
}
.footer-contact-links {
  font-size: .875rem;
  margin: 0;
}
.footer-contact-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.footer-contact-links a:hover { color: #fff; text-decoration: underline; }

.footer-links-col h3 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.footer-links-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links-col a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  transition: color .15s;
}
.footer-links-col a:hover { color: #fff; }

.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,.15);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { margin: 0; font-size: .8rem; color: rgba(255,255,255,.55); }
.foto-credit a { color: rgba(255,255,255,.6); }
.foto-credit a:hover { color: rgba(255,255,255,.9); }
.eo-credit a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.eo-credit a:hover { color: rgba(255,255,255,.8); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(26,46,61,.1);
  z-index: 50;
}

@media (max-width: 720px) {
  .mobile-sticky-cta { display: block; }
  /* Padding op body onderaan zodat de sticky bar content niet bedekt */
  body { padding-bottom: 72px; }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.wa-float {
  position: fixed;
  bottom: 88px; /* boven de sticky CTA bar */
  right: 20px;
  width: 52px;
  height: 52px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  z-index: 49;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

@media (min-width: 721px) {
  .wa-float { bottom: 24px; }
}

/* EO:APPEARANCE start */
html { scroll-behavior: smooth; }
/* EO:APPEARANCE end */
