/* ============================================================
   ARUNAS STUDIO — STYLESHEET
   Alle styling. Tekst zit in content.js, niet hier.
============================================================ */

/* ============================================================ TOKENS */
:root {
  --brand-black:     #111214;
  --brand-dark:      #181A1E;
  --brand-surface:   #1E2127;
  --brand-blue:      #009FD4;
  --brand-blue-dk:   #007BAA;
  --brand-blue-lt:   #29B8E6;
  --brand-red:       #C8231E;
  --white:           #FFFFFF;
  --gray-100:        #F4F5F6;
  --gray-300:        #C8CDD5;
  --gray-400:        #9CA3AF;
  --gray-500:        #6B7280;
  --gray-600:        #4B5563;
  --gray-700:        #374151;
  --section-light:   #F7F8FA;
  --fh: 'Open Sans', sans-serif;
  --fb: 'Segoe UI', 'Open Sans', sans-serif;
  --rsm:  6px;
  --rmd: 12px;
  --rlg: 20px;
  --sc: 0 4px 24px rgba(0,0,0,.10);
  --sb: 0 0 32px rgba(0,159,212,.25);
  --tr: .25s cubic-bezier(.4,0,.2,1);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  color: var(--brand-black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }

/* ============================================================ LUCIDE ICON BASE */
[data-lucide] {
  width: 24px; height: 24px;
  stroke-width: 1.75;
  fill: none;
  stroke: currentColor;
  vertical-align: middle;
}

/* ============================================================ UTILITY */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.slabel {
  display: inline-block;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.stitle {
  font-family: var(--fh);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-black);
}
.stitle--w { color: var(--white); }
.ssub {
  font-size: 17px;
  color: var(--gray-500);
  margin-top: 14px;
  max-width: 580px;
}
.ssub--w { color: rgba(255,255,255,.62); }

.section { padding: 96px 0; }
.section--lt { background: var(--section-light); }
.section--dk { background: var(--brand-dark); }
.section--bk { background: var(--brand-black); }
.shead { margin-bottom: 56px; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--rsm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
}
.btn [data-lucide] { width: 18px; height: 18px; }
.btn-p { background: var(--brand-blue); color: var(--white); border-color: var(--brand-blue); }
.btn-p:hover { background: var(--brand-blue-dk); border-color: var(--brand-blue-dk); transform: translateY(-2px); box-shadow: var(--sb); }
.btn-o { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-o:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-w { background: var(--white); color: var(--brand-blue); border: 2px solid var(--white); font-weight: 800; }
.btn-w:hover { background: rgba(255,255,255,.92); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--rsm);
  border: 2px solid #25D366;
  transition: var(--tr);
}
.btn-wa [data-lucide] { width: 18px; height: 18px; }
.btn-wa:hover { background: #1fb759; border-color: #1fb759; transform: translateY(-2px); }

/* ============================================================ NAVIGATIE */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,18,20,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--tr);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo-mark { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-a {
  background: var(--brand-blue);
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 22px;
  padding: 2px 10px 2px 8px;
  letter-spacing: -.5px;
}
.logo-s {
  display: flex; align-items: center; gap: 5px;
  color: #aaa;
  font-family: var(--fh);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.13);
}
.logo-dot { width: 9px; height: 9px; background: var(--brand-red); border-radius: 50%; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.72);
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: color var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  color: rgba(255,255,255,.68);
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: color var(--tr);
}
.nav-phone [data-lucide] { width: 15px; height: 15px; }
.nav-phone:hover { color: var(--brand-blue-lt); }

.lang-switch {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,.55);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  transition: var(--tr);
}
.lang-switch:hover { color: var(--white); border-color: rgba(255,255,255,.4); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); }

.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--brand-dark);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: rgba(255,255,255,.78);
  font-family: var(--fh);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mob-menu .mob-phone { color: var(--brand-blue-lt); border-bottom: none; margin-top: 4px; }
.mob-menu .mob-cta {
  margin-top: 16px;
  background: var(--brand-blue);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--rsm);
  font-weight: 700;
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-links, .nav-phone, .lang-switch.desktop-only { display: none; }
  .burger { display: flex; }
}

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--brand-black);
  overflow: hidden;
}

/* Carousel container */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero-slide.active img {
  transform: scale(1.18); /* Ken Burns: subtiele zoom */
}

