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

:root {
  --groen: #006633;
  --groen-mid: #4c9470;
  --groen-licht: #c9dfd4;
  --geel: #fff162;
  --geel-licht: #fffbd0;
  --geel-mid: #fff591;
  --ink: #1a2e1f;
  --wit: #ffffff;
  --muted: #4a6352;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--wit);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--groen);
  padding: 8px 3rem 8px 1rem;
  min-height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,102,51,0.25);
  overflow: hidden;
}

.nav-brand {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; text-decoration: none;
}

.nav-logo-wrap {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.16);
  flex-shrink: 0;
}
.nav-logo-wrap img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}

.nav-logo-svg { width: 68px; height: 68px; }

.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-brand-name {
  font-size: 22px; font-weight: 900; color: var(--geel);
  letter-spacing: 0.04em;
}
.nav-brand-sub {
  font-size: 10px; font-weight: 600; color: var(--groen-licht);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 700; color: var(--groen-licht);
  text-decoration: none; padding: 6px 14px; border-radius: 100px;
  transition: background 0.15s, color 0.15s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,241,98,0.15); color: var(--geel);
}
.nav-cta {
  background: var(--geel) !important;
  color: var(--groen) !important;
  font-weight: 800 !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--geel-mid) !important; }

/* Hamburger button (alleen zichtbaar op mobile) */
.nav-toggle {
  display: none;
  background: transparent; border: none;
  width: 44px; height: 44px; padding: 0;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 8px;
}
.nav-toggle:hover { background: rgba(255,241,98,0.10); }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--geel); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }


/* ── Layout-overrides voor mobile (nav blijft altijd staan) ── */
@media (max-width: 768px) {
  #nieuws-home-kaart {
    order: -1;
    margin: 0 1rem;
  }
  #nieuws-home-kaart .info-card {
    border-radius: 16px;
    border-left: 5px solid var(--groen) !important;
  }
}


/* ── NIEUWS ── */
#nieuws-balk {
  display: none;
  background: var(--groen);
  color: var(--geel);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  padding: 16px 2rem;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 190;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0,102,51,0.32);
  border-top: 1px solid rgba(255,241,98,0.18);
  border-bottom: 3px solid var(--geel);
  cursor: default;
}
#nieuws-balk.zichtbaar { display: block; }
#nieuws-balk .nieuws-emoji {
  display: inline-block; transform: translateY(1px); margin-right: 8px;
  font-size: 18px;
}

#nieuws-home {
  display: none;
  background: var(--geel-licht);
  border-left: 4px solid var(--geel);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin: 0 0 2rem 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
#nieuws-home.zichtbaar { display: block; }

body.heeft-nieuws { padding-top: 58px; }

@media (max-width: 900px) {
  #nieuws-balk {
    font-size: 13px;
    padding: 10px 1rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
  #nieuws-balk .nieuws-emoji {
    font-size: 14px; margin-right: 5px;
  }
  body.heeft-nieuws { padding-top: 70px; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--groen); color: var(--geel);
  padding: 14px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 800;
  text-decoration: none; cursor: pointer;
  transition: transform 0.15s, background 0.2s;
  border: none; width: fit-content;
}
.btn:hover { background: #004d26; transform: translateY(-2px); }
.btn-geel {
  background: var(--geel); color: var(--groen);
}
.btn-geel:hover { background: var(--geel-mid); background-color: var(--geel-mid); }
.btn-outline {
  background: transparent; color: var(--groen);
  border: 2px solid var(--groen);
}
.btn-outline:hover { background: var(--groen); color: var(--geel); }
.btn-arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--groen-mid); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--geel);
}

h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  color: var(--groen); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}

