/* ──────────────────────────────────────────────────────────────────────
   VEDICOM WEBSITE — Hybride theme
   Donkere hero/header/footer + lichte content secties
   Psychologie: donker = autoriteit/vertrouwen, licht = leesbaarheid/toegankelijkheid
   ────────────────────────────────────────────────────────────────────── */

:root {
  /* Vedicom kleurpalet */
  --navy: #033D5A;
  --navy-2: #055a83;
  --navy-3: #0779AF;
  --dark: #011520;
  --darker: #020f18;
  --darkest: #010a12;

  --gold: #C8922A;
  --gold-2: #E8A020;
  --gold-3: #FFD060;
  --gold-licht: #FFBA35;

  --wit: #f0f6fa;
  --silver: #8eafc0;
  --silver-mid: #5d7c8c;
  --grijs: #4a6578;
  --light-blue: #D0E9F5;

  /* Lichte secties */
  --licht-bg: #ffffff;
  --licht-bg-alt: #f5f8fb;
  --licht-tekst: #1a2a35;
  --licht-tekst-2: #4a6578;
  --licht-lijn: #e2e8ed;

  /* Status colors */
  --groen: #22c55e;
  --rood: #ef4444;

  /* Spacing en radius */
  --container-max: 1320px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Gulden snede — Fibonacci spacing schaal */
  --phi: 1.618;
  --sp-xs: 8px;    /* basis */
  --sp-sm: 13px;   /* 8 × 1.618 ≈ 13 */
  --sp-md: 21px;   /* 13 × 1.618 ≈ 21 */
  --sp-lg: 34px;   /* 21 × 1.618 ≈ 34 */
  --sp-xl: 55px;   /* 34 × 1.618 ≈ 55 */
  --sp-2xl: 89px;  /* 55 × 1.618 ≈ 89 */
  --sp-3xl: 144px; /* 89 × 1.618 ≈ 144 */

  /* Schaduw */
  --shadow-gold: 0 8px 32px rgba(200, 146, 42, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-licht: 0 4px 24px rgba(0, 0, 0, 0.06);

  /* Fonts — Fibonacci typografie schaal (×1.618) */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-sm: 13px;
  --fs-body: 16px;
  --fs-lg: 20px;    /* 16 × 1.25 */
  --fs-h3: 21px;    /* Fibonacci */
  --fs-h2: 26px;    /* 16 × 1.618 */
  --fs-h1: 42px;    /* 26 × 1.618 */
  --fs-hero: 55px;  /* Fibonacci */
}

/* ── BASE ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background: var(--darker);
  color: var(--wit);
  line-height: 1.618; /* gulden snede lijnhoogte */
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}

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

a { color: var(--gold-3); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--wit);
  letter-spacing: -0.01em;
}

/* Fibonacci typografie schaal: 13 · 16 · 21 · 26 · 34 · 42 · 55 */
h1 { font-size: clamp(2.2rem, 4.5vw, var(--fs-hero)); font-weight: 900; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, var(--fs-h2)); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-body); }

p { color: var(--silver); }

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

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  padding: var(--sp-sm) var(--sp-lg); /* 13px 34px — Fibonacci */
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-3);
  border-color: var(--gold-3);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-3);
  border-color: rgba(200, 146, 42, 0.4);
}
.btn-secondary:hover {
  background: rgba(200, 146, 42, 0.08);
  border-color: var(--gold);
  color: var(--gold-3);
}

.btn-lg { padding: var(--sp-sm) var(--sp-xl); font-size: var(--fs-body); } /* 13px 55px */

/* ── SECTIE LABELS ─────────────────────────────────────────────────── */
.sectie-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sectie-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.sectie-titel {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--wit);
  margin-bottom: 16px;
  line-height: 1.1;
}
.sectie-titel span { color: var(--gold-3); }