/* Placeholder als er geen foto's zijn */
.hero-ph {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#0d1620 0%,#0a1f35 30%,#0d2b42 55%,#0e1c2e 80%,#080d14 100%);
  z-index: 0;
}
.hero-ph::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,159,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,159,212,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Decoratieve geometrische vormen */
.hero-stl {
  position: absolute;
  top: -100px; left: -80px;
  width: 560px; height: 560px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, transparent 60%);
  clip-path: polygon(0 0,100% 0,60% 100%,0 60%);
  opacity: .12; z-index: 1; pointer-events: none;
}
.hero-sbr {
  position: absolute;
  bottom: -80px; right: -60px;
  width: 460px; height: 460px;
  background: linear-gradient(315deg, var(--brand-blue-lt) 0%, transparent 60%);
  clip-path: polygon(40% 0,100% 40%,100% 100%,0 100%);
  opacity: .09; z-index: 1; pointer-events: none;
}
.hero-line { display: none;
  /*position: absolute;
  top: 30%; right: 9%;
  width: 2px; height: 180px;
  background: linear-gradient(to bottom, var(--brand-blue-lt), transparent);
  opacity: .55; z-index: 2; pointer-events: none; */
}
.hero-ov {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(11,13,17,.45) 0%,
    rgba(11,13,17,.25) 35%,
    rgba(11,13,17,.78) 80%,
    var(--brand-black) 100%
  );
  pointer-events: none;
}

.hero-c { position: relative; z-index: 3; padding: 120px 0 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 13, 17, 0.65);
  border: 1px solid rgba(0,159,212,.32);
  color: var(--brand-blue-lt);
  font-family: var(--fh);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-dot {
  width: 6px; height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(200, 35, 30, 0.6);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px 3px rgba(200, 35, 30, 0.85);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 6px 2px rgba(200, 35, 30, 0.6);
  }
}
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(36px, 6.5vw, 70px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: normal; color: var(--brand-blue-lt); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.hstat-n { font-family: var(--fh); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.hstat-n span { color: var(--brand-blue); }
.hstat-l { font-size: 13px; color: rgba(255,255,255,.42); margin-top: 4px; font-weight: 600; letter-spacing: .4px; }

.scroll-ind {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35);
  font-family: var(--fh);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
}
.scroll-ln {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(0,159,212,.7), transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* ============================================================ TRUST BAR */
.trust-bar {
  background: var(--brand-dark);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-lbl {
  text-align: center;
  font-family: var(--fh);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 20px;
}
.trust-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item {
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: var(--tr);
  cursor: default;
}
.trust-item:last-child { border-right: none; }
.trust-txt {
  font-family: var(--fh);
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.22);
  letter-spacing: .8px;
  transition: color var(--tr), text-shadow var(--tr);
  white-space: nowrap;
}
.trust-item:hover .trust-txt {
  color: rgba(255,255,255,.88);
  text-shadow: 0 0 20px rgba(41,184,230,.45);
}

/* ============================================================ DIENSTEN */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,.06);
  border-radius: var(--rlg);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 36px 30px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.svc-card:hover { background: #f9fcfe; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card--p::after {
  content: 'via partners';
  position: absolute; top: 14px; right: 14px;
  font-family: var(--fh);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  padding: 2px 8px; border-radius: 100px;
}
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(0,159,212,.09);
  border-radius: var(--rsm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--tr);
}
.svc-card:hover .svc-icon { background: var(--brand-blue); }
.svc-icon [data-lucide] { width: 24px; height: 24px; color: var(--brand-blue); transition: color var(--tr); }
.svc-card:hover .svc-icon [data-lucide] { color: var(--white); }

.svc-name { font-family: var(--fh); font-size: 18px; font-weight: 800; color: var(--brand-black); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.svc-link { font-family: var(--fh); font-size: 13px; font-weight: 700; color: var(--brand-blue); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--tr); }
.svc-card:hover .svc-link { gap: 9px; }

