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

:root {
  --bg: #07070c;
  --bg2: #0e0e16;
  --bg3: #14141f;
  --accent: #00b4ff;
  --accent2: #38c8ff;
  --white: #ffffff;
  --gray: #8a8a9a;
  --gray2: #c0c0cc;
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }


/* ===== CAMERA SHUTTER LOADER ===== */
/* ===== FOCUS LOADER ===== */
.shutter-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease 0.3s, visibility 0.6s ease 0.3s;
}
.shutter-loader.done { opacity: 0; visibility: hidden; }

/* Concentrische focus-ringen */
.focus-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,180,255,0.15);
  animation: focusPulse 2s ease-in-out infinite;
}
.focus-ring-1 { width: 420px; height: 420px; animation-delay: 0s; }
.focus-ring-2 { width: 300px; height: 300px; animation-delay: 0.2s; border-color: rgba(0,180,255,0.3); }
.focus-ring-3 { width: 200px; height: 200px; animation-delay: 0.4s; border-color: rgba(0,180,255,0.5); }
@keyframes focusPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}
.shutter-loader.done .focus-ring { animation: none; transform: scale(1.4); opacity: 0; transition: transform 0.5s ease, opacity 0.5s ease; }

/* Hoekmarkeringen */
.focus-corners {
  position: absolute;
  width: 160px; height: 160px;
}
.fc {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--accent);
  border-style: solid;
}
.fc-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.fc-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.fc-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.fc-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* Tekst */
.focus-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.focus-name {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: 0.4em;
  color: #fff;
  filter: blur(8px);
  opacity: 0;
  animation: focusSharp 1.4s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.focus-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  color: var(--accent);
  opacity: 0;
  animation: fadeUp 0.6s ease 1.2s forwards;
  margin-top: 6px;
}
.focus-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 18px auto 0;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.4s ease 1s forwards;
}
.focus-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  animation: loadBar 1s cubic-bezier(0.4,0,0.2,1) 1s forwards;
}
@keyframes focusSharp {
  0% { filter: blur(8px); opacity: 0; transform: scale(1.08); }
  60% { filter: blur(1px); opacity: 1; transform: scale(1.01); }
  100% { filter: blur(0); opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loadBar {
  from { width: 0; }
  to { width: 100%; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  z-index: 9999;
  box-shadow: 0 0 12px rgba(0,180,255,0.7);
}

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
  .cursor-dot {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    position: fixed;
    width: 38px; height: 38px;
    border: 1.5px solid rgba(0,180,255,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cursor-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
  }
  .cursor-ring.hover {
    width: 64px; height: 64px;
    background: rgba(0,180,255,0.08);
    border-color: var(--accent);
  }
  .cursor-ring.shoot {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: rgba(0,0,0,0.15);
    box-shadow: 0 0 0 1px rgba(0,180,255,0.2), inset 0 0 0 18px rgba(0,0,0,0), 0 0 24px rgba(0,180,255,0.3);
  }
  /* Binnenste lens-ring */
  .cursor-ring.shoot::before {
    content: '';
    position: absolute;
    width: 52px; height: 52px;
    border: 1px solid rgba(0,180,255,0.5);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  /* Dradenkruis */
  .cursor-ring.shoot::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background:
      linear-gradient(rgba(0,180,255,0.4) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,180,255,0.4) 1px, transparent 1px);
    background-size: 100% 50%, 50% 100%;
    background-position: center center;
    border-radius: 50%;
  }
  .cursor-ring.shoot .cursor-label {
    opacity: 1;
    position: absolute;
    bottom: -22px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2,0.6,0.2,1), transform 0.8s cubic-bezier(0.2,0.6,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 130%; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,180,255,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.full-width { width: 100%; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.section-title.center { text-align: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(7,7,12,0.92);
  backdrop-filter: blur(16px);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 180px;
  width: auto;
  transition: height var(--transition), opacity var(--transition);
  mix-blend-mode: screen;
}
#navbar.scrolled .nav-logo img { height: 60px; }
.nav-logo:hover img { opacity: 0.85; }

.site-logo-svg {
  height: 72px;
  width: auto;
  transition: height var(--transition), opacity var(--transition);
  display: block;
}
#navbar.scrolled .site-logo-svg { height: 36px; }
.nav-logo:hover .site-logo-svg { opacity: 0.8; }

/* Bij scroll: alleen de haakjes tonen */
#navbar.scrolled .site-logo-svg text {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-logo-svg text {
  transition: opacity 0.3s ease;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-close-item { display: none; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray2);
  transition: color var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--accent2) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,180,255,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  transition: transform 9s ease;
  will-change: transform;
}
.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.35) 100%);
}

