/* ==========================================================================
   SLIM WATT — Hoofdstylesheet
   Brand kleuren afgeleid van het Slim Watt logo (gloeilamp + bliksem)
   --------------------------------------------------------------------------
   Auteur: Slim Watt
   Versie: 1.0
   ========================================================================== */

/* ==========================================================================
   1. BRAND TOKENS
   ========================================================================== */
:root {
  /* Primaire blauwen (uit logo) */
  --blue:        #0096F0;
  --blue-light:  #38B0F5;
  --blue-100:    #DBEDFB;
  --blue-50:     #F0F8FE;

  /* Diep navy (uit logo) */
  --navy:        #0F4B69;
  --navy-deep:   #0a3650;
  --navy-darker: #07273B;
  --navy-darkest:#04192A;

  /* Accent: zonne-energie */
  --amber:       #0EA5E9;
  --amber-light: #38BDF8;

  /* Neutralen */
  --cream:       #FAFAF7;
  --cream-2:     #F4F1E8;
  --white:       #FFFFFF;
  --ink:         #0a1f2c;
  --ink-2:       #2c3b48;
  --ink-3:       #5e6b76;
  --line:        #E5E7EB;
  --line-2:      #D6DCE2;

  /* Semantisch */
  --success:     #10B981;
  --warning:     #F59E0B;
  --danger:      #EF4444;

  /* Typografie */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  /* Schaduwen */
  --shadow-sm: 0 4px 12px -4px rgba(15, 75, 105, 0.12);
  --shadow:    0 20px 40px -20px rgba(15, 75, 105, 0.20);
  --shadow-lg: 0 30px 80px -30px rgba(15, 75, 105, 0.30);
}

/* ==========================================================================
   2. RESET & BASIS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html {
  /* Voorkomt horizontale scroll zonder body een scroll-container te maken
     (overflow-x: hidden op body breekt scrollen op mobiel) */
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--blue); color: white; }

/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section.block { padding: 110px 0; }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blue-100);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
/* Hero variant - leesbaar op donkere video-achtergrond */
.eyebrow-hero {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  font-size: 0.8rem;
}
.section-head { max-width: 700px; margin-bottom: 60px; }
.section-head p { font-size: 1.1rem; margin-top: 18px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(110deg, var(--blue) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn::after { content: '→'; transition: transform 0.2s; }
.btn:hover::after { transform: translateX(4px); }

.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn-amber { background: var(--amber); color: var(--navy-darkest); }
.btn-amber:hover { background: var(--amber-light); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(250, 250, 247, 0.3);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(255, 255, 255, 0.05); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }

/* ==========================================================================
   5. ANNOUNCE BAR
   ========================================================================== */
.announce {
  background: var(--navy-darkest);
  color: var(--cream);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.875rem;
  font-weight: 500;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; color: var(--amber-light); }
.announce .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  margin-right: 8px;
  transform: translateY(-2px);
}

/* ==========================================================================
   6. LOGO
   ========================================================================== */
.logo-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark svg, .logo-mark img.logo-img { width: 40px; height: 40px; flex-shrink: 0; display: block; }
.logo-mark img.logo-img { object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-text .accent { color: var(--blue); }

/* ==========================================================================
   7. HEADER & NAVIGATIE
   ========================================================================== */
header.site {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(250, 250, 247, 0.92);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
/* ==========================================================================
   PRIMARY NAVIGATION & MEGA MENU (compleet opnieuw)
   ========================================================================== */
nav.primary {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav.primary > a,
nav.primary > .has-mega > .nav-link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 22px 2px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s;
  white-space: nowrap;
}
nav.primary a:hover,
nav.primary > .has-mega:hover > .nav-link {
  color: var(--blue);
}
nav.primary a.active {
  color: var(--blue);
}
nav.primary a.active::after {
  content: '';
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Caret naast Zakelijk / Particulier */
.has-mega > .nav-link::after {
  content: '';
  display: inline-block;
  margin-left: 7px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.has-mega.is-open > .nav-link::after,
.has-mega:hover > .nav-link::after {
  transform: rotate(225deg) translateY(0);
}

/* Mega container — parent met JS toggle (.is-open) */
.has-mega { position: relative; }
.has-mega .mega {
  position: absolute;
  top: 100%;
  left: -24px;
  margin-top: -8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px 26px;
  min-width: 340px;
  box-shadow: 0 24px 48px rgba(4, 25, 42, 0.12), 0 2px 6px rgba(4, 25, 42, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 70;
}
.has-mega.is-open > .mega,
.has-mega:hover > .mega,
.has-mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover-bridge: onzichtbare laag boven de mega om hover-state te behouden */
.has-mega .mega::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 16px;
}

/* Header label binnen de mega ("Voor uw bedrijf" etc.) */
.mega-header {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

/* Mega rich grid — 3 koloms layout (horizontaler), wider panel */
.mega-rich {
  min-width: 720px;
  padding: 28px 30px;
  left: -32px;
}
.mega-rich-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 16px;
}
.mega-rich-grid a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.mega-rich-grid a:hover {
  background: var(--blue-50);
  color: var(--blue);
}
.mega-rich-grid a strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.mega-rich-grid a span {
  display: block;
  font-size: 0.79rem;
  color: var(--ink-3);
  line-height: 1.4;
}
.mega-rich-grid a:hover span {
  color: var(--blue);
  opacity: 0.85;
}

/* Header CTA knop */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream);
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  color: var(--cream);
}
.header-cta::after { content: '→'; transition: transform 0.2s; }
.header-cta:hover::after { transform: translateX(3px); }

/* Mobiel — menu klapt open onder de header */
@media (max-width: 980px) {
  nav.primary {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: none;
    /* Menu scrollbaar maken als het langer is dan het scherm */
    max-height: calc(100vh - 100%);
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  nav.primary.open { display: flex; }
  nav.primary > a,
  nav.primary > .has-mega > .nav-link {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .has-mega .mega {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 8px 0 20px;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    margin: 0;
    display: none;
    background: transparent;
  }
  .has-mega.is-open .mega { display: block; }
  .mega-rich-grid { grid-template-columns: 1fr; gap: 2px; }
}


/* Mobile nav toggle */
.nav-toggle { display: none; }

/* ==========================================================================
   8. HERO PATTERN
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 150, 240, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(245, 166, 35, 0.10), transparent 60%),
    var(--cream);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 75, 105, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  /* Grid items moeten kunnen krimpen onder hun content min-width, anders pushen
     ze het track breder dan de container — veroorzaakt overflow op mobiel. */
}
.hero-grid > * { min-width: 0; }
.hero h1, .hero-lead, .hero p { overflow-wrap: break-word; word-break: break-word; }
.hero h1 { margin-bottom: 22px; }
.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-2);
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-bullets { list-style: none; margin-bottom: 36px; }
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--ink);
}
.hero-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--blue);
  border-radius: 50%;
  background-image: 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");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Compacte hero (subpagina's) */