.partner-banner {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(0,159,212,.05);
  border: 1px solid rgba(0,159,212,.18);
  border-radius: var(--rmd);
  display: flex; align-items: center; gap: 16px;
}
.pb-icon {
  width: 36px; height: 36px;
  background: rgba(0,159,212,.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pb-icon [data-lucide] { width: 18px; height: 18px; color: var(--brand-blue); }
.partner-banner p { font-size: 14px; color: var(--gray-600); line-height: 1.55; }
.partner-banner strong { color: var(--brand-black); font-weight: 700; }

/* ============================================================ WHY */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.usp-item { display: flex; gap: 20px; align-items: flex-start; }
.usp-n {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(0,159,212,.10);
  border: 1px solid rgba(0,159,212,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 14px; font-weight: 800;
  color: var(--brand-blue);
}
.usp-b h3 { font-family: var(--fh); font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.usp-b p { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.65; }

.proc-box {
  background: var(--brand-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rlg);
  padding: 36px 32px;
}
.proc-lbl {
  font-family: var(--fh);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; color: rgba(255,255,255,.28);
  text-transform: uppercase; margin-bottom: 24px;
}
.proc-step {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.proc-step:last-child { border-bottom: none; padding-bottom: 0; }
.proc-step:first-child { padding-top: 0; }
.proc-dot { width: 10px; height: 10px; background: var(--brand-blue); border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.proc-text { flex: 1; }
.proc-text strong { display: block; font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.proc-text span { font-size: 13px; color: rgba(255,255,255,.42); }
.proc-tag {
  margin-left: auto;
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  background: rgba(0,159,212,.12); color: var(--brand-blue-lt);
  padding: 3px 10px; border-radius: 100px;
  white-space: nowrap; align-self: flex-start;
}

/* ============================================================ CASES */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: var(--white);
  border-radius: var(--rmd);
  overflow: hidden;
  box-shadow: var(--sc);
  transition: var(--tr);
  display: flex; flex-direction: column;
  cursor: pointer;
  text-align: left;
  border: none;
  font-family: inherit;
  width: 100%;
  padding: 0;
}
.case-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.13); }

.case-thumb { height: 220px; position: relative; overflow: hidden; background: #111; }
.case-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.case-card:hover .case-photo { transform: scale(1.04); }
/* Backgrounds lazy-laden via IntersectionObserver (zie site.js).
   Tot de .bg-on class wordt toegevoegd, blijft alleen de #111 van .case-thumb
   zichtbaar als donkere placeholder. */
.case-thumb--glad.bg-on   { background: url('assets/cases/glad-forum-header.webp') center/cover; }
.case-thumb--ijssel.bg-on { background: url('assets/cases/ijsselsteinloop-header.webp') center/cover; }
.case-thumb--lvnl.bg-on   { background: url('assets/cases/lvnl-header.webp') center/cover; }
.case-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
}
.case-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,159,212,.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: var(--fh);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.photo-hint {
  position: absolute; bottom: 10px; right: 10px;
  font-family: var(--fh);
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.40);
  background: rgba(0,0,0,.5);
  padding: 3px 8px; border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
}
.photo-hint [data-lucide] { width: 11px; height: 11px; }

.case-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.case-client {
  font-family: var(--fh);
  font-size: 11px; font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-title {
  font-family: var(--fh);
  font-size: 16px; font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.case-desc { font-size: 13.5px; color: var(--gray-500); flex: 1; margin-bottom: 16px; line-height: 1.6; }
.case-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.case-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); }
.case-meta-dot { width: 5px; height: 5px; background: var(--brand-blue); border-radius: 50%; flex-shrink: 0; }
.case-result {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--fh);
  font-size: 13px; font-weight: 700;
  color: var(--brand-black);
  padding: 12px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 14px;
}
.case-rdot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }

.case-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fh);
  font-size: 13px; font-weight: 700;
  color: var(--brand-blue);
  transition: gap var(--tr);
}
.case-card:hover .case-readmore { gap: 10px; }
.case-readmore [data-lucide] { width: 14px; height: 14px; }

.cases-more {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--gray-400);
}
.cases-more a { color: var(--brand-blue); font-weight: 700; }

