/* =========================================================
   Delta Tech — style.css
   Palet afgeleid van het logo (rood/zwart/wit)
   Display: Sora · Body: Inter · Labels: IBM Plex Mono
   ========================================================= */

:root {
  /* Kleuren */
  --red: #e4231d;            /* primaire kleur (logo-rood, licht verdiept voor contrast) */
  --red-bright: #f40b0b;     /* accentkleur — exact logo-rood, spaarzaam gebruikt */
  --red-dark: #b81611;       /* hover / donker accent */
  --red-tint: #fdeceb;       /* zachte rode achtergrondtint */
  --ink: #16161a;            /* secundaire kleur (logo-zwart) — koppen, footer */
  --text: #26262b;           /* tekstkleur */
  --muted: #5c5d64;          /* ondersteunende tekst */
  --bg: #ffffff;             /* achtergrondkleur */
  --bg-soft: #f6f6f7;        /* zachte sectie-achtergrond */
  --line: #e8e8ea;
  --wa: #1fa855;
  --focus: #1a6dd8;

  --font-display: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px rgba(22, 22, 26, 0.07);
  --shadow-lift: 0 18px 44px rgba(22, 22, 26, 0.12);
  --container: 1160px;
  --header-h: 78px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red); }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.section { padding: 92px 0; }
.section-soft { background: var(--bg-soft); }
.section-tight { padding: 64px 0; }

.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* Signatuur: "leidingtracé" — eyebrow met aansluitpunt */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red-bright);
  border-radius: 2px; position: relative;
}
.eyebrow::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-bright); margin-left: -8px;
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(228, 35, 29, 0.28); }
.btn-primary:hover { background: var(--red-dark); color: #fff; box-shadow: 0 14px 30px rgba(228, 35, 29, 0.34); }

.btn-outline { background: transparent; color: var(--ink); border-color: #cfd0d4; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); color: #fff; }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { color: var(--red-dark); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #178a45; color: #fff; }

.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(22,22,26,0.06); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 168px; height: auto; }

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 500;
  color: var(--ink); text-decoration: none; padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--red); }
.main-nav a[aria-current="page"] { color: var(--red); border-bottom-color: var(--red-bright); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
  width: 46px; height: 46px; border-radius: 10px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; height: 2.5px; width: 24px; margin: 5px auto;
  background: var(--ink); border-radius: 3px; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(244, 11, 11, 0.07), transparent 60%),
    linear-gradient(180deg, #fdfdfd, #f7f7f8);
  padding: 96px 0 84px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 span { color: var(--red); }
.hero .lead { font-size: 1.16rem; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-chips li {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: 0.86rem; font-weight: 500; color: var(--ink);
  margin: 0;
}
.hero-chips svg { width: 15px; height: 15px; color: var(--red); flex: none; }

.hero-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 30px 28px;
}
.hero-panel h2 { font-size: 1.15rem; margin-bottom: 18px; }
.hero-panel ul { list-style: none; padding: 0; margin: 0 0 6px; }
.hero-panel li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--bg-soft); margin: 0;
}
.hero-panel li:last-child { border-bottom: 0; }
.hero-panel li svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 2px; }
.hero-panel li strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.hero-panel li span { font-size: 0.9rem; color: var(--muted); }

/* ---------- Pagina-hero (subpagina's) ---------- */
.page-hero { background: linear-gradient(180deg, #fdfdfd, #f6f6f7); padding: 66px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero .lead { max-width: 760px; }
.page-hero .hero-ctas { margin: 26px 0 0; }

.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: #b6b7bc; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); }

/* ---------- Grids & kaarten ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-tint); color: var(--red); margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }

.card p:last-child { margin-bottom: 0; }
.card .muted { color: var(--muted); font-size: 0.96rem; }

/* Dienstenkaarten */
.service-card { display: flex; flex-direction: column; }
.service-card .tag {
  align-self: flex-start; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-dark);
  background: var(--red-tint); border-radius: 999px; padding: 5px 12px; margin-bottom: 16px;
}
.service-card ul { list-style: none; padding: 0; margin: 4px 0 20px; }
.service-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.95rem; color: var(--muted); }
.service-card li svg { width: 16px; height: 16px; color: var(--red); flex: none; margin-top: 4px; }
.service-card .card-link { margin-top: auto; }
.card-link {
  font-family: var(--font-display); font-weight: 600; text-decoration: none;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.card-link svg { width: 17px; height: 17px; transition: transform 0.18s ease; color: var(--red); }
.card-link:hover { color: var(--red); }
.card-link:hover svg { transform: translateX(4px); }

/* Vinklijstjes */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 10px; }
.checklist svg { width: 19px; height: 19px; color: var(--red); flex: none; margin-top: 4px; }