.hero-compact {
  padding: 80px 0 80px;
}
.hero-compact .hero-grid { grid-template-columns: 1.4fr 1fr; }
.hero-compact h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
.hero-compact .hero-lead { max-width: 600px; }
/* Tekst-only hero (geen form-card) — minder bottom-padding zodat de gap
   naar de volgende sectie niet te groot wordt */
.hero-compact--text { padding-bottom: 48px; }
.block--tight-top { padding-top: 40px; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs .sep { color: var(--line-2); }

/* ==========================================================================
   9. TABS
   ========================================================================== */
.tab-toggles {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px -8px rgba(15, 75, 105, 0.15);
}
.tab-toggles button {
  border: 0;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--ink-3);
  transition: all 0.25s;
}
.tab-toggles button.active {
  background: var(--navy);
  color: var(--cream);
}

.tab-toggles.dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none;
}
.tab-toggles.dark button { color: var(--blue-100); }
.tab-toggles.dark button.active { background: var(--blue); color: var(--white); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ==========================================================================
  10. HERO FORM CARD
   ========================================================================== */
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg), var(--shadow-sm);
  position: relative;
}
.hero-card::before {
  content: 'Binnen 30 sec.';
  position: absolute;
  top: -14px; right: 28px;
  background: var(--amber);
  color: var(--navy-darkest);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.hero-card .sub {
  color: var(--ink-3);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
/* Alleen tekst-achtige velden — NIET de checkboxes/radios. Die erfden anders de
   padding/border én 'transition: all', wat een glitch gaf bij aanvinken. */
.field input:not([type="checkbox"]):not([type="radio"]), .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:not([type="checkbox"]):not([type="radio"]):focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 150, 240, 0.12);
}
.field-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.field-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  /* Alleen kleur animeren — 'all' liet de labels subtiel wiebelen bij aanklikken */
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.field-checkboxes label:hover { border-color: var(--blue); }
.field-checkboxes input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue); }

.submit-btn {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  background: var(--navy);
  color: var(--cream);
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover { background: var(--navy-deep); }
.submit-btn::after { content: '→'; transition: transform 0.2s; }
.submit-btn:hover::after { transform: translateX(4px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-3);
}
.stars { color: var(--amber); letter-spacing: 2px; }
.hero-trust strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
  11. USP STRIP
   ========================================================================== */
.usp {
  background: var(--navy-darkest);
  color: var(--cream);
  padding: 28px 0;
  position: relative;
}
.usp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0, 150, 240, 0.18), transparent 70%);
  pointer-events: none;
}
.usp .container { position: relative; z-index: 2; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 0.95rem;
}
.usp-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(0, 150, 240, 0.18);
  color: var(--blue-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.usp-icon svg { width: 20px; height: 20px; }

/* ==========================================================================
  12. PROBLEM SECTION
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.problem-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-darkest) 100%);
  background-size: cover;
  background-position: center;
}
.problem-image .badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(4, 25, 42, 0.75);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  border-radius: 16px;
  color: var(--cream);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.problem-image .badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}
.problem-image .badge .lbl {
  font-size: 0.85rem;
  margin-top: 6px;
  color: var(--blue-100);
}
.problem-list { display: flex; flex-direction: column; gap: 28px; margin-top: 28px; }
.problem-item { padding-left: 22px; border-left: 3px solid var(--blue); }
.problem-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.problem-item p { font-size: 0.97rem; }

/* ==========================================================================
  13. SERVICES (DARK SECTION)
   ========================================================================== */
.services {
  background: var(--navy-darkest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 150, 240, 0.10), transparent 60%);
  pointer-events: none;
}
.services::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08), transparent 60%);
  pointer-events: none;
}
.services .container { position: relative; z-index: 2; }
.services h2, .services h3, .services h4 { color: var(--cream); }
.services .eyebrow { background: rgba(0, 150, 240, 0.18); color: var(--blue-light); }
.services .section-head p { color: var(--blue-100); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.service-grid > * { grid-column: span 2; }
/* Bij precies 5 children: rij 2 (4e + 5e) gecentreerd */
.service-grid > *:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
.service-grid > *:nth-child(5):nth-last-child(1) { grid-column: 4 / span 2; }
@media (max-width: 980px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-grid > * { grid-column: auto; }
  .service-grid > *:nth-child(4):nth-last-child(2),
  .service-grid > *:nth-child(5):nth-last-child(1) { grid-column: auto; }
}
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--blue);
  transform: translateY(-4px);
}
.service-card .visual {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
}
.service-card .visual svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--blue-100); font-size: 0.93rem; margin-bottom: 22px; }
.service-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-weight: 600;
  font-size: 0.9rem;
}
.service-card .cta::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .cta::after { transform: translateX(4px); }