/* speed lines die over de hero schieten */
.speed-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.speed-lines span {
  position: absolute;
  height: 1.5px;
  width: 220px;
  background: linear-gradient(90deg, transparent, rgba(0,180,255,0.9), transparent);
  filter: drop-shadow(0 0 6px rgba(0,180,255,0.8));
  animation: speedline 2.6s linear infinite;
  opacity: 0;
}
.speed-lines span:nth-child(1) { top: 18%; animation-delay: 0s; }
.speed-lines span:nth-child(2) { top: 36%; animation-delay: 0.7s; width: 320px; }
.speed-lines span:nth-child(3) { top: 55%; animation-delay: 1.3s; width: 160px; }
.speed-lines span:nth-child(4) { top: 70%; animation-delay: 1.9s; width: 280px; }
.speed-lines span:nth-child(5) { top: 85%; animation-delay: 0.4s; width: 200px; }
@keyframes speedline {
  0% { left: -25%; opacity: 0; }
  8% { opacity: 1; }
  60% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* viewfinder HUD over de hero */
.hero-hud { position: absolute; inset: 34px; pointer-events: none; z-index: 3; }
.hud-corner {
  position: absolute;
  width: 34px; height: 34px;
  border: 2px solid rgba(255,255,255,0.45);
}
.hud-corner.tl { top: 70px; left: 0; border-right: none; border-bottom: none; }
.hud-corner.tr { top: 70px; right: 0; border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.hud-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.hud-meta {
  position: absolute;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
}
.hud-iso { bottom: 14px; left: 48px; }
.hud-shutter { bottom: 14px; left: 50%; transform: translateX(-50%); }
.hud-f { bottom: 14px; right: 48px; }

.hud-rec {
  position: absolute;
  top: 84px; right: 48px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hud-rec i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ff3b3b;
  animation: recBlink 1.4s ease infinite;
}
@keyframes recBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.15; } }

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  transition-delay: 0.1s;
}

/* kinetische titel: regels schuiven uit een masker omhoog */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%) skewY(4deg);
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.hero.loaded .hero-title .line:nth-child(1) .word { transition-delay: 0.55s; }
.hero.loaded .hero-title .line:nth-child(2) .word { transition-delay: 0.68s; }
.hero.loaded .hero-title .line:nth-child(3) .word { transition-delay: 0.81s; }
.hero.loaded .hero-title .word { transform: translateY(0) skewY(0); }

.hero-title .accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0,180,255,0.35);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray2);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
  transition-delay: 0.95s;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; transition-delay: 1.1s; }

.scroll-down {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 30px; height: 46px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-down span {
  display: block;
  width: 4px; height: 10px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* flits-effect bij galerij klik */
.flash {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9995;
  opacity: 0;
  pointer-events: none;
}
.flash.fire { animation: flashFire 0.45s ease; }
@keyframes flashFire {
  0% { opacity: 0; }
  12% { opacity: 0.95; }
  100% { opacity: 0; }
}


/* ===== STATS BAND ===== */
.stats-band {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px 44px;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: -60%; left: -10%;
  width: 50%; height: 220%;
  background: radial-gradient(ellipse, rgba(0,180,255,0.07), transparent 70%);
  pointer-events: none;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(0,180,255,0.3);
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== OVER MIJ ===== */
.over { background: var(--bg); }
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.over-images { position: relative; height: 520px; }
.over-img-main {
  width: 78%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.6s ease;
}
.over-images:hover .over-img-main { transform: rotate(-1deg) scale(1.015); }
.over-img-accent {
  position: absolute;
  width: 52%; height: 52%;
  object-fit: cover;
  border-radius: var(--radius);
  bottom: 0; right: 0;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow);
  transition: transform 0.6s ease;
}
.over-images:hover .over-img-accent { transform: rotate(2deg) translateY(-6px); }
.over-img-click { cursor: zoom-in; }
.over-img-click:hover { box-shadow: 0 0 0 3px var(--accent), var(--shadow); }

.over-text p { color: var(--gray2); margin-bottom: 16px; font-size: 1.02rem; }

.over-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.over-badges li {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--gray2);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.over-badges li svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  stroke: var(--accent);
}
.over-badges li:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ===== DIENSTEN ===== */
.diensten {
  background: var(--bg2);
  padding: 110px 0;
}
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 72px;
}

.dienst-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.dienst-card::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  width: 60%;
  background: linear-gradient(100deg, transparent, rgba(0,180,255,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.dienst-card:hover::after { left: 140%; }
.dienst-card:hover {
  border-color: rgba(0,180,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.dienst-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(0,180,255,0.07) 0%, var(--bg3) 100%);
}

/* Badge zit nu IN de card, niet erboven uitstekend */
.dienst-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.dienst-icon {
  width: 52px; height: 52px;
  background: rgba(0,180,255,0.1);
  border: 1.5px solid rgba(0,180,255,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.dienst-icon svg {
  width: 26px; height: 26px;
  stroke: var(--accent);
}
.dienst-card:hover .dienst-icon {
  background: rgba(0,180,255,0.18);
  border-color: var(--accent);
}
.dienst-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.dienst-card p { color: var(--gray); font-size: 0.93rem; flex: 1; margin-bottom: 28px; }

.dienst-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  background: #25d366;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  width: fit-content;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.dienst-card:hover .dienst-wa {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.how-it-works {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.how-it-works h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 16.5%;
  width: 67%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--accent), var(--border), transparent);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--accent);
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step:hover .step-num {
  background: var(--accent);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(0,180,255,0.4);
}
.step h4 { font-weight: 600; margin-bottom: 8px; font-size: 1rem; }
.step p { color: var(--gray); font-size: 0.88rem; }

/* ===== TARIEVEN ===== */
.tarieven { background: var(--bg); }
.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 56px auto 0;
  perspective: 1200px;
}
.tarieven-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}

