/* ============================================================
   TerugBlik — Design System
   Inspiratie: felyx.com · swapfiets.nl · apple.com/nl
   Mobile-first | 8pt grid | Inter font | #2d4d31 primair
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Kleuren — brand */
  --color-primary:       #2d4d31;
  --color-primary-dark:  #1f3624;
  --color-primary-light: #3d6642;
  --color-accent:        #74C69D;
  --color-accent-dark:   #5aaf86;

  /* Kleuren — neutraal */
  --color-bg:            #ffffff;
  --color-bg-soft:       #f7f9f7;
  --color-bg-green:      #f0faf2;
  --color-text:          #111111;
  --color-text-muted:    #556b58;
  --color-text-light:    rgba(255, 255, 255, 0.85);
  --color-text-dim:      rgba(255, 255, 255, 0.55);
  --color-border:        #e4ebe5;
  --color-white:         #ffffff;

  /* Spacing — 8pt grid */
  --sp-1:   8px;
  --sp-2:   16px;
  --sp-3:   24px;
  --sp-4:   32px;
  --sp-5:   40px;
  --sp-6:   48px;
  --sp-8:   64px;
  --sp-10:  80px;
  --sp-12:  96px;
  --sp-15:  120px;
  --sp-20:  160px;

  /* Typografie */
  --fs-display: clamp(40px, 6.5vw, 72px);
  --fs-h1:      clamp(36px, 5.5vw, 64px);
  --fs-h2:      clamp(28px, 4vw, 52px);
  --fs-h3:      clamp(18px, 2.5vw, 22px);
  --fs-body:    17px;
  --fs-small:   14px;
  --fs-caption: 12px;
  --lh-display: 1.06;
  --lh-body:    1.7;
  --ls-tight:   -0.02em;
  --ls-tighter: -0.03em;

  /* Lay-out */
  --container-max: 1200px;
  --container-narrow: 760px;
  --nav-height:    72px;
  --topbar-height: 40px;

  /* Effecten */
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.12);
  --shadow-green:0 12px 40px rgba(45,77,49,0.25);

  --transition:  0.2s ease;
  --transition-slow: 0.35s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button{ font-family: inherit; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: var(--lh-display);
  letter-spacing: var(--ls-tight);
}
h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: var(--ls-tight);
}
h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
h4 { font-size: 1rem; font-weight: 700; }

p {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  max-width: 640px;
}
.lead {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   CONTAINER & SECTIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}
.container--narrow {
  max-width: var(--container-narrow);
}

section { padding: var(--sp-15) 0; }

.section--wit   { background: var(--color-bg); }
.section--zacht { background: var(--color-bg-soft); }
.section--mint  { background: var(--color-bg-green); }
.section--groen { background: var(--color-primary); color: var(--color-white); }

.section-label {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background: var(--color-bg-green);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-2);
}
.section--groen .section-label,
.section--dark  .section-label {
  background: rgba(116,198,157,0.15);
  color: var(--color-accent);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}
.section-header h2 { margin-bottom: var(--sp-2); }
.section-header p  { margin: 0 auto; }

/* ============================================================
   KNOPPEN
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 16px 36px;
  min-height: 52px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* Primair — donkergroen */
.btn--primair {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--primair:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-green);
}

/* Accent — licht mintgroen (hoofd-CTA op donkere achtergrond) */
.btn--accent {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 12px 40px rgba(116,198,157,0.4);
}