/* ── STRIP ── */
.strip {
  background: var(--groen);
  padding: 13px 3rem;
  display: flex; gap: 0; flex-wrap: wrap;
  overflow: hidden;
}
.strip-item {
  font-size: 12px; font-weight: 800; color: var(--geel-licht);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0 1.5rem; position: relative;
  display: flex; align-items: center; gap: 8px;
}
.strip-item::before {
  content: ''; width: 6px; height: 6px; background: var(--geel);
  border-radius: 50%; display: inline-block; flex-shrink: 0;
}
.strip-item + .strip-item::after {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 14px; width: 1px; background: rgba(255,255,255,0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 4rem 3rem 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-size: 28px; font-weight: 900; color: var(--geel); margin-bottom: 0.25rem; }
.footer-brand-tag { font-size: 13px; color: var(--groen-licht); font-weight: 600; margin-bottom: 1rem; }
.footer-slogan {
  font-size: 13px; color: var(--groen-mid); font-style: italic; font-weight: 700;
}
.footer-col h4 {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--groen-mid); margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  font-size: 14px; color: #7aaa8c; text-decoration: none;
  line-height: 2; display: block; font-weight: 600;
}
.footer-col a:hover { color: var(--geel); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #3a5040; font-weight: 600;
}

/* ═══════════════════════════════
   HOME PAGE
═══════════════════════════════ */

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  background: var(--geel);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative; overflow: hidden;
}

.hero-spaken {
  position: absolute;
  right: -80px; bottom: -100px;
  opacity: 0.10; pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3rem 5rem 3.5rem;
  position: relative; z-index: 2;
}

.hero-slogan {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--groen);
  margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 12px;
}
.hero-slogan::before {
  content: ''; display: block; width: 32px; height: 2.5px; background: var(--groen);
}

.hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900; line-height: 0.98;
  color: var(--groen);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 18px; color: var(--groen-mid);
  max-width: 420px; line-height: 1.65; margin-bottom: 2.5rem;
  font-weight: 600;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 3.5rem 3rem 2rem;
  position: relative; z-index: 2;
}

.info-card {
  background: var(--wit);
  border: 1.5px solid var(--groen-licht);
  border-radius: 20px; padding: 1.5rem 1.75rem;
  width: 100%; max-width: 380px;
  box-shadow: 0 12px 32px rgba(0,102,51,0.12);
}
.info-card-title {
  font-size: 11px; font-weight: 800; color: var(--groen-mid);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 8px;
}
.info-card-title::before {
  content: ''; width: 16px; height: 2px; background: var(--groen); display: block;
}
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--groen-licht);
  gap: 1rem;
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-size: 12px; font-weight: 700; color: var(--groen-mid);
  white-space: nowrap; flex-shrink: 0;
}
.info-val { font-weight: 800; color: var(--ink); text-align: right; font-size: 14px; }
.badge-open {
  background: var(--groen); color: var(--geel);
  font-size: 10px; font-weight: 900; padding: 4px 12px;
  border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase;
}
.erken-logos {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;
}
.erken-badge {
  background: var(--geel-licht); color: var(--groen);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 6px; border: 1px solid var(--groen-licht);
}

/* USPs */
.usps {
  padding: 6rem 3.5rem;
  background: var(--wit);
}
.usps-intro {
  max-width: 560px; margin-bottom: 3.5rem;
}
.usps-intro p { font-size: 17px; color: var(--muted); font-weight: 600; line-height: 1.7; }

.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--groen-licht); border-radius: 24px; overflow: hidden;
}
.usp-card {
  padding: 2.5rem 2rem; background: var(--wit);
  border-right: 2px solid var(--groen-licht);
  transition: background 0.2s;
}
.usp-card:last-child { border-right: none; }
.usp-card:hover { background: var(--geel-licht); }

.usp-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--geel); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.5rem;
}
.usp-title {
  font-size: 20px; font-weight: 900; color: var(--groen);
  margin-bottom: 0.75rem;
}
.usp-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 600; }

/* PAKKETTEN */
.pakketten {
  padding: 6rem 3.5rem;
  background: var(--geel-licht);
  text-align: center;
}
.pakketten p { margin: 0 auto; }
.pakket-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem; text-align: left;
  max-width: 1000px; margin-left: auto; margin-right: auto;
}
.pakket-card {
  background: var(--wit);
  border-radius: 20px; padding: 2.25rem;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.pakket-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--groen-licht);
  transition: background 0.2s;
}
.pakket-card:hover {
  border-color: var(--groen-licht);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,102,51,0.12);
}
.pakket-card:hover::before { background: var(--groen); }