/* ---------- Werkwijze / stappen ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); margin: 0;
}
.step-num {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.8rem;
  color: var(--red); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.step-num::after { content: ""; height: 2px; width: 34px; background: var(--red-bright); border-radius: 2px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Projecten ---------- */
.project-card { padding: 0; overflow: hidden; }
.project-media {
  height: 190px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1d1d22, #34343b);
  color: #fff; position: relative;
}
.project-media svg { width: 46px; height: 46px; opacity: 0.85; }
.project-media::after {
  content: ""; position: absolute; left: 26px; right: 26px; bottom: 20px; height: 3px;
  background: var(--red-bright); border-radius: 3px; opacity: 0.9;
}
.project-body { padding: 24px 26px 28px; }
.project-body .meta { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }

/* ---------- Reviews ---------- */
.review-card { display: flex; flex-direction: column; gap: 14px; }
.stars { color: var(--red); display: flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; }
.review-card blockquote { margin: 0; font-size: 1rem; color: var(--text); }
.review-card figcaption { font-size: 0.88rem; color: var(--muted); }
.review-card figcaption strong { color: var(--ink); font-family: var(--font-display); }

/* ---------- FAQ ---------- */
.faq-group { margin-bottom: 42px; }
.faq-group h2 { font-size: 1.35rem; margin-bottom: 18px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--ink);
  padding: 18px 54px 18px 22px; position: relative; line-height: 1.4;
}
.faq-q::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px;
  border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.2s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(225deg); }
