/* ═══════════════════════════════════════════
   BRINGLE ON – Stylesheet
   Kleuren: groen, blauw, wit, donkergrijs
═══════════════════════════════════════════ */

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #2e7d32;
  --green-light:  #43a047;
  --green-pale:   #e8f5e9;
  --blue:         #1565c0;
  --blue-light:   #1976d2;
  --blue-pale:    #e3f2fd;
  --sky:          #0d47a1;
  --teal:         #00838f;
  --dark:         #1a1a2e;
  --dark-mid:     #2d2d44;
  --grey:         #4a4a68;
  --grey-light:   #f4f6f9;
  --white:        #ffffff;
  --text:         #1e2030;
  --text-muted:   #6b7080;
  --border:       #e2e8f0;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section base ── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.75); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 14px;
  border-radius: 999px;
}
.section-label.light {
  color: var(--green-pale);
  background: rgba(255,255,255,.15);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.logo-bringle { color: var(--white); transition: color var(--transition); }
.logo-on      { color: var(--green-light); }
.navbar.scrolled .logo-bringle { color: var(--dark); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--grey); }
.nav-links a:hover,
.navbar.scrolled .nav-links a:hover { color: var(--green); }

.nav-links .nav-login {
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.9) !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--transition);
}
.nav-links .nav-login:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white) !important;
}
.navbar.scrolled .nav-links .nav-login {
  color: var(--dark) !important;
  border-color: var(--border);
}
.navbar.scrolled .nav-links .nav-login:hover {
  background: var(--grey-light);
}

.nav-links .nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Layered background: sky → horizon → road */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #0a2463 0%,
    #1565c0 30%,
    #42a5f5 58%,
    #81d4fa 70%,
    #c8e6c9 80%,
    #388e3c 90%,
    #1b5e20 100%
  );
}
.hero-road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(10,30,20,.7) 60%, rgba(5,15,5,.9) 100%);
}

/* Animated floating dots / stars */
.hero-sky::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 200px 200px, 300px 300px;
  background-position: 0 0, 100px 100px;
  opacity: .35;
  animation: starDrift 40s linear infinite;
}

/* Road lines */
.hero-road::before {
  content: '';
  position: absolute;
  bottom: 10%; left: 50%; transform: translateX(-50%);
  width: 4px;
  height: 60%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.7) 0px,
    rgba(255,255,255,.7) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: roadLines 1s linear infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,20,40,.35);
}

@keyframes starDrift {
  from { background-position: 0 0, 100px 100px; }
  to   { background-position: 200px 200px, 300px 300px; }
}
@keyframes roadLines {
  from { background-position: 0 0; }
  to   { background-position: 0 40px; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}
.brand-bringle { color: var(--white); }
.brand-on      { color: #69f0ae; }

.hero-slogan {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 12px;
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,.4);
}

.btn-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.28);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.step-card {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  opacity: .6;
}
.step-icon { width: 64px; height: 64px; margin: 0 auto 20px; }
.step-icon svg { width: 100%; height: 100%; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.step-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }

.step-arrow { color: var(--blue); }
.step-arrow svg { width: 48px; height: 28px; }