/* Wit — op donkere secties */
.btn--wit {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--wit:hover {
  background: var(--color-bg-green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Licht = alias voor wit (backwards compat) */
.btn--licht {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--licht:hover {
  background: var(--color-bg-green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Outline — op donkere achtergrond */
.btn--outline-wit {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-wit:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* Outline — op lichte achtergrond */
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Maten */
.btn--groot { padding: 18px 44px; font-size: 1.0625rem; min-height: 58px; }
.btn--klein { padding: 10px 22px; font-size: 0.875rem; min-height: 42px; }

/* ============================================================
   SITE HEADER (topbar + nav samen, fixed)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

/* Altijd solid */
.site-header {
  background: var(--color-primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

/* Topbar verbergen na scrollen */
.topbar {
  background: rgba(20, 40, 24, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 0 var(--sp-3);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-caption);
  font-weight: 500;
  overflow: hidden;
  transition: height var(--transition-slow), opacity var(--transition-slow);
}
.site-header.scrolled .topbar {
  height: 0;
  opacity: 0;
}
.topbar a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Nav */
.nav {
  height: var(--nav-height);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 62px;
  width: auto;
  display: block;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__links a:hover,
.nav__links a.actief {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  font-weight: 600;
}

/* CTA in nav */
.nav__cta { display: flex; align-items: center; gap: var(--sp-1); }
.nav__cta .btn--primair {
  background: var(--color-white);
  color: var(--color-primary);
}
.nav__cta .btn--primair:hover {
  background: var(--color-bg-green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius);
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobiel menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 199;
  flex-direction: column;
  padding: 112px var(--sp-3) var(--sp-5);
  gap: var(--sp-1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 14px var(--sp-2);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
}
.nav__mobile a:hover { background: rgba(255,255,255,0.1); color: var(--color-white); }
.nav__mobile .btn { margin-top: var(--sp-2); justify-content: center; }

/* ============================================================
   HERO (video achtergrond, full-screen)
   ============================================================ */
.hero {
  position: relative;
  min-height: 80svh;
  min-height: 80vh; /* fallback */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8, 22, 12, 0.82) 0%,
    rgba(25, 55, 30, 0.60) 55%,
    rgba(45, 77, 49, 0.38) 100%
  );
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--topbar-height) + var(--nav-height) + var(--sp-4)) var(--sp-3) var(--sp-8);
}

.hero__inner {
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(116,198,157,0.18);
  border: 1px solid rgba(116,198,157,0.35);
  color: var(--color-accent);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.hero h1 {
  font-size: var(--fs-display);
  font-weight: 900;
  letter-spacing: var(--ls-tighter);
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.hero__accent { color: var(--color-accent); }

.hero .lead {
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--sp-5);
  max-width: 560px;
}

.hero__btns {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.hero__stats {
  display: flex;
  gap: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero__stat-num   { font-size: 2.25rem; font-weight: 900; color: var(--color-white); line-height: 1; letter-spacing: var(--ls-tighter); }
.hero__stat-label { font-size: var(--fs-small); color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

/* ============================================================
   PAGE HERO (subpagina's)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-primary-light) 100%);
  padding-top: calc(var(--topbar-height) + var(--nav-height) + var(--sp-6));
  padding-bottom: var(--sp-6);
  text-align: center;
  color: var(--color-white);
}
.page-hero .section-label {
  background: rgba(116,198,157,0.15);
  color: var(--color-accent);
}
.page-hero h1 { color: var(--color-white); margin-bottom: var(--sp-2); }
.page-hero p  { color: rgba(255,255,255,0.68); max-width: 540px; margin: 0 auto; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-2);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb-sep { opacity: 0.35; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.feature-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  color: var(--color-primary-light);
}
.feature-card__icon svg { width: 22px; height: 22px; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin-bottom: 10px; color: var(--color-text); font-size: 1.0625rem; }
.feature-card p  { font-size: 0.9375rem; max-width: none; }

/* ============================================================
   PROCESS STAPPEN (homepage)
   ============================================================ */
.stappen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}
.stappen__grid::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 1px;
  background: var(--color-border);
}
.stap {
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
}
.stap__nummer {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 900;
  margin: 0 auto var(--sp-3);
  position: relative;
  z-index: 1;
}
.stap h3 { margin-bottom: 10px; color: var(--color-text); }

/* ============================================================
   PRIJZEN
   ============================================================ */
.prijzen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  align-items: start;
}

.prijs-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.prijs-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.prijs-card--uitgelicht {
  box-shadow: 0 0 0 2px var(--color-primary), var(--shadow);
  transform: scale(1.03);
}
.prijs-card--uitgelicht:hover { transform: scale(1.03) translateY(-2px); }

.prijs-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.prijs-card__naam { font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 8px; }
.prijs-card__prijs { font-size: 3rem; font-weight: 900; color: var(--color-text); line-height: 1; margin-bottom: 4px; letter-spacing: var(--ls-tighter); }
.prijs-card__prijs span { font-size: 1rem; font-weight: 500; color: var(--color-text-muted); }
.prijs-card__sub { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: var(--sp-4); }
.prijs-card__features { margin-bottom: var(--sp-4); display: flex; flex-direction: column; gap: 11px; }
.prijs-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--color-text); }
.prijs-card__feature-icon {
  width: 18px;
  height: 18px;
  background: var(--color-bg-green);
  color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-primary);
  padding: var(--sp-15) 0;
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: var(--sp-2); }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto var(--sp-5); }
.cta-banner .btn-group { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PROCESS STAPPEN (hoe werkt het pagina)
   ============================================================ */
.process__list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.process-stap {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--color-border);
}
.process-stap:last-child { border-bottom: none; }
.process-stap__links { display: flex; flex-direction: column; align-items: center; }
.process-stap__num {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 900;
  flex-shrink: 0;
}
.process-stap__lijn { width: 1px; flex: 1; background: var(--color-border); margin-top: var(--sp-2); }
.process-stap:last-child .process-stap__lijn { display: none; }
.process-stap__content { padding-top: 10px; }
.process-stap__content h3 { color: var(--color-text); margin-bottom: 10px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item__vraag {
  width: 100%;
  background: none;
  border: none;
  padding: var(--sp-3);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  transition: background var(--transition);
  font-family: inherit;
  min-height: 64px;
}
.faq-item__vraag:hover { background: var(--color-bg-soft); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  background: var(--color-bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--color-primary); color: var(--color-white); }
.faq-item__antwoord { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--transition); padding: 0 var(--sp-3); }
.faq-item.open .faq-item__antwoord { max-height: 300px; padding: 0 var(--sp-3) var(--sp-3); }
.faq-item__antwoord p { margin: 0; font-size: 0.9375rem; max-width: none; }
.faq-item__vraag:focus-visible { outline: 3px solid var(--color-accent); outline-offset: -3px; border-radius: var(--radius); }

/* ============================================================
   OVER ONS — MISSIE, WAARDEN, TEAM
   ============================================================ */
.missie-blok {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.missie-blok__tekst h2 { margin-bottom: var(--sp-3); }
.missie-blok__tekst p  { margin-bottom: var(--sp-2); max-width: none; }
.missie-blok__stat {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.missie-stat__num   { font-size: 2.5rem; font-weight: 900; line-height: 1; letter-spacing: var(--ls-tight); }
.missie-stat__label { font-size: var(--fs-small); color: rgba(255,255,255,0.55); margin-top: 6px; font-weight: 500; }

.waarden__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.waarde-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.waarde-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.waarde-card__icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
}
.waarde-card__icon svg { width: 20px; height: 20px; stroke-linecap: round; stroke-linejoin: round; }
.waarde-card h3 { margin-bottom: 8px; color: var(--color-text); }
.waarde-card p  { max-width: none; }

.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.team-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.team-card__avatar {
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin: 0 auto var(--sp-2);
  color: rgba(255,255,255,0.85);
  font-weight: 800;
}
.team-card h4 { color: var(--color-text); margin-bottom: 4px; }
.team-card__rol { font-size: var(--fs-small); color: var(--color-primary-light); font-weight: 600; margin-bottom: var(--sp-2); }
.team-card p    { font-size: 0.875rem; max-width: none; font-style: italic; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--sp-8); align-items: start; }
.contact__item { display: flex; align-items: flex-start; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.contact__item-icon {
  width: 42px;
  height: 42px;
  background: var(--color-bg-green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
}
.contact__item-icon svg { width: 18px; height: 18px; stroke-linecap: round; stroke-linejoin: round; }
.contact__item-label  { font-size: var(--fs-caption); font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact__item-waarde { font-size: 0.9375rem; color: var(--color-text); font-weight: 500; }

.contact__form {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow);
}
.contact__form h3 { margin-bottom: var(--sp-4); color: var(--color-text); }

.form-rij   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
.form-veld  { margin-bottom: var(--sp-3); }
.form-veld label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--color-text); margin-bottom: 8px; }
.form-veld input,
.form-veld select,
.form-veld textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-veld input:focus,
.form-veld select:focus,
.form-veld textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,77,49,0.08);
}
.form-veld textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111a12;
  color: rgba(255,255,255,0.45);
  padding: var(--sp-5) 0 var(--sp-3);
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-5); margin-bottom: var(--sp-4); }
.footer__merk { max-width: 260px; }
.footer__logo { display: flex; align-items: center; margin-bottom: var(--sp-2); }
.footer__logo-img { height: 28px; width: auto; opacity: 0.85; }
.footer__merk p { font-size: 0.8rem; line-height: 1.65; }
.footer__col h5 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.3); margin-bottom: var(--sp-2); }
.footer__col ul { display: flex; flex-direction: column; gap: 2px; }
.footer__col a  { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color var(--transition); min-height: 36px; display: inline-flex; align-items: center; }
.footer__col a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__bottom-links { display: flex; gap: var(--sp-3); }
.footer__bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.55); }