.service-card.feature {
  background: linear-gradient(135deg, var(--amber), #0284C7);
  border-color: transparent;
}
.service-card.feature .visual { background: var(--navy-darkest); color: var(--amber); }
.service-card.feature h3 { color: var(--navy-darkest); }
.service-card.feature p { color: rgba(7, 39, 59, 0.78); }
.service-card.feature .cta { color: var(--navy-darkest); }

/* Light service grid (op subpagina's) */
.service-grid-light .service-card {
  background: var(--white);
  border-color: var(--line);
}
.service-grid-light .service-card h3 { color: var(--ink); }
.service-grid-light .service-card p { color: var(--ink-3); }
.service-grid-light .service-card .cta { color: var(--blue); }

/* ==========================================================================
  14. WHY US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.why-image {
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.why-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,25,42,0) 40%, rgba(4,25,42,0.55) 100%);
  pointer-events: none;
}
.why-image .quote {
  position: absolute;
  bottom: 36px; left: 36px; right: 36px;
  background: rgba(7, 39, 59, 0.85);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  color: var(--cream);
  z-index: 2;
}
.why-image .quote p {
  color: var(--cream);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.45;
}
.why-image .quote .author {
  display: flex; align-items: center; gap: 10px;
  color: var(--blue-100);
  font-size: 0.85rem;
  font-weight: 600;
}
.why-image .quote .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--blue);
  background: var(--blue);
}
.why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.pillar h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar h4::before {
  content: '';
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 3px;
  transform: rotate(45deg);
}
.pillar p { font-size: 0.93rem; }

/* ==========================================================================
  15. WORKFLOW
   ========================================================================== */
.workflow { background: var(--blue-50); }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.workflow-step {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.workflow-step:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.workflow-step .step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.05em;
}
.workflow-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.workflow-step p { font-size: 0.92rem; }

/* ==========================================================================
  16. PROJECTS
   ========================================================================== */
.projects { background: var(--cream); }
.project-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 16/10;
}
.project-grid-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  aspect-ratio: auto;
  gap: 24px;
}
.project-grid-2 .project {
  grid-row: auto !important;
  aspect-ratio: 4/3;
  text-decoration: none;
}
.project-grid-2 .project-info {
  padding: 28px;
}
.project-grid-2 .project-info h3 {
  font-size: 1.5rem !important;
  line-height: 1.25;
  margin-bottom: 6px;
}
.project-grid-2 .project-info .stat {
  color: var(--blue-100);
  font-weight: 500;
  text-align: left;
  margin-top: 6px;
}
@media (max-width: 760px) {
  .project-grid-2 { grid-template-columns: 1fr; }
  .project-grid-2 .project { aspect-ratio: 16/10; }
}
.project-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  aspect-ratio: auto;
  gap: 24px;
}
.project-grid-3 .project {
  grid-row: auto !important;
  aspect-ratio: 4/3;
  text-decoration: none;
}
.project-grid-3 .project-info { padding: 24px; }
.project-grid-3 .project-info h3 {
  font-size: 1.3rem !important;
  line-height: 1.25;
  margin-bottom: 6px;
}
.project-grid-3 .project-info .stat {
  color: var(--blue-100);
  font-weight: 500;
}
@media (max-width: 900px) {
  .project-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .project-grid-3 { grid-template-columns: 1fr; }
  .project-grid-3 .project { aspect-ratio: 16/10; }
}
.project {
  border-radius: 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(4, 25, 42, 0.18);
}
.project::after {
  transition: background 0.4s ease;
}
.project:hover::after {
  background:
    linear-gradient(180deg, rgba(4,25,42,0) 30%, rgba(4,25,42,0.95) 100%),
    radial-gradient(circle at 80% 80%, rgba(245, 166, 35, 0.22), transparent 50%);
}
.project .project-info { transition: transform 0.35s ease; }
.project:hover .project-info { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .project, .project::after, .project .project-info { transition: none; }
  .project:hover { transform: none; }
}
.project:nth-child(1) { grid-row: 1 / 3; background: linear-gradient(135deg, var(--blue), var(--navy-darkest)); }
.project:nth-child(2) { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.project:nth-child(3) { background: linear-gradient(135deg, var(--navy), var(--navy-darker)); }
.project:nth-child(4) { background: linear-gradient(135deg, var(--navy-darker), var(--ink)); }
.project:nth-child(5) { background: linear-gradient(135deg, var(--blue), var(--navy-deep)); }
.project::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,25,42,0) 35%, rgba(4,25,42,0.92) 100%),
    radial-gradient(circle at 80% 80%, rgba(245, 166, 35, 0.15), transparent 50%);
  z-index: 1;
}
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--cream);
  z-index: 2;
}
.project-info .tag {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 600;
}
.project-info h3 { color: var(--cream); font-size: 1.25rem; }
.project:nth-child(1) .project-info h3 { font-size: 1.75rem; }
.project-info .stat { margin-top: 8px; font-size: 0.85rem; color: var(--blue-100); font-weight: 500; }

/* Simple project cards (op overzicht-pagina) */
.project-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.3s;
  cursor: pointer;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-card .ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  position: relative;
}
.project-card .ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 70%, rgba(245, 166, 35, 0.25), transparent 60%);
}
.project-card:nth-child(2n) .ph { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.project-card:nth-child(3n) .ph { background: linear-gradient(135deg, var(--navy), var(--navy-darker)); }
.project-card-body { padding: 22px; }
.project-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  background: var(--blue-100);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 600;
}
.project-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.project-card p { font-size: 0.9rem; color: var(--ink-3); }

/* ==========================================================================
   RECENT OPGELEVERD — homepage: 1 uitgelicht project + 2 compacte kaarten
   ========================================================================== */