.pakket-s {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 900; margin-bottom: 1.5rem;
}
.s-simple { background: var(--groen); color: var(--wit); }
.s-safe { background: var(--groen-mid); color: var(--wit); }
.s-strong { background: var(--geel); color: var(--groen); }

.pakket-naam { font-size: 24px; font-weight: 900; color: var(--groen); margin-bottom: 0.25rem; }
.pakket-type { font-size: 13px; font-weight: 700; color: var(--groen-mid); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pakket-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 600; }

/* OVER : home snippet */
.over-snippet {
  padding: 6rem 3.5rem;
  background: var(--groen);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.over-snippet h2 { color: var(--geel); }
.over-snippet p { font-size: 17px; color: var(--groen-licht); line-height: 1.75; font-weight: 600; margin-bottom: 1.5rem; }
.over-snippet .section-label { color: rgba(201,223,212,0.7); }
.over-snippet .section-label::before { background: var(--geel); }

.over-visual-box {
  background: rgba(255,255,255,0.06);
  border-radius: 24px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,241,98,0.15);
}
.over-visual-wheel { opacity: 0.25; }

.over-stat-pill {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--geel); border-radius: 14px; padding: 0.75rem 1.5rem;
}
.stat-num { font-size: 40px; font-weight: 900; color: var(--groen); line-height: 1; }
.stat-label { font-size: 12px; font-weight: 700; color: var(--groen-mid); }

.over-keurmerk {
  margin-top: 1.5rem; display: flex; align-items: center; gap: 10px;
  background: rgba(255,241,98,0.1); border: 1px solid rgba(255,241,98,0.2);
  border-radius: 12px; padding: 0.75rem 1.25rem;
}
.keurmerk-icon {
  width: 32px; height: 32px; background: var(--geel); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--groen); flex-shrink: 0;
}
.keurmerk-text { font-size: 13px; color: var(--groen-licht); font-weight: 600; }

/* CTA BANNER */
.cta-banner {
  background: var(--geel);
  padding: 5rem 3.5rem;
  text-align: center;
}
.cta-banner h2 { color: var(--groen); margin-bottom: 1rem; }
.cta-banner p { font-size: 17px; color: var(--groen-mid); max-width: 480px; margin: 0 auto 2.5rem; font-weight: 600; }

/* ═══════════════════════════════
   AFSPRAAK PAGE
═══════════════════════════════ */
.page-hero {
  background: var(--groen);
  padding: 9rem 3.5rem 5rem;
  color: var(--wit);
}
.page-hero h1 { color: var(--geel); font-size: clamp(40px, 5vw, 64px); font-weight: 900; margin-bottom: 1rem; }
.page-hero p { color: var(--groen-licht); font-size: 18px; font-weight: 600; max-width: 540px; line-height: 1.65; }

.afspraak-content {
  padding: 5rem 3.5rem;
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start;
}
.afspraak-info h3 { font-size: 22px; font-weight: 900; color: var(--groen); margin-bottom: 1.25rem; }
.afspraak-info p { font-size: 16px; color: var(--muted); font-weight: 600; line-height: 1.7; margin-bottom: 1.5rem; }