.sectie-sub {
  font-size: 16px;
  color: var(--silver);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Klein goud blokje (uit offerte-PDF stijl) — alternatief voor de gestreepte sectie-label */
.gold-block {
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  flex-shrink: 0;
}

/* ── HEADER / NAV ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(1, 21, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.18);
  transition: background .25s, border-color .25s;
}
/* Header boven overlay wanneer menu open is */
.site-header.menu-open {
  z-index: 102;
}
.site-header.scrolled {
  background: rgba(1, 15, 24, 0.96);
  border-bottom-color: rgba(200, 146, 42, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon img { height: 38px; width: auto; }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.logo-naam {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--wit);
}
.logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--silver);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.nav-link:hover {
  color: var(--gold-3);
  background: rgba(200, 146, 42, 0.06);
}

/* Dropdown navigatie */
.nav-dropdown {
  position: relative;
}
.nav-link-dropdown {
  display: flex;
  align-items: center;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(1, 15, 24, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 146, 42, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-dropdown-item:hover {
  color: var(--gold-3);
  background: rgba(200, 146, 42, 0.08);
}

.header-cta {
  flex-shrink: 0;
}

/* Spacer zodat content niet onder fixed header valt */
.header-spacer { height: 80px; }

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #021a28 100%);
  position: relative;
  overflow: hidden;
  padding: var(--sp-xl) 0 var(--sp-2xl) 0; /* Fibonacci: 55px boven, 89px onder */
}

/* Goud accent lijn links */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold-2) 80%, transparent);
}

/* Decoratieve gradienten */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 90, 131, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 90, 131, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.618fr 1fr; /* gulden snede */
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 146, 42, 0.1);
  border: 1px solid rgba(200, 146, 42, 0.3);
  color: var(--gold-2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.2);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, var(--fs-hero));
  font-weight: 900;
  line-height: 1.08;
  color: var(--wit);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.025em;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-3);
}

