/* ============================================================
   IT Quality Service — hoofdstylesheet
   Huisstijl: teal #006D80, lichtblauw #74CBF0
   ============================================================ */

:root {
  --teal: #006D80;
  --teal-dark: #00404C;
  --teal-darker: #00303A;
  --teal-deep: #005A6B;
  --lightblue: #74CBF0;
  --lightblue-soft: #A8D8F0;

  --ink: #0F2B31;
  --body: #40575C;
  --muted: #6B868C;
  --line: #DCE8EA;
  --line-soft: #E8F0F2;
  --bg: #FFFFFF;
  --bg-soft: #F4F7F8;
  --bg-tint: #EAF3F4;

  --white: #FFFFFF;

  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1160px;

  --shadow-sm: 0 1px 3px rgba(0, 64, 76, 0.06), 0 1px 2px rgba(0, 64, 76, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 64, 76, 0.08), 0 2px 6px rgba(0, 64, 76, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 64, 76, 0.12);

  --font-head: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--teal); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--teal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--teal-dark);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

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

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--teal); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
  font-weight: 500; font-size: 15px;
}
.skip-link:focus { left: 0; color: #fff; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Eyebrow / section labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 3px; background: var(--lightblue); display: block; border-radius: 2px;
}
.eyebrow.on-dark { color: var(--lightblue); }
.eyebrow.on-dark::before { background: var(--lightblue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 500;
  padding: 13px 24px; border-radius: var(--radius);
  cursor: pointer; border: 1.5px solid transparent;
  transition: all .18s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; color: var(--teal); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); background: var(--bg-soft); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--bg-tint); color: var(--teal-dark); transform: translateY(-1px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px; gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 66px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 500; color: var(--body);
  padding: 9px 14px; border-radius: 8px; transition: all .15s ease;
}
.nav a:hover { color: var(--teal); background: var(--bg-soft); }
.nav a.active { color: var(--teal); }
.nav .btn { margin-left: 8px; padding: 10px 20px; font-size: 14px; }
.nav .btn-primary { color: #fff; }
.nav .btn-primary:hover {
  background: var(--teal-dark); color: #fff; transform: none; box-shadow: none;
}

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--teal-dark);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--bg-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center;
  padding: 84px 0 78px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--teal); }
.hero-lead {
  font-size: 19px; line-height: 1.6; color: var(--body); max-width: 520px; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 14.5px; font-weight: 500; color: var(--teal);
  margin-bottom: 22px;
}
.whatsapp-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.whatsapp-link:hover { color: var(--teal-dark); }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); font-weight: 500; }
.trust-item svg { width: 19px; height: 19px; color: var(--teal); flex-shrink: 0; }

/* Hero visual — gestapelde blokken die het logo-motief echoën */
.hero-visual { position: relative; }
.hero-blocks {
  display: grid; grid-template-columns: 1fr 1.15fr; grid-template-rows: 258px 118px;
  gap: 14px; max-width: 420px; margin-left: auto;
}
.hero-blocks .blk { border-radius: 14px; overflow: hidden; }
.hero-blocks .blk-teal {
  grid-column: 2; grid-row: 1;
  background: var(--teal);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff;
}
.hero-blocks .blk-teal .big { font-family: var(--font-head); font-size: 44px; font-weight: 700; line-height: 1; }
.hero-blocks .blk-teal .lbl { font-size: 14px; color: var(--lightblue-soft); margin-top: 8px; font-weight: 500; }
.hero-blocks .blk-light {
  grid-column: 1; grid-row: 1 / 3;
  background: var(--lightblue);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: var(--teal-dark);
}
.hero-blocks .blk-light .ic svg { width: 34px; height: 34px; margin-bottom: auto; }
.hero-blocks .blk-light .txt { font-family: var(--font-head); font-weight: 600; font-size: 16px; line-height: 1.3; }
.hero-blocks .blk-dark {
  grid-column: 2; grid-row: 2;
  background: var(--teal-dark);
  display: flex; align-items: center; gap: 12px; padding: 0 22px; color: #fff;
}
.hero-blocks .blk-dark svg { width: 26px; height: 26px; color: var(--lightblue); flex-shrink: 0; }
.hero-blocks .blk-dark span { font-size: 14px; font-weight: 500; line-height: 1.35; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--bg-tint); }