.recent-projects {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
}
.rp-side { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.rp-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rp-image {
  position: relative;
  background-color: var(--blue-50);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.rp-card .rp-image { overflow: hidden; }
.rp-card:hover .rp-image { transform: scale(1.03); }
.rp-featured .rp-image { aspect-ratio: 16 / 10; }
.rp-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.rp-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; position: relative; background: var(--white); }
.rp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.rp-meta .cat { color: var(--blue); }
.rp-card h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 8px; color: var(--ink); }
.rp-featured h3 { font-size: 1.6rem; }
.rp-card p { font-size: 0.93rem; color: var(--ink-3); margin-bottom: 18px; }
.rp-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rp-figures strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.rp-figures span { font-size: 0.82rem; color: var(--ink-3); }
.rp-card .read {
  margin-top: auto;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rp-card .read::after { content: '→'; transition: transform 0.2s; }
.rp-card:hover .read::after { transform: translateX(4px); }
/* Compacte kaart: foto links, tekst rechts */
.rp-compact { flex-direction: row; }
.rp-compact .rp-image { flex: 0 0 42%; }
.rp-compact .rp-body { padding: 22px 24px; }
.rp-compact p { margin-bottom: 14px; }
@media (max-width: 980px) {
  .recent-projects { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rp-compact { flex-direction: column; }
  .rp-compact .rp-image { flex: none; aspect-ratio: 16 / 10; }
  .rp-featured h3 { font-size: 1.35rem; }
  .rp-figures strong { font-size: 1.4rem; }
  .rp-body { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .rp-card, .rp-image { transition: none; }
  .rp-card:hover, .rp-card:hover .rp-image { transform: none; }
}

/* Ankerlinks (#erve-berchus) niet onder de vaste header laten vallen */
.project-showcase[id] { scroll-margin-top: 110px; }

/* ==========================================================================
   PROJECT SHOWCASE — uitgebreide cards voor projecten-pagina
   ========================================================================== */
.project-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Project filter knoppen */
.project-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.project-filter .filter-btn {
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.project-filter .filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.project-filter .filter-btn.active {
  background: var(--navy-darkest);
  border-color: var(--navy-darkest);
  color: var(--cream);
}
.project-showcase[data-category] {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.project-showcase.is-hidden {
  display: none;
}
.tag.tag-zakelijk {
  background: rgba(15, 75, 105, 0.12);
  color: var(--navy);
}
.tag.tag-particulier {
  background: rgba(0, 150, 240, 0.14);
  color: var(--blue);
}
.project-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.project-showcase--reverse .project-photos { order: 2; }
.project-showcase .project-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1/1;
  position: relative;
}
.project-showcase .ps-photo {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(4, 25, 42, 0.14), 0 2px 6px rgba(4, 25, 42, 0.06);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
}
.project-showcase .ps-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 25, 42, 0.18));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.project-showcase:hover .ps-photo {
  transform: scale(0.985);
}
.project-showcase:hover .ps-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 50px rgba(4, 25, 42, 0.22), 0 4px 12px rgba(4, 25, 42, 0.08);
  z-index: 2;
}
.project-showcase:hover .ps-photo:hover::after { opacity: 1; }

.project-showcase .ps-photo.ps-main { grid-row: 1 / span 2; }

/* 3 foto's: grote bovenaan, 2 kleine eronder */
.project-photos.has-3 { grid-template-rows: 1.4fr 1fr; }
.project-photos.has-3 .ps-photo.ps-main {
  grid-column: 1 / span 2;
  grid-row: 1;
}

/* 2 foto's: side-by-side */
.project-photos.has-2 {
  grid-template-rows: 1fr;
  aspect-ratio: 2/1;
}
.project-photos.has-2 .ps-photo.ps-main { grid-row: auto; }

/* Project info-card polish */
.project-showcase .project-info {
  padding: 4px 0;
}
.project-showcase .project-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 8px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  line-height: 1.4;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}
.project-showcase .project-meta .project-date {
  font-weight: 700;
  color: var(--navy);
}
.project-showcase .project-meta .dot {
  color: var(--ink-3);
  font-weight: 400;
}
.project-showcase .project-meta .tag,
.project-showcase .project-meta .tag.tag-particulier,
.project-showcase .project-meta .tag.tag-zakelijk {
  background: none !important;
  border: 0;
  padding: 0;
  color: var(--ink-2);
  font-weight: 600;
  display: inline;
  font-size: inherit;
}
.project-showcase h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.22;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.project-showcase .project-info p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.project-showcase .project-info p:last-of-type { margin-bottom: 0; }
.project-showcase .project-info p strong { color: var(--ink); font-weight: 700; }
.project-showcase .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.project-showcase .project-tags .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(0, 150, 240, 0.08);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
}
/* Verticale projectvideo (reel) — klik om af te spelen, laadt pas bij klik */
.project-video {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.project-video video {
  width: 168px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  background: #000;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(4, 25, 42, 0.18);
  flex-shrink: 0;
  cursor: pointer;
}
/* In volledig scherm: niet uitrekken — video netjes passend (contain) tonen */
.project-video video:fullscreen,
.project-video video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
.project-video-label { display: flex; flex-direction: column; gap: 4px; }
.project-video-label strong { color: var(--navy); font-size: 1rem; }
.project-video-label span { color: var(--ink-3); font-size: 0.85rem; }
.project-video-label .video-fs-btn {
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(0, 150, 240, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.project-video-label .video-fs-btn:hover {
  border-color: var(--blue);
  background: rgba(0, 150, 240, 0.14);
}
@media (max-width: 560px) {
  .project-video { gap: 14px; }
  .project-video video { width: 132px; }
}
/* Liggende (16:9) projectvideo: volle breedte, label eronder */
.project-video--landscape { flex-direction: column; align-items: stretch; }
.project-video--landscape video { width: 100%; aspect-ratio: 16 / 9; }

/* Foto-lightbox — projectfoto's op groot scherm bekijken */
.project-showcase .ps-photo { cursor: zoom-in; }
.pv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 25, 42, 0.93);
  padding: 4vmin;
  -webkit-tap-highlight-color: transparent;
}
.pv-lightbox.is-open { display: flex; }
.pv-lightbox .pv-img {
  max-width: 94vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.pv-lightbox .pv-close,
.pv-lightbox .pv-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.pv-lightbox .pv-close:hover,
.pv-lightbox .pv-nav:hover { background: rgba(255, 255, 255, 0.28); }
.pv-lightbox .pv-close {
  top: 20px; right: 24px;
  width: 46px; height: 46px;
  font-size: 1.8rem; line-height: 1;
}
.pv-lightbox .pv-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  font-size: 2rem; line-height: 1;
}
.pv-lightbox .pv-prev { left: 20px; }
.pv-lightbox .pv-next { right: 20px; }
.pv-lightbox .pv-counter {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 560px) {
  .pv-lightbox .pv-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .pv-lightbox .pv-prev { left: 8px; }
  .pv-lightbox .pv-next { right: 8px; }
  .pv-lightbox .pv-close { top: 12px; right: 12px; }
}
.project-showcase .project-info {
  position: static;
  padding: 4px 0;
  color: var(--ink);
  bottom: auto; left: auto; right: auto;
  z-index: auto;
}
.project-showcase .project-info h2,
.project-showcase .project-info p {
  color: var(--ink);
}
/* (project-meta consolidated above) */
.project-showcase h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 16px;
}
.project-showcase p {
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.65;
}
.project-showcase .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.project-showcase .project-tags .tag {
  display: inline-block;
  font-size: 0.78rem;
  background: var(--cream-2);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .project-showcase { grid-template-columns: 1fr; gap: 32px; }
  .project-showcase--reverse .project-photos { order: 0; }
  .project-showcase-list { gap: 60px; }
}

/* ==========================================================================
  17. KENNISBANK
   ========================================================================== */
.kennis { background: var(--cream-2); }
.kennis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s;
  cursor: pointer;
  display: block;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-image { aspect-ratio: 16/9; position: relative; }
.kennis-grid .article-card:nth-child(1) .article-image { background: linear-gradient(135deg, var(--blue-100), var(--blue)); }
.kennis-grid .article-card:nth-child(2) .article-image { background: linear-gradient(135deg, var(--blue), var(--navy)); }
.kennis-grid .article-card:nth-child(3) .article-image { background: linear-gradient(135deg, var(--navy), var(--navy-darkest)); }
.kennis-grid .article-card:nth-child(4) .article-image { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.kennis-grid .article-card:nth-child(5) .article-image { background: linear-gradient(135deg, var(--amber), var(--navy)); }
.kennis-grid .article-card:nth-child(6) .article-image { background: linear-gradient(135deg, var(--navy-darker), var(--blue)); }
.article-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 70%, rgba(245, 166, 35, 0.30), transparent 60%);
}
.article-body { padding: 26px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-meta .cat { color: var(--blue); }
.article-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.article-card p { font-size: 0.93rem; color: var(--ink-3); margin-bottom: 16px; }
.article-card .read {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-card .read::after { content: '→'; transition: transform 0.2s; }
.article-card:hover .read::after { transform: translateX(4px); }
.kennis-cta { text-align: center; margin-top: 50px; }

/* Article filters */
.kennis-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--blue); color: var(--blue); }
.filter-chip.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* ==========================================================================
  18. ARTICLE / CONTENT BODY (long-form)
   ========================================================================== */
.content-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.content-body p { margin-bottom: 1.4em; }
.content-body h2 { margin-top: 2em; margin-bottom: 0.6em; font-size: 1.85rem; }
.content-body h3 { margin-top: 1.6em; margin-bottom: 0.4em; font-size: 1.35rem; }
.content-body ul, .content-body ol { margin-bottom: 1.4em; padding-left: 1.5em; }
.content-body li { margin-bottom: 0.5em; }
.content-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.content-body a:hover { color: var(--navy); }
.content-body blockquote {
  border-left: 4px solid var(--blue);
  padding: 0 0 0 24px;
  margin: 2em 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-2);
}
.content-body img { border-radius: var(--radius); margin: 2em 0; }
.content-body strong { color: var(--ink); font-weight: 700; }