/* ============================================================
   ANIMATIES (fade-in via IntersectionObserver)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.zichtbaar { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.07s; }
.fade-in-delay-2 { transition-delay: 0.14s; }
.fade-in-delay-3 { transition-delay: 0.21s; }
.fade-in-delay-4 { transition-delay: 0.28s; }
.fade-in-delay-5 { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ============================================================
   TOEGANKELIJKHEID
   ============================================================ */
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
::selection { background: var(--color-accent); color: var(--color-primary); }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .team__grid   { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px (mobile-first breekpunt)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --sp-15: 80px;
    --sp-10: 56px;
    --sp-8:  48px;
  }

  section { padding: 80px 0; }

  /* Nav — hamburger */
  .nav__links              { display: none; }
  .nav__cta .btn--primair  { display: none; }
  .nav__hamburger          { display: flex; }

  /* Hero */
  .hero__btns { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: var(--sp-4); }
  .hero__stats > * { flex: 1; min-width: 80px; }

  /* Grids */
  .features__grid               { grid-template-columns: 1fr; }
  .stappen__grid                { grid-template-columns: 1fr; }
  .stappen__grid::before        { display: none; }
  .prijzen__grid                { grid-template-columns: 1fr; }
  .prijs-card--uitgelicht       { transform: none; }
  .prijs-card--uitgelicht:hover { transform: translateY(-2px); }
  .waarden__grid                { grid-template-columns: 1fr; }
  .missie-blok                  { grid-template-columns: 1fr; gap: var(--sp-5); }
  .missie-blok__stat            { grid-template-columns: 1fr 1fr; }
  .contact__grid                { grid-template-columns: 1fr; gap: var(--sp-5); }
  .contact__form                { padding: var(--sp-4) var(--sp-3); }
  .form-rij                     { grid-template-columns: 1fr; }
  .footer__grid                 { grid-template-columns: 1fr; gap: var(--sp-4); }
  .footer__bottom               { flex-direction: column; text-align: center; }
  .team__grid                   { grid-template-columns: 1fr 1fr; }
  .cta-banner .btn-group        { flex-direction: column; align-items: center; }
}

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

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
  z-index: 1000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   HERO — STAGGERED ENTRANCE ANIMATIES
   ============================================================ */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__badge    { animation: heroSlideUp 0.65s 0.05s ease both; }