/* ============================================================ MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,13,17,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  overflow-y: auto;
  padding: 40px 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  max-width: 920px;
  margin: 20px auto;
  background: var(--white);
  border-radius: var(--rlg);
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.95);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.modal-close:hover { background: var(--white); transform: rotate(90deg); }
.modal-close [data-lucide] { width: 20px; height: 20px; color: var(--brand-black); }

.modal-hero {
  height: 320px;
  position: relative;
  overflow: hidden;
}
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-hero--glad   { background: url('assets/cases/glad-forum-header.webp') center/cover; }
.modal-hero--ijssel { background: url('assets/cases/ijsselsteinloop-header.webp') center/cover; }
.modal-hero--lvnl   { background: url('assets/cases/lvnl-header.webp') center/cover; }
.modal-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 70%);
}
.modal-hero-tag {
  position: absolute; top: 20px; left: 24px;
  background: rgba(0,159,212,.9);
  color: var(--white);
  font-family: var(--fh);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.modal-hero-title {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
}
.modal-hero-client {
  font-family: var(--fh);
  font-size: 12px; font-weight: 700;
  color: var(--brand-blue-lt);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 6px;
}
.modal-hero-h2 {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 700px;
}

.modal-body { padding: 36px 40px 40px; }
.modal-intro {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}

.modal-section { margin-bottom: 28px; }
.modal-section h3 {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 10px;
}
.modal-section p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.modal-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--rsm);
}

.modal-cta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.modal-cta-text {
  font-size: 14px;
  color: var(--gray-500);
}
.modal-cta-btn {
  background: var(--brand-blue);
  color: var(--white);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--rsm);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.modal-cta-btn:hover { background: var(--brand-blue-dk); }
.modal-cta-btn [data-lucide] { width: 14px; height: 14px; }

/* ============================================================ MODAL PHOTO GALLERY */
.modal-photos {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}
.modal-photos-title {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin: 0 0 16px;
}
.modal-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.modal-photo-item {
  display: block;
  border-radius: var(--rsm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.modal-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.modal-photo-item:hover img {
  transform: scale(1.04);
}
.modal-photo-item { cursor: pointer; background: none; border: none; padding: 0; }
@media (max-width: 600px) {
  .modal-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================ LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
}
.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(0,159,212,.5); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-family: var(--fh);
  font-weight: 600;
  letter-spacing: .05em;
}
@media (max-width: 600px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

body.modal-open { overflow: hidden; }

/* ============================================================ CTA BAND */
.cta-band {
  background: var(--brand-blue);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--fh);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  max-width: 540px;
  line-height: 1.18;
}
.cta-sub { color: rgba(255,255,255,.75); font-size: 16px; margin-top: 10px; }
.cta-acts { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================================================ EVENT TYPES GRID (homepage → landingpagina's) */
#events { padding-top: 32px; padding-bottom: 72px; }
#events .guide-header { margin-bottom: 32px; }
#events .event-grid { margin-top: 32px; }
@media (max-width: 768px) {
  #events { padding-top: 24px; padding-bottom: 48px; }
  #events .guide-header { margin-bottom: 24px; }
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.event-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--rmd);
  padding: 36px 30px 30px;
  transition: var(--tr);
  text-decoration: none;
  color: inherit;
}
.event-card:hover {
  border-color: rgba(0,159,212,.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.event-card .event-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(0,159,212,.1);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.event-card .event-icon [data-lucide] { width: 26px; height: 26px; }
.event-card h3 {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 10px;
  line-height: 1.25;
}
.event-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.event-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--fh);
  transition: gap var(--tr);
}
.event-card:hover .event-arrow { gap: 10px; }
@media (max-width: 580px) {
  .event-grid { grid-template-columns: 1fr; }
}

/* ============================================================ LANDINGPAGINA — TOPIC GRID & CASE HIGHLIGHT */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin-top: 24px;
}
.topic-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.5;
}
.topic-grid li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--brand-blue);
  border-radius: 50%;
  margin-top: 8px;
}
@media (max-width: 680px) {
  .topic-grid { grid-template-columns: 1fr; }
}

.case-highlight {
  background: linear-gradient(160deg, rgba(0,159,212,.08) 0%, var(--brand-surface) 60%);
  border: 1px solid rgba(0,159,212,.22);
  border-radius: var(--rlg);
  padding: 40px 44px;
  color: rgba(255,255,255,.82);
}
.case-highlight .slabel { color: var(--brand-blue-lt); }
.case-highlight h3 {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 16px;
  line-height: 1.25;
}
.case-highlight p {
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 680px) {
  .case-highlight { padding: 32px 26px; }
}

.situation-block {
  max-width: 720px;
}
.situation-block p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-top: 16px;
}