.content-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-3);
}
.content-meta .author-pic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background-image: url('/images/team/hans-bosch-400.webp');
  background-size: cover;
  background-position: center top;
  border: 2px solid var(--blue);
}
.content-meta .author-name { font-weight: 600; color: var(--ink); }

/* ==========================================================================
  19. FAQ
   ========================================================================== */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.2s;
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  border-radius: 50%;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 26px 22px;
  color: var(--ink-2);
}

/* ==========================================================================
  20. STATS / NUMBERS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat .num-suffix { font-size: 1.5rem; color: var(--blue); }
.stat .label {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--ink-3);
}

/* ==========================================================================
  21. PRICING / VOORDELEN GRID
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow); }
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--blue-100);
  color: var(--blue);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.15rem; margin-bottom: 8px; }
.benefit p { font-size: 0.93rem; color: var(--ink-3); }

/* ==========================================================================
  22. FINAL CTA
   ========================================================================== */
.final-cta {
  background: var(--navy-darkest);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 150, 240, 0.18), transparent 60%);
  border-radius: 50%;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12), transparent 60%);
  border-radius: 50%;
}
.final-cta-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 { color: var(--cream); margin-bottom: 22px; }
.final-cta h2 .gradient {
  background: linear-gradient(110deg, var(--blue-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 700;
}
.final-cta p {
  color: var(--blue-100);
  font-size: 1.1rem;
  margin-bottom: 8px;
  max-width: 560px;
}
.final-cta .eyebrow { margin-bottom: 18px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
  23. FOOTER
   ========================================================================== */
footer.site {
  background: var(--ink);
  color: var(--blue-100);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .logo-mark { margin-bottom: 18px; }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand p { color: var(--blue-100); font-size: 0.92rem; margin-bottom: 22px; max-width: 280px; }
.footer-contact { font-size: 0.9rem; line-height: 1.9; }
.footer-contact a { color: var(--blue-100); }
.footer-contact a:hover { color: var(--amber-light); }
.footer-col h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--blue-100); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-3);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

/* ==========================================================================
  24. CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block {
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-block h3 { margin-bottom: 20px; }
.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.contact-list .icon svg { width: 18px; height: 18px; }
.contact-list .label {
  font-size: 0.78rem;
  color: var(--ink-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-list strong { display: block; font-size: 1rem; color: var(--ink); }
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--blue); }

.map-block {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--cream-2);
  position: relative;
}
.map-block iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(1.05);
}
.map-overlay-link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(4, 25, 42, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.map-overlay-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 25, 42, 0.22);
  color: var(--blue);
}

/* ==========================================================================
  25. REVIEWS PAGE
   ========================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.review-card .stars { font-size: 1rem; margin-bottom: 14px; display: block; }
.review-card .review-text {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.review-card .reviewer-initial {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-card .reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.review-card .reviewer-meta {
  font-size: 0.8rem;
  color: var(--ink-3);
}

/* ==========================================================================
  26. RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  nav.primary { gap: 22px; }
}
@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid var(--line);
    width: 40px; height: 40px;
    border-radius: 10px;
  }

  .hero { padding: 50px 0 60px; }
  .hero-compact { padding: 40px 0 50px; }
  /* Tekst-only hero op mobiel: kleinere gap naar de form-sectie eronder.
     Hogere specificity zodat het de regel hierboven overschrijft. */
  .hero-compact.hero-compact--text { padding-bottom: 24px; }
  section.block.block--tight-top { padding-top: 32px; }
  /* !important nodig omdat sommige pagina's inline grid-template-columns hebben */
  .hero-grid, .hero-compact .hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  /* Peblar product card centreren op mobiel + grootte beperken */
  .peblar-hero-product { max-width: 320px; margin: 0 auto; }
  .peblar-hero-product .product-badge { font-size: 0.85rem; }
  /* Peblar spec rij 4-kol → 2-kol op mobiel */
  .peblar-spec-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .peblar-spec-grid > div > div:first-child { font-size: 2.4rem !important; }
  /* ems-points 3-kol → 1-kol op mobiel als inline */
  .ems-points[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-bullets { margin-bottom: 24px; }
  .hero-card { padding: 24px 20px; }
  .header-cta { display: none; }
  .container { padding: 0 20px; }
  header.site .nav-wrap { padding: 18px 20px; }
  .announce { font-size: 0.8rem; padding: 11px 16px; }
  .logo-mark { gap: 14px; }
  .logo-mark img.logo-img, .logo-mark svg { width: 42px; height: 42px; }
  .logo-text { font-size: 1.4rem; }
  .nav-toggle { width: 44px; height: 44px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .problem-grid, .why-grid, .final-cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Why-image: bus-foto moet zichtbaar blijven naast de quote */
  .why-image { aspect-ratio: 4 / 5; background-position: center 30% !important; }
  .why-image .quote {
    bottom: 16px; left: 16px; right: 16px;
    padding: 16px 18px;
    border-radius: 14px;
  }
  .why-image .quote p { font-size: 0.95rem; margin-bottom: 10px; line-height: 1.4; }
  .why-image .quote .author { font-size: 0.78rem; gap: 10px; }
  .why-image .quote .author-avatar { width: 30px; height: 30px; }
  .service-grid, .kennis-grid, .review-grid, .project-cards, .benefits-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }
  .project { aspect-ratio: 4/3; }
  .project:nth-child(1) { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section.block { padding: 70px 0; }
}
@media (max-width: 560px) {
  /* Footer gecentreerd op mobiel — links uitgelijnd oogt rommelig op 1 kolom */
  footer.site { text-align: center; }
  .footer-brand .logo-mark { justify-content: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom .legal { justify-content: center; width: 100%; }
  /* Form: alle multi-kolom velden naar 1 kolom zodat niets eraf valt.
     .compact heeft hogere specificity dan .field-checkboxes, dus expliciet meenemen. */
  .form-row { grid-template-columns: 1fr; }
  .field-checkboxes,
  .field-checkboxes.compact { grid-template-columns: 1fr; }
  .workflow-grid, .footer-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .project:nth-child(1) { grid-column: auto; }
  h1 { font-size: 2.25rem; word-break: normal; overflow-wrap: break-word; hyphens: auto; }
  h2 { word-break: normal; overflow-wrap: break-word; hyphens: auto; }
  .container { padding: 0 20px; }
  /* Veiligheidsnet: voorkom dat ANY content de viewport breekt */
  .hero, .hero-compact, section.block, .final-cta, .stats-banner, .ems-section { overflow: hidden; }
}

/* ==========================================================================
  27. ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero-lead, .hero-bullets, .hero-card, .tab-toggles {
  animation: fadeUp 0.8s ease-out backwards;
}
.tab-toggles { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-lead { animation-delay: 0.3s; }
.hero-bullets { animation-delay: 0.4s; }
.hero-card { animation-delay: 0.5s; }

/* Eerste blok onder de hero komt bij het laden direct na de hero binnen.
   Via CSS (niet JS) zodat het vanaf de eerste weergave loopt, zonder flits.
   Alleen de inhoud (.container) beweegt: de achtergrond van de sectie en de
   donkere USP-balk blijven staan, anders ontstaat er een naad onder de hero. */
.hero + section > .container,
.hero + .usp > .container,
.hero + .usp + section > .container {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero + section > .container,
.hero + .usp > .container { animation-delay: 0.55s; }
.hero + .usp + section > .container { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
  28. UTILITIES
   ========================================================================== */
/* Accessibility: skip-to-content link (verschijnt alleen bij keyboard focus) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--navy-darkest);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* Algemene hover-animatie voor klikbare cards */
.review-card, .article-card, .kennis-card {
  transition: transform 0.35s cubic-bezier(0.22, 1.3, 0.4, 1), box-shadow 0.3s;
}
.review-card:hover, .article-card:hover, .kennis-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 38px rgba(4, 25, 42, 0.14);
}
.project-showcase .ps-photo {
  transition: transform 0.5s ease;
}
.project-showcase .ps-photo:hover {
  transform: scale(1.03);
}

/* Verplicht-veld indicator in form labels */
.req {
  color: #dc2626;
  font-weight: 700;
  margin-left: 2px;
}
/* Oranje rand pas NADAT de gebruiker het veld heeft aangeraakt en het ongeldig
   achterliet — :invalid alleen kleurt lege verplichte velden al bij het laden */
input:required:user-invalid {
  border-color: #f59e0b;
}

/* GDPR consent checkbox in formulieren */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.45;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
}
.consent-label a {
  color: var(--blue);
  text-decoration: underline;
}
.consent-label a:hover { color: var(--navy); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.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;
}

/* ==========================================================================
  29. PHOTO HERO (voor product/service pagina's)
   ========================================================================== */
.hero-photo {
  position: relative;
  background: var(--navy-darkest);
  color: var(--cream);
  padding: 100px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.55);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 25, 42, 0.78) 0%, rgba(15, 75, 105, 0.45) 50%, rgba(4, 25, 42, 0.55) 100%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 150, 240, 0.20), transparent 70%);
  z-index: -1;
}
.hero-photo h1 { color: var(--cream); }
.hero-photo h1 .gradient-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ffffff;
}
.hero-photo .hero-lead { color: var(--blue-100); max-width: 580px; }
.hero-photo .breadcrumbs { color: var(--blue-100); }
.hero-photo .breadcrumbs a:hover { color: var(--amber-light); }
.hero-photo .breadcrumbs .sep { color: rgba(255, 255, 255, 0.35); }
.hero-photo .eyebrow {
  background: rgba(0, 150, 240, 0.22);
  color: #ffffff;
}
.hero-photo .hero-bullets li { color: var(--cream); }
.hero-photo .hero-bullets li::before { background: var(--amber); }