.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-lead strong { color: var(--wit); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  color: var(--silver);
  font-weight: 500;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── HERO LIVE-MONITORING CARD ─────────────────────────────────────── */
.hero-card {
  background: rgba(3, 61, 90, 0.25);
  border: 1px solid rgba(200, 146, 42, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--groen);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.05); }
}
.hero-card-titel {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-cel {
  background: rgba(1, 21, 32, 0.55);
  border: 1px solid rgba(5, 90, 131, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color .2s;
}
.stat-cel:hover { border-color: rgba(200, 146, 42, 0.35); }
.stat-nr {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-3);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-lbl {
  font-size: 11px;
  color: var(--silver);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.hero-card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 146, 42, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-card-footer span {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.02em;
}
.hero-card-footer .gecert {
  color: var(--gold-2);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── AUTORITEIT BALK ──────────────────────────────────────────────── */
.autoriteit {
  padding: 32px 0;
  background: var(--licht-bg);
  border-bottom: 1px solid var(--licht-lijn);
}
.autoriteit-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.autoriteit-block {
  text-align: center;
}
.autoriteit-getal {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.autoriteit-label {
  font-size: 12px;
  color: var(--licht-tekst-2);
  margin-top: 4px;
  font-weight: 500;
}

/* ── PROBLEMEN / DIENSTEN SECTIE (LICHT) ──────────────────────────── */
.diensten {
  padding: var(--sp-2xl) 0 var(--sp-3xl) 0; /* 89px boven, 144px onder — gulden snede asymmetrie */
  background: var(--licht-bg);
  position: relative;
}

.sectie-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.sectie-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin: 0;
}

.diensten .sectie-sub {
  color: var(--licht-tekst-2);
}

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

.dienst-card {
  background: var(--licht-bg);
  border: 1px solid var(--licht-lijn);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--licht-tekst);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  display: block;
}
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.dienst-card:hover {
  border-color: var(--navy-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-licht);
  color: var(--licht-tekst);
}
.dienst-card:hover::before { transform: scaleX(1); }

.dienst-icoon {
  width: 56px;
  height: 56px;
  background: rgba(5, 90, 131, 0.06);
  border: 1px solid rgba(5, 90, 131, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.dienst-card h3 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.dienst-card p {
  color: var(--licht-tekst-2);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.dienst-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s;
}
.dienst-card:hover .dienst-link { color: var(--navy-2); }

/* ── MERKEN BALK ─────────────────────────────────────────────────── */
.merken {
  padding: 48px 0;
  background: var(--licht-bg-alt);
  border-top: 1px solid var(--licht-lijn);
  border-bottom: 1px solid var(--licht-lijn);
}
.merken-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--licht-tekst-2);
  margin-bottom: 28px;
}
.merken-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.merken-grid img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all .25s;
}
.merken-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── KLANTEN STRIP ────────────────────────────────────────────────── */
.klanten-strip {
  padding: var(--sp-xl) 0;
  background: var(--licht-bg);
  border-bottom: 1px solid var(--licht-lijn);
}
.klanten-strip .merken-grid img {
  height: 36px;
  opacity: 0.6;
}
.klanten-strip .merken-grid img:hover {
  opacity: 1;
}

/* ── FOTO SHOWCASE ────────────────────────────────────────────────── */
.showcase {
  padding: var(--sp-2xl) 0;
  background: var(--licht-bg);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.618fr 1fr; /* gulden snede: foto groter dan tekst */
  gap: var(--sp-xl);
  align-items: center;
}
.showcase-grid.reverse { direction: rtl; }
.showcase-grid.reverse > * { direction: ltr; }
.showcase-foto {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-licht);
  aspect-ratio: 16/10;
}
.showcase-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.showcase-content p {
  color: var(--licht-tekst-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.showcase-content p strong { color: var(--licht-tekst); }
.showcase-content li { color: var(--licht-tekst-2); font-size: 15px; line-height: 1.7; }
.showcase-content li strong { color: var(--licht-tekst); }
.showcase-content ul { color: var(--licht-tekst-2); }
.showcase-content .btn { margin-top: 8px; }
.showcase-content .btn-primary { color: var(--licht-bg); }

/* ── LIFT NICHE SECTIE ─────────────────────────────────────────────── */
.lift-niche {
  padding: var(--sp-2xl) 0;
  background:
    linear-gradient(135deg, rgba(3,61,90,0.4) 0%, rgba(1,21,32,0.6) 100%),
    var(--darker);
  position: relative;
  border-top: 1px solid rgba(200, 146, 42, 0.12);
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}

.lift-niche-inner {
  display: grid;
  grid-template-columns: 1.618fr 1fr; /* gulden snede */
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
}

.lift-niche-content {
  max-width: 640px;
}
.lift-niche h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 22px;
}
.lift-niche h2 span { color: var(--gold-3); }
.lift-niche p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--silver);
  margin-bottom: 16px;
}
.lift-niche p strong { color: var(--wit); }
.lift-niche .btn {
  margin-top: 16px;
}

.lift-niche-visual {
  background: rgba(1, 21, 32, 0.5);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
}
.lift-niche-visual h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
  font-weight: 700;
}
.lift-niche-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lift-niche-visual li {
  font-size: 14px;
  color: var(--silver);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lift-niche-visual li:last-child { border-bottom: none; }
.lift-niche-visual li::before {
  content: '✓';
  color: var(--gold-2);
  font-weight: 700;
  flex-shrink: 0;
}
.lift-niche-visual li strong { color: var(--wit); display: block; margin-bottom: 2px; }

/* ── WAAROM VEDICOM (LICHT) ────────────────────────────────────────── */
.waarom {
  padding: var(--sp-2xl) 0;
  background: var(--licht-bg-alt);
}
.waarom .sectie-header h2 { color: var(--navy); }

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

.waarom-card {
  background: var(--licht-bg);
  border: 1px solid var(--licht-lijn);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--gold);
  transition: all .25s;
}
.waarom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-licht);
  border-top-color: var(--navy-2);
}
.waarom-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 14px;
}
.waarom-card p {
  color: var(--licht-tekst-2);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ── CTA BAND ──────────────────────────────────────────────────────── */
.cta-band {
  padding: var(--sp-xl) 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 146, 42, 0.18);
  border-bottom: 1px solid rgba(200, 146, 42, 0.18);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-3), var(--gold), transparent);
}
.cta-band::after {
  content: 'VEDICOM';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--wit);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
  font-weight: 800;
}
.cta-band h2 span { color: var(--gold-3); }
.cta-band p {
  color: var(--silver);
  font-size: 16px;
  margin: 0;
  max-width: 480px;
}
.cta-band-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── PAGINA TEMPLATE ───────────────────────────────────────────────── */
.pagina-hero {
  padding: 80px 0 60px 0;
  background:
    linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
  position: relative;
}
.pagina-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.pagina-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--wit);
  margin-bottom: 18px;
}
.pagina-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  max-width: 720px;
}