.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-head p { font-size: 18px; color: var(--muted); }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 22px;
}
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; border-top: 4px solid var(--teal);
  transition: all .2s ease; position: relative;
}
.svc-card:nth-child(even) { border-top-color: var(--lightblue); }
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line); }
.svc-card:nth-child(even):hover { border-top-color: var(--lightblue); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; color: var(--teal); }
.svc-card h3 { font-size: 20px; margin-bottom: 10px; }
.svc-card p { font-size: 15.5px; line-height: 1.6; color: var(--body); margin-bottom: 16px; }
.svc-list { list-style: none; }
.svc-list li {
  font-size: 14.5px; color: var(--body); padding: 5px 0 5px 26px; position: relative;
}
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 16px; height: 16px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.card-link {
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
}
.card-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fi-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
}
.feature-list .fi-icon svg { width: 21px; height: 21px; color: var(--teal); }
.feature-list .fi-text strong { display: block; font-family: var(--font-head); color: var(--teal-dark); font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.feature-list .fi-text span { font-size: 15px; color: var(--body); }

/* ---------- Dark band (Hulp op afstand) ---------- */
.band-dark {
  background: var(--teal-dark); color: #fff; padding: 78px 0;
}
.band-dark h2 { color: #fff; }
.band-dark .section-head p { color: var(--lightblue-soft); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px;
}
.step {
  background: var(--teal-deep); border-radius: var(--radius); padding: 24px 22px;
  position: relative; border: 1px solid rgba(255,255,255,.07);
}
.step-num {
  font-family: var(--font-head); font-size: 13px; font-weight: 500; letter-spacing: .08em;
  color: var(--lightblue); margin-bottom: 12px; text-transform: uppercase;
}
.step-icon svg { width: 28px; height: 28px; color: var(--lightblue); margin-bottom: 14px; }
.step h3 { color: #fff; font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--lightblue-soft); line-height: 1.5; }
.band-cta { margin-top: 40px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.band-note { font-size: 14px; color: var(--lightblue-soft); }

/* ---------- USP strip ---------- */
.usp-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.usp {
  background: #fff; padding: 30px 26px; text-align: left;
}
.usp svg { width: 30px; height: 30px; color: var(--teal); margin-bottom: 14px; }
.usp h3 { font-size: 17px; margin-bottom: 6px; }
.usp p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---------- About / person block ---------- */
.person {
  display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center;
}
.person-photo {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid var(--line);
}
.person-photo::after {
  content: ""; position: absolute; left: -12px; bottom: -12px; width: 84px; height: 84px;
  background: var(--lightblue); border-radius: 12px; z-index: -1;
}
.person-photo { z-index: 1; }
.person-wrap { position: relative; }
.person-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.person h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.person .role { font-family: var(--font-head); color: var(--teal); font-weight: 500; font-size: 16px; margin-bottom: 18px; }
.person p { font-size: 16.5px; line-height: 1.7; margin-bottom: 16px; }
.person-stats { display: flex; gap: 36px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.pstat .num { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--teal); line-height: 1; }
.pstat .lbl { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ---------- Service area ---------- */
.area-grid {
  display: flex; flex-wrap: wrap; gap: 9px;
}
.area-tag {
  background: #fff; border: 1px solid var(--line); color: var(--body);
  font-size: 14.5px; padding: 8px 15px; border-radius: 8px; transition: all .15s ease;
}
.area-tag.home { color: var(--teal); border-color: var(--teal); font-weight: 500; }
.area-tag:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal); border-radius: var(--radius-lg); padding: 56px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  color: #fff;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 17px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-band-actions .btn { width: 100%; justify-content: center; }
@media (min-width: 861px) { .cta-band-actions { align-items: stretch; } }
.cta-band-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; margin-top: -2px;
}
.cta-band-whatsapp svg { width: 16px; height: 16px; flex-shrink: 0; }
.cta-band-whatsapp:hover { color: #fff; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 1.8rem; margin-bottom: 18px; }
.contact-methods { margin: 28px 0; }
.cmethod {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.cmethod:last-child { border-bottom: none; }
.cmethod-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px; background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
}
.cmethod-icon svg { width: 22px; height: 22px; color: var(--teal); }
.cmethod .lbl { font-size: 13px; color: var(--muted); margin-bottom: 3px; }
.cmethod .val { font-family: var(--font-head); font-size: 17px; font-weight: 500; color: var(--teal-dark); }
.cmethod .val a { color: var(--teal-dark); }
.cmethod .val a:hover { color: var(--teal); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); font-size: 14px; font-weight: 500;
  color: var(--teal-dark); margin-bottom: 7px;
}
.field label .req { color: #C0392B; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 9px;
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,109,128,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 22px; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--teal); }
.form-consent label { font-size: 14px; color: var(--muted); line-height: 1.5; }
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

.form-note { font-size: 13px; color: var(--muted); margin-top: 16px; text-align: center; }

.form-alert { padding: 16px 18px; border-radius: 10px; margin-bottom: 24px; font-size: 15px; display: none; }
.form-alert.show { display: block; }
.form-alert.success { background: #E6F4EA; color: #1E6B37; border: 1px solid #B7DFC3; }
.form-alert.error { background: #FBEAEA; color: #A32D2D; border: 1px solid #F0C4C4; }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   PAGE HEADER (subpaginas)
   ============================================================ */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line-soft); padding: 62px 0 56px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; max-width: 720px; }
.page-hero p { font-size: 19px; color: var(--body); max-width: 640px; line-height: 1.6; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--line); margin: 0 8px; }

/* ---------- Prose blocks ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; margin: 42px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; font-size: 17px; }
.prose ul { margin: 0 0 22px; padding-left: 4px; list-style: none; }
.prose ul li { padding: 7px 0 7px 30px; position: relative; font-size: 16.5px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 13px; width: 18px; height: 18px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 18px; font-weight: 500; color: var(--teal-dark);
  padding: 22px 40px 22px 0; position: relative; display: flex; align-items: center;
}
.faq-q::after {
  content: ""; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 0 22px; font-size: 16.5px; color: var(--body); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-darker); color: #fff; padding: 60px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-chip {
  display: inline-flex; align-items: center; background: #fff;
  padding: 14px 20px; border-radius: 12px; margin-bottom: 20px;
}
.footer-brand img { height: 46px; width: auto; display: block; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: 15px; }
.footer-col ul li a:hover { color: var(--lightblue); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 15px; color: rgba(255,255,255,.7); }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--lightblue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--lightblue); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px 0; font-size: 13.5px; color: rgba(255,255,255,.5);
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 380px; }
  .hero-blocks { margin: 0 auto; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-media { order: 0; }
  .person { grid-template-columns: 1fr; gap: 36px; }
  .person-wrap { max-width: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; gap: 28px; padding: 44px 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .band-dark { padding: 56px 0; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px 20px; gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open a { padding: 12px 14px; }
  .nav.open .btn { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .cta-band-actions { align-items: stretch; }
  .form-card { padding: 26px 20px; }
  .page-hero, .hero-inner { padding-left: 0; padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   MOBIELE ACTIEBALK (bel / whatsapp) — alleen op kleine schermen
   ============================================================ */
.mobile-action-bar { display: none; }
@media (max-width: 640px) {
  .mobile-action-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    box-shadow: 0 -2px 14px rgba(0,0,0,.14);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-action-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 10px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #fff;
  }
  .mobile-action-bar a:hover { color: #fff; }
  .mobile-action-bar a svg { width: 19px; height: 19px; flex-shrink: 0; }
  .mobile-action-bar .maf-call { background: var(--teal); }
  .mobile-action-bar .maf-whatsapp { background: #25D366; }
  /* voorkomt dat laatste stukje pagina achter de vaste balk verdwijnt */
  body { padding-bottom: 62px; }
}
