/* ============================================================
   Zorgfuik.nl — Gedeelde stylesheet
   Gebaseerd op v17 landingpage design
   ============================================================ */

:root {
  --ink: #10251f;
  --muted: #52635d;
  --bg: #f7f3ea;
  --paper: #fffaf0;
  --green: #0f9f5f;
  --green-dark: #087145;
  --mint: #dff5e8;
  --amber: #ffb347;
  --orange: #f97316;
  --red: #dc2626;
  --blue: #234c6f;
  --shadow: 0 24px 70px rgba(16,37,31,.16);
  --shadow-sm: 0 10px 28px rgba(16,37,31,.08);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1160px;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(15,159,95,.16), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(255,179,71,.24), transparent 28rem),
    linear-gradient(180deg, #f8f3ea 0%, #fffaf2 45%, #f7f3ea 100%);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ---- Layout helpers ---- */
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  left: 20px; top: 20px; width: auto; height: auto;
  padding: 12px 16px; background: white; border-radius: 12px; z-index: 99;
}

/* ---- Pulse dot ---- */
.pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(15,159,95,.55);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 14px rgba(15,159,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,159,95,0); }
}

/* ============================================================
   HEADER & NAVIGATIE
   ============================================================ */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247,243,234,.88);
  border-bottom: 1px solid rgba(16,37,31,.08);
}
.nav {
  height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; letter-spacing: -.04em;
  text-decoration: none; font-size: 1.22rem;
  flex-shrink: 0;
}
.brand svg { width: 42px; height: 42px; filter: drop-shadow(0 10px 18px rgba(15,159,95,.22)); }