.pagina-inhoud { padding: 64px 0; background: var(--licht-bg); }

.prose {
  max-width: 760px;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--licht-tekst-2);
}
.prose h2 {
  color: var(--navy);
  margin-top: 2.2em;
  margin-bottom: 0.5em;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
  font-size: 1.6rem;
}
.prose h3 {
  color: var(--navy-2);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  font-size: 1.2rem;
}
.prose p { margin-bottom: 1.2em; }
.prose ul, .prose ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.prose li { margin-bottom: 0.5em; color: var(--licht-tekst-2); }
.prose strong { color: var(--licht-tekst); font-weight: 600; }
.prose a { color: var(--navy-2); text-decoration: underline; text-decoration-color: rgba(5, 90, 131, 0.3); }
.prose a:hover { text-decoration-color: var(--navy-2); }
.prose blockquote {
  background: rgba(5, 90, 131, 0.05);
  border-left: 4px solid var(--gold);
  padding: 20px 26px;
  margin: 1.8em 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--licht-tekst);
  font-style: italic;
  font-size: 17px;
}

/* ── TECHNIEK KOLOMMEN (LIFT PAGINA) ──────────────────────────────── */
.twee-kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}
.techniek-card {
  background: var(--licht-bg);
  border: 1px solid var(--licht-lijn);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  border-top: 3px solid var(--gold);
}
.techniek-icoon {
  font-size: 32px;
  margin-bottom: var(--sp-sm);
}
.techniek-card h3 {
  color: var(--navy);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-sm);
}
.techniek-card p {
  color: var(--licht-tekst-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}
.techniek-card p strong { color: var(--licht-tekst); }
.techniek-detail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--licht-lijn);
}
.techniek-detail span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-2);
}

/* ── CONTACT PAGINA ───────────────────────────────────────────────── */
.contact-sectie {
  padding: var(--sp-2xl) 0;
  background: var(--licht-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.618fr; /* gulden snede: formulier groter */
  gap: var(--sp-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.contact-blok h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-xs);
}
.contact-telefoon {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy) !important;
  display: block;
  margin-bottom: 4px;
}
.contact-telefoon:hover { color: var(--gold) !important; }
.contact-blok p { color: var(--licht-tekst-2); font-size: 14px; }
.contact-mail {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-2) !important;
}
.contact-whatsapp {
  font-size: 15px;
  font-weight: 600;
  color: #25D366 !important;
}
.contact-blok address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--licht-tekst-2);
}
.contact-bedrijf ul {
  list-style: none;
  padding: 0;
}
.contact-bedrijf li {
  font-size: 14px;
  color: var(--licht-tekst-2);
  padding: 4px 0;
}

/* Formulier */
.contact-formulier-wrap {
  background: var(--licht-bg);
  border: 1px solid var(--licht-lijn);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-licht);
}
.contact-formulier h3 {
  font-size: var(--fs-h3);
  color: var(--navy);
  margin-bottom: var(--sp-md);
}
.form-groep {
  margin-bottom: var(--sp-md);
}
.form-groep label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--licht-tekst);
  margin-bottom: 6px;
}
.form-groep input,
.form-groep select,
.form-groep textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--licht-lijn);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--licht-tekst);
  background: #fff;
  transition: border-color .15s;
}
.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(5, 90, 131, 0.1);
}
.form-groep textarea { resize: vertical; min-height: 120px; }
.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.contact-submit {
  width: 100%;
  margin-top: var(--sp-xs);
}
.form-privacy {
  font-size: 12px;
  color: var(--licht-tekst-2) !important;
  margin-top: var(--sp-sm);
  text-align: center;
}