.hero__inner h1 { animation: heroSlideUp 0.7s  0.15s ease both; }
.hero__inner .lead { animation: heroSlideUp 0.7s 0.25s ease both; }
.hero__btns     { animation: heroSlideUp 0.7s  0.35s ease both; }
.hero__trust    { animation: heroSlideUp 0.7s  0.42s ease both; }
.hero__stats    { animation: heroSlideUp 0.7s  0.45s ease both; }

/* ============================================================
   HERO — TRUST STRIP
   ============================================================ */
.hero__trust {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}
.hero__trust-item svg {
  width: 15px; height: 15px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   HERO — BADGE SHIMMER
   ============================================================ */
@keyframes badgeShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__badge {
  background: linear-gradient(
    135deg,
    rgba(116,198,157,0.18) 0%,
    rgba(116,198,157,0.38) 50%,
    rgba(116,198,157,0.18) 100%
  ) !important;
  background-size: 200% 200% !important;
  animation: heroSlideUp 0.65s 0.05s ease both, badgeShimmer 3.5s 0.7s ease infinite;
}

/* ============================================================
   BUTTON — SHINE SWEEP ON HOVER
   ============================================================ */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::after { left: 135%; }

/* ============================================================
   CARDS — HOVER LIFT (upgrade)
   ============================================================ */
.feature-card:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px) !important;
}
.prijs-card:not(.prijs-card--uitgelicht):hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px) !important;
}
.waarde-card:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px) !important;
}
.team-card:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px) !important;
}

/* ============================================================
   TEAM — AVATAR KLEUREN PER PERSOON
   ============================================================ */
.team-card:nth-child(1) .team-card__avatar { background: var(--color-primary); }
.team-card:nth-child(2) .team-card__avatar { background: var(--color-accent); color: var(--color-primary); }
.team-card:nth-child(3) .team-card__avatar { background: var(--color-primary-light); }
.team-card:nth-child(4) .team-card__avatar { background: var(--color-accent-dark); color: var(--color-primary); }
.team-card__avatar {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover .team-card__avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(45,77,49,0.2);
}

/* ============================================================
   PROCESS STEP — CONNECTOR LIJN ANIMATIE
   ============================================================ */
.process-stap__lijn {
  position: relative;
  overflow: hidden;
}
.process-stap__lijn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--color-accent);
  transition: height 0.9s ease;
}
.process-stap.zichtbaar .process-stap__lijn::after { height: 100%; }

/* ============================================================
   FORM — PROGRESS BAR
   ============================================================ */
.form-progress {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin-bottom: var(--sp-4);
  overflow: hidden;
}
.form-progress__bar {
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.35s ease;
  width: 0%;
}

/* ============================================================
   FORM — INLINE VALIDATIE
   ============================================================ */
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #b91c1c;
  margin-top: 5px;
  font-weight: 500;
}
.field-success {
  display: block;
  font-size: 0.75rem;
  color: var(--color-primary-light);
  margin-top: 5px;
  font-weight: 500;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"]  { border-color: #e53e3e !important; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }
input[aria-invalid="false"],
textarea[aria-invalid="false"] { border-color: var(--color-accent) !important; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: var(--color-primary);
  z-index: 190;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta-mobile.visible { transform: translateY(0); }
.sticky-cta-mobile .btn    { width: 100%; justify-content: center; }
@media (max-width: 767px) {
  .sticky-cta-mobile { display: block; }
  /* Ruimte onderaan zodat content niet achter balk verdwijnt */
  body.sticky-cta-active { padding-bottom: 80px; }
}