.hero-photo .hero-card {
  position: relative;
  z-index: 1;
}

/* Decorative floating shapes voor extra visueel */
.hero-photo .deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.hero-photo .deco-circle.c1 {
  top: -100px; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.20), transparent 70%);
}
.hero-photo .deco-circle.c2 {
  bottom: -80px; left: 5%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0, 150, 240, 0.25), transparent 70%);
}

/* ==========================================================================
  30. SERVICE / PROJECT / ARTICLE CARDS MET FOTO
   ========================================================================== */
.has-photo .article-image,
.has-photo .ph,
.service-card-photo .visual {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
}

/* Service card met grote foto bovenaan */
.service-card-photo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  color: inherit;
}
.service-card-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.service-card-photo .photo {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card-photo .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 25, 42, 0.4));
  transition: opacity 0.3s;
}
.service-card-photo:hover .photo::after { opacity: 0.6; }
.service-card-photo .photo .icon-badge {
  position: absolute;
  top: 16px; left: 16px;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--blue);
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.service-card-photo .photo .icon-badge svg { width: 22px; height: 22px; }
.service-card-photo .body { padding: 24px 26px; }
.service-card-photo h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-card-photo p { font-size: 0.92rem; color: var(--ink-3); margin-bottom: 16px; }
.service-card-photo .read-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-photo .read-link::after { content: '→'; transition: transform 0.2s; }
.service-card-photo:hover .read-link::after { transform: translateX(4px); }

/* ==========================================================================
  31. WORKFLOW MET PIJLEN (zoals slimwatt.nl)
   ========================================================================== */
.workflow-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.workflow-flow .workflow-step { height: 100%; }
.workflow-arrow {
  display: grid;
  place-items: center;
  color: var(--blue);
  width: 60px;
  opacity: 0.6;
}
.workflow-arrow svg {
  width: 50px; height: 30px;
}
.workflow-arrow path { stroke-dasharray: 4 4; }

/* Step badge met circle */
.workflow-step {
  position: relative;
}
.workflow-step .step-circle {
  position: absolute;
  top: -20px; right: 24px;
  width: 50px; height: 50px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 150, 240, 0.3);
}

/* ==========================================================================
  32. STATS MET PHOTO BACKGROUND
   ========================================================================== */
.stats-banner {
  background:
    linear-gradient(135deg, rgba(4, 25, 42, 0.92), rgba(15, 75, 105, 0.85)),
    url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: 80px 0;
  position: relative;
}
.stats-banner .stat .num { color: var(--amber-light); }
.stats-banner .stat .num-suffix { color: var(--blue-light); }
.stats-banner .stat .label { color: var(--blue-100); }
.stats-banner .stats { border: 0; padding: 0; }

/* ==========================================================================
  33. TESTIMONIAL / QUOTE BLOCK
   ========================================================================== */
.testimonial {
  background: var(--cream);
  position: relative;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 28px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--blue-100);
  z-index: 0;
}
.testimonial-card-content {
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 26px;
  font-weight: 500;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .author-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  background-size: cover;
  background-position: center;
}
.testimonial-card .author-name {
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card .author-role {
  font-size: 0.88rem;
  color: var(--ink-3);
}

/* ==========================================================================
  34. DECORATIVE BANDS / PATTERNS
   ========================================================================== */
.section-deco {
  position: relative;
  overflow: hidden;
}
.section-deco::before {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  transform: translateY(-50%);
  width: 80vw; height: 80vw;
  max-width: 1200px; max-height: 1200px;
  background: radial-gradient(circle, rgba(0, 150, 240, 0.04), transparent 50%);
  pointer-events: none;
}

/* Decoratieve "stroom-lijn" */
.flow-line {
  position: absolute;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--amber), var(--blue), transparent);
  opacity: 0.3;
}

/* ==========================================================================
  35. PRODUCT IMAGE GALLERY (op product detail pagina's)
   ========================================================================== */
.product-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-gallery .img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 200px;
}
.product-gallery .img-1 { grid-row: 1 / 3; }