/* Succes state */
.contact-succes {
  text-align: center;
  padding: var(--sp-xl) 0;
}
.succes-icoon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto var(--sp-md);
}
.contact-succes h3 {
  font-size: var(--fs-h2);
  color: var(--navy);
  margin-bottom: var(--sp-xs);
}
.contact-succes p { color: var(--licht-tekst-2); }

/* Google Maps */
.contact-kaart {
  border-top: 3px solid var(--gold);
}

/* ── 404 ───────────────────────────────────────────────────────────── */
.vier-nul-vier {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  text-align: center;
}
.vier-nul-vier-inner {
  max-width: 520px;
  margin: 0 auto;
}
.vier-nul-vier-getal {
  font-size: 140px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(200, 146, 42, 0.3);
}
.vier-nul-vier h1 { color: var(--wit); margin-bottom: 16px; }
.vier-nul-vier p { color: var(--silver); margin-bottom: 36px; font-size: 17px; }
.vier-nul-vier-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--darkest);
  border-top: 1px solid rgba(200, 146, 42, 0.18);
  padding: var(--sp-2xl) 0 var(--sp-lg) 0; /* 89px boven, 34px onder */
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-3), var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.618fr 1fr 1fr 1.2fr; /* eerste kolom gulden snede */
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.footer-brand .logo {
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--silver);
  font-size: 14px;
  transition: color .15s;
}
.footer-col a:hover {
  color: var(--gold-3);
}
.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}
.footer-col address a { color: var(--silver); }
.footer-col address a:hover { color: var(--gold-3); }
.footer-adres-link { color: var(--silver); text-decoration: none; }
.footer-adres-link:hover { color: var(--gold-3); }
.contact-adres-link { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(200,146,42,0.4); }
.contact-adres-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.footer-meta {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: var(--silver-mid);
  letter-spacing: 0.05em;
}