.extra-slogan {
  text-align: center;
  margin-top: 56px;
  padding: 28px 40px;
  background: linear-gradient(135deg, var(--green-pale), var(--blue-pale));
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.extra-slogan p {
  font-size: 1.2rem;
  color: var(--dark);
  font-style: italic;
}
.extra-slogan strong { color: var(--green); }

/* ═══════════════════════════════════════════
   VOORDELEN
═══════════════════════════════════════════ */
.voordelen {
  background: linear-gradient(145deg, #0a2463 0%, #1565c0 40%, #0d7377 70%, #1b5e20 100%);
}

.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voordeel-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.voordeel-card:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.voordeel-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.voordeel-icon svg { width: 40px; height: 40px; }
.voordeel-icon.green   { background: rgba(46,125,50,.35); }
.voordeel-icon.blue    { background: rgba(21,101,192,.35); }
.voordeel-icon.teal    { background: rgba(0,131,143,.35); }
.voordeel-icon.emerald { background: rgba(27,94,32,.45); }
.voordeel-icon.indigo  { background: rgba(63,81,181,.35); }
.voordeel-icon.orange  { background: rgba(245,127,23,.3); }

.voordeel-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.voordeel-card p  { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ═══════════════════════════════════════════
   COMMUNITY
═══════════════════════════════════════════ */
.community { background: var(--grey-light); }

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.community-text .section-label { margin-bottom: 12px; }
.community-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.community-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.community-list { display: flex; flex-direction: column; gap: 12px; }
.community-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.community-list li svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Agent cards */
.community-visual { position: relative; }
.community-card-stack { position: relative; padding: 20px 20px 60px 20px; }

.agent-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.agent-card.offset {
  margin-top: -20px;
  margin-left: 40px;
  z-index: 1;
  opacity: .9;
}

.agent-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
}
.agent-info strong { display: block; font-size: .95rem; color: var(--dark); }
.agent-info span   { font-size: .8rem; color: var(--text-muted); }
.stars { font-size: .85rem; color: #f59e0b; margin-top: 2px; }
.stars em { color: var(--text-muted); font-style: normal; font-size: .78rem; }

.community-stat-bubble {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}
.community-stat-bubble strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--green); }
.community-stat-bubble span   { font-size: .78rem; color: var(--text-muted); }
.community-stat-bubble.top-right { top: 0; right: 0; }
.community-stat-bubble.bottom-left { bottom: 0; left: 0; }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.feature-item:hover {
  border-color: var(--blue-light);
  background: var(--blue-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-item h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-item p  { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   VOOR WIE
═══════════════════════════════════════════ */
.voor-wie { background: var(--grey-light); }

.voor-wie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.voor-wie-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.voor-wie-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.voor-wie-icon {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}
.voor-wie-icon svg { width: 100%; height: 100%; }
.voor-wie-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.voor-wie-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.voor-wie-card ul { display: flex; flex-direction: column; gap: 6px; }
.voor-wie-card li {
  font-size: .82rem;
  color: var(--green);
  font-weight: 600;
  padding-left: 14px;
  position: relative;
}
.voor-wie-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-light);
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats-section {
  background: var(--dark);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #69f0ae;
  line-height: 1;
}
.stat-item p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(145deg, #0a2463 0%, #1565c0 50%, #0d7377 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.contact-text p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}
.contact-badge svg { width: 14px; height: 14px; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--grey-light);
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #e53935; }

.form-privacy {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 20px;
}
.success-icon { width: 80px; height: 80px; margin: 0 auto 24px; }
.success-icon svg { width: 100%; height: 100%; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.form-success p  { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
}
.footer-brand .logo { margin-bottom: 4px; }
.footer-slogan {
  font-style: italic;
  color: rgba(255,255,255,.4) !important;
  font-size: .82rem !important;
  margin-top: 8px !important;
}

.footer-links h5 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: #69f0ae; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p     { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-tagline      { font-size: .78rem !important; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }

  .voordelen-grid          { grid-template-columns: repeat(2, 1fr); }
  .features-grid           { grid-template-columns: repeat(2, 1fr); }
  .voor-wie-grid           { grid-template-columns: repeat(2, 1fr); }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .community-inner         { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner           { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid             { grid-template-columns: 1fr 1fr; }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,36,99,.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 800;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--white) !important; }
  .nav-links .nav-cta { padding: 12px 32px; font-size: 1.1rem; }

  .hero-title       { font-size: clamp(3.2rem, 18vw, 6rem); }
  .hero-actions     { flex-direction: column; align-items: center; }
  .btn              { width: 100%; max-width: 340px; justify-content: center; }

  .voordelen-grid   { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .voor-wie-grid    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }

  .contact-form-wrap { padding: 28px 20px; }
  .footer-bottom     { flex-direction: column; text-align: center; }

  .community-card-stack { padding-bottom: 80px; }
}

/* Smooth fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