/* ==========================================================================
  36. AANIMATIE: subtle hover & scroll-in
   ========================================================================== */
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--blue) 0%, var(--amber) 25%, var(--blue) 50%, var(--amber) 75%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s linear infinite;
}

/* Scroll fade-in (subtiel) */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
  37. BADGES / TAGS (visuele extras)
   ========================================================================== */
.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--amber);
  color: var(--navy-darkest);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-new::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--navy-darkest);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
/* Hero-card highlight: glow op ::after (raakt animation op .hero-card niet),
   zoom via CSS transition + extra class (overschrijft animation niet). */
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(0, 150, 240, 0);
  z-index: 0;
}
@keyframes hero-card-pulse-ring {
  0% {
    box-shadow:
      0 0 0 0 rgba(0, 150, 240, 0.85),
      0 0 0 0 rgba(0, 150, 240, 0.55);
  }
  25% {
    box-shadow:
      0 0 0 6px rgba(0, 150, 240, 0.55),
      0 0 0 22px rgba(0, 150, 240, 0.25);
  }
  55% {
    box-shadow:
      0 0 0 10px rgba(0, 150, 240, 0.35),
      0 0 0 36px rgba(0, 150, 240, 0.12);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(0, 150, 240, 0),
      0 0 0 0 rgba(0, 150, 240, 0);
  }
}
.hero-card.highlight-pulse::after {
  animation: hero-card-pulse-ring 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Zoom: transition i.p.v. animation, zodat fadeUp op .hero-card intact blijft */
.hero-card {
  transition: transform 0.45s cubic-bezier(0.22, 1.3, 0.4, 1);
}
.hero-card.is-zooming {
  transform: scale(1.025);
}

/* ==========================================================================
  38. RESPONSIVE FIXES VOOR NIEUWE COMPONENTEN
   ========================================================================== */
@media (max-width: 980px) {
  .workflow-flow {
    grid-template-columns: 1fr 1fr;
    gap: 16px 16px;
  }
  .workflow-arrow { display: none; }
  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .product-gallery .img-1 { grid-row: auto; aspect-ratio: 16/9; }
  .testimonial-card { padding: 30px 26px; }
  .testimonial-card p { font-size: 1.1rem; }
  .hero-photo { padding: 70px 0 80px; }
}

/* ==========================================================================
  39. PRODUCT PAGE STRUCTURE (volgt slimwatt.nl pagina-flow)
   ========================================================================== */

/* Sectie eyebrow boven titel */
.section-eyebrow-top {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* Situatie-grid: 2 problem-blokken naast image */
.situatie-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.situatie-problemen {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.situatie-problem {
  padding-left: 22px;
  border-left: 3px solid var(--blue);
}
.situatie-problem h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.situatie-problem p {
  font-size: 0.97rem;
}
.situatie-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.situatie-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 25, 42, 0.75));
}
.situatie-image .stat-callout,
.img-stat-wrap .stat-callout {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(4, 25, 42, 0.85);
  backdrop-filter: blur(10px);
  padding: 22px 26px;
  border-radius: 16px;
  color: var(--cream);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: calc(100% - 56px);
}
.situatie-image .stat-callout .stat-num,
.img-stat-wrap .stat-callout .stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  letter-spacing: -0.03em;
}
.situatie-image .stat-callout .stat-lbl,
.img-stat-wrap .stat-callout .stat-lbl {
  font-size: 0.85rem;
  margin-top: 6px;
  color: var(--blue-100);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* 3-kolom productkaarten met grote foto */
.product-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card-big {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1.3, 0.4, 1), box-shadow 0.3s, border-color 0.3s;
}
.product-card-big:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 22px 50px rgba(4, 25, 42, 0.18);
  border-color: var(--blue);
}
.product-card-big .photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.product-card-big:hover .photo {
  transform: scale(1.05);
}
.product-card-big .body { padding: 26px 28px; }
.product-card-big h3 { font-size: 1.25rem; margin-bottom: 10px; }
.product-card-big p { font-size: 0.95rem; color: var(--ink-3); line-height: 1.6; }

/* EMS dark section met 4 punten */
.ems-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darkest) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.ems-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 150, 240, 0.15), transparent 60%);
  pointer-events: none;
}
.ems-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.10), transparent 60%);
  pointer-events: none;
}
.ems-section .container { position: relative; z-index: 2; }
.ems-section h2, .ems-section h3, .ems-section h4 { color: var(--cream); }
.ems-section .section-eyebrow-top { color: var(--blue-light); }
.ems-section .ems-lead {
  color: var(--blue-100);
  font-size: 1.1rem;
  max-width: 760px;
  margin-bottom: 40px;
}
.ems-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ems-point {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px 28px;
  transition: all 0.25s;
}
.ems-point:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--blue);
}
.ems-point h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ems-point h4::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ems-point p {
  color: var(--blue-100);
  font-size: 0.93rem;
}

/* Rendement-grid: 3 kaarten met financiele voordelen */
.rendement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.rendement-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  border-top: 3px solid var(--blue);
  transition: transform 0.35s cubic-bezier(0.22, 1.3, 0.4, 1), box-shadow 0.3s, border-top-color 0.3s;
}
.rendement-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(4, 25, 42, 0.15);
  border-top-color: var(--blue-light);
}
.rendement-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.rendement-card p { font-size: 0.93rem; color: var(--ink-3); }

/* "Wat levert het u op?" 4-grid met iconen */
.voordelen-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.voordeel-item {
  text-align: center;
  padding: 20px 16px;
}
.voordeel-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--blue);
  position: relative;
  overflow: hidden;
}
.voordeel-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 50%);
}
.voordeel-icon svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.voordeel-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.voordeel-item p {
  font-size: 0.9rem;
  color: var(--ink-3);
}

/* ==========================================================================
  40. VERBETERDE HEADER (top bar + polish)
   ========================================================================== */
.top-bar {
  background: var(--navy-darkest);
  color: var(--blue-100);
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-100);
}
.top-bar-item:hover { color: var(--amber-light); }
.top-bar-item svg { width: 14px; height: 14px; }
.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.top-bar-right a { color: var(--blue-100); transition: color 0.2s; }
.top-bar-right a:hover { color: var(--amber-light); }
.top-bar-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-rating .stars-mini { color: var(--amber); letter-spacing: 1px; }

/* (nav polish nu in de hoofd-nav sectie hierboven) */

/* ==========================================================================
  41. VIDEO HERO BACKGROUND
   ========================================================================== */
.hero-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  padding: 100px 0 110px;
  min-height: 600px;
  display: flex;
  align-items: center;
  /* Donker i.p.v. crème: anders schemert er onderaan een haarlijn door
     (sub-pixel afronding van de videolaag) tegen de donkere USP-balk. */
  background: var(--navy-darkest);
}
.hero-video-bg {
  position: absolute;
  inset: -1px 0;
  z-index: -2;
  overflow: hidden;
}
.hero-video-bg video,
.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Posterfoto ligt bovenóp de video en dekt 'm volledig af (incl. de play-knop
   die Safari over een niet-spelende video legt). Zodra de video echt speelt
   voegt JS .is-playing toe en fade't de poster weg. Speelt hij niet, dan blijft
   de foto liggen — nooit een play-knop zichtbaar. */