/* ============================================================ LANDINGPAGINA — WAT U NODIG HEEFT GIDS */
/* Drie aparte accent-opties voor de Guide-sectie — kunnen los aan/uit:
   - .section--guide-stripe : dun blauw streepje boven
   - .section--guide-tint   : subtiele blauwe tint op de achtergrond
   - .guide-icon (in HTML)  : blauwe info-bubbel naast de titel */
.section--guide-stripe {
  border-top: 3px solid var(--brand-blue);
}
.section--guide-tint {
  background: linear-gradient(180deg, rgba(0,159,212,.06) 0%, var(--section-light) 65%);
}

.guide-header {
  max-width: 800px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.guide-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(0,159,212,.12);
  color: var(--brand-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.guide-icon [data-lucide] { width: 26px; height: 26px; }
.guide-header-text { flex: 1; min-width: 0; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.guide-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--rmd);
  padding: 32px 30px 28px;
}
.guide-block h3 {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.guide-block > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 18px;
}
.guide-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-block li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 8px;
}
.guide-block li:last-child { margin-bottom: 0; }
.guide-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--brand-blue);
  border-radius: 50%;
}

.guide-mistakes {
  background: rgba(200, 35, 30, 0.04);
  border-left: 3px solid var(--brand-red);
  border-radius: var(--rsm);
  padding: 26px 32px;
}
.guide-mistakes h3 {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.guide-mistakes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-mistakes li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 10px;
}
.guide-mistakes li:last-child { margin-bottom: 0; }
.guide-mistakes li::before {
  content: '!';
  position: absolute;
  left: 4px; top: 0;
  color: var(--brand-red);
  font-weight: 900;
  font-family: var(--fh);
}
@media (max-width: 680px) {
  .guide-grid { grid-template-columns: 1fr; }
  .guide-block { padding: 28px 24px 24px; }
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
  counter-reset: flow;
  list-style: none;
  padding: 0;
}
.flow-steps li {
  counter-increment: flow;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--rmd);
  padding: 60px 26px 24px;
  position: relative;
  transition: var(--tr);
}
.flow-steps li::before {
  content: counter(flow);
  position: absolute;
  top: 20px; left: 26px;
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-blue);
  opacity: .35;
  line-height: 1;
}
.flow-steps li strong {
  display: block;
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 6px;
}
.flow-steps li span {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}
.flow-steps li:hover {
  border-color: rgba(0,159,212,.35);
  transform: translateY(-2px);
}

/* ============================================================ CONTACT */
.con-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }

.con-info h2 {
  font-family: var(--fh);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.con-info > p {
  color: rgba(255,255,255,.58);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.con-det { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.con-icon {
  width: 40px; height: 40px;
  background: rgba(0,159,212,.10);
  border: 1px solid rgba(0,159,212,.22);
  border-radius: var(--rsm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.con-icon [data-lucide] { width: 18px; height: 18px; color: var(--brand-blue); }
.con-lbl {
  font-family: var(--fh);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 3px;
}
.con-val { font-size: 16px; font-weight: 600; color: var(--white); }
.con-val a { color: var(--white); transition: color var(--tr); }
.con-val a:hover { color: var(--brand-blue-lt); }

.con-map {
  display: block;
  margin-top: 20px;
  border-radius: var(--rmd);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color var(--tr), transform var(--tr);
}
.con-map:hover {
  border-color: rgba(0,159,212,.4);
  transform: translateY(-2px);
}

.con-form {
  background: var(--brand-surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rlg);
  padding: 40px 36px;
}
.form-tit { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: rgba(255,255,255,.42); margin-bottom: 20px; line-height: 1.55; }
.form-note {
  background: rgba(41,184,230,.07);
  border: 1px solid rgba(41,184,230,.20);
  border-radius: var(--rsm);
  padding: 12px 14px;
  margin-bottom: 20px;
  display: flex; gap: 10px; align-items: flex-start;
}
.form-note [data-lucide] { width: 16px; height: 16px; color: var(--brand-blue-lt); flex-shrink: 0; margin-top: 2px; }
.form-note p { font-size: 13px; color: rgba(255,255,255,.60); line-height: 1.55; }
.form-note strong { color: rgba(255,255,255,.85); font-weight: 700; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { margin-bottom: 14px; }
.fgroup label {
  display: block;
  font-family: var(--fh);
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.52);
  letter-spacing: .8px;
  margin-bottom: 6px;
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--rsm);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--fb);
  font-size: 15px;
  transition: border-color var(--tr), background var(--tr);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: rgba(255,255,255,.22); }
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--brand-blue);
  background: rgba(0,159,212,.05);
}
.fgroup select option { background: var(--brand-dark); color: var(--white); }
.fgroup textarea { min-height: 110px; resize: vertical; }

.form-guar { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.32); }
.form-guar [data-lucide] { width: 14px; height: 14px; color: rgba(255,255,255,.32); flex-shrink: 0; }

