:root {
  --navy: #1a2942;
  --navy-soft: #4a5468;
  --cream: #f5efe4;
  --warmwhite: #fbf7f0;
  --red: #c0463a;        /* merkrood: vlakken, knoppen, stip, rood op donker */
  --red-deep: #9c3329;   /* knop-hover */
  --red-text: #9c3329;   /* rood als tekst op lichte achtergrond, leesbaar */
  --line: rgba(26, 41, 66, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 820px; }

/* header */
header.site { padding: 1rem 0; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(245,239,228,0.92); backdrop-filter: blur(8px); z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.nav .logo img { height: 96px; display: block; }
@media (max-width: 800px) { .nav .logo img { height: 60px; } }
nav.menu ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav.menu a { color: var(--navy); text-decoration: none; font-size: 0.93rem; font-weight: 500; }
nav.menu a:hover { color: var(--red); }
nav.menu a.active { color: var(--red-text); }
.btn {
  display: inline-block; padding: 0.85rem 1.6rem; border-radius: 999px;
  font-size: 0.93rem; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: #11203a; }
.btn-ghost { color: var(--navy); border: 1.5px solid var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--navy); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
nav.menu .btn { padding: 0.65rem 1.3rem; }

/* hero */
.hero { padding: 6.5rem 0 5rem; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; font-weight: 600; color: var(--red-text); margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--red-text); }
.hero p.lede { font-size: 1.2rem; color: var(--navy-soft); margin-bottom: 2.5rem; max-width: 36ch; }
.hero .actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card { background: var(--navy); color: var(--cream); border-radius: 20px; padding: 2.5rem; }
.hero-card h3 { font-size: 1.3rem; margin-bottom: 1.25rem; color: var(--cream); }
.hero-card ul { list-style: none; }
.hero-card li { padding: 0.7rem 0 0.7rem 1.8rem; position: relative; font-size: 1rem; color: rgba(245,239,228,0.88); border-bottom: 1px solid rgba(245,239,228,0.12); }
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: 9px; height: 9px; background: var(--red); border-radius: 50%; }

/* subpagina-hero (smaller, single column) */
.subhero { padding: 4.5rem 0 3rem; }
.subhero .breadcrumb { font-size: 0.85rem; color: var(--navy-soft); margin-bottom: 1.5rem; }
.subhero .breadcrumb a { color: var(--navy-soft); text-decoration: none; }
.subhero .breadcrumb a:hover { color: var(--red-text); }
.subhero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1.25rem; max-width: 18ch; }
.subhero h1 .accent { color: var(--red-text); }
.subhero p.lede { font-size: 1.2rem; color: var(--navy-soft); max-width: 60ch; }

/* section base */
section { padding: 6rem 0; }
.section-head { max-width: 680px; margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.section-head p { color: var(--navy-soft); font-size: 1.1rem; }

/* probleem / feature cards */
.probleem { background: var(--warmwhite); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pain { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 2rem; }
.pain h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.pain p { color: var(--navy-soft); font-size: 0.97rem; }

/* methode steps */
.steps { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.step .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--cream); font-weight: 600; font-size: 1.1rem; margin-bottom: 1.25rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.step p { color: var(--navy-soft); }

/* doelgroepen */
.doelgroepen { background: var(--navy); color: var(--cream); }
.doelgroepen .section-head h2 { color: var(--cream); }
.doelgroepen .section-head p { color: rgba(245,239,228,0.7); }
.doelgroepen .eyebrow { color: var(--red); }  /* fel rood leest goed op donker */
.cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: rgba(245,239,228,0.04); border: 1px solid rgba(245,239,228,0.14); border-radius: 18px; padding: 2.5rem; display: flex; flex-direction: column; text-decoration: none; transition: all 0.2s; }
a.card:hover { border-color: rgba(192,70,58,0.55); transform: translateY(-3px); }
.card .tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); font-weight: 600; margin-bottom: 1rem; }
.card h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 0.7rem; }
.card p { color: rgba(245,239,228,0.75); margin-bottom: 1.75rem; flex: 1; }
.card .card-link { color: var(--cream); font-weight: 600; font-size: 0.93rem; text-decoration: none; }
.card .card-link::after { content: " →"; color: var(--red); }
.card.primary { background: rgba(192,70,58,0.12); border-color: rgba(192,70,58,0.4); }

/* quote */
.quote-sec { text-align: center; }
.quote-sec blockquote { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 500; line-height: 1.3; max-width: 880px; margin: 0 auto; letter-spacing: -0.01em; }
.quote-sec blockquote .accent { color: var(--red-text); }
.quote-sec .by { margin-top: 2rem; color: var(--navy-soft); font-size: 0.95rem; }

/* over */
.over { background: var(--warmwhite); border-top: 1px solid var(--line); }
.over-grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 800px){ .over-grid { grid-template-columns: 1fr 1fr; } }
.over p { color: var(--navy-soft); font-size: 1.05rem; margin-bottom: 1.2rem; }
.over .placeholder-img { background: var(--navy); border-radius: 18px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: rgba(245,239,228,0.4); font-size: 0.85rem; letter-spacing: 0.05em; }

/* contact cta */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.25rem; }
.cta p { color: var(--navy-soft); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ===== FORMULIER ===== */
.form-section { padding: 5rem 0 6rem; }
.form-wrap { background: var(--warmwhite); border: 1px solid var(--line); border-radius: 20px; padding: 3rem; max-width: 760px; margin: 0 auto; }
@media (max-width: 600px){ .form-wrap { padding: 1.75rem; } }
.form-wrap > .form-intro { margin-bottom: 2.5rem; }
.form-intro h2 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.form-intro p { color: var(--navy-soft); }
.field { margin-bottom: 1.5rem; }
.field-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 560px){ .field-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--navy); }
.field label .opt { font-weight: 400; color: var(--navy-soft); }
.field .req { color: var(--red-text); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1rem; transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,70,58,0.12);
}
.field .hint { font-size: 0.82rem; color: var(--navy-soft); margin-top: 0.4rem; }
.consent { display: flex; gap: 0.75rem; align-items: flex-start; margin: 1.5rem 0 2rem; font-size: 0.88rem; color: var(--navy-soft); }
.consent input { margin-top: 0.2rem; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--red); }
.consent a { color: var(--red-text); }
.form-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-note { font-size: 0.8rem; color: var(--navy-soft); }
.fieldset-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red-text); font-weight: 600; margin: 2.5rem 0 1.25rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); }
.fieldset-label:first-of-type { margin-top: 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-success { text-align: center; padding: 3.5rem 2rem; }
.form-success .success-mark { width: 64px; height: 64px; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.form-success h2 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--navy-soft); }

/* footer */
footer.site { background: var(--navy); color: rgba(245,239,228,0.7); padding: 4rem 0 2.5rem; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; align-items: flex-start; margin-bottom: 3rem; }
footer .logo img { height: 40px; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { color: var(--cream); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(245,239,228,0.7); text-decoration: none; font-size: 0.92rem; padding: 0.25rem 0; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(245,239,228,0.12); padding-top: 1.5rem; font-size: 0.82rem; color: rgba(245,239,228,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 800px) {
  nav.menu ul { display: none; }
  section { padding: 4rem 0; }
  .hero { padding: 3.5rem 0; }
}