.hero-video-bg .hero-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.hero-video-bg.is-playing .hero-poster {
  opacity: 0;
  pointer-events: none;
}
.hero-video-bg video {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-video-bg.is-playing video {
  opacity: 1;
}
/* Verberg bovendien de play-knop die Safari over de video legt als autoplay
   wordt geblokkeerd (o.a. in energiebesparingsmodus). */
.hero-video-bg video::-webkit-media-controls,
.hero-video-bg video::-webkit-media-controls-start-playback-button,
.hero-video-bg video::-webkit-media-controls-overlay-play-button,
.hero-video-bg video::-webkit-media-controls-play-button,
.hero-video-bg video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}
/* Hero achtergrond — momenteel statische foto, video staat klaar in HTML voor later */
.hero-video-bg { background-size: cover; background-position: center; }
.hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 25, 42, 0.78) 0%, rgba(15, 75, 105, 0.45) 50%, rgba(4, 25, 42, 0.55) 100%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 150, 240, 0.20), transparent 70%);
  z-index: -1;
}
.hero-video h1 { color: #ffffff; }
.hero-video h1 .gradient-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ffffff;
}
.hero-video .hero-lead { color: #ffffff; }
.hero-video .hero-bullets li { color: #ffffff; }
.hero-video .hero-bullets li::before { background: var(--amber); }

/* ==========================================================================
  42. MULTI-REVIEW CAROUSEL OP HOMEPAGE
   ========================================================================== */
.reviews-section {
  background: var(--cream-2);
  position: relative;
}
.review-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.review-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-tile::before {
  content: '"';
  position: absolute;
  top: 8px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-100);
  z-index: 0;
}
.review-tile .review-stars {
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.review-tile .review-text {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.review-tile .review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-tile .review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--blue);
}
.review-tile .review-initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.review-tile .review-author {
  font-weight: 700;
  font-size: 0.9rem;
}
.review-tile .review-context {
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-top: 2px;
}
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* Tabs sticky/centered op homepage */
.tab-toggles-center {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* ==========================================================================
  43. SCROLL-IN ANIMATIES (alle secties)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
  44. RESPONSIVE FIXES
   ========================================================================== */
@media (max-width: 980px) {
  .top-bar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
  .top-bar-right { display: none; }
  .top-bar { font-size: 0.75rem; }

  /* !important nodig: sommige pagina's zetten inline grid-template-columns */
  .situatie-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .product-cards-3, .rendement-grid, .voordelen-4 { grid-template-columns: 1fr; }
  .ems-points { grid-template-columns: 1fr; }
  .review-grid-3 { grid-template-columns: 1fr; }
  /* Generieke 2-koloms inline split-secties → 1 kolom op mobiel */
  .split-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  /* Vangnet: ALLE inline multi-koloms grids op subpagina's → 1 kolom op mobiel.
     Veel product/EMS-pagina's zetten grid-template-columns inline (bv. de
     contact-form sectie met 1.2fr 1fr). Uitzondering: peblar-spec-grid blijft
     2-koloms via z'n eigen regel. */
  [style*="grid-template-columns"]:not(.peblar-spec-grid) {
    grid-template-columns: 1fr !important;
  }

  .header-cta-phone { display: none; }
  .hero-video { padding: 70px 0 80px; min-height: auto; }
}
@media (max-width: 560px) {
  .voordelen-4 { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
  45. TEAM GRID (over ons pagina)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 30px 0 50px;
}
.team-member {
  text-align: left;
}
.team-photo-big {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-50);
  border-radius: var(--radius);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.team-photo-big::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 25, 42, 0.25));
}
.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.team-member .team-role {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-member p {
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ==========================================================================
  46. PEBLAR HERO MET PRODUCT PHOTO (rechts naast tekst)
   ========================================================================== */
.peblar-hero-product {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.peblar-hero-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 25, 42, 0.5));
}
/* Transparant-product variant: PNG met glow op donkere hero, geen achtergrondfoto */
.peblar-hero-product--transparent {
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 50% 45%, rgba(56, 176, 245, 0.18), transparent 60%);
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.peblar-hero-product--transparent::before { display: none; }
.peblar-hero-product--transparent .peblar-product-img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
}
.peblar-hero-product--transparent .product-badge {
  z-index: 2;
}
.peblar-hero-product .product-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 14px;
}
.peblar-hero-product .badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.peblar-hero-product .badge-icon svg { width: 24px; height: 24px; }
.peblar-hero-product .badge-text {
  color: var(--ink);
}
.peblar-hero-product .badge-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.peblar-hero-product .badge-sub {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 2px;
}

/* Peblar CTA banner op laadpaal pages */
.peblar-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-darkest) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.peblar-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25), transparent 60%);
  pointer-events: none;
}
.peblar-cta-banner > * { position: relative; z-index: 1; }
.peblar-cta-banner h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.peblar-cta-banner p {
  color: var(--blue-100);
  font-size: 0.98rem;
  max-width: 560px;
}
.peblar-cta-banner .eyebrow {
  background: rgba(14, 165, 233, 0.2);
  color: var(--amber-light);
  margin-bottom: 8px;
}

/* ==========================================================================
  47. RESPONSIVE FIXES
   ========================================================================== */
@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .peblar-cta-banner { grid-template-columns: 1fr; }
  .peblar-cta-banner .btn { width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
  48. FORM-DOELGROEP TOGGLES & COMPACTE CHECKBOXES
   ========================================================================== */
.tab-toggles.small {
  display: inline-flex;
  background: var(--cream-2);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
.tab-toggles.small button {
  background: transparent;
  border: 0;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: 999px;
  font-family: inherit;
  transition: all 0.2s;
}
.tab-toggles.small button.active {
  background: var(--blue);
  color: var(--white);
}
.form-doelgroep { margin-bottom: 4px; }

.field-checkboxes.compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}
.field-checkboxes.compact label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-2);
  cursor: pointer;
  font-weight: 500;
}
.field-checkboxes.compact input[type="checkbox"] {
  width: 14px; height: 14px;
  accent-color: var(--blue);
}
/* Mobiel: compacte checkboxes 1 kolom — staat ná de basisregel zodat het
   wint van de 2-kolom default (gelijke specificity, latere bron). */
@media (max-width: 560px) {
  .field-checkboxes.compact { grid-template-columns: 1fr; }
}

/* ==========================================================================
  49. STATS-3 VARIANT (3 kolommen i.p.v. 4)
   ========================================================================== */
.stats.stats-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
  margin: 0 auto;
}
.stats.stats-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .stats.stats-3, .stats.stats-2 { grid-template-columns: 1fr; }
}
