/* ==========================================================================
   STIJLGIDS — YourBenefit.ai
   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
   #1B3A6B — diepblauw. Gebruikt voor: headings, nav-achtergrond, schema-
   accenten, footer-achtergrond, knop-tekst op ghost-variant.
   Bewust gekozen omdat: past bij overheid én corporate, wekt vertrouwen,
   technologisch zonder koud te zijn. */

/* ACCENT KLEUR
   #00C4A7 — teal/cyaan. Gebruikt voor: primaire knoppen (btn-accent),
   stat-nummers (bewijs-feiten), stap-nummers in methode, focus-outline,
   mobile-sticky-bar, hover-accenten op links.
   Bewust gekozen omdat: moderne AI-sfeer, onderscheidt van traditionele IT,
   goede contrast op donkerblauwe achtergrond. */

/* ACHTERGRONDEN
   --color-bg: #F7F9FC — lichtgrijs-blauw als paginagrondkleur.
   --color-surface: #FFFFFF — kaarten, formulier, modals.
   --color-surface-alt: #EEF2F8 — alternatieve sectie-achtergrond (voor-wie, uitkomst).
   --color-dark: #0D2244 — extra donkere variant voor footer en hero-donkere variant. */

/* TEKST
   Body: #2D3748 (donkergrijs, niet zwart — minder vermoeiend).
   Headings: #1B3A6B (primaire kleur).
   Subtekst / labels: #64748B (gedempte versie).
   Links: #00C4A7 accent, underline op hover.
   Lijn-hoogte body: 1.7, headings: 1.2. */

/* TYPOGRAFIE
   Body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
         Arial, sans-serif (system-font-stack, geen Google Fonts — AVG-veilig).
   Headings: zelfde stack, font-weight 700.
   Schaal: 1rem body, 1.125rem h4, 1.25rem h3, 1.5rem–2rem h2,
           2rem–3.5rem h1 (clamp). */

/* SPACING-SCHAAL
   Op basis van 1rem (16px).
   Section-padding: clamp(3rem, 8vw, 6rem) verticaal.
   Container inner-padding: 16px per zijde mobiel, 24px desktop. */

/* RADIUS + SHADOWS
   --radius: 8px voor knoppen en kleine elementen.
   --radius-md: 12px voor kaarten.
   --radius-lg: 20px voor modals en grote kaarten.
   Schaduwen: --shadow-sm: 0 2px 8px rgba(0,0,0,.06)
              --shadow-md: 0 8px 24px rgba(0,0,0,.10)
              --shadow-lg: 0 16px 48px rgba(0,0,0,.12) */

/* KNOPPEN
   .btn-accent: teal achtergrond (#00C4A7), witte tekst, geen border, radius
   100px, hover: 10% donkerder (#00A88D). Mobile: full-width.
   .btn-ghost: transparant, border 2px solid primair (#1B3A6B), primaire tekst.
   .btn-outline: border 2px solid accent (#00C4A7), accent-tekst, transparant bg. */

/* ==========================================================================
   MOBILE-FUNDAMENT (verplicht — niet verwijderen)
   ========================================================================== */

*, *::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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2D3748;
  background: #F7F9FC;
}
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
   ========================================================================== */

:root {
  --color-primary: #1B3A6B;
  --color-primary-dark: #0D2244;
  --color-accent: #00C4A7;
  --color-accent-hover: #00A88D;
  --color-bg: #F7F9FC;
  --color-surface: #FFFFFF;
  --color-surface-alt: #EEF2F8;
  --color-ink: #2D3748;
  --color-ink-sub: #64748B;
  --color-ink-heading: #1B3A6B;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container-max: 1080px;
}

/* ==========================================================================
   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;
}
.skip-link:focus { left: 0; }

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

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

/* ==========================================================================
   TYPOGRAFIE
   ========================================================================== */

h1, h2, h3, h4 {
  color: var(--color-ink-heading);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

a { color: var(--color-accent); }
a:hover { color: var(--color-accent-hover); }

.section-title {
  margin-bottom: .5rem;
}
.section-sub {
  color: var(--color-ink-sub);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

/* ==========================================================================
   KNOPPEN
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 720px) {
  .btn { white-space: nowrap; }
}

.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-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: #fff;
}

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

.btn-full { width: 100%; display: block; }

.btn-sm {
  padding: 10px 20px;
  font-size: .9rem;
}

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.nav-toggle { display: none; }

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

.site-nav .brand {
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: #fff;
  letter-spacing: -.02em;
}

.brand-dot { color: var(--color-accent); }

.hamburger {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  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: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 100px !important;
}
.nav-cta:hover { background: var(--color-accent-hover) !important; }

@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 8px;
  }
  .nav-menu li { border-top: 1px solid rgba(255,255,255,.08); }
  .nav-menu a { display: block; padding: 14px 8px; }
  .nav-cta { margin: 8px 0 0; border-radius: var(--radius) !important; }

  /* :checked selector: input#nav-toggle moet VÓÓR nav staan in HTML */
  #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 {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #1e4d8c 100%);
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 720px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero { min-height: auto; padding: 3rem 0 5rem; }
}

.hero__label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  line-height: 1.5;
  max-width: 500px;
}