/* Footer certificeringen */
.footer-certs {
  display: flex;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-cert {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-cert div {
  display: flex;
  flex-direction: column;
}
.footer-cert strong {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
}
.footer-cert span {
  color: var(--silver-mid);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  padding-top: 0;
  font-size: 12px;
  color: var(--silver-mid);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a {
  color: var(--silver-mid);
  margin: 0 8px;
}
.footer-bottom a:hover { color: var(--gold-3); }

/* ── SOCIAL PROOF BALK ────────────────────────────────────────────── */
.social-proof {
  padding: 48px 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.social-proof-quote blockquote {
  font-size: 22px;
  font-weight: 700;
  color: var(--wit);
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 8px 0;
  max-width: 480px;
}
.social-proof-quote cite {
  font-size: 13px;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 600;
}
.social-proof-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
}
.proof-nr {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-3);
  line-height: 1;
}
.proof-lbl {
  display: block;
  font-size: 11px;
  color: var(--silver);
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ── TESTIMONIAL BAND ─────────────────────────────────────────────── */
.testimonial-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(200, 146, 42, 0.15);
  border-bottom: 1px solid rgba(200, 146, 42, 0.15);
}
.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  position: relative;
}
.testimonial-mark {
  font-size: 120px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: -20px;
  font-family: Georgia, serif;
}
.testimonial-quote p {
  font-size: 24px;
  font-weight: 600;
  color: var(--wit);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-quote cite {
  font-size: 14px;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 600;
}

/* ── PROJECTEN GALERIJ ────────────────────────────────────────────── */
.projecten-strip {
  padding: var(--sp-2xl) 0;
}
.projecten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.project-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.project-thumb:hover img {
  transform: scale(1.05);
}
.project-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(1,21,32,0.85));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── SHOWCASE EXTRAS ──────────────────────────────────────────────── */
.showcase-moral {
  color: var(--navy) !important;
  font-size: 16px !important;
  margin-top: 8px;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 520px; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .waarom-grid { grid-template-columns: repeat(2, 1fr); }
  .lift-niche-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .showcase-grid, .showcase-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .projecten-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  /* Hero */
  .hero { padding: 40px 0 60px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .stat-grid { grid-template-columns: 1fr 1fr; }

  /* Secties */
  .diensten, .waarom, .lift-niche, .pagina-inhoud, .showcase, .projecten-strip { padding: 64px 0; }
  .diensten-grid, .waarom-grid { grid-template-columns: 1fr; }

  /* Autoriteit balk */
  .autoriteit-grid { gap: 24px; }
  .autoriteit-getal { font-size: 22px; }

  /* Social proof */
  .social-proof-inner { flex-direction: column; text-align: center; gap: 28px; }
  .social-proof-quote blockquote { font-size: 18px; }
  .social-proof-stats { justify-content: center; }
  .proof-divider { display: none; }

  /* Testimonial */
  .testimonial-quote p { font-size: 18px; }

  /* Contact en formulieren */
  .contact-grid { grid-template-columns: 1fr; }
  .twee-kolommen { grid-template-columns: 1fr; }

  /* Merken */
  .merken-grid { gap: 24px; }
  .merken-grid img { height: 28px; max-width: 120px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-buttons { width: 100%; }
  .cta-band-buttons .btn { flex: 1; }
}

/* ── ANIMATIES ─────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp .6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2) { animation-delay: .12s; }
.hero-content > *:nth-child(3) { animation-delay: .18s; }
.hero-content > *:nth-child(4) { animation-delay: .24s; }
.hero-content > *:nth-child(5) { animation-delay: .30s; }
.hero-card { animation: fadeUp .7s .35s ease both; }

/* ── MOBILE UX VERBETERINGEN ───────────────────────────────────────── */

/* Toon-meer knop voor diensten — standaard verborgen (desktop ziet alle kaarten) */
.diensten-toon-meer { display: none; }
.diensten-toon-meer.verborgen { display: none !important; }

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 9999;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}

/* --- FOCUS VISIBLE (WCAG 2.1 AA) --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Verberg browser standaard focus ring als we onze eigen tonen */
:focus:not(:focus-visible) { outline: none; }

/* --- HAMBURGER KNOP --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(200, 146, 42, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
  position: relative;
  z-index: 102; /* boven nav (101) en header (100) */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger:hover {
  border-color: var(--gold);
  background: rgba(200, 146, 42, 0.08);
}
.hamburger-lijn {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, background .2s;
  transform-origin: center;
}
.hamburger:hover .hamburger-lijn { background: var(--gold-3); }

/* Hamburger → X animatie */
.hamburger-actief .hamburger-lijn:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-actief .hamburger-lijn:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-actief .hamburger-lijn:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- NAVIGATIE OVERLAY (MOBIEL) --- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1, 15, 24, 0.7);
  z-index: 100; /* boven content, gelijk aan header — nav (101) zit er bovenop */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  -webkit-tap-highlight-color: transparent;
}
.nav-overlay.overlay-actief { display: block; }

/* --- STICKY BEL-KNOP MOBIEL --- */
.sticky-cta-mobiel {
  display: none;
}

/* --- BOTTOM NAV MOBIEL --- */
.bottom-nav {
  display: none;
}