.form-ok { display: none; text-align: center; padding: 40px 20px; }
.form-ok-icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-ok-icon [data-lucide] { width: 28px; height: 28px; color: #22c55e; }
.form-ok h3 { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.form-ok p { color: rgba(255,255,255,.50); font-size: 14px; line-height: 1.6; }

.btn-submit {
  width: 100%;
  background: var(--brand-blue);
  color: var(--white);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: var(--rsm);
  cursor: pointer;
  transition: var(--tr);
}
.btn-submit:hover { background: var(--brand-blue-dk); }

/* ============================================================ FOOTER */
.footer {
  background: #0A0B0D;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.fcol h4 {
  font-family: var(--fh);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.50);
  margin-bottom: 16px;
}
.fcol a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.60);
  padding: 5px 0;
  transition: color var(--tr);
}
.fcol a:hover { color: var(--brand-blue-lt); }
.fcol address {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-bot {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.40); }
.footer-lnks { display: flex; gap: 24px; }
.footer-lnks a { font-size: 13px; color: rgba(255,255,255,.40); transition: color var(--tr); }
.footer-lnks a:hover { color: rgba(255,255,255,.72); }

.soc-links { display: flex; gap: 10px; margin-top: 20px; }
.soc-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--rsm);
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr);
}
.soc-link [data-lucide],
.soc-link .soc-icon { width: 16px; height: 16px; color: rgba(255,255,255,.52); fill: currentColor; }
.soc-link:hover { background: var(--brand-blue); border-color: var(--brand-blue); }
.soc-link:hover [data-lucide],
.soc-link:hover .soc-icon { color: var(--white); }