.hero__title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
}

.hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  width: 100%;
  max-width: 520px;
}

@media (max-width: 720px) {
  .hero__img {
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }
}

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

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

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

@media (max-width: 720px) {
  .persona-grid { grid-template-columns: 1fr; }
}

.persona-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-accent);
}

@media (max-width: 720px) {
  .persona-card { padding: 1.25rem; }
}

.persona-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}

.persona-pain {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.05rem;
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.persona-signals {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.persona-signals li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .95rem;
  color: var(--color-ink-sub);
}
.persona-signals li::before {
  content: '✗';
  color: #E53E3E;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.voor-wie__closing {
  color: var(--color-ink-sub);
  font-size: .95rem;
  text-align: center;
  margin-top: 1rem;
}

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

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

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

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

@media (max-width: 720px) {
  .uitkomst-grid { grid-template-columns: 1fr; }
}

.uitkomst-item {
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 720px) {
  .uitkomst-item { padding: 1.25rem; }
}

.uitkomst-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
  display: block;
}

.uitkomst-item h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.uitkomst-item p {
  font-size: .95rem;
  color: var(--color-ink-sub);
  margin: 0;
}

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

.methode {
  padding: var(--section-pad) 0;
  background: var(--color-primary);
  color: #fff;
}

.methode .section-title { color: #fff; }
.methode .section-sub { color: rgba(255,255,255,.75); }

.methode-stappen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: stap;
}

