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

:root {
  --kleur-primair: #1a1a1a;
  --kleur-rand: #e5e5e0;
  --kleur-achter: #f4f4f1;
  --kleur-wit: #ffffff;
  --kleur-tekst: #1a1a1a;
  --kleur-subtekst: #6b6b66;
  --radius: 10px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--kleur-tekst);
  background: var(--kleur-wit);
}

/* ─── Container ───────────────────────────────────────────────────────────── */

.m-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Header ──────────────────────────────────────────────────────────────── */

.m-header {
  background: var(--kleur-primair);
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.m-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.m-logo {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.m-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */

.m-hero {
  background: var(--kleur-primair);
  color: #fff;
  padding: 64px 0 72px;
  text-align: center;
}

.m-hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 16px;
}

.m-hero-titel {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.m-hero-subtitel {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #ccc;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* ─── Knoppen ─────────────────────────────────────────────────────────────── */

.m-btn-primair {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #fff;
  color: var(--kleur-tekst);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  min-height: 48px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.m-btn-primair:hover { opacity: 0.9; }

.m-hero .m-btn-primair { background: #fff; color: var(--kleur-tekst); }
.m-sectie .m-btn-primair { background: var(--kleur-tekst); color: #fff; }

.m-btn-secundair {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.15s;
}
.m-btn-secundair:hover { background: rgba(255,255,255,0.2); }

.btn-aanmelden {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #fff;
  color: var(--kleur-tekst);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  min-height: 36px;
}

/* ─── Secties ─────────────────────────────────────────────────────────────── */

.m-sectie {
  padding: 64px 0;
}

.m-sectie-grijs {
  background: var(--kleur-achter);
}

.m-sectie-titel {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

/* ─── Stappen ─────────────────────────────────────────────────────────────── */

.m-stappen {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.m-stap {
  background: var(--kleur-achter);
  border-radius: var(--radius);
  padding: 24px;
}

.m-stap-nr {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kleur-primair);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.m-stap h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.m-stap p {
  font-size: 14px;
  color: var(--kleur-subtekst);
  line-height: 1.5;
}

/* ─── Voor wie ─────────────────────────────────────────────────────────────── */

.m-voor-wie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.m-voor-wie-kaart {
  background: var(--kleur-wit);
  border: 1px solid var(--kleur-rand);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.m-voor-wie-icoon {
  font-size: 36px;
  margin-bottom: 12px;
}

.m-voor-wie-kaart h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.m-voor-wie-kaart p {
  font-size: 14px;
  color: var(--kleur-subtekst);
  line-height: 1.5;
}

/* ─── Pilot-blok ──────────────────────────────────────────────────────────── */

.m-pilot-blok {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--kleur-achter);
  border-radius: var(--radius);
  padding: 28px;
  flex-wrap: wrap;
}

.m-pilot-tekst {
  flex: 1;
  min-width: 240px;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Formulier ───────────────────────────────────────────────────────────── */

.m-form-groep { margin-bottom: 16px; }

.m-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.m-invoer, .m-select, .m-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--kleur-rand);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--kleur-tekst);
  background: var(--kleur-wit);
  transition: border-color 0.15s;
}
.m-invoer:focus, .m-select:focus, .m-textarea:focus {
  outline: none;
  border-color: var(--kleur-primair);
}
.m-textarea { resize: vertical; min-height: 80px; }

/* ─── Proza (privacypagina) ───────────────────────────────────────────────── */

.m-proza h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.m-proza p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.m-proza ul {
  margin: 0 0 12px 20px;
  line-height: 1.8;
}

.m-proza a { color: var(--kleur-tekst); }

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.m-footer {
  background: var(--kleur-primair);
  color: #fff;
  padding: 24px 0;
}

.m-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── Responsief ──────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .m-hero { padding: 48px 0 56px; }
  .m-sectie { padding: 48px 0; }
  .m-pilot-blok { flex-direction: column; }
  .m-stappen, .m-voor-wie { grid-template-columns: 1fr; }
}