/* ============================================================ STICKY MOBILE */
.sticky-c {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--brand-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 16px;
}
.sticky-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.stk-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; padding: 10px 6px;
  border-radius: var(--rsm);
  font-family: var(--fh);
  font-size: 11px; font-weight: 700;
}
.stk-btn [data-lucide] { width: 20px; height: 20px; }
.stk-tel { background: var(--brand-blue); color: var(--white); }
.stk-wa  { background: #25D366; color: var(--white); }
.stk-mail { background: rgba(255,255,255,.07); color: rgba(255,255,255,.80); border: 1px solid rgba(255,255,255,.10); }

/* ============================================================ ANIMATIONS */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .con-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-body { padding: 28px 28px 32px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .cases-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .why-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .frow { grid-template-columns: 1fr; }
  .con-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sticky-c { display: block; }
  body { padding-bottom: 80px; }
  .modal { margin: 10px; border-radius: var(--rmd); }
  .modal-hero { height: 220px; }
  .modal-hero-h2 { font-size: 20px; }
  .modal-body { padding: 24px 22px 28px; }
  .modal-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn, .btn-wa { width: 100%; justify-content: center; }
}

/* ============================================================ OVER ONS PAGINA */
.page-hero {
  background: var(--brand-black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,159,212,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-frame {
  position: relative;
  height: 160vh;
}
.page-hero--portfolio {
  background: url('assets/portfolio/set-future-council-foto.webp') center/cover no-repeat;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  padding: 0;
  display: flex;
  align-items: center;
}
.page-hero--portfolio::before { display: none; }
.page-hero-img { display: none; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.72) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.65) 100%);
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.page-hero--portfolio .container {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.page-hero--portfolio.is-revealed .page-hero-overlay { opacity: 1; }
.page-hero--portfolio.is-revealed .container {
  opacity: 1;
  transform: translateY(0);
}
.page-hero .container { position: relative; z-index: 1; }
.page-h1 {
  font-family: var(--fh);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin: 14px 0 20px;
  max-width: 780px;
}
.page-lead {
  font-size: 18px;
  color: rgba(255,255,255,.62);
  max-width: 640px;
  line-height: 1.65;
}

.about-story {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-story-text .stitle {
  margin-bottom: 16px;
}
.about-story-text p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-story-text p em {
  font-style: normal;
  background: linear-gradient(120deg, transparent 60%, rgba(0,159,212,.18) 60%);
  padding: 0 4px;
  font-weight: 700;
  color: var(--brand-blue-dk);
}
.about-story-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-card {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--rmd);
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.about-card .slabel { margin-bottom: 6px; }
.about-card-big {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-black);
  line-height: 1.2;
  margin-bottom: 4px;
}
.about-card-sub {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: linear-gradient(160deg, rgba(0,159,212,.07) 0%, var(--brand-surface) 60%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rlg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--tr);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,159,212,.3);
}
.team-photo {
  width: 88px; height: 88px;
  background: rgba(0,159,212,.1);
  border: 2px solid rgba(0,159,212,.25);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo [data-lucide] {
  width: 36px; height: 36px;
  color: var(--brand-blue);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-portrait {
  max-width: 380px;
  margin: 0 auto 56px;
  border-radius: var(--rlg);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.32);
}
.team-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.about-photo {
  border-radius: var(--rlg);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.team-name {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue-lt);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-bio {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.team-card--network {
  background: linear-gradient(160deg, rgba(0,159,212,.07) 0%, var(--brand-surface) 60%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: var(--rmd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,159,212,.15);
}
.value-icon [data-lucide] {
  width: 24px; height: 24px;
  color: var(--brand-blue);
}
.value-item h3 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 10px;
}
.value-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero { padding: 130px 0 60px; }
}

/* ============================================================ 404 PAGINA */
.page-404 {
  min-height: 100vh;
  background: var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.page-404::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,159,212,.08) 0%, transparent 70%);
}
.page-404-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 540px;
}
.page-404-num {
  font-family: var(--fh);
  font-size: clamp(96px, 18vw, 180px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h1 {
  font-family: var(--fh);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-404 p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ============================================================ LEGAL PAGINA */
.legal-page {
  background: var(--white);
  padding: 140px 0 80px;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--fh);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 16px;
  line-height: 1.2;
}
.legal-notice {
  background: rgba(0, 159, 212, 0.05);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--rsm);
  padding: 18px 22px;
  margin: 8px 0 32px;
}

/* ============================================================ PORTFOLIO PAGINA */
.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.portfolio-filter {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--gray-100);
  border-radius: var(--rsm);
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--tr);
}
.portfolio-filter:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.portfolio-filter.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}
.kit-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.kit-section--reverse {
  grid-template-columns: 1fr 1.2fr;
}
.kit-block h2 {
  font-family: var(--fh);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
}
.kit-body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,.74);
  margin: 0 0 14px;
}
.kit-body p:last-child { margin-bottom: 0; }
.kit-photo img {
  width: 100%;
  border-radius: var(--rmd);
  display: block;
  cursor: zoom-in;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .35s ease, box-shadow .35s ease;
}
.kit-photo img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
@media (max-width: 760px) {
  .kit-section, .kit-section--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .kit-section--reverse .kit-photo { order: 2; }
  .kit-section--reverse .kit-block { order: 1; }
}

.portfolio-grid {
  position: relative;
  width: 100%;
  opacity: 0;
  transition: opacity .4s ease;
}
.portfolio-grid.is-ready {
  opacity: 1;
}
.portfolio-item {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--rmd);
  overflow: hidden;
  background: rgba(0,159,212,.08);
  transition: top .35s cubic-bezier(.4,0,.2,1), left .35s cubic-bezier(.4,0,.2,1), transform var(--tr), opacity .3s ease, box-shadow var(--tr);
  /* Link reset (a-element) */
  display: block;
  text-decoration: none;
  color: inherit;
}
.portfolio-item:not(.is-positioned) {
  visibility: hidden;
}
.portfolio-item:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 20px 44px rgba(0,0,0,.28);
  z-index: 10;
}
.portfolio-item.is-filter-hidden {
  opacity: 0;
  pointer-events: none;
}
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-thumb:has(img) {
  aspect-ratio: auto;
  display: block;
}
.portfolio-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-thumb [data-lucide] {
  width: 36px;
  height: 36px;
  color: var(--brand-blue);
  opacity: .7;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,0) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity var(--tr), background var(--tr);
}
.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.85) 50%, rgba(0,0,0,.55) 100%);
}
.portfolio-overlay > * {
  transform: translateY(10px);
  transition: transform var(--tr);
}
.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay {
  opacity: 1;
}
.portfolio-item:hover .portfolio-overlay > *,
.portfolio-item:focus-within .portfolio-overlay > * {
  transform: translateY(0);
}
.portfolio-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.portfolio-tag {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-blue-lt);
}
.portfolio-item h3 {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.3;
}
.portfolio-item p {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  margin: 0;
}
/* Touch-devices zonder hover: overlay altijd zichtbaar */
@media (hover: none) {
  .portfolio-overlay { opacity: 1; }
  .portfolio-overlay > * { transform: translateY(0); }
}

