/* Asbestattest-wegwijzer — stijlblad */
:root {
  --kleur-primair: #1a5276;
  --kleur-accent:  #2980b9;
  --kleur-ok:      #27ae60;
  --kleur-warn:    #e67e22;
  --kleur-tekst:   #2c3e50;
  --kleur-licht:   #f4f6f8;
  --kleur-rand:    #d5dbdb;
  --lettertype:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-breedte:   1100px;
  --afstand:       1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--lettertype);
  color: var(--kleur-tekst);
  line-height: 1.65;
  background: #fff;
}

/* ── Navigatie ── */
nav {
  background: var(--kleur-primair);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: .75rem var(--afstand);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
}
.nav-merk { color: #fff; font-size: 1.15rem; font-weight: 700; text-decoration: none; }
.nav-merk span { color: #aed6f1; }
.nav-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.nav-links a {
  color: #d6eaf8; text-decoration: none; font-size: .95rem; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.actief { color: #fff; text-decoration: underline; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--kleur-primair) 0%, #154360 100%);
  color: #fff; padding: 4rem var(--afstand) 3.5rem;
  text-align: center;
}
.hero h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: .75rem; }
.hero p  { font-size: 1.1rem; opacity: .9; max-width: 640px; margin: 0 auto 2rem; }
.hero-badges {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.badge {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 2rem; padding: .35rem .9rem; font-size: .9rem;
}
.btn {
  display: inline-block; text-decoration: none; border-radius: .375rem;
  padding: .75rem 1.75rem; font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none; transition: filter .15s;
}
.btn:hover { filter: brightness(1.1); }
.btn-primair  { background: var(--kleur-accent); color: #fff; }
.btn-wit      { background: #fff; color: var(--kleur-primair); }
.btn-klein    { padding: .45rem 1rem; font-size: .9rem; }
.hero-btns    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Container ── */
.container { max-width: var(--max-breedte); margin: 0 auto; padding: 0 var(--afstand); }

/* ── Secties ── */
section { padding: 3rem 0; }
section:nth-child(even) { background: var(--kleur-licht); }
h2 { font-size: 1.7rem; color: var(--kleur-primair); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; color: var(--kleur-primair); margin: 1.5rem 0 .5rem; }
p  { margin-bottom: .9rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: .9rem; }
li { margin-bottom: .35rem; }
a  { color: var(--kleur-accent); }

/* ── Kaarten-rij ── */
.kaarten { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.kaart {
  background: #fff; border: 1px solid var(--kleur-rand);
  border-radius: .5rem; padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.kaart-icon { font-size: 2rem; margin-bottom: .5rem; }
.kaart h3   { margin: 0 0 .4rem; font-size: 1rem; }
.kaart p    { margin: 0; font-size: .93rem; color: #555; }

/* ── Stap-rij ── */
.stappen { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.stap { display: flex; gap: .75rem; }
.stap-nr {
  flex-shrink: 0; width: 2.2rem; height: 2.2rem;
  background: var(--kleur-accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.stap-body h3 { margin: 0 0 .25rem; font-size: 1rem; }
.stap-body p  { margin: 0; font-size: .9rem; color: #555; }

/* ── Prijs-tabel ── */
.prijs-uitleg {
  background: #eaf4fb; border-left: 4px solid var(--kleur-accent);
  border-radius: 0 .375rem .375rem 0; padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.vergelijker-tabel { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.vergelijker-tabel th {
  background: var(--kleur-primair); color: #fff;
  padding: .7rem 1rem; text-align: left; font-size: .92rem;
}
.vergelijker-tabel td { padding: .65rem 1rem; border-bottom: 1px solid var(--kleur-rand); font-size: .93rem; }
.vergelijker-tabel tr:hover td { background: #eaf4fb; }
.tabel-container { overflow-x: auto; border: 1px solid var(--kleur-rand); border-radius: .5rem; }
.label-groen { color: var(--kleur-ok); font-weight: 600; }
.label-oranje { color: var(--kleur-warn); font-weight: 600; }

/* ── Factoren-tabel ── */
.factoren { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1rem; }
.factor { background: #fff; border: 1px solid var(--kleur-rand); border-radius: .375rem; padding: 1rem 1.15rem; }
.factor strong { display: block; margin-bottom: .25rem; color: var(--kleur-primair); }
.factor span { font-size: .9rem; color: #555; }

/* ── Deadline-tijdlijn ── */
.tijdlijn { list-style: none; padding: 0; margin-top: 1.25rem; border-left: 3px solid var(--kleur-accent); }
.tijdlijn li { padding: .5rem 0 .5rem 1.5rem; position: relative; }
.tijdlijn li::before {
  content: ''; position: absolute; left: -7px; top: .9rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--kleur-accent); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--kleur-accent);
}
.tijdlijn .jaar { font-weight: 700; color: var(--kleur-primair); }

/* ── FAQ accordion ── */
.faq-item { border-bottom: 1px solid var(--kleur-rand); }
.faq-vraag {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; cursor: pointer; font-weight: 600; gap: .5rem;
  background: none; border: none; width: 100%; text-align: left;
  color: var(--kleur-tekst); font-family: inherit; font-size: .97rem;
}
.faq-vraag:hover { color: var(--kleur-primair); }
.faq-pijl { flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-pijl { transform: rotate(180deg); }
.faq-antwoord { display: none; padding: 0 0 1rem; color: #444; font-size: .94rem; }
.faq-item.open .faq-antwoord { display: block; }

/* ── Formulier ── */
.form-kaart {
  background: #fff; border: 1px solid var(--kleur-rand);
  border-radius: .5rem; padding: 2rem; max-width: 560px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-rij { grid-template-columns: 1fr; } }
.form-groep { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .9rem; }
.form-groep label { font-size: .9rem; font-weight: 600; }
.form-groep input, .form-groep select, .form-groep textarea {
  border: 1px solid var(--kleur-rand); border-radius: .375rem;
  padding: .6rem .75rem; font-size: 1rem; font-family: inherit;
  transition: border-color .15s;
}
.form-groep input:focus, .form-groep select:focus, .form-groep textarea:focus {
  outline: none; border-color: var(--kleur-accent);
  box-shadow: 0 0 0 3px rgba(41,128,185,.15);
}
.form-voetnoot { font-size: .82rem; color: #666; margin-top: .5rem; }

/* ── GDPR consent-blok (offerte/lead-flow) ── */
.consent-blok {
  border: 1px solid var(--kleur-rand); border-radius: .375rem;
  padding: .9rem 1rem 1rem; margin: .5rem 0 1rem; background: var(--kleur-licht);
}
.consent-blok legend { font-size: .85rem; font-weight: 700; padding: 0 .4rem; color: var(--kleur-primair); }
.consent-rij { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; cursor: pointer; }
.consent-rij input[type=checkbox] { margin-top: .25rem; width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.consent-info { font-size: .8rem; color: #555; margin-top: .75rem; line-height: 1.5; }

/* ── Voordelen-rij ── */
.voordelen { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.voordeel { display: flex; gap: .6rem; align-items: flex-start; }
.voordeel-check { color: var(--kleur-ok); font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }

/* ── Mededeling ── */
.mededeling {
  background: #fef9e7; border: 1px solid #f9e79f; border-radius: .375rem;
  padding: .9rem 1.1rem; font-size: .9rem; margin-bottom: 1rem;
}
.mededeling strong { color: var(--kleur-warn); }

/* ── CTA-band ── */
.cta-band {
  background: linear-gradient(135deg, var(--kleur-primair), #154360);
  color: #fff; text-align: center; padding: 3rem var(--afstand);
}
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p  { opacity: .88; max-width: 540px; margin: 0 auto 1.75rem; }

/* ── Footer ── */
footer {
  background: #1a252f; color: #aab7b8;
  padding: 2.5rem var(--afstand) 1.5rem;
}
.footer-inner {
  max-width: var(--max-breedte); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid #2e4057;
}
.footer-kolom h4 { color: #d5dbdb; margin-bottom: .75rem; font-size: .95rem; }
.footer-kolom a  { display: block; color: #aab7b8; text-decoration: none; margin-bottom: .4rem; font-size: .88rem; }
.footer-kolom a:hover { color: #fff; }
.footer-onderkant {
  max-width: var(--max-breedte); margin: 1rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem; font-size: .82rem;
}
.disclaimer { font-size: .8rem; color: #7f8c8d; margin-top: .35rem; }

@media (max-width: 640px) {
  .hero { padding: 2.5rem var(--afstand) 2rem; }
  h2 { font-size: 1.35rem; }
  .form-kaart { padding: 1.25rem; }
}