.rules-box {
  background: var(--geel-licht);
  border-radius: 20px; padding: 2rem;
  border-left: 4px solid var(--groen); margin-bottom: 2rem;
}
.rules-box h4 { font-size: 14px; font-weight: 900; color: var(--groen); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.rule-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 0.75rem; font-size: 14px; font-weight: 600; color: var(--muted);
}
.rule-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}
.rule-nee { background: #fce8e8; color: #c0392b; }
.rule-ja { background: #e8f5ee; color: var(--groen); }

.sluitingen-box {
  background: transparent;
  border: 1px solid var(--groen-licht);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  margin-top: 1rem;
}
.sluitingen-box h4 {
  font-size: 11px; font-weight: 800; color: var(--groen-mid);
  margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.sluitingen-item {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.75rem; padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(0,102,51,0.10);
  flex-wrap: wrap;
}
.sluitingen-item:last-child { border-bottom: none; }
.sluitingen-datum {
  font-size: 13px; font-weight: 700; color: var(--groen);
}
.sluitingen-reden {
  font-size: 12px; font-weight: 600; color: var(--groen-mid);
}

.contact-card {
  background: var(--groen);
  border-radius: 20px; padding: 2rem;
  position: sticky; top: 90px;
}
.contact-card h4 { font-size: 14px; font-weight: 900; color: var(--geel); margin-bottom: 1.5rem; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-item {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.contact-icon {
  width: 36px; height: 36px; background: rgba(255,241,98,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-info { font-size: 13px; color: var(--groen-licht); font-weight: 600; }
.contact-info strong { display: block; font-size: 15px; color: var(--wit); font-weight: 800; }

.planner-placeholder {
  background: var(--geel-licht);
  border-radius: 20px; padding: 3rem 2rem; text-align: center;
  border: 2px dashed var(--groen-licht); margin-top: 2rem;
}
.planner-placeholder p { font-size: 14px; color: var(--groen-mid); font-weight: 600; }
.planner-placeholder strong { display: block; font-size: 18px; font-weight: 900; color: var(--groen); margin-bottom: 0.5rem; }

.planner-frame {
  background: var(--wit);
  border: 1px solid var(--groen-licht);
  border-radius: 16px;
  padding: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,102,51,0.08);
  position: relative;
}
.planner-frame iframe {
  display: block;
  border: none;
  border-radius: 8px;
  background: var(--wit);
}

/* ═══════════════════════════════
   TEAM PAGE
═══════════════════════════════ */
.team-content {
  padding: 5rem 3.5rem;
}
.team-intro { max-width: 600px; margin-bottom: 3rem; }
.team-intro p { font-size: 17px; color: var(--muted); font-weight: 600; line-height: 1.7; }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.team-card {
  background: var(--wit);
  border-radius: 16px;
  border: 1px solid var(--groen-licht);
  padding: 1.5rem 1.5rem 1.25rem;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: var(--groen-mid); }

.team-header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.team-name {
  font-size: 18px; font-weight: 900; color: var(--groen);
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 11px; font-weight: 700; color: var(--groen-mid);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.team-skills { list-style: none; }
.team-skills li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--muted); font-weight: 600;
  margin-bottom: 0.4rem; line-height: 1.5;
}
.team-skills li::before {
  content: ''; width: 5px; height: 5px; background: var(--geel);
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}
.team-skills li:last-child { margin-bottom: 0; }

/* ═══════════════════════════════
   OVER SPAAK PAGE
═══════════════════════════════ */
.over-content {
  padding: 5rem 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.over-main p {
  font-size: 16px; color: var(--muted); font-weight: 600;
  line-height: 1.8; margin-bottom: 1.25rem;
}
.over-main strong { color: var(--groen); }

.waarden-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.waarde-card {
  background: var(--geel-licht); border-radius: 16px; padding: 1.5rem;
  border-top: 3px solid var(--groen);
}
.waarde-icon {
  width: 40px; height: 40px; background: var(--groen);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.75rem;
}
.waarde-title { font-size: 16px; font-weight: 900; color: var(--groen); margin-bottom: 0.4rem; }
.waarde-desc { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6; }

.over-side { position: sticky; top: 90px; }

.keurmerk-card {
  background: var(--groen); border-radius: 20px; padding: 2rem;
  margin-bottom: 1.5rem;
}
.keurmerk-card h4 { font-size: 14px; font-weight: 900; color: var(--geel); margin-bottom: 1rem; }
.keurmerk-card p { font-size: 14px; color: var(--groen-licht); font-weight: 600; line-height: 1.6; }
.keurmerk-stars { font-size: 22px; color: var(--geel); margin-bottom: 0.5rem; letter-spacing: 2px; }

.since-card {
  background: var(--geel); border-radius: 20px; padding: 2rem; text-align: center;
}
.since-year { font-size: 64px; font-weight: 900; color: var(--groen); line-height: 1; }
.since-label { font-size: 14px; font-weight: 700; color: var(--groen-mid); margin-top: 0.25rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { padding: 1.5rem 1.5rem 2.5rem; }
  .hero-left { padding: 3.5rem 1.5rem 1.5rem; text-align: center; }
  .hero-slogan { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }

  nav {
    padding: 8px 0.75rem 8px 0.5rem;
    min-height: 64px;
  }
  .nav-logo-wrap {
    width: 44px !important; height: 44px !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .nav-logo-wrap img {
    width: 44px !important; height: 44px !important;
  }
  .nav-logo-svg { width: 36px; height: 36px; }
  .nav-brand-sub { display: none; }
  .nav-brand-name { font-size: 18px; line-height: 1.2; }
  .nav-brand-text { line-height: 1.2; }
  .nav-brand { gap: 10px; align-items: center; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0.15rem;
    background: linear-gradient(180deg, var(--groen) 0%, #00582c 100%);
    padding: 0.6rem 1rem 0.85rem;
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    border-bottom: 3px solid var(--geel);
    z-index: 199;

    /* Verborgen toestand : volledig onzichtbaar én niet klikbaar */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0.22s;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0s linear 0s;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 14px;
    font-size: 15px;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease, padding 0.15s ease;
  }
  .nav-links a::after {
    content: '›';
    font-size: 18px; font-weight: 800;
    opacity: 0; transform: translateX(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .nav-links a:active,
  .nav-links a:hover {
    background: rgba(255,241,98,0.14);
    color: var(--geel);
    padding-left: 18px;
  }
  .nav-links a:hover::after,
  .nav-links a:active::after {
    opacity: 0.85; transform: translateX(0);
  }
  .nav-links a.active {
    background: rgba(255,241,98,0.18);
    color: var(--geel);
  }

  #status-badge-nav {
    display: block;
    padding: 8px 14px 4px;
    border-top: 1px solid rgba(255,241,98,0.18);
    margin-top: 0.4rem;
    font-size: 13px !important;
    letter-spacing: 0.02em;
  }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.4rem;
    text-align: center;
    padding: 12px 14px !important;
    font-size: 15px !important;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(255,241,98,0.25);
    justify-content: center;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { padding-left: 14px !important; }

  .strip { padding: 12px 1.5rem; }

  .usps { padding: 4rem 1.5rem; text-align: center; }
  .usps-intro { text-align: center; margin: 0 auto 3rem; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-card { border-right: none; border-bottom: 2px solid var(--groen-licht); text-align: left; }
  .usp-card:last-child { border-bottom: none; }

  .pakketten { padding: 4rem 1.5rem; text-align: center; }
  .pakket-grid { grid-template-columns: 1fr; max-width: 100%; margin-left: auto; margin-right: auto; text-align: left; }

  .over-snippet { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; text-align: center; }
  .over-snippet p { text-align: left; }
  .over-keurmerk { text-align: left; }
  .over-visual-box { max-width: 320px; margin: 0 auto; }

  .cta-banner { padding: 4rem 1.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  footer { padding: 2.5rem 1.5rem 0; }
  .footer-bottom { padding: 1rem 0; flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-bottom span { justify-content: center; }

  .page-hero { padding: 8rem 1.5rem 3rem; text-align: center; }
  .page-hero p { margin: 0 auto; }

  .afspraak-content { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .contact-card { position: static; }

  .team-content { padding: 3rem 1.5rem; text-align: center; }
  .team-intro { text-align: center; }
  .team-card { text-align: left; }
  .team-grid { grid-template-columns: 1fr; }

  .over-content { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .over-main { text-align: left; }
  .waarden-grid { grid-template-columns: 1fr; }
  .over-side { position: static; }

  .av-artikel { text-align: left; }

  #reviews-widget { padding: 0 1.5rem; }
}

.av-artikel {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--groen-licht);
}
.av-artikel:last-of-type { border-bottom: none; }
.av-artikel h3 {
  font-size: 18px; font-weight: 900; color: var(--groen);
  margin-bottom: 0.75rem;
}
.av-artikel p {
  font-size: 15px; color: var(--muted); font-weight: 600;
  line-height: 1.75; margin-bottom: 0.75rem;
}
.av-artikel ul {
  margin: 0.5rem 0 0.75rem 0; padding-left: 0; list-style: none;
}
.av-artikel ul li {
  font-size: 15px; color: var(--muted); font-weight: 600;
  line-height: 1.7; padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
}
.av-artikel ul li::before {
  content: ''; position: absolute; left: 0; top: 0.85rem;
  width: 6px; height: 6px; background: var(--geel);
  border-radius: 50%; border: 1.5px solid var(--groen);
}