.navlinks {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-weight: 700; font-size: .88rem;
  flex-wrap: nowrap;
}
.navlinks a { text-decoration: none; white-space: nowrap; }
.navlinks a:hover { color: var(--green-dark); }
.navlinks .sep { color: rgba(16,37,31,.2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; border-radius: 12px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(16,37,31,.06); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: .3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(247,243,234,.97);
  backdrop-filter: blur(18px);
  padding: 24px 20px; overflow-y: auto; z-index: 49;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 800; font-size: 1.05rem; color: var(--ink);
  border: 1px solid rgba(16,37,31,.06);
  background: rgba(255,250,240,.7);
  transition: background .18s;
}
.mobile-menu a:hover { background: var(--mint); }
.mobile-menu .menu-emergency {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white; border-color: transparent;
}
.mobile-menu .menu-emergency:hover { opacity: .9; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 14px 22px;
  font-weight: 900; font-size: .95rem; text-decoration: none;
  cursor: pointer; transition: .2s transform, .2s box-shadow, .2s background;
  white-space: nowrap; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white; box-shadow: 0 14px 28px rgba(15,159,95,.28);
}
.btn-primary:hover { box-shadow: 0 18px 36px rgba(15,159,95,.34); color: white; }
.btn-secondary {
  background: white; color: var(--ink);
  border: 1px solid rgba(16,37,31,.12);
  box-shadow: 0 10px 24px rgba(16,37,31,.08);
}
.btn-danger {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white; box-shadow: 0 12px 26px rgba(220,38,38,.28); border: 0;
}
.btn-danger:hover { box-shadow: 0 16px 34px rgba(220,38,38,.34); color: white; }
.btn-outline {
  background: transparent; color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.header-emergency {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white; border: 0; box-shadow: 0 12px 26px rgba(220,38,38,.28);
  padding: 11px 16px; font-size: .88rem;
}
.header-emergency:hover { box-shadow: 0 16px 34px rgba(220,38,38,.34); color: white; }

/* ============================================================
   CARDS & LAYOUT
   ============================================================ */
.card {
  background: rgba(255,250,240,.84);
  border: 1px solid rgba(16,37,31,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card { padding: 24px; }
.info-card h3 { font-size: 1.28rem; margin: 0 0 10px; letter-spacing: -.03em; }
.info-card p { margin: 0; color: var(--muted); }

.icon {
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--mint); margin-bottom: 16px; font-size: 1.35rem;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 64px 0; }
.section-head { max-width: 820px; margin-bottom: 30px; }
.kicker {
  font-weight: 800; color: var(--green-dark); letter-spacing: .02em;
  text-transform: uppercase; font-size: .82rem;
}
h1 {
  margin: 0; font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: .94; letter-spacing: -.07em;
}
h2 {
  margin: 8px 0 12px; font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.04; letter-spacing: -.05em;
}
h3 { letter-spacing: -.03em; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px;
  border: 1px solid rgba(15,159,95,.22); background: rgba(223,245,232,.72);
  color: var(--green-dark); border-radius: 999px;
  font-size: .92rem; font-weight: 900; margin-bottom: 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 86px 0 58px; isolation: isolate; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .82fr; gap: 44px; align-items: center; }
.hero p.lead {
  margin: 22px 0 0; max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.25rem); color: #374942;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.micro { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 720px; }

.hero-card {
  min-height: 420px; padding: 24px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-card::before {
  content: ""; position: absolute; inset: -1px;
  background: radial-gradient(circle at 80% 10%, rgba(255,179,71,.38), transparent 12rem);
  z-index: -1;
}
.hero-visual {
  position: relative; min-height: 340px; display: grid;
  place-items: center; overflow: hidden;
}
.hero-visual::before {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,159,95,.14), rgba(15,159,95,0) 66%);
  animation: softPulse 4.8s ease-in-out infinite;
}
@keyframes softPulse { 50% { transform: scale(1.08); opacity: .72; } }

.funnel-svg {
  position: relative; z-index: 2; width: min(280px, 82%);
  filter: drop-shadow(0 28px 34px rgba(8,113,69,.16));
  animation: floaty 6s ease-in-out infinite;
}
.orbit {
  position: absolute; inset: 54px;
  border: 1px dashed rgba(15,159,95,.28); border-radius: 50%;
  animation: spin 26s linear infinite;
}
.orbit-dot {
  position: absolute; width: 14px; height: 14px;
  border-radius: 999px; background: var(--amber);
  box-shadow: 0 0 0 8px rgba(255,179,71,.14);
}
.orbit-dot:nth-child(1) { left: 50%; top: -7px; }
.orbit-dot:nth-child(2) { right: 16px; top: 26%; }
.orbit-dot:nth-child(3) { right: 22%; bottom: 4px; }
.orbit-dot:nth-child(4) { left: 12%; bottom: 18%; }
.orbit-dot:nth-child(5) { left: 4px; top: 34%; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.orbit { transform: none; animation: orbitspin 26s linear infinite; }
@keyframes orbitspin { to { transform: rotate(360deg); } }

.signal-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px; margin-top: 16px; position: relative; z-index: 3;
}
.signal {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px;
  border-radius: 16px; background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,37,31,.09); font-weight: 800; color: #33463f;
  box-shadow: 0 10px 24px rgba(16,37,31,.06);
  animation: signalIn .7s ease both;
}
.signal:nth-child(2) { animation-delay: .08s; }
.signal:nth-child(3) { animation-delay: .16s; }
.signal:nth-child(4) { animation-delay: .24s; }
@keyframes signalIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floaty { 50% { transform: translateY(-12px) rotate(-1deg); } }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap { padding: 0 0 32px; overflow: hidden; }
.ticker { display: flex; gap: 14px; width: max-content; animation: ticker 34s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: #10251f; color: #fffaf0;
  font-weight: 900; white-space: nowrap;
  box-shadow: 0 12px 28px rgba(16,37,31,.13);
}
.ticker-item:nth-child(even) {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.ticker-item span { color: var(--amber); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   NOODHULP BLOK
   ============================================================ */
.alert-block {
  background: #fff; border: 2px solid rgba(220,38,38,.18);
  border-radius: var(--radius); padding: 28px;
  box-shadow: 0 18px 46px rgba(220,38,38,.08);
}
.alert-block h2, .alert-block h3 { color: #991b1b; margin: 0 0 10px; }
.alert-block p { color: #5a3636; margin: 0 0 18px; }
.alert-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   DONKER BLOK / DISCLAIMER
   ============================================================ */
.dark-block {
  background: #10251f; color: #f7f3ea;
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.dark-block p { color: rgba(247,243,234,.78); }
.dark-block strong { color: white; }
.dark-block h2, .dark-block h3 { color: white; }

/* ============================================================
   GROEN BLOK (CTA)
   ============================================================ */
.green-block {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white; border-radius: var(--radius); padding: 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 28px 80px rgba(8,113,69,.28);
}
.green-block::after {
  content: ""; position: absolute; width: 360px; height: 360px;
  border-radius: 50%; background: rgba(255,255,255,.09);
  right: -130px; bottom: -170px;
}
.green-block h2, .green-block h3 { color: white; }
.green-block p { color: rgba(255,255,255,.88); }
.green-block .kicker { color: rgba(223,245,232,.9); }

/* ============================================================
   PETITIE KAART
   ============================================================ */
.petition-card {
  position: relative; padding: 32px; overflow: hidden;
  border-radius: var(--radius); border: 1px solid rgba(16,37,31,.1);
  box-shadow: var(--shadow);
}
.petition-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,179,71,.22), rgba(223,245,232,.8));
  z-index: -1;
}

/* ============================================================
   CHECKS GRID
   ============================================================ */
.checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 20px; }
.check {
  display: flex; gap: 10px; background: rgba(255,255,255,.7);
  border: 1px solid rgba(16,37,31,.08); border-radius: 18px; padding: 14px;
  font-weight: 800; position: relative; min-height: 64px; overflow: hidden;
  cursor: default; transition: .24s ease; isolation: isolate;
}
.check::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #10251f, var(--green-dark));
  opacity: 0; transition: .24s ease; z-index: -1;
}
.check .front, .check .back {
  display: flex; align-items: center; gap: 12px;
  min-height: 34px; transition: .24s ease;
}
.check .front .emoji {
  width: 32px; height: 32px; flex: 0 0 32px;
  display: inline-grid; place-items: center; border-radius: 12px;
  background: var(--mint); font-size: 1.05rem;
}
.check .back {
  position: absolute; inset: 0; padding: 14px 16px; color: white;
  opacity: 0; transform: translateY(12px); font-size: .92rem;
  line-height: 1.35; font-weight: 800;
}
.check:hover, .check:focus-within {
  transform: translateY(-3px); box-shadow: 0 20px 44px rgba(16,37,31,.18);
  border-color: rgba(16,37,31,.28);
}
.check:hover::before, .check:focus-within::before { opacity: 1; }
.check:hover .front, .check:focus-within .front { opacity: 0; transform: translateY(-12px); }
.check:hover .back, .check:focus-within .back { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .check { display: block; min-height: auto; }
  .check .front { display: flex; gap: 10px; }
  .check .back {
    position: static; opacity: 1; transform: none; color: var(--muted);
    padding: 7px 0 0 30px; font-weight: 700;
  }
  .check:hover::before { opacity: 0; }
  .check:hover .front { opacity: 1; transform: none; }
}

/* ============================================================
   QUOTE WALL
   ============================================================ */
.quote-wall { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.quote {
  padding: 22px; background: white; border: 1px solid rgba(16,37,31,.09);
  border-radius: 22px; box-shadow: 0 14px 34px rgba(16,37,31,.08); position: relative;
}
.quote::before {
  content: "\201C"; font-size: 4rem; line-height: 0; color: rgba(15,159,95,.25);
  font-weight: 900; position: absolute; top: 30px; right: 18px;
}
.quote p { margin: 0; font-weight: 800; color: #273b34; }

/* ============================================================
   SEO-LIJST (herkenbare situaties)
   ============================================================ */
.seo-list {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
  margin-top: 22px; padding: 0; list-style: none;
}
.seo-list li {
  position: relative; min-height: 72px; background: white;
  border: 1px solid rgba(16,37,31,.09); border-radius: 20px;
  padding: 16px 18px; font-weight: 900;
  box-shadow: 0 10px 26px rgba(16,37,31,.06);
  overflow: hidden; cursor: default; transition: .24s ease; isolation: isolate;
}
.seo-list li::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  opacity: 0; transition: .24s ease; z-index: -1;
}
.seo-list li .front, .seo-list li .back {
  display: flex; align-items: center; min-height: 38px; transition: .24s ease;
}
.seo-list li .front {
  gap: 10px; color: var(--ink);
}
.seo-list li .front::before {
  content: attr(data-icon); width: 34px; height: 34px;
  display: inline-grid; place-items: center; border-radius: 12px;
  background: var(--mint); flex: 0 0 auto; transition: .24s ease;
}
.seo-list li .back {
  position: absolute; inset: 0; padding: 16px 18px; color: white;
  opacity: 0; transform: translateY(12px); font-size: .92rem;
  line-height: 1.35; font-weight: 800;
}
.seo-list li:hover, .seo-list li:focus-within {
  transform: translateY(-3px); box-shadow: 0 20px 44px rgba(8,113,69,.18);
  border-color: rgba(15,159,95,.35);
}
.seo-list li:hover::before, .seo-list li:focus-within::before { opacity: 1; }
.seo-list li:hover .front, .seo-list li:focus-within .front { opacity: 0; transform: translateY(-12px); }
.seo-list li:hover .back, .seo-list li:focus-within .back { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .seo-list li { min-height: auto; }
  .seo-list li .back {
    position: static; opacity: 1; transform: none; color: var(--muted);
    padding: 6px 0 0 44px; font-weight: 700;
  }
  .seo-list li:hover::before { opacity: 0; }
  .seo-list li:hover .front { opacity: 1; transform: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 14px; }
details {
  background: white; border: 1px solid rgba(16,37,31,.1);
  border-radius: 20px; padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(16,37,31,.06);
}
summary {
  cursor: pointer; font-weight: 900; letter-spacing: -.02em; font-size: 1.05rem;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: " ＋"; color: var(--green); }
details[open] summary::after { content: " −"; }
details p { color: var(--muted); margin: 12px 0 0; }

/* ============================================================
   PILOT MAP
   ============================================================ */
.pilot-map {
  min-height: 440px; position: relative;
  background: radial-gradient(circle at center, rgba(15,159,95,.17), transparent 12rem),
    linear-gradient(180deg, white, #fffaf0);
  border-radius: 32px; border: 1px solid rgba(16,37,31,.09);
  overflow: hidden; padding: 24px; box-shadow: var(--shadow);
}
.pilot-map::after {
  content: ""; position: absolute; inset: 24px; border-radius: 28px;
  background: radial-gradient(circle at 50% 50%, rgba(15,159,95,.16), transparent 14rem),
    radial-gradient(circle at 20% 70%, rgba(255,179,71,.15), transparent 10rem);
  pointer-events: none; z-index: 0;
}
.pilot-map > * { position: relative; }
.node {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 999px; background: white;
  border: 1px solid rgba(16,37,31,.1); box-shadow: 0 10px 26px rgba(16,37,31,.1);
  font-weight: 900; font-size: .88rem; animation: bob 5s ease-in-out infinite;
  z-index: 3; white-space: nowrap;
}
.node:nth-child(3) { animation-delay: .3s; }
.node:nth-child(4) { animation-delay: .8s; }
.node:nth-child(5) { animation-delay: 1.1s; }
.node:nth-child(6) { animation-delay: 1.5s; }
.node:nth-child(7) { animation-delay: 1.9s; }
.node.small { font-size: .82rem; padding: 8px 10px; }
.node.warn { background: #10251f; color: #fffaf0; border-color: rgba(16,37,31,.18); }
.node.soft { background: rgba(255,250,240,.94); }
@keyframes bob { 50% { transform: translateY(-8px); } }
.center-node {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 188px; height: 188px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: grid; place-items: center; text-align: center;
  color: white; font-weight: 900; letter-spacing: -.03em;
  padding: 22px; box-shadow: 0 22px 54px rgba(15,159,95,.32);
}
.ring {
  position: absolute; left: 50%; top: 50%; width: 310px; height: 310px;
  border: 1px dashed rgba(15,159,95,.4); border-radius: 50%;
  transform: translate(-50%,-50%); animation: ringspin 28s linear infinite;
}
.ring.ring-2 {
  width: 420px; height: 420px; border-color: rgba(255,179,71,.38);
  animation-duration: 38s; animation-direction: reverse;
}
@keyframes ringspin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ============================================================
   FORMULIEREN
   ============================================================ */
.form-page-header {
  padding: 48px 0 24px;
}
.form-page-header h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
.form-wrap {
  background: rgba(255,250,240,.84); border: 1px solid rgba(16,37,31,.1);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 36px; max-width: 860px; margin: 0 auto 48px;
}

.privacy-notice {
  background: rgba(223,245,232,.6); border: 1px solid rgba(15,159,95,.2);
  border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 28px;
  font-size: .92rem; color: #2a4a38;
}
.privacy-notice strong { color: var(--green-dark); }

.form-section { margin-bottom: 32px; }
.form-section-title {
  font-size: 1.05rem; font-weight: 900; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: .04em; font-size: .8rem;
  margin: 0 0 16px; padding-bottom: 8px;
  border-bottom: 2px solid rgba(15,159,95,.12);
}

.field { margin-bottom: 20px; }
.field label {
  display: block; font-weight: 800; font-size: .94rem; margin-bottom: 6px; color: var(--ink);
}
.field label .req { color: var(--red); margin-left: 2px; }
.field label .opt { color: var(--muted); font-weight: 600; font-size: .84rem; margin-left: 6px; }

input[type="text"], input[type="email"], input[type="number"],
select, textarea {
  display: block; width: 100%;
  background: white; border: 1.5px solid rgba(16,37,31,.15);
  border-radius: 12px; padding: 12px 14px;
  font-family: inherit; font-size: .97rem; color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus,
select:focus, textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15,159,95,.14);
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2352635d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea { min-height: 120px; resize: vertical; }

.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-group.columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }

.check-item, .radio-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  border: 1px solid rgba(16,37,31,.1); background: rgba(255,255,255,.7);
  font-size: .92rem; transition: background .15s, border-color .15s;
}
.check-item:hover, .radio-item:hover { background: var(--mint); border-color: rgba(15,159,95,.25); }
.check-item input, .radio-item input { margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-group.inline { flex-direction: row; flex-wrap: wrap; gap: 10px; }

.consent-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(15,159,95,.2); background: rgba(223,245,232,.4);
  margin-bottom: 10px; cursor: pointer;
  font-size: .94rem; font-weight: 700; transition: background .15s;
}
.consent-item:hover { background: rgba(223,245,232,.7); }
.consent-item input { margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }

.field-hint { font-size: .84rem; color: var(--muted); margin-top: 5px; }

/* Honeypot */
.hp-field { display: none !important; visibility: hidden !important; position: absolute !important; left: -9999px !important; }

/* Captcha */
.captcha-field {
  background: rgba(255,247,235,.8); border: 1px solid rgba(255,179,71,.3);
  border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 24px;
}
.captcha-field label { color: #7a5020; }
.captcha-field input { max-width: 100px; }

/* Error & success */
.form-error {
  background: #fff5f5; border: 1.5px solid rgba(220,38,38,.22);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px;
  color: #991b1b; font-weight: 700;
}
.form-error ul { margin: 6px 0 0; padding-left: 18px; }
.form-success {
  background: rgba(223,245,232,.8); border: 1.5px solid rgba(15,159,95,.25);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px;
  color: var(--green-dark); font-weight: 700;
}

/* Acuut-waarschuwing */
.acute-warning {
  display: none; background: #fff5f5; border: 2px solid rgba(220,38,38,.3);
  border-radius: var(--radius-sm); padding: 18px; margin: 12px 0;
}
.acute-warning.show { display: block; }
.acute-warning p { margin: 0 0 12px; color: #991b1b; font-weight: 800; }
.acute-warning .alert-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.submit-row { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.submit-row .privacy-note { font-size: .82rem; color: var(--muted); }

/* ============================================================
   BEDANKT / FOUT PAGINA'S
   ============================================================ */
.status-page {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
}
.status-box {
  background: rgba(255,250,240,.9); border: 1px solid rgba(16,37,31,.1);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 48px; text-align: center; max-width: 620px; width: 100%;
}
.status-icon { font-size: 3.5rem; margin-bottom: 20px; }
.status-box h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.status-box p { color: var(--muted); margin: 10px 0 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 46px 0; color: #62716c;
  border-top: 1px solid rgba(16,37,31,.08);
  background: rgba(247,243,234,.5);
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 20px;
  align-items: flex-start; flex-wrap: wrap;
}
.footer-brand { font-weight: 900; color: var(--ink); font-size: 1.05rem; }
.footer-tagline { font-size: .88rem; margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 16px; font-size: .9rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--green-dark); }
.footer-disclaimer {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(16,37,31,.07);
  font-size: .82rem; color: #8a9e96; text-align: center;
}

/* ============================================================
   OVER-PAGINA
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.prose h3 { font-size: 1.2rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--green-dark); text-decoration: underline; }
.prose ul { padding-left: 20px; }
.prose li { margin: 6px 0; }

/* ============================================================
   REVEAL ANIMATIE
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 930px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .quote-wall, .checks, .seo-list { grid-template-columns: 1fr; }
  .navlinks { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 48px; }
  .form-wrap { padding: 22px; }
  .checkbox-group.columns { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; gap: 20px; }
  .pilot-map { min-height: 560px; }
  .node { position: relative; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; margin: 6px 4px; display: inline-flex; }
  .center-node { position: relative; left: auto; top: auto; transform: none; margin: 20px auto; }
  .ring { display: none; }
  .pilot-map { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .alert-actions { flex-direction: column; }
  .alert-actions .btn { width: 100%; justify-content: center; }
  .submit-row { flex-direction: column; }
  .submit-row .btn { width: 100%; justify-content: center; }
}