.faq-a { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-a p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { display: block; }
.faq-item.open { border-color: #f3c9c7; box-shadow: var(--shadow); }

/* ---------- CTA-band ---------- */
.cta-band { background: var(--ink); color: #e9e9ec; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(640px 300px at 12% 0%, rgba(244, 11, 11, 0.18), transparent 60%);
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; padding: 74px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9bac1; max-width: 520px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* ---------- Formulieren ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.field .optional { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  border: 1.5px solid #d8d9dd; border-radius: var(--radius-sm);
  padding: 13px 15px; background: #fff; width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.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(228, 35, 29, 0.14);
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none; background: #eef8f0; border: 1px solid #bfe3c8; color: #1d6b34;
  border-radius: var(--radius-sm); padding: 16px 18px; margin-top: 18px;
}
.form-success.show { display: block; }

/* Offerte-checkboxes */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px; }
.choice-card { position: relative; }
.choice-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; width: 100%; height: 100%; }
.choice-card label {
  display: flex; flex-direction: column; gap: 8px; height: 100%;
  border: 1.5px solid #d8d9dd; border-radius: var(--radius-sm); padding: 18px;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.choice-card label strong { font-family: var(--font-display); color: var(--ink); }
.choice-card label span { font-size: 0.87rem; color: var(--muted); }
.choice-card input:checked + label { border-color: var(--red); background: var(--red-tint); box-shadow: 0 0 0 3px rgba(228, 35, 29, 0.12); }
.choice-card input:focus-visible + label { outline: 3px solid var(--focus); outline-offset: 2px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { text-align: left; }
.contact-card a.big { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.contact-card a.big:hover { color: var(--red); }
.map-placeholder {
  border: 1.5px dashed #cfd0d4; border-radius: var(--radius); background: var(--bg-soft);
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-align: center; padding: 30px; font-size: 0.95rem;
}

/* ---------- Trustbar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 30px; padding: 22px 0; }
.trust-item { display: inline-flex; gap: 10px; align-items: center; font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.trust-item svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9bac1; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { background: #fff; border-radius: 12px; padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.footer-logo img { width: 140px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #b9bac1; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--red-bright); flex: none; margin-top: 4px; }
.footer-bottom { border-top: 1px solid #2b2b31; padding: 20px 0; font-size: 0.85rem; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- WhatsApp-knop ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(31, 168, 85, 0.4);
  transition: transform 0.18s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.04); }
.wa-fab svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Cookiebanner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 150;
  max-width: 560px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 24px 26px; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h2 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Scroll-animaties ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .card-link svg, .wa-fab { transition: none; }
}

/* ---------- Diversen ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.stat-row { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 28px; }
.stat b { font-family: var(--font-display); font-size: 1.7rem; color: var(--red); display: block; line-height: 1.1; }
.stat span { font-size: 0.9rem; color: var(--muted); }
.notice { background: var(--red-tint); border: 1px solid #f3c9c7; border-radius: var(--radius-sm); padding: 18px 20px; font-size: 0.95rem; }
.anchor-offset { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .cta-inner, .two-col { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .grid-3, .steps, .contact-cards, .choice-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 60px 0; }
  .grid-2, .grid-3, .steps, .contact-cards, .choice-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-card { padding: 26px 20px; }

  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 22px 18px; box-shadow: 0 20px 40px rgba(22,22,26,0.12);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--bg-soft); font-size: 1.02rem; }
  .nav-toggle { display: block; }
  .header-actions .btn { padding: 11px 18px; font-size: 0.88rem; }
}

/* ---------- Foto bovenaan dienstkaart ---------- */
.service-card { overflow: hidden; }
.card-media { margin: -30px -28px 20px; border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0; overflow: hidden; background: #fff; border-bottom: 1px solid var(--line); }
.card-media img { display: block; width: 100%; height: 170px; object-fit: cover; }
@media (max-width: 720px) { .card-media img { height: 156px; } }


/* ---------- Foutmelding bij formulieren ---------- */
.form-error { display: none; margin-top: 18px; padding: 14px 18px; border-radius: 14px; background: var(--red-tint); border: 1px solid rgba(228,35,29,0.25); color: var(--red-dark); font-size: 0.95rem; }
.form-error.show { display: block; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }


/* ---------- Google Maps-kaart ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(22,22,26,0.08); box-shadow: 0 14px 34px rgba(22,22,26,0.08); background: var(--bg-soft); line-height: 0; }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }
@media (max-width: 720px) { .map-embed iframe { height: 280px; } }

/* ---------- Mobiel: extra optimalisaties ---------- */
/* Voorkomt dat iOS tekst automatisch vergroot bij draaien van het scherm */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Afbeeldingen schalen altijd netjes mee */
img { max-width: 100%; height: auto; }

/* Formuliervelden: 16px voorkomt dat iPhones automatisch inzoomen bij tikken */
input, select, textarea { font-size: 16px; }

/* Voldoende grote aanraakvlakken (Google-richtlijn: minimaal 44px) */
.btn, .faq-q, .nav a, .footer-col a, .card-link { min-height: 44px; }
.btn { min-height: 46px; }
.nav a, .footer-col a, .card-link { display: inline-flex; align-items: center; }

/* Lange woorden en e-mailadressen breken netjes af op smalle schermen */
h1, h2, h3, p, a { overflow-wrap: break-word; }

@media (max-width: 480px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .section { padding: 62px 0; }
  .container { padding: 0 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .stat-row { flex-wrap: wrap; gap: 18px; }
}

/* Printweergave: schone uitdraai van bijvoorbeeld de voorwaarden */
@media print {
  .site-header, .wa-fab, .cookie-banner, .cta-band, .site-footer, .breadcrumbs { display: none !important; }
  body { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
  .section { padding: 18px 0; }
}

/* ---------- Adreskaart (als er geen kaart-embed is ingesteld) ---------- */
.map-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; min-height: 340px; padding: 34px 26px;
  border-radius: var(--radius); border: 1px solid rgba(22,22,26,0.08);
  background:
    radial-gradient(circle at 22% 28%, rgba(228,35,29,0.05) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 72%, rgba(228,35,29,0.05) 0 62px, transparent 63px),
    repeating-linear-gradient(0deg, rgba(22,22,26,0.045) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(22,22,26,0.045) 0 1px, transparent 1px 46px),
    var(--bg-soft);
  box-shadow: 0 14px 34px rgba(22,22,26,0.08);
}
.map-card .map-pin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%; background: #fff;
  color: var(--red); box-shadow: 0 8px 20px rgba(228,35,29,0.18); margin-bottom: 4px;
}
.map-card .map-pin svg { width: 26px; height: 26px; }
.map-card strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.map-card .map-adres { color: var(--muted); line-height: 1.6; }
.map-card .btn { margin-top: 10px; }
@media (max-width: 720px) { .map-card { min-height: 280px; } }