/* --- TOUCH TARGETS — minimaal 44×44px --- */
.btn {
  min-height: 44px;
}
.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-item {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Voetlinks in footer ook aanraakvriendelijk */
.footer-col a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* --- FORMULIEREN MOBIEL-KLAAR --- */
/* Input height minimaal 44px, font-size 16px (voorkomt iOS auto-zoom) */
.form-groep input,
.form-groep select,
.form-groep textarea {
  min-height: 44px;
  font-size: 16px; /* Voorkomt iOS zoom bij focus */
}

/* ── RESPONSIVE MOBILE ─────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Hamburger tonen, desktop CTA verbergen */
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .header-spacer { height: 72px; }

  /* Header inner layout op mobiel */
  .header-inner {
    flex-wrap: nowrap;
    gap: 0;
    padding: 14px 16px;
    justify-content: space-between;
  }

  /* Fullscreen navigatie overlay op mobiel */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(1, 10, 18, 0.98) !important;
    z-index: 101 !important;
    display: none !important;
    padding: 80px 0 120px 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    /* Reset alle desktop flex properties */
    flex: none !important;
    justify-content: initial !important;
    gap: 0 !important;
  }
  .main-nav.nav-open {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* ALLES in de nav is block op mobiel */
  .main-nav > * {
    display: block !important;
    width: 100% !important;
    flex-shrink: 0 !important;
  }

  /* Nav links op mobiel — grotere touch targets */
  .main-nav .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #d0d8e0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    min-height: 52px !important;
    line-height: 24px !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }
  .main-nav .nav-link:hover {
    background: rgba(200, 146, 42, 0.08) !important;
    color: var(--gold-3) !important;
  }

  /* Dropdown container op mobiel — gewoon block */
  .main-nav .nav-dropdown {
    display: block !important;
    position: static !important;
    width: 100% !important;
  }

  /* Dropdown menu op mobiel — ALTIJD zichtbaar, geen hover nodig */
  .main-nav .nav-dropdown-menu {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(3, 61, 90, 0.25) !important;
    padding: 0 !important;
    min-width: auto !important;
    width: 100% !important;
  }

  /* Dropdown items op mobiel */
  .main-nav .nav-dropdown-item {
    display: block !important;
    padding: 12px 32px !important;
    font-size: 14px !important;
    color: var(--silver) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    min-height: 48px !important;
    text-decoration: none !important;
    line-height: 24px !important;
  }
  .main-nav .nav-dropdown-item:hover {
    background: rgba(200, 146, 42, 0.08) !important;
    color: var(--gold-3) !important;
  }

  /* Verberg dropdown pijltje op mobiel */
  .nav-link-dropdown svg { display: none !important; }

  /* Sticky bel-knop onderaan (thumb zone) */
  .sticky-cta-mobiel {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 68px; /* boven bottom nav */
    left: 0;
    right: 0;
    z-index: 80;
    background: var(--gold);
    color: var(--dark);
    height: 52px;
    box-shadow: 0 -2px 16px rgba(200, 146, 42, 0.3);
    padding: 0 16px 0 20px;
    gap: 0;
  }
  .sticky-cta-bel {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    height: 100%;
  }
  .sticky-cta-bel:hover { color: var(--dark); }
  .sticky-cta-sluiten {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(2, 15, 24, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
  }
  .sticky-cta-sluiten:hover { color: var(--dark); }

  /* Bottom navigatie */
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 85;
    background: rgba(1, 10, 18, 0.97);
    border-top: 1px solid rgba(200, 146, 42, 0.2);
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  }
  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--silver);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color .15s;
    min-height: 44px;
    padding: 8px 4px;
  }
  .bottom-nav-item:hover,
  .bottom-nav-item:focus { color: var(--gold-3); }
  .bottom-nav-cta {
    background: rgba(200, 146, 42, 0.12);
    color: var(--gold-2);
    font-weight: 700;
  }
  .bottom-nav-cta:hover { color: var(--gold-3); background: rgba(200, 146, 42, 0.2); }
  .bottom-nav-actief {
    color: var(--gold-2) !important;
  }
  .bottom-nav-actief svg {
    stroke: var(--gold-2);
  }

  /* Extra ruimte onderaan voor sticky CTA + bottom nav */
  body { padding-bottom: 120px; }

  /* Aanraakvriendelijke adreslink in footer */
  .contact-blok address {
    display: block;
  }

  /* Formulier rij op mobiel stacked */
  .form-rij { grid-template-columns: 1fr; }

  /* Vergroot hero-CTA knoppen op mobiel */
  .hero-cta .btn-lg {
    min-height: 52px;
    font-size: 15px;
    padding: 14px 24px;
  }
}

/* WhatsApp knop omhoog op mobiel vanwege bottom nav + sticky CTA */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 132px; /* boven sticky CTA + bottom nav */
    right: 16px;
  }
}

