﻿/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --bg:          #0b0e1a;
  --bg2:         #0f1325;
  --bg3:         #132552;
  --blue:        #1d4ed8;
  --blue-lt:     #3b82f6;
  --blue-glow:   rgba(59,130,246,0.15);
  --orange:      #b45309;
  --orange-lt:   #fb923c;
  --orange-glow: rgba(234,88,12,0.15);
  --purple:      #6d28d9;
  --green:       #2ecc71;
  --white:       #ffffff;
  --text:        rgba(255,255,255,0.85);
  --muted:       rgba(255,255,255,0.4);
  --border:      rgba(255,255,255,0.08);
  --grad:        linear-gradient(90deg, #1e3a8a 0%, #6d28d9 50%, #c2410c 100%);
  --grad-soft:   linear-gradient(90deg, rgba(30,58,138,0.25), rgba(109,40,217,0.25), rgba(194,65,12,0.25));
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TYPOGRAPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 82px;
  background: rgba(11,14,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--grad);
  padding: 8px 20px; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff !important;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV — HAMBURGER BUTTON
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,26,0.3) 0%, rgba(11,14,26,0.85) 70%, var(--bg) 100%),
    url('https://primary.jwwb.nl/unsplash/Vr3Xi8_2NgY.jpg?enable-io=true&enable=upscale&fit=bounds&width=1600') center/cover no-repeat;
}
.hero-band {
  position: absolute; top: 70px; left: 0; right: 0;
  background: var(--grad);
  padding: 8px 0; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.hero-content { position: relative; max-width: 900px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--grad-soft);
  border: 1px solid rgba(109,40,217,0.3);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(60px, 9vw, 120px);
  text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9;
  color: #fff; margin-bottom: 24px;
}
.hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.88);
  max-width: 520px; margin-bottom: 40px; line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero – foto-kaartje (rechtsboven over de banner) */
.hero-photo-card {
  position: absolute;
  top: 50%; right: 60px;
  transform: translateY(-50%);
  width: 540px; max-width: 46vw;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 3;
  animation: fadeUpCenter 0.8s ease both;
  animation-delay: 0.5s;
}
.hero-photo-card img {
  width: 100%; height: 100%;
  aspect-ratio: 3/2; object-fit: cover;
  object-position: 52% center;
  transform: scale(1.6);
  transform-origin: 52% center;
  display: block;
}
.hero-photo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,14,26,0) 55%, rgba(11,14,26,0.55) 100%);
}
.hero-photo-label {
  position: absolute; bottom: 12px; left: 14px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  padding: 4px 12px; border-radius: 6px;
}

