/* Landingspagina's spoedhulp (website-gehackt / wordpress-gehackt) — los van de SPA-styles */
:root {
  --blauw: #489DCC;
  --blauw-donker: #2b6a9e;
  --blauw-licht: #eaf4fa;
  --groen: #25D366;
  --groen-donker: #1da851;
  --rood: #c0392b;
  --rood-licht: #fdeeec;
  --tekst: #444444;
  --kop: #1a2530;
  --grijs-bg: #f5f8fa;
  --rand: #e5e5e5;
  --schaduw: 0 5px 15px rgba(0, 0, 0, 0.1);
  --font: 'Questrial', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--tekst);
  background: #fff;
}
h1, h2, h3 { color: var(--kop); line-height: 1.25; font-weight: 400; }
/* Questrial heeft geen echt vet gewicht — systeemfont voor strong/cijfers zodat de USP's springen */
strong, .stat-cijfer { font-family: -apple-system, 'Segoe UI', Roboto, sans-serif; font-weight: 700; }
h1 { font-size: 2.4rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--blauw); text-decoration: none; }
a:hover { color: var(--blauw-donker); }
img { max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Minimale header (geen menu = geen afleiding) ---------- */
.lp-top { background: #fff; border-bottom: 1px solid var(--rand); }
.lp-top .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.lp-top img { height: 38px; width: auto; display: block; }
.lp-top-rechts { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; }
.lp-top-247 { color: var(--groen-donker); white-space: nowrap; }
.lp-top-tel {
  color: var(--kop); font-size: 1.05rem; white-space: nowrap;
  border: 1px solid var(--rand); border-radius: 8px; padding: 7px 14px;
}
.lp-top-tel:hover { border-color: var(--blauw); }

/* ---------- Urgentiebalk ---------- */
.urgent-balk {
  background: var(--rood-licht); color: var(--rood);
  text-align: center; font-size: 0.95rem; padding: 9px 16px;
}
.urgent-balk a { color: var(--rood); text-decoration: underline; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--blauw-licht) 0%, #fff 100%); padding: 44px 0 52px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: start; }
.hero h1 span { color: var(--blauw-donker); display: block; }
.hero-sub { font-size: 1.15rem; max-width: 34em; }

.hero-checks { list-style: none; margin: 18px 0 26px; }
.hero-checks li {
  padding-left: 30px; position: relative; margin-bottom: 10px; font-size: 1.05rem;
}
.hero-checks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--groen-donker); font-weight: 700; font-size: 1.15rem;
}