/* ── MOBIEL CONTENT OPTIMALISATIES ────────────────────────────────── */
@media (max-width: 767px) {

  /* Minder sectie-padding op mobiel */
  .diensten, .waarom, .showcase, .projecten-strip, .lift-niche { padding: 48px 0; }
  .social-proof { padding: 32px 0; }
  .merken, .klanten-strip { padding: 28px 0; }
  .cta-band { padding: 40px 0; }
  .testimonial-band { padding: 48px 0; }

  /* Hero verkleinen op kleine schermen */
  .hero { min-height: auto; padding: 32px 0 48px 0; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-lead { font-size: 15px; margin-bottom: 24px; }
  .hero-badge { font-size: 10px; padding: 7px 14px; margin-bottom: 20px; }
  .hero-trust { gap: 12px; font-size: 11px; }
  .hero-card { max-width: 100%; }
  /* Verberg de hero-card op kleine schermen om hoogte te besparen */
  .hero-visual { display: none; }

  /* Diensten grid — 1 kolom op mobiel */
  .diensten-grid,
  .diensten-grid.diensten-3col,
  .diensten-grid.diensten-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dienst-card { padding: 20px 18px; }
  .dienst-icoon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 14px; }
  .dienst-card h3 { font-size: 16px; margin-bottom: 8px; }
  .dienst-card p { font-size: 13px; margin-bottom: 12px; }

  /* Toon max 4 dienst-kaarten op mobiel, rest verborgen */
  .diensten-grid .dienst-card:nth-child(n+5) {
    display: none;
  }
  .diensten-grid.toon-alles .dienst-card:nth-child(n+5) {
    display: block;
  }

  /* Toon-meer knop voor diensten */
  .diensten-toon-meer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .diensten-toon-meer.verborgen { display: none; }

  /* Showcase secties compacter */
  .showcase-grid { gap: 24px; }
  .showcase-foto { aspect-ratio: 16/9; }
  .showcase-content h3 { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }
  .showcase-content p { font-size: 14px; }

  /* Waarom grid compacter */
  .waarom-grid { grid-template-columns: 1fr; gap: 12px; }
  .waarom-card { padding: 20px 18px; }
  .waarom-card h3 { font-size: 16px; }
  .waarom-card p { font-size: 13px; }

  /* Projecten grid — 2 kolommen op mobiel */
  .projecten-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Sectie header kleiner op mobiel */
  .sectie-header h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .sectie-sub { font-size: 14px; margin-bottom: 28px; }

  /* Merken en klanten — 3 per rij */
  .merken-grid { gap: 16px; }
  .merken-grid img { height: 24px; max-width: 90px; }
  .klanten-strip .merken-grid img { height: 22px; }

  /* Footer verkleinen */
  .site-footer { padding: 48px 0 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-certs { gap: 20px; padding: 20px 0; }

  /* Lift niche compacter */
  .lift-niche-inner { gap: 28px; }
  .lift-niche h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .lift-niche p { font-size: 15px; }

  /* Social proof strakker */
  .social-proof-quote blockquote { font-size: 16px; }
  .proof-nr { font-size: 22px; }

  /* Testimonial kleiner */
  .testimonial-quote p { font-size: 16px; }
  .testimonial-mark { font-size: 80px; }

  /* CTA band strakker */
  .cta-band h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .cta-band p { font-size: 14px; }
}

/* Extra kleine schermen (≤ 380px) */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .header-inner { padding: 12px 14px; }
  .logo-naam { font-size: 15px; }
  .logo-sub { font-size: 8px; }
  .logo-icon img { height: 30px; }
  .projecten-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-nr { font-size: 22px; }
}

/* Lazy loading images — gewoon zichtbaar */
img[loading="lazy"] {
  opacity: 1;
}

/* ── PRINT ─────────────────────────────────────────────────────────── */
@media print {
  .site-header, .bottom-nav, .sticky-cta-mobiel, .whatsapp-float { display: none !important; }
  body { padding-bottom: 0; background: #fff; color: #000; }
}