/* Hero – slideshow */
.hero-slides { position: relative; width: 100%; aspect-ratio: 3/2; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 52% center;
  background-repeat: no-repeat;
  transform: scale(1.6);
  transform-origin: 52% center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-dots {
  position: absolute; bottom: 12px; right: 14px; z-index: 4;
  display: flex; gap: 6px;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-prev, .hero-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,0.35);
  border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 26px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.hero-prev:hover, .hero-next:hover { background: rgba(0,0,0,0.6); }
.hero-prev { left: 8px; }
.hero-next { right: 8px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad);
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); transition: all 0.2s;
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: #fff; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-bar {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stat-item {
  flex: 1; padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 44px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.stat-lbl { font-size: 12px; color: var(--muted); font-weight: 500; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTIONS (algemeen)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
section { padding: 100px 40px; }
.section-header { margin-bottom: 60px; }
.section-header .label { margin-bottom: 12px; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1;
  color: #fff;
}
.section-title span {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-divider { height: 2px; background: var(--grad); opacity: 0.4; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services { background: var(--bg2); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: var(--bg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.service-card:hover { border-color: rgba(109,40,217,0.4); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.service-icon.blue   { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
.service-icon.orange { background: rgba(234,88,12,0.12);  border: 1px solid rgba(234,88,12,0.25);  }
.service-icon.green  { background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.25); }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 26px;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 12px; line-height: 1.1;
}
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-lt); transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-header {
  padding: 60px var(--pad) 32px;
  text-align: center;
}
.pricing-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase; letter-spacing: -0.02em; color: #fff;
}
.pricing-title span {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 780px; margin: 0 auto;
  padding: 0 var(--pad) 80px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
}
.pricing-card--pro::before {
  background: var(--grad);
}
.pricing-card:hover { border-color: rgba(109,40,217,0.4); }
.pricing-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: 16px;
}
.pricing-card--pro .pricing-badge { color: #fb923c; }
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 52px; line-height: 1; color: #fff;
  margin-bottom: 6px;
}
.pricing-price span { font-size: 18px; color: var(--muted); font-weight: 600; }
.pricing-alt {
  font-size: 13px; color: var(--muted); margin-bottom: 6px;
}
.pricing-commitment {
  font-size: 11px; color: rgba(255,255,255,0.35);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none; padding: 0; margin: 0 0 32px;
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px; color: rgba(255,255,255,0.75);
  padding-left: 18px; position: relative; line-height: 1.4;
}
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: #2ecc71; font-weight: 700; font-size: 12px;
}
.pricing-cta {
  display: inline-flex; align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-lt); transition: gap 0.2s; gap: 6px;
}
.pricing-card--pro .pricing-cta { color: #fb923c; }
.pricing-cta:hover { gap: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CP TEST SHOWCASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cp-section { background: var(--bg2); }
.cp-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cp-showcase--top { align-items: start; }

/* Kaart */
.cp-card-demo {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  width: 80%; margin: 0 auto;
}
.cp-demo-topbar {
  background: var(--grad-soft);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px; display: flex; align-items: center; justify-content: center;
}
.cp-demo-topbar img { height: 32px; }
.cp-demo-band {
  background: var(--grad); padding: 7px 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* Kaart – kolommen */
.cp-demo-main { display: flex; }
.cp-demo-col {
  flex: 1; padding: 16px 10px; display: flex; flex-direction: column; gap: 8px;
}
.cp-demo-col.left  { background: linear-gradient(180deg, #132552, #0d1c3d); }
.cp-demo-col.right { background: linear-gradient(180deg, #4a1403, #2a0c01); }
.cp-demo-hdr {
  border-radius: 6px; text-align: center; padding: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.06em; color: #fff;
}
.cp-demo-col.left  .cp-demo-hdr { background: #1d4ed8; }
.cp-demo-col.right .cp-demo-hdr { background: #b45309; }
.cp-demo-row {
  flex: 1; border-radius: 8px; display: flex; align-items: center;
  gap: 6px; padding: 8px; min-height: 72px;
}
.cp-demo-col.left  .cp-demo-row { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); }
.cp-demo-col.right .cp-demo-row { background: rgba(234,88,12,0.15);  border: 1px solid rgba(234,88,12,0.3);  }
.cp-demo-dur { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.cp-demo-col.left  .cp-demo-dur { color: #93c5fd; }
.cp-demo-col.right .cp-demo-dur { color: #fb923c; }
.cp-demo-w   { flex: 1; }
.cp-demo-w.r { text-align: right; }
.cp-demo-wnum {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 29px; line-height: 1;
}
.cp-demo-col.left  .cp-demo-wnum { color: #dbeafe; }
.cp-demo-col.right .cp-demo-wnum { color: #ffedd5; }
.cp-demo-wu { font-size: 10px; font-weight: 700; }
.cp-demo-col.left  .cp-demo-wu { color: #60a5fa; }
.cp-demo-col.right .cp-demo-wu { color: #fb923c; }

/* Kaart – middenkolom met pills */
.cp-demo-mid {
  width: 70px; background: var(--bg); display: flex; flex-direction: column;
  align-items: center; gap: 8px; padding: 16px 4px;
}
.cp-demo-mid-hdr {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 100%; height: 22px;
}
.cp-demo-mid-lbl {
  font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-align: center; line-height: 1.4;
}
.cp-demo-pill {
  flex: 1; width: 54px; margin: 6px 0;
  background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.35);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 12px; color: #2ecc71; line-height: 1.3; text-align: center;
}
.cp-demo-percent { font-size: 11px; font-weight: 700; color: rgba(46,204,113,0.7); }

/* Kaart – onderste balk */
.cp-demo-bot {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 6px 14px; display: flex; justify-content: space-between;
}
.cp-demo-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); background: rgba(255,255,255,0.06);
  padding: 2px 8px; border-radius: 8px;
}
.cp-demo-tag-ht { color: #7c3aed; }

/* Kaart – tekst naast kaart */
.cp-text .label { margin-bottom: 16px; }
.cp-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase; color: #fff; margin-bottom: 20px; line-height: 1;
}
.cp-text h2 span {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.cp-text p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.cp-features { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.cp-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.cp-feature-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.cp-feature-text { font-size: 14px; color: rgba(255,255,255,0.7); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOCATIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.locations { background: var(--bg2); }
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.location-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.location-card:hover { border-color: rgba(59,130,246,0.3); }
.location-tag {
  display: inline-block;
  background: var(--grad-soft); border: 1px solid rgba(109,40,217,0.25);
  border-radius: 4px; padding: 3px 10px; margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.location-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.location-address { font-size: 13px; color: var(--muted); line-height: 1.6; }
.location-towns { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.location-town {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px 10px;
  font-size: 11px; color: var(--muted);
}
.location-map {
  margin-top: 18px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); line-height: 0;
}
.location-map iframe {
  width: 100%; height: 220px; border: 0; display: block;
  filter: grayscale(0.3) contrast(1.05) brightness(0.95);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact { background: var(--bg); }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase; color: #fff; margin-bottom: 16px; line-height: 1;
}
.contact-inner h2 span {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-inner p { color: var(--muted); font-size: 16px; margin-bottom: 40px; }
.contact-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 32px; text-align: center; transition: border-color 0.3s;
  min-width: 180px;
}
.contact-card:hover { border-color: rgba(109,40,217,0.4); }
.contact-card-icon  { font-size: 24px; margin-bottom: 10px; }
.contact-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-card-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px; color: #fff;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 40px 50px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  position: relative;
}
footer::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 10px;
  background: var(--grad);
}
footer img { height: 42px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px; color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUBPAGINA – HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.subhero {
  padding: 140px 40px 60px;
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.subhero-band {
  position: absolute; top: 70px; left: 0; right: 0;
  background: var(--grad); padding: 8px 0; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.subhero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(48px, 8vw, 90px);
  text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9;
  color: #fff; margin-bottom: 16px;
}
.subhero h1 span {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.subhero p { color: rgba(255,255,255,0.88); font-size: 17px; max-width: 560px; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.subhero-plane {
  border-bottom: none;
  background:
    linear-gradient(180deg, rgba(11,14,26,0.55) 0%, rgba(11,14,26,0.8) 75%, var(--bg) 100%),
    url('images/plane.jpg') center 40%/cover no-repeat;
}
.subhero-jelle2 {
  border-bottom: none;
  background:
    linear-gradient(180deg, rgba(11,14,26,0.45) 0%, rgba(11,14,26,0.75) 75%, var(--bg) 100%),
    url('images/jellegeens2.png') center 30%/cover no-repeat;
}
.subhero-jelle1 {
  border-bottom: none;
  background:
    linear-gradient(180deg, rgba(11,14,26,0.45) 0%, rgba(11,14,26,0.75) 75%, var(--bg) 100%),
    url('images/kipchoge.jpg') center 30%/cover no-repeat;
}
.subhero-jelle {
  border-bottom: none;
  background:
    linear-gradient(180deg, rgba(11,14,26,0.45) 0%, rgba(11,14,26,0.75) 75%, var(--bg) 100%),
    url('images/jellegeens.jpg') center 30%/cover no-repeat;
}
.subhero-rik {
  border-bottom: none;
  background:
    linear-gradient(180deg, rgba(11,14,26,0.45) 0%, rgba(11,14,26,0.75) 75%, var(--bg) 100%),
    url('images/marten.jpeg') center 30%/cover no-repeat;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUBPAGINA – ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.about-text .label { margin-bottom: 16px; }
.about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase; color: #fff; margin-bottom: 24px; line-height: 1;
}
.about-text h2 span {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.about-text p { color: var(--text); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.about-creds { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.about-cred {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.about-cred-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  background: var(--grad-soft); border: 1px solid rgba(109,40,217,0.3);
}
.about-cred-text { font-size: 14px; color: rgba(255,255,255,0.8); }
.about-cred-text strong { color: #fff; font-weight: 600; }
.about-photo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.about-photo .ph {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg2);
  width: 100%;
}
.about-photo .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo .ph.main    { aspect-ratio: 4/5; max-width: 320px; }
.about-photo .ph:not(.main) { aspect-ratio: 16/9; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUBPAGINA – FIETSKOFFER VERHUUR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rental { background: var(--bg2); }
.rental-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.rental-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}
.rental-card:hover { border-color: rgba(109,40,217,0.4); transform: translateY(-4px); }
.rental-img { aspect-ratio: 16/11; overflow: hidden; background: var(--bg3); position: relative; }
.rental-img img { width: 100%; height: 100%; object-fit: cover; }
.rental-price-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--grad); border-radius: 8px; padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 18px; color: #fff;
}
.rental-price-badge small { font-size: 11px; font-weight: 600; opacity: 0.85; }
.rental-body { padding: 28px; }
.rental-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 26px; text-transform: uppercase;
  color: #fff; margin-bottom: 16px; line-height: 1;
}
.rental-specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.rental-spec {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.rental-spec-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 7px; }
.rental-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.rental-meta-item {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px; flex: 1; min-width: 120px;
}
.rental-meta-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2px;
}
.rental-meta-val {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; color: #fff;
}
.rental-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-lt); transition: gap 0.2s;
}
.rental-link:hover { gap: 10px; }

/* Info callout */
.callout {
  background: var(--grad-soft); border: 1px solid rgba(109,40,217,0.25);
  border-radius: 14px; padding: 32px; margin-top: 40px; text-align: center;
}
.callout h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px; text-transform: uppercase; color: #fff; margin-bottom: 10px;
}
.callout p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 20px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUBPAGINA – CONTACT DETAILS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-detail { background: var(--bg2); }
.contact-layout { display: flex; justify-content: center; }
.contact-form-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 40px 48px; width: 100%; max-width: 640px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; color: var(--text); font-family: 'Barlow', sans-serif;
  font-size: 15px; transition: border-color 0.2s; resize: vertical; outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(109,40,217,0.5); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--bg2); }
.bot-field-wrap { display: none; }
.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 24px; gap: 16px;
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; font-weight: 700;
}
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 28px; text-transform: uppercase; color: #fff; margin: 0;
}
.form-success p { color: var(--muted); font-size: 16px; margin: 0; }
.cd-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 28px; transition: border-color 0.3s;
}
.cd-card:hover { border-color: rgba(109,40,217,0.4); }
.cd-icon  { font-size: 28px; margin-bottom: 16px; }
.cd-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.cd-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; color: #fff; line-height: 1.2; }
.cd-val a { color: #fff; transition: color 0.2s; }
.cd-val a:hover { color: var(--blue-lt); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTING — TEST CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testing-types { background: var(--bg2); }
.testing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testing-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px;
  padding: 32px; display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: border-color 0.3s;
}
.testing-card:hover { border-color: rgba(109,40,217,0.4); }
.testing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.testing-card:hover::before { opacity: 1; }
.testing-card-sport {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.testing-card-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 24px; text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 14px; line-height: 1.1;
}
.testing-card-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.testing-card-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.testing-card-step {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.testing-card-step-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-lt); flex-shrink: 0; margin-top: 6px;
}
.testing-price-block {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 18px; margin-top: auto; gap: 12px;
}
.testing-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; color: #fff; line-height: 1;
}
.testing-price-note { font-size: 11px; color: var(--muted); margin-top: 3px; }
.testing-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-lt); transition: gap 0.2s; white-space: nowrap;
}
.testing-cta:hover { gap: 10px; }

.testing-results { background: var(--bg2); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COACHING — STAPPENPLAN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.coaching-steps { background: var(--bg2); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.step-card {
  background: var(--bg); padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(109,40,217,0.4); }
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 52px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 12px;
}
.step-text { font-size: 14px; color: var(--muted); line-height: 1.65; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COACHING — INTERVALS.ICU
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.intervals-section { background: var(--bg2); }
.intervals-intro { margin-bottom: 36px; }
.intervals-visual {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.intervals-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.intervals-logo-text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 24px; color: #fff; letter-spacing: -0.01em;
}
.intervals-logo-dot { color: #3b82f6; }
.intervals-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px;
}
.intervals-metric-row { display: flex; gap: 10px; }
.intervals-metric {
  flex: 1; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px;
}
.intervals-metric-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.intervals-metric-val {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; line-height: 1;
}
.intervals-metric-val.blue   { color: #3b82f6; }
.intervals-metric-val.orange { color: #fb923c; }
.intervals-metric-val.green  { color: #2ecc71; }
.intervals-week {
  display: flex; gap: 5px; align-items: flex-end; height: 72px;
}
.intervals-day {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(59,130,246,0.18); border: 1px solid rgba(59,130,246,0.3);
  transition: background 0.2s;
}
.intervals-day:hover { background: rgba(59,130,246,0.38); }
.intervals-week-lbl {
  font-size: 10px; color: var(--muted); text-align: center; margin-top: 8px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.intervals-tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.intervals-tag {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px; font-size: 11px; color: var(--muted);
}

/* intervals.icu weekschema */
.icu-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.icu-day { display: flex; flex-direction: column; gap: 5px; }
.icu-day-name {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.icu-workout {
  border-radius: 8px; padding: 8px 5px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  border: 1px solid transparent; flex: 1; min-height: 90px;
  justify-content: center; text-align: center;
}
.icu-blue   { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3); }
.icu-orange { background: rgba(234,88,12,0.12);  border-color: rgba(234,88,12,0.3); }
.icu-red    { background: rgba(234,88,12,0.18);  border-color: rgba(234,88,12,0.4); }
.icu-purple { background: rgba(109,40,217,0.15); border-color: rgba(109,40,217,0.3); }
.icu-rest   { background: rgba(255,255,255,0.03); border-color: var(--border); }
.icu-sport  { font-size: 14px; line-height: 1; }
.icu-name   { font-size: 9px; font-weight: 700; color: #fff; line-height: 1.2; }
.icu-dur    { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 15px; color: #fff; line-height: 1; }
.icu-zone   { font-size: 8px; color: var(--muted); }
.icu-rest-lbl { font-size: 9px; color: rgba(255,255,255,0.2); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVIEWS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reviews { background: var(--bg2); }
.reviews-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 48px;
}
.reviews-score {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 28px;
}
.reviews-avg {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 56px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.reviews-score-right { display: flex; flex-direction: column; gap: 5px; }
.reviews-stars { color: #fbbf24; font-size: 18px; letter-spacing: 3px; }
.reviews-count { font-size: 12px; color: var(--muted); }
.reviews-google-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: border-color 0.2s, color 0.2s;
}
.reviews-google-btn:hover { border-color: rgba(255,255,255,0.25); color: #fff; }
.reviews-grid {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.reviews-grid::-webkit-scrollbar { height: 8px; }
.reviews-grid::-webkit-scrollbar-track { background: transparent; }
.reviews-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.review-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s;
  flex: 0 0 320px; scroll-snap-align: start;
}
.review-card:hover { border-color: rgba(109,40,217,0.3); }
.review-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-soft); border: 1px solid rgba(109,40,217,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 16px; color: #fff;
}
.review-info { flex: 1; min-width: 0; }
.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; color: #fff; line-height: 1.2;
}
.review-date { font-size: 11px; color: var(--muted); margin-top: 2px; }
.review-g { opacity: 0.45; flex-shrink: 0; }
.review-stars { color: #fbbf24; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 9; overflow: hidden;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpCenter {
  from { opacity: 0; transform: translateY(calc(-50% + 24px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}
.hero-content > *                { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1)   { animation-delay: 0.1s; }
.hero-content > *:nth-child(2)   { animation-delay: 0.2s; }
.hero-content > *:nth-child(3)   { animation-delay: 0.3s; }
.hero-content > *:nth-child(4)   { animation-delay: 0.4s; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE  (max-width: 900px)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {

  /* Nav */
  nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 82px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(11,14,26,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    color: var(--text) !important;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    margin-top: 10px;
    padding: 10px 20px;
    text-align: center;
    border-radius: 6px;
    border-bottom: none !important;
    color: #fff !important;
  }

  /* Sections */
  section { padding: 70px 20px; }
  .hero   { padding: 100px 20px 60px; }
  footer  { padding: 30px 20px; flex-direction: column; align-items: flex-start; }

  /* Grids */
  .services-grid       { grid-template-columns: 1fr; gap: 1px; }
  .cp-showcase         { grid-template-columns: 1fr; gap: 40px; }
  .locations-grid      { grid-template-columns: 1fr; }
  .about-grid          { grid-template-columns: 1fr; gap: 40px; }
  .rental-grid         { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }

  /* Stats */
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }

  /* Hero foto-kaartje */
  .hero-photo-card {
    position: relative; top: 0; right: 0;
    transform: none;
    width: 100%; max-width: 100%;
    margin: 90px 0 36px;
    animation: fadeUp 0.8s ease both;
    animation-delay: 0.5s;
  }
  .hero-photo-card img,
  .hero-slide {
    transform: scale(1.6);
    transform-origin: 52% center;
  }

  /* Testing cards */
  .testing-grid { grid-template-columns: 1fr; }

  /* Coaching steps */
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { padding: 24px 20px; }
  .step-num { font-size: 40px; }

  /* Reviews */
  .review-card { flex-basis: 260px; }
  .reviews-top { flex-direction: column; align-items: flex-start; }

  /* Subpagina */
  .subhero { padding: 110px 20px 50px; min-height: 360px; }
}

/* ── ACTIEVE NAV-LINK (multi-page) ── */
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; display: block; height: 2px; margin-top: 3px;
  background: var(--grad); border-radius: 2px;
}
/* Subpagina sectie-intro hergebruik */
.page-intro { max-width: 760px; }
.page-intro .label { margin-bottom: 14px; }