/* Banner op homepage met link naar portfolio */
.other-spec-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(120deg, rgba(0,159,212,.05) 0%, rgba(0,159,212,.12) 100%);
  border: 1px solid rgba(0,159,212,.22);
  border-radius: var(--rlg);
  padding: 32px 40px;
  flex-wrap: wrap;
}
.other-spec-banner h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-black);
  margin: 0 0 4px;
  line-height: 1.25;
}
.other-spec-banner p {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0;
  max-width: 520px;
}
.other-spec-banner .btn {
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .other-spec-banner { padding: 26px 24px; gap: 20px; }
}

/* ============================================================ TERMS DOWNLOAD GRID */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0 28px;
}
.terms-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--rmd);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}
.terms-card:hover {
  border-color: rgba(0,159,212,.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.terms-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(0,159,212,.1);
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.terms-icon [data-lucide] { width: 22px; height: 22px; }
.terms-card h2 {
  font-family: var(--fh) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--brand-black) !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
}
.terms-card > p {
  font-size: 14px !important;
  color: var(--gray-600) !important;
  line-height: 1.55 !important;
  margin: 0 0 18px !important;
  flex: 1;
}
.terms-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brand-blue);
  color: #fff !important;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--rsm);
  text-decoration: none;
  transition: var(--tr);
  align-self: flex-start;
}
.terms-download [data-lucide] {
  width: 16px;
  height: 16px;
}
.terms-download:hover {
  background: var(--brand-blue-dk);
}
@media (max-width: 680px) {
  .terms-grid { grid-template-columns: 1fr; }
}
.legal-notice p {
  font-size: 14px !important;
  color: var(--gray-700) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
.legal-notice p + p {
  margin-top: 10px !important;
}
.legal-notice strong {
  color: var(--brand-black);
}

.legal-content .legal-meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.legal-content h2 {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-black);
  margin: 36px 0 14px;
}
.legal-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--gray-700);
}
.legal-content ul li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ============================================================ HONEYPOT (verborgen anti-bot veld) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============================================================ IUBENDA POLICY EMBED */
.iubenda-embed {
  margin: 24px 0;
}
.iubenda-embed a.iubenda-embed {
  display: inline-block;
  padding: 12px 22px;
  background: var(--brand-blue);
  color: var(--white) !important;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--rsm);
  transition: var(--tr);
}
.iubenda-embed a.iubenda-embed:hover {
  background: var(--brand-blue-dk);
  transform: translateY(-1px);
}

/* Iubenda's eigen iframe styling overschrijven voor betere integratie */
.iub_container {
  border: 1px solid var(--gray-100) !important;
  border-radius: var(--rmd) !important;
  padding: 24px !important;
  background: #fafbfc !important;
  font-family: var(--fb) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: var(--gray-700) !important;
}
.iub_container h1,
.iub_container h2,
.iub_container h3 {
  font-family: var(--fh) !important;
  color: var(--brand-black) !important;
}

/* Honoreer prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide img { transform: none !important; transition: none !important; }
  .hero-slide { transition: opacity .3s ease !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Iubenda floating widget en footer bar verbergen */
.iub__us-widget,
.iubenda-tp-btn { display: none !important; }

button.iubenda-tp-btn[data-tp-float] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

@media (max-width: 768px) {
  .hero-c {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.shead .ssub {
  max-width: 100%;
}