.stap {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

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

.stap__nummer {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stap__content h3 {
  color: #fff;
  margin-bottom: .5rem;
}

.stap__content p {
  color: rgba(255,255,255,.82);
  margin-bottom: .75rem;
}

.stap__meta {
  display: inline-block;
  font-size: .85rem;
  color: var(--color-accent);
  background: rgba(0, 196, 167, .12);
  padding: 4px 12px;
  border-radius: 100px;
}

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

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

/* Over Menno */
.over-menno {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

@media (max-width: 720px) {
  .over-menno {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.over-menno__foto-wrapper {
  display: flex;
  justify-content: center;
}

.foto-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.foto-initialen {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .05em;
}

.over-menno__quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-primary);
  border-left: 4px solid var(--color-accent);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  margin-bottom: 3rem;
}

.testimonials__titel {
  margin-bottom: 1.5rem;
}

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

@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

@media (max-width: 720px) {
  .testimonial-card { padding: 1.25rem; flex-direction: column; }
}

.testimonial-card--placeholder {
  border: 2px dashed #CBD5E0;
  background: #F8FAFC;
  opacity: .75;
}

.testimonial-avatar {
  font-size: 2rem;
  flex-shrink: 0;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-card blockquote p {
  font-style: italic;
  color: var(--color-ink-sub);
  margin-bottom: .5rem;
}

.testimonial-card blockquote footer cite {
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.testimonials__cta-text {
  font-size: .95rem;
  color: var(--color-ink-sub);
}

/* Feiten */
.bewijs-feiten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .bewijs-feiten { grid-template-columns: 1fr; gap: 1rem; }
}

.feit {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

@media (max-width: 720px) {
  .feit { padding: 1.25rem; }
}

.feit__getal {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: .5rem;
}

.feit__label {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

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

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

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

@media (max-width: 720px) {
  .aanbod-grid { grid-template-columns: 1fr; }
}

.aanbod-kaart {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.aanbod-kaart__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.aanbod-kaart__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 720px) {
  .aanbod-kaart__body { padding: 1.25rem; }
}

.aanbod-kaart__tagline {
  color: var(--color-ink-sub);
  font-size: .95rem;
  margin-bottom: 1rem;
}

.aanbod-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.aanbod-features li {
  padding: .4rem 0 .4rem 1.75rem;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.aanbod-features li::before {
  content: '✓';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.aanbod-prijs {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}

.prijs-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-ink-sub);
}

.prijs-waarde {
  font-size: .95rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* Extra afbeeldingen */
.aanbod-extra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 720px) {
  .aanbod-extra { grid-template-columns: 1fr; }
}

.aanbod-extra__item {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.aanbod-extra__item img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 720px) {
  .aanbod-extra__item img { height: 160px; }
}

.aanbod-extra__item p {
  font-size: .95rem;
  color: var(--color-ink-sub);
  margin: 0;
}

.aanbod__meer {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--color-accent);
}

@media (max-width: 720px) {
  .aanbod__meer { padding: 1.5rem; }
}

.aanbod__meer p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

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

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

.faq-lijst {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 760px;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-vraag {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  gap: 1rem;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .faq-vraag { padding: 1rem 1.25rem; font-size: 1rem; }
}

.faq-vraag:hover { background: var(--color-surface-alt); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}

.faq-antwoord {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
}

@media (max-width: 720px) {
  .faq-antwoord { padding: 0 1.25rem 1rem; }
}

.faq-antwoord p {
  color: var(--color-ink-sub);
  margin: 0;
}

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

.contact {
  padding: var(--section-pad) 0;
  background: var(--color-primary);
  color: #fff;
}

.contact .section-title { color: #fff; }
.contact .section-sub { color: rgba(255,255,255,.8); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 720px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact__tekst p {
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
}

.contact__beloften {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.contact__beloften li {
  color: rgba(255,255,255,.85);
  padding: .4rem 0;
  font-size: .95rem;
}

.contact__direct {
  margin-top: 1.5rem;
}
.contact__direct p {
  margin-bottom: .25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.contact__link {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.05rem;
}
.contact__link:hover { color: #fff; }

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

@media (max-width: 720px) {
  .contact-form { padding: 1.25rem; }
}

.form-groep {
  margin-bottom: 1.25rem;
}

.form-groep label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: .4rem;
}

.optional {
  font-weight: 400;
  color: var(--color-ink-sub);
}

.form-groep input,
.form-groep textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-ink);
  background: #fff;
  transition: border-color .2s;
}

.form-groep input:focus,
.form-groep textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-groep textarea {
  resize: vertical;
  min-height: 100px;
}

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

.form-privacy {
  font-size: .82rem;
  color: var(--color-ink-sub);
  text-align: center;
  margin-top: .75rem;
  margin-bottom: 0;
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .95rem;
  margin-top: 1rem;
  text-align: center;
}
.form-status--ok {
  background: #E6FFFA;
  color: #00714E;
  border: 1px solid #00C4A7;
}
.form-status--fout {
  background: #FFF5F5;
  color: #C53030;
  border: 1px solid #FC8181;
}

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

.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
}

.footer__naam {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}

.footer__adres {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}

.footer__nav h4,
.footer__juridisch h4 {
  color: #fff;
  font-size: .9rem;
  margin-bottom .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer__nav ul,
.footer__juridisch ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.footer__nav a,
.footer__juridisch a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
  display: inline-block;
  padding: 3px 0;
}
.footer__nav a:hover,
.footer__juridisch a:hover { color: var(--color-accent); }

.footer__sociaal {
  margin-top: .5rem;
}
.footer__sociaal a {
  color: var(--color-accent);
  font-size: .9rem;
}

/* Demo disclaimer */
.demo-disclaimer {
  background: #7B3D00;
  color: #FFE4B5;
  padding: 14px 0;
  font-size: .9rem;
  text-align: center;
}
.demo-disclaimer a { color: #FFD580; }

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__copy {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.eo-credit {
  font-size: .82rem;
  margin: 0;
}
.eo-credit a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
}
.eo-credit a:hover { color: rgba(255,255,255,.7); }

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

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 20px;
  background: rgba(13, 34, 68, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 16px rgba(0,0,0,.2);
}

@media (max-width: 720px) {
  .mobile-sticky-cta { display: block; }

  /* Ruimte onderaan zodat sticky-CTA content niet verbergt */
  body { padding-bottom: 72px; }
}

/* ==========================================================================
   MODALS
   ========================================================================== */

dialog.modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: min(640px, 100% - 32px);
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  max-height: 90vh;
  overflow-y: auto;
}

dialog.modal::backdrop {
  background: rgba(13, 34, 68, .7);
  backdrop-filter: blur(4px);
}

@media (max-width: 720px) {
  dialog.modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
  }
}

.modal h2 {
  background: var(--color-primary);
  color: #fff;
  margin: 0;
  padding: 1.5rem 2rem 1.25rem;
  font-size: 1.25rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 720px) {
  .modal h2 { padding: 1.25rem 1.25rem 1rem; }
}

.modal-body {
  padding: 1.75rem 2rem 2rem;
}

@media (max-width: 720px) {
  .modal-body { padding: 1.25rem; }
}

.modal-body h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}
.modal-body h3:first-of-type { margin-top: 0; }

.modal-body p {
  font-size: .95rem;
  color: var(--color-ink-sub);
  margin-bottom: 1rem;
}

.modal-datum {
  font-size: .85rem;
  margin-top: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.35); }

.voorwaarden-cta {
  margin-top: 1.5rem;
}