.tarief-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: transform 0.2s ease-out, box-shadow var(--transition), border-color var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}
.tarief-card:hover { box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.tarief-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(0,180,255,0.08) 0%, var(--bg3) 100%);
}

.tarief-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tarief-loc {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tarief-loc small { text-transform: none; font-weight: 400; }
.tarief-loc svg { stroke: var(--accent); flex-shrink: 0; }

.tarief-prijs {
  font-family: var(--font-head);
  font-size: 4.8rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 0 36px rgba(0,180,255,0.35);
}
.tarief-unit { font-size: 0.85rem; color: var(--gray); margin-bottom: 28px; }

.tarief-list {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tarief-list li {
  font-size: 0.9rem;
  color: var(--gray2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tarief-list li svg { stroke: var(--accent); flex-shrink: 0; }

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--bg2);
  padding: 110px 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  isolation: isolate;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.6,0.2,1);
  image-rendering: auto;
}
.gallery-item:hover img { transform: scale(1.06); }

/* viewfinder overlay op hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.gallery-item:hover .gallery-overlay,
.gallery-item.touched .gallery-overlay { opacity: 1; }

.vf-corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--accent);
  transition: transform 0.6s ease;
}
.vf-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; transform: translate(-12px,-12px); }
.vf-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; transform: translate(12px,-12px); }
.vf-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; transform: translate(-12px,12px); }
.vf-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; transform: translate(12px,12px); }
.gallery-item:hover .vf-corner,
.gallery-item.touched .vf-corner { transform: translate(0,0); }

.vf-focus {
  position: absolute;
  top: 50%; left: 50%;
  width: 54px; height: 54px;
  border: 1.5px solid rgba(0,180,255,0.9);
  border-radius: 4px;
  transform: translate(-50%,-50%) scale(1.6);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1), opacity 0.6s ease;
}
.gallery-item:hover .vf-focus,
.gallery-item.touched .vf-focus {
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
}

.vf-label {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%) translateY(8px);
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}
.gallery-item:hover .vf-label,
.gallery-item.touched .vf-label { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: lightboxIn 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes lightboxIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background var(--transition);
  z-index: 2;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===== FAQ ===== */
.faq { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: rgba(0,180,255,0.35); }
.faq-item.open { border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  stroke: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p {
  padding: 0 28px 22px;
  color: var(--gray2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== BOEKEN / WHATSAPP ===== */
.boeken { background: var(--bg); }

.boeken-cta {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.boeken-sub {
  color: var(--gray2);
  font-size: 1.05rem;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* WhatsApp card */
.wa-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.wa-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,180,255,0.45), transparent 40%, transparent 60%, rgba(0,180,255,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* pulserende achtergrond glow */
.wa-pulse {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,255,0.1), transparent 70%);
  animation: waPulse 3s ease infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.wa-info {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.wa-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }

.wa-text { text-align: left; }
.wa-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.wa-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #4ade80;
}
.wa-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: waDot 1.8s ease infinite;
}
@keyframes waDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.btn-wa {
  background: #25d366;
  color: #fff;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.btn-wa:hover {
  background: #20bd5a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37,211,102,0.45);
}
.btn-wa svg { flex-shrink: 0; }

/* social pill onderaan */
.boeken-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.88rem;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: var(--gray2);
  transition: var(--transition);
}
.social-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo img { height: 110px; opacity: 0.9; transition: var(--transition); mix-blend-mode: screen; }
.footer-logo:hover img { opacity: 1; transform: scale(1.04); }
.footer-tagline { font-size: 0.88rem; color: var(--gray); }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--gray2);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,180,255,0.08);
  transform: translateY(-3px) rotate(8deg);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  width: 100%;
  text-align: center;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  body::after { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .over-grid { grid-template-columns: 1fr; gap: 48px; }
  .over-images { height: 360px; }
  .boeken-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-hud { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .diensten, .portfolio { padding: 100px 0; }

  .hamburger { display: flex; }
  .hamburger.open { position: relative; z-index: 101; }
  .nav-logo img { height: 90px; }
  #navbar.scrolled .nav-logo img { height: 52px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(7,7,12,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .nav-close-item { align-self: flex-end; margin-bottom: 8px; }
  .nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  .nav-close:hover { opacity: 1; }
  .nav-close-item { display: list-item; }


  .hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); }

  .marquee-track span { font-size: 1.2rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .diensten-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .tarieven-grid, .tarieven-grid--3 { grid-template-columns: 1fr; max-width: 400px; }

  .gallery { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .boek-form { padding: 28px 20px; }
  .how-it-works { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .over-images { height: 280px; }
  .over-img-accent { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}