.cta-rij { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 10px; padding: 15px 26px; font-size: 1.12rem; font-family: var(--font);
  cursor: pointer; border: none; transition: background 0.15s ease; text-align: center;
}
.knop-whatsapp { background: var(--groen); color: #fff; }
.knop-whatsapp:hover { background: var(--groen-donker); color: #fff; }
.knop-bel { background: var(--blauw); color: #fff; }
.knop-bel:hover { background: var(--blauw-donker); color: #fff; }
.knop svg { width: 21px; height: 21px; flex-shrink: 0; }
.cta-onder { font-size: 0.95rem; margin-top: 10px; }

/* ---------- Formulierkaart ---------- */
.form-kaart {
  background: #fff; border: 1px solid var(--rand); border-radius: 14px;
  box-shadow: var(--schaduw); padding: 26px 26px 22px;
}
.form-kaart h2 { font-size: 1.35rem; margin-bottom: 4px; }
.form-kaart .form-sub { font-size: 0.98rem; margin-bottom: 16px; }
.form-kaart label { display: block; font-size: 0.95rem; color: var(--kop); margin: 12px 0 4px; }
.form-kaart input {
  width: 100%; font-family: var(--font); font-size: 1.05rem; color: var(--kop);
  border: 1px solid #c9d4dc; border-radius: 8px; padding: 12px 14px; background: #fff;
}
.form-kaart input:focus { outline: 2px solid var(--blauw); border-color: var(--blauw); }
.form-kaart .veld-optioneel { color: #8a97a1; font-size: 0.85rem; }
.form-verstuur {
  width: 100%; margin-top: 18px; background: var(--blauw); color: #fff; font-size: 1.15rem;
}
.form-verstuur:hover { background: var(--blauw-donker); }
.form-verstuur:disabled { background: #9fc4dd; cursor: wait; }
.form-micro { font-size: 0.85rem; color: #75828c; margin: 12px 0 0; }
.form-micro a { color: #75828c; text-decoration: underline; }
.form-fout { display: none; color: var(--rood); font-size: 0.95rem; margin-top: 10px; }
.form-ok { text-align: center; padding: 18px 4px 6px; }
.form-ok .ok-icoon { font-size: 2.4rem; display: block; margin-bottom: 8px; }
.hp-veld { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Secties ---------- */
.sectie { padding: 52px 0; }
.sectie-grijs { background: var(--grijs-bg); }
.sectie-kop { max-width: 46em; margin-bottom: 30px; }

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

.kaart {
  background: #fff; border: 1px solid var(--rand); border-radius: 12px; padding: 22px;
}
.kaart-icoon { font-size: 1.7rem; margin-bottom: 10px; }

.stap { position: relative; padding-left: 0; }
.stap-nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blauw); color: #fff; font-size: 1.2rem; margin-bottom: 12px;
}

.symptomen { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; }
.symptomen li { padding-left: 28px; position: relative; }
.symptomen li::before { content: '⚠'; position: absolute; left: 0; color: var(--rood); }

.prijs-lijst { list-style: none; margin: 14px 0; }
.prijs-lijst li { padding-left: 30px; position: relative; margin-bottom: 9px; }
.prijs-lijst li::before {
  content: '✓'; position: absolute; left: 0; color: var(--groen-donker); font-weight: 700;
}
.prijs-noot {
  background: var(--blauw-licht); border-radius: 10px; padding: 14px 18px; margin-top: 18px;
}

/* ---------- Vertrouwen ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; margin-bottom: 34px; }
.stat-cijfer { font-size: 1.9rem; color: var(--blauw-donker); display: block; }
.quote {
  max-width: 40em; margin: 0 auto; text-align: center; font-size: 1.12rem;
  background: #fff; border: 1px solid var(--rand); border-radius: 14px; padding: 26px 30px;
}
.quote-naam { color: var(--kop); margin-top: 10px; margin-bottom: 0; font-size: 0.98rem; }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff; border: 1px solid var(--rand); border-radius: 10px;
  margin-bottom: 10px; padding: 0 18px;
}
.faq summary {
  cursor: pointer; padding: 15px 0; color: var(--kop); font-size: 1.05rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--blauw); font-size: 1.4rem; flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding-bottom: 15px; margin-bottom: 0; }

/* ---------- Eind-CTA ---------- */
.eind-cta { text-align: center; background: var(--blauw-donker); color: #fff; }
.eind-cta h2 { color: #fff; }
.eind-cta p { color: #dcecf6; max-width: 38em; margin-left: auto; margin-right: auto; }
.eind-cta .cta-rij { justify-content: center; margin-top: 22px; }
.eind-cta .knop-bel { background: #fff; color: var(--blauw-donker); }
.eind-cta .knop-bel:hover { background: var(--blauw-licht); }
.eind-cta .cta-onder { color: #dcecf6; }
.eind-cta .cta-onder a { color: #fff; text-decoration: underline; }

/* ---------- Footer ---------- */
.lp-footer { background: var(--kop); color: #b7c2cb; font-size: 0.9rem; padding: 26px 0; }
.lp-footer .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lp-footer a { color: #b7c2cb; text-decoration: underline; }

/* ---------- Sticky mobiele balk ---------- */
.sticky-balk {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--rand);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
}
.sticky-balk .knop { flex: 1; padding: 13px 10px; font-size: 1.05rem; }

@media (max-width: 900px) {
  h1 { font-size: 1.9rem; }
  .hero { padding: 30px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .symptomen { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .sticky-balk { display: flex; }
  body { padding-bottom: 84px; }
  .lp-top-247 { display: none; }
  .sectie { padding: 40px 0; }
}

@media (max-width: 560px) {
  .lp-top .container { padding: 0 14px; gap: 10px; height: 58px; }
  .lp-top img { height: 28px; }
  .lp-top-tel { font-size: 0.95rem; padding: 6px 10px; }
  .urgent-balk { font-size: 0.85rem; padding: 7px 12px; }
  h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 1.02rem; }
  .cta-rij .knop { flex: 1 1 100%; }
}
