
/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #141414;
  --dark3: #1a1a1a;
  --silver: #C0C0C0;
  --silver-light: #E0E0E0;
  --silver-dark: #8a8a8a;
  --silver-grad: linear-gradient(135deg, #8a8a8a 0%, #e0e0e0 45%, #c0c0c0 70%, #a0a0a0 100%);
  --silver-grad2: linear-gradient(90deg, #707070 0%, #d8d8d8 50%, #909090 100%);
  --white: #ffffff;
  --text-muted: #888888;
  --border: rgba(192,192,192,0.13);
  --silver-border: rgba(192,192,192,0.42);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* ── Tekstkleuren (canoniek — 3 tinten i.p.v. 7 losse greys) ── */
  --text-strong: #ffffff;   /* koppen, nadruk */
  --text-body:   #b6b6b6;   /* standaard bodytekst */
  --text-dim:    #8a8a8a;   /* labels, captions, fijn drukwerk */

  /* ── Type-schaal ── */
  --fs-lead:  1.05rem;      /* intro's / leads */
  --fs-body:  1rem;         /* standaard paragraaf */
  --fs-sm:    0.9rem;       /* secundaire tekst */
  --fs-xs:    0.8rem;       /* fijn drukwerk */
  --fs-label: 0.72rem;      /* uppercase micro-labels/badges/nav */
  --fs-h3:    1.5rem;       /* grote kaarttitels */
  --fs-h4:    1.3rem;       /* kleine kaarttitels */

  /* ── Letter-spacing ── */
  --ls-label: 0.14em;       /* uppercase labels/badges */
  --ls-btn:   0.1em;        /* knoppen */

  /* ── Radius ── */
  --radius: 4px;            /* alle rechthoekige UI (uniform) */

  /* ── Spacing-schaal ── */
  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 20px;
  --sp-6: 24px; --sp-8: 32px; --sp-10: 40px; --sp-12: 48px;
  --sec-pad: 100px;         /* verticale sectie-padding (desktop) */
  --sec-pad-m: 60px;        /* verticale sectie-padding (mobiel) */
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── SILVER TEXT ─────────────────────────────────────── */
.silver { background: var(--silver-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── CUSTOM SVG ICON SYSTEM ──────────────────────────── */
.bp-icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bp-icon svg { display: block; }
.bp-icon--silver svg { stroke: url(#silverStroke); fill: none; }

/* ── HERO MICRO-ANIMATION ────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.anim-badge   { opacity: 0; animation: fadeUp  0.7s var(--ease-out) 0.2s both; }
.anim-h1-1    { opacity: 0; animation: fadeUp  0.7s var(--ease-out) 0.45s both; }
.anim-h1-2    { opacity: 0; animation: fadeUp  0.7s var(--ease-out) 0.6s  both; }
.anim-h1-3    { opacity: 0; animation: fadeUp  0.7s var(--ease-out) 0.75s both; }
.anim-sub     { opacity: 0; animation: fadeUp  0.8s var(--ease-out) 0.95s both; }
.anim-cta     { opacity: 0; animation: fadeUp  0.7s var(--ease-out) 1.15s both; }
.anim-img     { opacity: 0; animation: slideRight 0.9s var(--ease-out) 0.35s both; }
.anim-line    { transform-origin: left; animation: lineGrow 0.8s var(--ease-out) 1.4s both; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled { background: rgba(8,8,8,0.97); box-shadow: 0 2px 40px rgba(0,0,0,0.6); }
.nav-logo svg { height: 38px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--silver-dark); font-family: 'Montserrat', sans-serif; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--silver-light); }
.nav-cta {
  background: var(--silver-grad);
  color: var(--black) !important;
  padding: 10px 22px;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em;
  border: none; cursor: pointer; text-decoration: none;
  font-family: 'Montserrat', sans-serif; text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s; display: inline-block;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--silver); display: block; transition: background 0.2s; }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 72% 48%, rgba(192,192,192,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 8% 90%, rgba(192,192,192,0.025) 0%, transparent 50%),
    linear-gradient(160deg, #070707 0%, #0c0c0c 60%, #0a0a0a 100%);
}
/* Subtle noise grain layer */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
/* Decorative horizontal rule above content */
.hero-grid::before { display: none; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
  width: 100%; max-width: 1300px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(192,192,192,0.055);
  border: 1px solid rgba(192,192,192,0.16);
  border-left: 2px solid rgba(192,192,192,0.45);
  padding: 8px 16px 8px 14px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; color: var(--silver);
  margin-bottom: 28px;
}
#hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
#hero h1 span.line { display: block; }
.hero-sub {
  font-size: 1.02rem; color: #a8a8a8; line-height: 1.78;
  margin-bottom: 42px; max-width: 460px; font-weight: 300;
  border-left: 1px solid rgba(192,192,192,0.15);
  padding-left: 20px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--silver-grad); color: var(--black);
  padding: 15px 34px; font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(192,192,192,0.22); }
.btn-secondary {
  color: var(--silver); border: 1px solid rgba(192,192,192,0.25);
  padding: 14px 26px; font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--silver); color: var(--white); }

/* ── HERO IMAGE ──────────────────────────────────────── */
.hero-img-wrap {
  position: relative;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.6));
}
.hero-img {
  position: relative; z-index: 1; width: 100%; height: auto;
  aspect-ratio: 4/5; object-fit: cover; object-position: center; display: block;
  border: 1px solid var(--silver-border);
  filter: brightness(0.98) saturate(0.92);
}
.hero-img-placeholder {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid var(--silver-border);
  display: flex; align-items: center; justify-content: center;
}

/* ── STATS BAR ───────────────────────────────────────── */
#stats {
  background: var(--dark2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 5%;
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; padding: 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 700;
  background: var(--silver-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }

/* ── SECTION SHARED ──────────────────────────────────── */
section { padding: 100px 5%; }
.section-tag {
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver);
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: ''; width: 28px; height: 1px;
  background: var(--silver-grad2); flex-shrink: 0;
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.08; margin-bottom: 20px; }

/* ── PAIN ────────────────────────────────────────────── */
#pijn { background: var(--dark); }
.pijn-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: center; margin-top: 50px; }
.pijn-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pijn-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.98rem; color: #c0c0c0; line-height: 1.55;
}
.pijn-icon { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.pijn-cta-text { margin-top: 34px; font-size: 1.05rem; color: var(--white); line-height: 1.65; font-weight: 700; }
.pijn-img-col { position: relative; }
.coach-img { width: 100%; height: auto; object-fit: cover; display: block; border: 1px solid var(--silver-border); filter: saturate(0.92); }
.floating-badge {
  position: absolute; bottom: -24px; left: -24px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(10,10,10,0.66); backdrop-filter: blur(12px);
  border: 1px solid rgba(192,192,192,0.28);
  padding: 15px 22px 15px 18px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  overflow: hidden;
}
.floating-badge::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--silver-grad2);
}
.fb-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(192,192,192,0.30); background: rgba(192,192,192,0.05);
  display: flex; align-items: center; justify-content: center;
}
.fb-icon svg { width: 19px; height: 19px; stroke: var(--silver-light); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.fb-text { display: flex; flex-direction: column; line-height: 1.2; }
.fb-text strong { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); }
.fb-sub { font-size: 0.72rem; color: var(--silver-dark); letter-spacing: 0.03em; margin-top: 4px; }

/* ── SERVICES ────────────────────────────────────────── */
#diensten { background: var(--black); }
.diensten-intro { max-width: 640px; margin-bottom: 56px; }
.diensten-intro p { color: var(--text-body); font-size: var(--fs-lead); margin-top: 14px; line-height: 1.72; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.card {
  background: var(--dark2); border: 1px solid var(--border);
  padding: 36px 28px; position: relative;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.card:hover { border-color: rgba(192,192,192,0.35); transform: translateY(-4px); }
.card.featured { border-color: rgba(192,192,192,0.45); background: linear-gradient(160deg, #161616 0%, #111111 100%); }
.card-badge {
  position: absolute; top: -11px; left: 28px;
  background: var(--silver-grad); color: var(--black);
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 4px 12px; font-weight: 700;
}
/* Card SVG icon container */
.card-icon-wrap {
  width: 48px; height: 48px; margin-bottom: 22px;
  border: 1px solid rgba(192,192,192,0.18);
  display: flex; align-items: center; justify-content: center;
  background: rgba(192,192,192,0.04);
}
.card-icon-wrap svg { width: 22px; height: 22px; stroke: var(--silver); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card-name {
  font-family: 'Montserrat', sans-serif; font-size: 1.5rem; letter-spacing: 0.06em;
  background: var(--silver-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.card-freq { font-size: 0.76rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Montserrat', sans-serif; }
.card-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 18px; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.card-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #c4c4c4; }
.card-features li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; stroke: var(--silver-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card .btn-primary { width: 100%; text-align: center; margin-top: auto; display: block; }

/* ── GROUP CLASSES ───────────────────────────────────── */
.group-section { background: var(--dark3); border: 1px solid var(--border); margin-top: 16px; }
.group-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 28px; cursor: pointer; list-style: none; user-select: none; transition: background 0.2s; }
.group-summary::-webkit-details-marker { display: none; }
.group-summary:hover { background: rgba(192,192,192,0.03); }
.group-summary-text { display: flex; flex-direction: column; gap: 5px; }
.group-title { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; letter-spacing: 0.05em; text-transform: uppercase; }
.group-subtitle { font-size: 0.82rem; color: var(--text-muted); }
.group-toggle { flex-shrink: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.group-toggle svg { width: 16px; height: 16px; stroke: var(--silver); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s var(--ease-out); }
.group-section[open] .group-toggle svg { transform: rotate(180deg); }
.group-body { padding: 0 28px 30px; }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver-dark); padding: 0 0 14px; text-align: left; border-bottom: 1px solid var(--border); }
.schedule-table td { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.88rem; color: #c0c0c0; vertical-align: middle; }
.schedule-table td:first-child { font-family: 'Montserrat', sans-serif; color: var(--silver); letter-spacing: 0.06em; width: 120px; }
.schedule-table td:nth-child(2) { width: 90px; font-variant-numeric: tabular-nums; }
.schedule-table .class-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--silver-dark); display: inline-block; margin-right: 10px; vertical-align: middle; }
.class-name { font-family: 'Montserrat', sans-serif; font-size: 0.98rem; letter-spacing: 0.05em; color: var(--white); }
.class-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── ABOUT ───────────────────────────────────────────── */
#over { background: var(--dark); }
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 50px; }
.over-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.over-img-main { grid-column: 1 / -1; }
.over-img { width: 100%; height: auto; object-fit: cover; display: block; border: 1px solid var(--silver-border); filter: saturate(0.92); }
.over-intro { font-size: 1.02rem; color: var(--white); line-height: 1.78; margin-bottom: 26px; }
.over-intro strong { color: var(--silver-light); font-weight: 600; }
.over-left .credentials { margin-top: 30px; }
.credentials { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.cred-item { display: flex; align-items: flex-start; gap: 16px; }
.cred-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 9px;
  border: 1px solid var(--silver-border);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(192,192,192,0.09), rgba(192,192,192,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.cred-icon svg { width: 21px; height: 21px; stroke: var(--silver); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cred-icon svg.flag { width: 25px; height: 25px; }
.cred-icon svg.flag rect { stroke: none; }
.cred-icon svg.star polygon { fill: url(#silverStroke); stroke: none; }
.cred-text { font-size: 0.88rem; color: #b8b8b8; line-height: 1.55; }
.cred-text strong { color: var(--white); display: block; font-family: 'Montserrat', sans-serif; letter-spacing: 0.05em; margin-bottom: 3px; font-size: 0.98rem; }

/* ── STUDIO ──────────────────────────────────────────── */
#studio { background: var(--black); }
.studio-header { max-width: 720px; margin-bottom: 20px; }
.studio-intro { font-size: 1.02rem; color: #b0b0b0; line-height: 1.78; max-width: 640px; }
.studio-intro strong { color: var(--silver-light); font-weight: 600; }
.studio-features { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 46px; }
.studio-chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(192,192,192,0.16);
  background: rgba(192,192,192,0.04);
  padding: 9px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver);
}
.studio-chip svg { width: 15px; height: 15px; stroke: var(--silver); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.studio-cell {
  position: relative; overflow: hidden;
  border: 1px solid var(--silver-border);
  background: var(--dark2);
  cursor: pointer;
}
.studio-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s var(--ease-out), filter 0.4s;
  filter: brightness(0.94) saturate(0.92);
}
.studio-cell:hover img { transform: scale(1.06); filter: brightness(1) saturate(0.96); }
.studio-cell.feature { grid-column: span 2; grid-row: span 2; }
.studio-cell.tall { grid-row: span 2; }
.studio-cell.wide { grid-column: span 2; }
/* subtle zoom hint icon */
.studio-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.28) 0%, transparent 42%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.studio-cell:hover::after { opacity: 1; }

/* ── STUDIO LIGHTBOX ─────────────────────────────────── */
.studio-lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,5,5,0.94); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 4vw;
}
.studio-lightbox.open { display: flex; }
.studio-lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border: 1px solid var(--border); }
.studio-lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px; cursor: pointer;
  border: 1px solid rgba(192,192,192,0.3); background: rgba(8,8,8,0.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); transition: border-color 0.2s, color 0.2s;
}
.studio-lb-close:hover { border-color: var(--silver); color: var(--white); }
.studio-lb-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.studio-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; cursor: pointer;
  border: 1px solid rgba(192,192,192,0.3); background: rgba(8,8,8,0.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); transition: border-color 0.2s, color 0.2s; user-select: none;
}
.studio-lb-nav:hover { border-color: var(--silver); color: var(--white); }
.studio-lb-nav svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.studio-lb-prev { left: 20px; }
.studio-lb-next { right: 20px; }

/* ── REVIEWS ─────────────────────────────────────────── */
#reviews { background: var(--black); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.google-badge { display: flex; align-items: center; gap: 14px; background: var(--dark2); border: 1px solid var(--border); padding: 14px 22px; }
.google-stars-display { color: var(--silver); font-size: 1rem; letter-spacing: 3px; }
.google-meta { font-size: 0.78rem; color: var(--text-muted); }
.google-meta strong { color: var(--white); font-size: 1rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--dark2); border: 1px solid var(--border); padding: 26px; transition: border-color 0.3s; }
.review-card:hover { border-color: rgba(192,192,192,0.28); }
.review-stars { color: var(--silver); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-size: 0.86rem; color: #c0c0c0; line-height: 1.68; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 34px; height: 34px; background: var(--silver-grad); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--black); flex-shrink: 0; }
.review-name { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; letter-spacing: 0.05em; color: var(--white); }
.review-time { font-size: 0.7rem; color: var(--text-muted); }

/* ── VIDEO TESTIMONIALS ──────────────────────────────── */
#video-testimonials { background: var(--dark); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.video-card {
  position: relative; overflow: hidden; cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  background: var(--dark2);
}
.video-card:hover { border-color: rgba(192,192,192,0.35); transform: translateY(-3px); }
.video-card:hover .video-overlay { background: rgba(8,8,8,0.55); }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-thumb {
  width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block;
  filter: brightness(0.65) grayscale(0.3);
  transition: filter 0.3s;
}
.video-thumb-placeholder {
  width: 100%; aspect-ratio: 9/16;
  background: linear-gradient(160deg, #1a1a1a 0%, #0f0f0f 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(0.7) grayscale(0.2); transition: filter 0.3s;
}
.video-card:hover .video-poster { filter: brightness(0.8) grayscale(0); }
.video-card:hover .video-thumb { filter: brightness(0.72) grayscale(0.1); }
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.65);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border: 1.5px solid rgba(192,192,192,0.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
  background: rgba(8,8,8,0.5);
  backdrop-filter: blur(4px);
}
.play-btn:hover { border-color: var(--silver-light); }
.play-btn svg { width: 18px; height: 18px; stroke: var(--silver-light); fill: var(--silver-light); margin-left: 3px; }
.video-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}
.video-client { font-family: 'Montserrat', sans-serif; font-size: 1rem; letter-spacing: 0.06em; color: var(--white); }
.video-result { font-size: 0.75rem; color: var(--silver); margin-top: 3px; letter-spacing: 0.06em; }

/* Video lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; align-items: center; justify-content: center; padding: 5%; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; width: 100%; max-width: 440px; }
.lightbox video { width: 100%; display: block; }
.lightbox-close {
  position: absolute; top: -42px; right: 0;
  background: none; border: none; color: var(--silver); font-size: 1.4rem;
  cursor: pointer; font-family: 'Montserrat', sans-serif; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 8px;
}

/* ── MID CTA ─────────────────────────────────────────── */
#mid-cta {
  background: linear-gradient(160deg, #111 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 90px 5%;
}
.mid-cta-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.mid-cta-inner .section-tag { justify-content: center; }
.mid-cta-inner .section-tag::before { display: none; }
.mid-cta-title { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 16px; }
.mid-cta-sub { color: #aaaaaa; font-size: 1rem; line-height: 1.72; margin-bottom: 36px; }

/* ── FORM ────────────────────────────────────────────── */
.form-container { background: var(--dark2); border: 1px solid var(--border); padding: 38px; }
.form-title { font-family: 'Montserrat', sans-serif; font-size: 1.35rem; letter-spacing: 0.06em; margin-bottom: 6px; }
.form-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.72rem; color: var(--silver-dark); letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
input, textarea, select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.12); color: var(--white);
  padding: 12px 14px; font-family: 'Inter', sans-serif; font-size: 0.88rem;
  outline: none; transition: border-color 0.2s; width: 100%; appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(192,192,192,0.45); background: rgba(255,255,255,0.05); }
textarea { resize: vertical; min-height: 96px; }
select option { background: #1a1a1a; }
.form-submit {
  grid-column: 1 / -1; background: var(--silver-grad); color: var(--black);
  border: none; padding: 15px; font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; width: 100%; transition: opacity 0.2s, transform 0.2s;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.form-note { grid-column: 1 / -1; font-size: 0.72rem; color: var(--text-muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note svg { width: 13px; height: 13px; stroke: var(--text-muted); fill: none; stroke-width: 2; flex-shrink: 0; }
.form-consent { grid-column: 1 / -1; }
.consent-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; text-transform: none; letter-spacing: normal; font-family: 'Inter', sans-serif; }
.consent-label input[type="checkbox"] { appearance: auto; -webkit-appearance: checkbox; margin-top: 2px; flex-shrink: 0; min-width: 16px; width: 16px; height: 16px; padding: 0; background: none; border: none; border-radius: 0; accent-color: var(--silver); cursor: pointer; }
.form-error { grid-column: 1 / -1; font-size: 0.8rem; color: #e08a8a; background: rgba(224,138,138,0.08); border: 1px solid rgba(224,138,138,0.3); padding: 10px 14px; }
.form-error a { color: var(--silver-light); }

/* ── FAQ ─────────────────────────────────────────────── */
#faq { background: var(--dark); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 48px; align-items: start; }
.faq-item { background: var(--dark2); border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  padding: 20px 22px; font-family: 'Montserrat', sans-serif; font-size: 0.98rem;
  letter-spacing: 0.04em; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; user-select: none; transition: color 0.2s;
}
.faq-q:hover { color: var(--silver-light); }
.faq-icon-wrap { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-icon-wrap::before, .faq-icon-wrap::after {
  content: ''; position: absolute; background: var(--silver-dark);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.faq-icon-wrap::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon-wrap::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon-wrap::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.36s ease, padding 0.36s ease; padding: 0 22px; font-size: 0.86rem; color: #aaaaaa; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ── CONTACT ─────────────────────────────────────────── */
#contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; margin-top: 50px; }
.contact-info p { color: #aaaaaa; font-size: 0.98rem; line-height: 1.72; margin-bottom: 34px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: 0.88rem; color: #c0c0c0; }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--silver); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item a { color: #c0c0c0; text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--silver); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--silver-dark); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--silver); color: var(--silver-light); }
.social-link svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.form-success { display: none; text-align: center; padding: 48px 32px; background: var(--dark2); border: 1px solid rgba(192,192,192,0.25); }
.form-success .success-icon-wrap { width: 56px; height: 56px; margin: 0 auto 20px; border: 1px solid rgba(192,192,192,0.3); display: flex; align-items: center; justify-content: center; }
.form-success .success-icon-wrap svg { width: 24px; height: 24px; stroke: var(--silver); fill: none; stroke-width: 1.8; }
.form-success h3 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; background: var(--silver-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.form-success p { color: #aaaaaa; font-size: 0.9rem; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 44px 5%; text-align: center; }
.footer-logo { margin-bottom: 22px; }
.footer-logo svg { height: 30px; }
.footer-divider { display: none; }
.footer-links { display: flex; gap: 28px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.76rem; color: var(--text-muted); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Montserrat', sans-serif; transition: color 0.2s; }
.footer-links a:hover { color: var(--silver); }
.footer-copy { font-size: 0.72rem; color: #3a3a3a; }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 22px rgba(37,211,102,0.38);
  text-decoration: none; color: white;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── STICKY MOBILE CTA BAR ───────────────────────────── */
.sticky-cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 998;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 12px 16px; padding-bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateY(0); transition: transform 0.3s var(--ease-out);
}
.sticky-cta-bar.hide { transform: translateY(100%); }
.sticky-cta-bar a.btn-primary { display: block; width: 100%; text-align: center; padding: 14px 20px; font-size: 0.85rem; }

/* ── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.98); backdrop-filter: blur(16px);
  padding: 24px 5%; border-bottom: 1px solid var(--border);
  z-index: 999; flex-direction: column; gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--silver-dark); font-family: 'Montserrat', sans-serif; font-size: 1.05rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a.btn-primary { color: var(--black); border-bottom: none; }

/* ── SCROLL FADE-IN ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .card:last-child { grid-column: 1 / -1; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  /* Nav links + CTA text no longer fit on one line below this width
     (e.g. "Over Robbe" and "Gratis kennismaking" start wrapping) —
     switch to the hamburger menu here instead of at 768px. */
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid::before { display: none; }
  .hero-img-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  /* Homepage hero gecentreerd op telefoon */
  .hero-content { text-align: center; }
  .hero-content .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-content .hero-sub { border-left: none; padding-left: 0; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .pijn-grid { grid-template-columns: 1fr; }
  .pijn-img-col { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .card:last-child { grid-column: auto; }
  .group-summary { padding: 20px 18px; }
  .group-body { padding: 0 18px 24px; }
  .over-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  /* Strakke funnel: toon de 3 sterkste reviews op mobiel; de rest via de Google-knop */
  .reviews-grid .review-card:nth-child(n+4) { display: none; }
  .studio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 132px; gap: 8px; }
  .studio-cell.feature { grid-column: span 2; grid-row: span 2; }
  .studio-cell.wide { grid-column: span 2; }
  .studio-cell.tall { grid-row: span 1; }
  .video-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid > * { min-width: 0; }
  .form-container { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .form-submit, .form-note { grid-column: auto; }
  section { padding: 52px 5%; }
  #stats { padding: 0 5%; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .cards-grid { gap: 14px; margin-bottom: 32px; }
  .over-imgs { max-width: 460px; margin: 0 auto; }
  .sticky-cta-bar { display: block; }
  .wa-float { bottom: 88px; width: 48px; height: 48px; }
  .wa-float svg { width: 22px; height: 22px; }
  body { padding-bottom: 78px; }
}
@media (max-width: 500px) {
  .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .video-client { font-size: 0.9rem; }
  .video-result { font-size: 0.68rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(2) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }
}

/* ══════════════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS (v2)
   ══════════════════════════════════════════════════════════ */

/* ── NAV DROPDOWNS ───────────────────────────────────── */
.nav-links li { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-links .has-dropdown > a .chev { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.2; transition: transform 0.25s var(--ease-out); }
.nav-links .has-dropdown:hover > a .chev { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 200px; background: rgba(14,14,14,0.98); backdrop-filter: blur(16px);
  border: 1px solid var(--border); padding: 8px; list-style: none;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s var(--ease-out);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6); z-index: 1001;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}
/* hover bridge so the gap doesn't drop the menu */
.nav-links .has-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.nav-dropdown li { position: static; }
.nav-dropdown a {
  display: block; padding: 11px 14px; font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--silver-dark); white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: rgba(192,192,192,0.06); color: var(--white); }
.nav-links a.active, .nav-dropdown a.active { color: var(--silver-light); }
.nav-links > li > a.active { position: relative; }

/* ── INTERIOR PAGE HERO ──────────────────────────────── */
.page-hero {
  position: relative; padding: 150px 5% 70px; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(192,192,192,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #0d0d0d 100%);
}
.page-hero .section-inner { position: relative; z-index: 1; }
.page-hero .breadcrumb { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-dark); margin-bottom: 18px; }
.page-hero .breadcrumb a { color: var(--silver-dark); text-decoration: none; transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--silver); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.04; margin-bottom: 20px; }
.page-hero .page-lead { font-size: 1.05rem; color: #a8a8a8; line-height: 1.75; max-width: 620px; font-weight: 300; }
.page-hero.has-img { background: linear-gradient(160deg, #0a0a0a 0%, #0d0d0d 100%); }
.page-hero-img {
  position: absolute; inset: 0; z-index: 0; opacity: 0.22;
  object-fit: cover; width: 100%; height: 100%; filter: grayscale(0.3) brightness(0.6);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, black 60%);
}

/* ── HOME OVERVIEW CARDS (links to subpages) ─────────── */
#overview { background: var(--dark); }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.ov-card {
  position: relative; overflow: hidden; border: 1px solid var(--border);
  background: var(--dark2); text-decoration: none; display: flex; flex-direction: column;
  min-height: 340px; transition: border-color 0.3s, transform 0.3s; color: var(--white);
}
.ov-card h3 { color: var(--white); }
.ov-card:hover { border-color: rgba(192,192,192,0.4); transform: translateY(-4px); }
.ov-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.42) saturate(0.9); transition: filter 0.4s, transform 0.6s var(--ease-out); }
.ov-card:hover .ov-card-img { filter: brightness(0.55) saturate(0.95); transform: scale(1.05); }
.ov-card-body { position: relative; z-index: 1; margin-top: auto; padding: 28px; background: linear-gradient(transparent, rgba(8,8,8,0.55)); }
.ov-card h3 { font-size: 1.5rem; letter-spacing: 0.05em; margin-bottom: 8px; }
.ov-card p { font-size: 0.86rem; color: #c4c4c4; line-height: 1.55; margin-bottom: 16px; }
.ov-card .ov-link { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); display: inline-flex; align-items: center; gap: 8px; }
.ov-card .ov-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.25s var(--ease-out); }
.ov-card:hover .ov-link svg { transform: translateX(4px); }

/* ── MOBILE MENU SUBMENUS ────────────────────────────── */
.mobile-menu .m-group > .m-parent {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 1.05rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-dark);
}
.mobile-menu .m-parent .chev { width: 14px; height: 14px; stroke: var(--silver); fill: none; stroke-width: 2; transition: transform 0.25s var(--ease-out); }
.mobile-menu .m-group.open .m-parent .chev { transform: rotate(180deg); }
.mobile-submenu { display: none; flex-direction: column; padding: 6px 0 6px 16px; gap: 0; border: none; }
.mobile-menu .m-group.open .mobile-submenu { display: flex; }
.mobile-submenu a { font-size: 0.9rem !important; color: var(--text-muted); border-bottom: none !important; padding: 9px 0 !important; }

/* ── UTILITIES ───────────────────────────────────────── */
.center-cta { text-align: center; margin-top: 48px; }
.lead-narrow { max-width: 680px; }
.pad-top-nav { padding-top: 72px; }
.split-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.section-alt { background: var(--dark); }

@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 5% 48px; }
  .page-hero-img { -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 80%); mask-image: linear-gradient(to bottom, transparent 0%, black 80%); opacity: 0.16; }
  .ov-card { min-height: 300px; }
}

/* ══ STATS — DYNAMIC (v2) ═════════════════════════════ */
#stats { position: relative; overflow: hidden; }
#stats .stats-grid { align-items: stretch; }
.stat-item { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 2px; }
.stat-num { display: inline-flex; align-items: baseline; justify-content: center; font-variant-numeric: tabular-nums; font-size: 3.4rem; }
.stat-suffix { font-size: 1.9rem; margin-left: 2px; -webkit-text-fill-color: transparent; }
.stat-bar { width: 0; height: 2px; background: var(--silver-grad2); margin: 10px 0 8px; transition: width 0.9s var(--ease-out); transition-delay: calc(var(--d, 0s) + 0.2s); }
#stats.stats-in .stat-bar { width: 34px; }
.stat-label { transition: color 0.3s; }

/* staggered entrance */
.stat-item { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); transition-delay: var(--d, 0s); }
#stats.stats-in .stat-item { opacity: 1; transform: none; }
/* no-JS / no-observer fallback: if the counter never runs, still show them */
.no-stats-anim .stat-item { opacity: 1; transform: none; }

/* hover lift on the number + icon */
.stat-item .stat-icon, .stat-item .stat-num { transition: transform 0.3s var(--ease-out); }
.stat-item:hover .stat-icon { transform: translateY(-3px); }
.stat-item:hover .stat-num { transform: scale(1.04); }
.stat-item:hover .stat-label { color: var(--silver); }

@media (max-width: 768px) {
  #stats { padding: 34px 5%; }
  .stat-item { padding: 20px 10px; }
  .stat-num { font-size: 2.7rem; }
  .stat-suffix { font-size: 1.5rem; }
}

/* ══ GROEPSLESSEN — CLASS CARDS (v2) ══════════════════ */
.class-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 14px; }
.class-card {
  position: relative; overflow: hidden;
  background: var(--dark2); border: 1px solid var(--border);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 15px;
  transition: border-color 0.3s, transform 0.3s;
}
.class-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--silver-grad2); transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}
.class-card:hover { border-color: rgba(192,192,192,0.32); transform: translateY(-4px); }
.class-card:hover::before { transform: scaleY(1); }
.class-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.class-day { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-dark); }
.class-time {
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; letter-spacing: 0.05em; font-weight: 700;
  color: var(--black); background: var(--silver-grad); padding: 4px 12px; font-variant-numeric: tabular-nums;
}
.class-ico { width: 42px; height: 42px; border: 1px solid rgba(192,192,192,0.18); background: rgba(192,192,192,0.04); display: flex; align-items: center; justify-content: center; }
.class-ico svg { width: 21px; height: 21px; stroke: var(--silver); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.class-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.4rem; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--silver-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.class-sub { font-size: 0.85rem; color: #a8a8a8; margin-top: -6px; }
@media (max-width: 768px) {
  .class-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .class-card { padding: 18px 16px; gap: 12px; }
  .class-title { font-size: 1.2rem; }
}
@media (max-width: 380px) { .class-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   CLEAN RESTYLE — Montserrat · flat white · bordered labels · ghost buttons
   (appended last so it overrides earlier rules)
   ══════════════════════════════════════════════════════════ */

/* — Typografie: Montserrat, minder tracking op grote titels — */
h1, h2, h3, h4 { letter-spacing: 0.01em; }
#hero h1, .page-hero h1 { letter-spacing: -0.01em; font-weight: 800; }
.section-title, .mid-cta-title { letter-spacing: 0.005em; font-weight: 700; }
.hero-sub { font-weight: 400; }

/* — Vlak wit i.p.v. zilveren gradient op alle grote tekst — */
.silver,
.stat-num, .stat-count, .stat-suffix,
.card-name, .class-title,
.mid-cta-title, .form-success h3,
.form-title .silver, .section-title .silver {
  background: none !important;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}
/* subtiel: highlight-woorden iets lichter/dunner zodat er tóch nadruk is */
.section-title .silver, #hero h1 .silver, .page-hero h1 .silver, .mid-cta-title .silver {
  color: #d8d8d8; -webkit-text-fill-color: #d8d8d8;
}

/* — Sectielabel als kadertje (het "ONZE FILOSOFIE"-motief) — */
.section-tag {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid rgba(192,192,192,0.28);
  padding: 8px 15px; margin-bottom: 24px;
  color: var(--silver); letter-spacing: 0.24em; font-weight: 600;
}
.section-tag::before { display: none; }
.mid-cta-inner .section-tag { justify-content: center; }

/* — Ghost-knoppen (dun kader, vult bij hover) — */
.btn-primary {
  background: transparent; color: var(--white);
  border: 1px solid rgba(224,224,224,0.55); box-shadow: none;
  font-weight: 600;
}
.btn-primary:hover { background: var(--white); color: var(--black); box-shadow: none; transform: translateY(-2px); }
.btn-secondary { font-weight: 600; }
.nav-cta {
  background: transparent; color: var(--white) !important;
  border: 1px solid rgba(224,224,224,0.5); font-weight: 600;
}
.nav-cta:hover { background: var(--white); color: var(--black) !important; opacity: 1; }
/* Eindacties blijven gevuld wit (beter voor conversie) */
.form-submit { background: var(--white); color: var(--black); font-weight: 700; }
.form-submit:hover { background: var(--silver-light); opacity: 1; }
.sticky-cta-bar a.btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.sticky-cta-bar a.btn-primary:hover { background: var(--silver-light); }

/* — Kleine chips vlak wit i.p.v. gradient — */
.class-time { background: var(--white); color: var(--black); font-weight: 700; }
.stat-suffix { color: #d8d8d8; -webkit-text-fill-color: #d8d8d8; }

/* — Logo-lockup met kader in de nav (icoon | BERGER PERFORMANCE) — */
.brand-lockup { display: inline-flex; align-items: center; border: 1px solid rgba(192,192,192,0.30); padding: 6px 15px 6px 9px; text-decoration: none; transition: border-color 0.25s; }
.brand-lockup:hover { border-color: rgba(192,192,192,0.55); }
.bl-mark { display: flex; align-items: center; }
.bl-mark img { height: 30px; width: auto; display: block; }
.bl-div { width: 1px; height: 28px; background: rgba(192,192,192,0.30); margin: 0 13px; }
.bl-word { display: flex; flex-direction: column; line-height: 1; }
.bl-word b { font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.2em; color: var(--white); }
.bl-word span { font-family: 'Montserrat', sans-serif; font-size: 0.5rem; font-weight: 500; letter-spacing: 0.32em; color: var(--silver-dark); margin-top: 3px; }

@media (max-width: 480px) {
  .bl-word b { font-size: 0.78rem; letter-spacing: 0.16em; }
  .bl-word span { font-size: 0.44rem; letter-spacing: 0.26em; }
  .bl-mark img { height: 26px; }
  .bl-div { height: 24px; margin: 0 10px; }
}

/* — Toegankelijkheid: nette focus-ring voor toetsenbord — */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible,
.studio-cell:focus-visible, .video-card:focus-visible, .faq-q:focus-visible, .hamburger:focus-visible {
  outline: 2px solid var(--silver-light); outline-offset: 3px;
}

/* — Respecteer 'verminder beweging' — */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .fade-in, .stat-item { opacity: 1 !important; transform: none !important; }
}

/* — Mobiel: header opschonen + titelgroottes — */
@media (max-width: 1024px) {
  .nav-cta { display: none; }           /* CTA zit al in het hamburger-menu + sticky balk */
}
@media (max-width: 768px) {
  #hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .page-hero h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .brand-lockup { padding: 5px 12px 5px 8px; }
}

/* ── TERUG NAAR ZILVEREN GRADIENT: knoppen + social-proof cijfers ── */
/* Cijfers (75+, 2500+, 4+, 100%) weer zilveren gradient
   (!important nodig om de eerdere 'background:none !important' flatten te overrulen) */
.stat-count, .stat-suffix {
  display: inline-block;
  background: var(--silver-grad) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: transparent;
}

/* Knoppen weer gevuld met zilveren gradient (aantrekkelijker) */
.btn-primary {
  background: var(--silver-grad); color: var(--black); border: none;
}
.btn-primary:hover {
  background: var(--silver-grad); color: var(--black);
  transform: translateY(-2px); box-shadow: 0 10px 32px rgba(192,192,192,0.22);
}
.nav-cta {
  background: var(--silver-grad); color: var(--black) !important; border: none;
}
.nav-cta:hover { background: var(--silver-grad); color: var(--black) !important; opacity: 0.88; transform: translateY(-1px); }
.form-submit { background: var(--silver-grad); color: var(--black); }
.form-submit:hover { background: var(--silver-grad); opacity: 0.9; }
.sticky-cta-bar a.btn-primary { background: var(--silver-grad); color: var(--black); border: none; }
.sticky-cta-bar a.btn-primary:hover { background: var(--silver-grad); opacity: 0.92; }

/* ── GOOGLE REVIEW BADGE — clean, monochrome ─────────── */
.google-badge {
  display: inline-flex; align-items: center; gap: 15px;
  background: var(--dark2); border: 1px solid var(--border);
  padding: 14px 22px; text-decoration: none;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.google-badge:hover { border-color: rgba(192,192,192,0.32); transform: translateY(-2px); }
.g-logo { width: 26px; height: 26px; flex-shrink: 0; color: var(--silver-light); }
.g-logo svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.g-body { display: flex; flex-direction: column; gap: 4px; }
.g-top { display: flex; align-items: center; gap: 11px; }
.g-score { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--white); line-height: 1; }
.g-stars { color: var(--silver); font-size: 0.92rem; letter-spacing: 2px; line-height: 1; }
.g-sub { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.02em; }
.g-sub strong { color: var(--white); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM — badges, chips & knoppen GEÜNIFICEERD
   (laatst = wint van alle eerdere losse definities)
   ═══════════════════════════════════════════════════════════ */

/* 1 · OUTLINE-CHIPS: labels, eyebrows & kenmerken — identiek */
.hero-badge, .section-tag, .studio-chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(192,192,192,0.22);
  background: rgba(192,192,192,0.04);
  padding: 8px 15px; margin-bottom: 0;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver); line-height: 1;
}
.hero-badge { margin-bottom: 28px; }         /* staat boven de H1 */
.section-tag { margin-bottom: 24px; gap: 0; }
.section-tag::before { display: none; }
.mid-cta-inner .section-tag { justify-content: center; }
.studio-chip svg, .hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* 2 · GEVULD WIT: kleine highlight-chips (niet-interactief) */
.card-badge, .class-time {
  background: var(--white); color: var(--black);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  -webkit-text-fill-color: var(--black);
}
.card-badge { font-size: 0.62rem; letter-spacing: 0.14em; padding: 4px 12px; }
.class-time { font-size: 0.8rem; letter-spacing: 0.04em; padding: 4px 12px; }

/* 3 · KNOPPEN: consistente tracking/weight (fill = zilver, ghost = kader) */
.btn-primary, .nav-cta, .form-submit, .sticky-cta-bar a.btn-primary {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.btn-secondary { font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.1em; }

/* ═══════════════════════════════════════════════════════════
   BRANDING PASS — header-logo (bedrijfshal-stijl), badge-stijl, embleem
   ═══════════════════════════════════════════════════════════ */

/* 1 · HEADER-LOGO zoals op de bedrijfshal: embleem | streep | BERGER / —PERFORMANCE— (geen kader) */
.brand-lockup { border: none !important; padding: 0 !important; background: none !important; }
.bl-mark img { height: 38px; }
.bl-div { width: 1px; height: 34px; background: rgba(192,192,192,0.40); margin: 0 15px; }
.bl-word { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.bl-word b { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.08rem; letter-spacing: 0.24em; color: var(--white); }
.bl-perf {
  display: flex; align-items: center; gap: 7px; margin-top: 6px;
  font-family: 'Montserrat', sans-serif; font-size: 0.46rem; font-weight: 500;
  letter-spacing: 0.3em; color: var(--silver-dark); text-transform: uppercase;
}
.bl-perf i { display: block; height: 1px; width: 13px; background: rgba(192,192,192,0.42); }
@media (max-width: 480px) {
  .bl-mark img { height: 31px; }
  .bl-div { height: 29px; margin: 0 11px; }
  .bl-word b { font-size: 0.9rem; letter-spacing: 0.18em; }
  .bl-perf { font-size: 0.4rem; letter-spacing: 0.22em; gap: 5px; }
  .bl-perf i { width: 9px; }
}

/* 2 · "RESULTAAT DAT BLIJFT" badge in dezelfde stijl als de Google-badge */
.floating-badge {
  background: var(--dark2); backdrop-filter: none;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  gap: 15px; padding: 15px 22px;
}
.floating-badge::before { display: none; }        /* zilveren accentstreep weg */
.fb-icon { width: 30px; height: 30px; border: none; background: none; }
.fb-icon svg { width: 27px; height: 27px; stroke: var(--silver-light); stroke-width: 2; }
.fb-text strong { font-size: 0.92rem; }
.fb-sub { color: var(--text-muted); }

/* 3 · SUBTIELE BRANDING — embleem-watermerk */
#mid-cta { position: relative; overflow: hidden; }
#mid-cta::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  right: -70px; bottom: -90px; width: 360px; height: 360px;
  background: url('../images/emblem.png') no-repeat center / contain;
  opacity: 0.05; filter: grayscale(1) brightness(1.6);
}
#mid-cta .mid-cta-inner { position: relative; z-index: 1; }

#hero .hero-bg::before {
  content: ''; position: absolute; left: 1%; top: 50%; transform: translateY(-50%);
  width: 440px; height: 440px; pointer-events: none;
  background: url('../images/emblem.png') no-repeat center / contain;
  opacity: 0.04; filter: grayscale(1) brightness(1.8);
}
@media (max-width: 768px) {
  #hero .hero-bg::before { width: 300px; height: 300px; left: -10%; top: 30%; opacity: 0.03; }
  #mid-cta::after { width: 240px; height: 240px; right: -50px; bottom: -60px; }
}

/* ── NIEUW LOGO (metallic lockup) in header + achtergrond-watermerken weg ── */
.nav-logo img { height: 40px; width: auto; display: block; }
@media (max-width: 480px) { .nav-logo img { height: 32px; } }
/* achtergrond-embleem watermerken verwijderd op alle pagina's */
#mid-cta::after { display: none !important; }
#hero .hero-bg::before { display: none !important; }

/* ══ ECHT LOGO — horizontale lockup (embleem | streep | BERGER PERFORMANCE) ══ */
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 46px !important; width: auto !important; display: block; }
.footer-logo { text-align: center; }
.footer-logo-img { height: 46px; width: auto; display: block; margin: 0 auto; }
@media (max-width: 900px) {
  .nav-logo-img { height: 40px !important; }
}
@media (max-width: 480px) {
  .nav-logo-img { height: 34px !important; }
  .footer-logo-img { height: 40px; }
}

/* ══ OVER-PAGINA — 'getraind & gesparde met'-strip ══ */
.trained-with {
  font-size: 0.82rem; letter-spacing: .3px; color: var(--silver-dark);
  line-height: 1.7; margin: 26px 0 20px; padding: 14px 18px;
  border: 1px solid var(--border); border-radius: 4px;
  background: rgba(192,192,192,0.03);
}
.trained-with .silver { font-weight: 600; }
.trained-with em { font-style: normal; font-size: 0.72rem; color: var(--silver-dark); opacity: .8; }

/* ══ OVER-PAGINA — fotostrip (kooi / studio / Thailand) ══ */
#fight-gallery .fight-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
#fight-gallery figcaption em { font-style: normal; color: var(--silver); font-size: 0.72rem; }
#fight-gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 4px; border: 1px solid var(--border); }
#fight-gallery figure img {
  width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  filter: grayscale(18%) contrast(1.02); transition: transform .5s ease, filter .5s ease;
}
#fight-gallery figure:hover img { transform: scale(1.05); filter: grayscale(0%) contrast(1.05); }
#fight-gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px; font-size: 0.76rem; letter-spacing: .4px;
  color: #e8e8e8; font-weight: 500;
  background: linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,0.82) 100%);
}
@media (max-width: 1000px) {
  #fight-gallery .fight-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  #fight-gallery .fight-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  #fight-gallery figure:last-child { grid-column: span 2; }
  #fight-gallery figure:last-child img { aspect-ratio: 16/9; }
}

/* ══════════════════════════════════════════════════════════
   DESIGN SYSTEM — FINALE NORMALISATIE (v3)
   Eén canonieke set. Dit blok staat als laatste en wint.
   Doel: consistente typografie, kleuren, radius, knoppen,
   badges en spacing over de hele site.
   ══════════════════════════════════════════════════════════ */

/* — 1. Basis tekstkleur — */
body { color: var(--text-body); }
h1, h2, h3, h4 { color: var(--text-strong); }

/* — 2. Type-schaal per rol (snapt losse groottes naar de schaal) — */
/* Leads / intro's */
.hero-sub, .page-lead, .diensten-intro, .studio-intro, .over-intro, .mid-cta-sub {
  font-size: var(--fs-lead); font-weight: 400; color: var(--text-body);
}
/* Standaard body */
.pijn-list li, .contact-info p, .card-features li, .ov-card p {
  font-size: var(--fs-body); color: var(--text-body);
}
/* Secundaire tekst */
.review-text, .faq-a, .cred-text, .form-success p, .class-desc, .card-features li {
  color: var(--text-body);
}
.review-text, .faq-a { font-size: var(--fs-sm); }
.cred-text { font-size: var(--fs-sm); }
.cred-text strong { font-size: var(--fs-body); }

/* Kaarttitels → 2 niveaus */
.card-name, .ov-card h3, .form-title, .form-success h3 { font-size: var(--fs-h3); }
.class-title, .group-title { font-size: var(--fs-h4); }

/* — 3. Uppercase micro-labels: één grootte + tracking + kleur — */
.section-tag, .hero-badge, .studio-chip, .breadcrumb, .stat-label,
.card-freq, .class-day, .g-sub, .form-sub, #fight-gallery figcaption {
  font-size: var(--fs-label); letter-spacing: var(--ls-label);
}
.stat-label, .card-freq, .breadcrumb, .g-sub, .form-sub { color: var(--text-dim); }

/* — 4. Radius: uniform op alle rechthoekige UI — */
.btn-primary, .btn-secondary, .form-submit, .nav-cta,
input, textarea, select,
.card, .ov-card, .class-card, .group-card, .review-card, .form-container,
.studio-cell, .video-card, .faq-item,
.over-img, .hero-img, .coach-img, .about-img, .over-img-main img, .over-imgs img,
.cred-icon, .trained-with, #fight-gallery figure,
.hero-badge, .section-tag, .studio-chip, .card-badge, .class-time,
.google-badge, .floating-badge {
  border-radius: var(--radius);
}

/* — 5. Knoppen: één familie (geometrie gelijk) — */
.btn-primary, .btn-secondary, .form-submit {
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: var(--ls-btn); text-transform: uppercase;
  padding: 15px 32px; line-height: 1;
}
.btn-secondary { padding: 14px 31px; }   /* +1px border → gelijke hoogte als primary */
.nav-cta { letter-spacing: var(--ls-btn); }

/* — 6. Badges — */
/* Witte fill-chips gelijk */
.card-badge, .class-time {
  font-size: var(--fs-label); letter-spacing: var(--ls-label);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  padding: 4px 12px; text-transform: uppercase;
}
/* Notitie-strip (trained-with) op kleur-token */
.trained-with { color: var(--text-dim); font-size: var(--fs-xs); letter-spacing: var(--ls-label); }
.trained-with em, #fight-gallery figcaption em { font-size: var(--fs-label); }
#fight-gallery figcaption { color: #ededed; font-weight: 600; }

/* — 7. Herbruikbare helpers (vervangen inline-styles) — */
.section-tag.center { justify-content: center; }
.section-title.center { text-align: center; }
.section-lead {
  color: var(--text-body); font-size: var(--fs-lead); line-height: 1.72;
  text-align: center; max-width: 640px; margin: 0 auto var(--sp-10);
}
.hl { color: var(--silver-light); }
.caption { font-size: var(--fs-xs); color: var(--text-dim); }

/* — 8. Sectie-ritme — */
#mid-cta { padding-top: var(--sec-pad); padding-bottom: var(--sec-pad); }
.section-title { margin-bottom: var(--sp-5); }
@media (max-width: 768px) {
  section { padding: var(--sec-pad-m) 5%; }
}

/* — 9. Koppen netjes laten afbreken (voorkomt randoverflow op smal scherm) — */
h1, h2, h3, h4 { overflow-wrap: break-word; }

/* — 10. Duidelijke, consistente hover-states op alle knoppen — */
.btn-primary, .btn-secondary, .form-submit, .nav-cta {
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out),
              filter .2s var(--ease-out), background .25s var(--ease-out), color .2s var(--ease-out);
}
/* Gevulde (zilveren gradient) knoppen: oplichten + optillen + gloed */
.btn-primary:hover, .form-submit:hover, .nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.12) saturate(1.05);
  box-shadow: 0 10px 30px rgba(224,226,230,0.34);
  opacity: 1;
}
/* Outline-knop: vult zich volledig met de zilveren gradient */
.btn-secondary:hover {
  background: var(--silver-grad);
  color: #0b0b0b;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(224,226,230,0.26);
}
.btn-secondary:hover svg { stroke: #0b0b0b; }
/* Ingedrukt: knop veert terug (tactiele feedback) */
.btn-primary:active, .btn-secondary:active, .form-submit:active, .nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(224,226,230,0.20);
}

/* ══ STATUS-PAGINA'S (404 / bedankt) ══ */
.status-page { min-height: 72vh; display: flex; align-items: center; justify-content: center; padding: 140px 5% 100px; text-align: center; }
.status-inner { max-width: 640px; }
.status-code { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(4.5rem, 14vw, 8rem); line-height: 1; letter-spacing: 0.02em; background: var(--silver-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: var(--sp-5); }
.status-page .section-tag { justify-content: center; margin: 0 auto var(--sp-5); }
.status-page .section-lead { margin-top: var(--sp-5); }
.status-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-10); }
.status-check { width: 74px; height: 74px; margin: 0 auto var(--sp-6); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--silver-grad); box-shadow: 0 8px 30px rgba(224,226,230,0.28); }
.status-check svg { width: 34px; height: 34px; stroke: #0b0b0b; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* ══ COOKIE-CONSENT BANNER ══ */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1200;
  background: rgba(15,15,15,0.97); border: 1px solid var(--silver-border);
  border-radius: var(--radius); box-shadow: 0 16px 50px rgba(0,0,0,0.55);
  backdrop-filter: blur(8px); padding: 18px 20px;
  opacity: 0; transform: translateY(16px); transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  max-width: 720px; margin: 0 auto;
}
.cookie-bar.show { opacity: 1; transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 22px; }
.cookie-text { font-size: var(--fs-xs); color: var(--text-body); line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--silver-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn-primary, .cookie-actions .btn-secondary { padding: 11px 20px; font-size: 0.72rem; white-space: nowrap; }
.cookie-actions .btn-secondary { padding: 10px 19px; }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn-primary, .cookie-actions .btn-secondary { flex: 1; text-align: center; }
}

/* ══ FOOTER — juridische links ══ */
.footer-legal { margin-top: 14px; font-size: var(--fs-xs); color: var(--text-dim); }
.footer-legal a { color: var(--text-dim); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--silver-light); }

/* ══ JURIDISCHE PAGINA'S (privacy / cookies) ══ */
.legal-page { padding: 130px 5% 90px; }
.legal-wrap { max-width: 800px; margin: 0 auto; }
.legal-wrap h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 8px; }
.legal-updated { color: var(--text-dim); font-size: var(--fs-sm); margin-bottom: 40px; }
.legal-wrap h2 { font-size: 1.25rem; margin: 38px 0 12px; color: var(--text-strong); }
.legal-wrap p, .legal-wrap li { color: var(--text-body); font-size: var(--fs-body); line-height: 1.75; }
.legal-wrap p { margin-bottom: 14px; }
.legal-wrap ul { margin: 0 0 14px 20px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: var(--silver-light); text-decoration: underline; }
.legal-wrap strong { color: var(--text-strong); }
.legal-box { border: 1px solid var(--border); border-radius: var(--radius); background: rgba(192,192,192,0.03); padding: 20px 24px; margin: 8px 0 20px; }
.legal-box p { margin: 0; }

/* ══ VIDEO-TESTIMONIALS — verticale YouTube-kaarten (5) ══ */
#video-testimonials .video-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
#video-testimonials .video-card { aspect-ratio: 9/16; border-radius: var(--radius); }
#video-testimonials .video-poster { filter: brightness(0.8) grayscale(0.12); }
#video-testimonials .video-card:hover .video-poster { filter: brightness(0.88) grayscale(0); }
#video-testimonials .video-meta { padding: 22px 14px 13px; }
#video-testimonials .video-client {
  font-size: var(--fs-label); letter-spacing: var(--ls-label); color: var(--text-dim);
  text-transform: uppercase; margin-bottom: 3px;
}
#video-testimonials .video-result {
  font-family: 'Montserrat', sans-serif; font-size: 0.86rem; font-weight: 600;
  color: #fff; letter-spacing: .01em; line-height: 1.3; margin-top: 0;
}
@media (max-width: 1000px) { #video-testimonials .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) {
  #video-testimonials .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Verticale lightbox voor YouTube-shorts */
.lightbox-inner { width: auto; max-width: 92vw; }
.lightbox-video {
  position: relative; aspect-ratio: 9/16; height: min(84vh, 720px); width: auto;
  max-width: 92vw; margin: 0 auto; background: #000;
  border-radius: var(--radius); overflow: hidden;
}
.lightbox-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ══ HERO — zwevende bewijs-badges + zilveren gloed ══ */
.hero-img-wrap::before {
  content: ""; position: absolute; z-index: 0;
  inset: -12% -8% -8% -12%;
  background: radial-gradient(60% 55% at 42% 40%, rgba(200,205,215,0.16), rgba(200,205,215,0.05) 45%, transparent 72%);
  filter: blur(10px); pointer-events: none;
}
.hero-float {
  position: absolute; z-index: 2;
  background: rgba(17,17,19,0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--silver-border); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: 0 12px 34px rgba(0,0,0,0.5);
  opacity: 0; animation: fadeUp 0.7s var(--ease-out) 1.05s both;
}
.hero-float-tl { top: 22px; left: -26px; }
.hero-float-br { bottom: 24px; right: -24px; animation-delay: 1.25s; text-align: right; }
.hero-float-stars { color: #e8c14a; font-size: 0.8rem; letter-spacing: 2px; line-height: 1; }
.hero-float-num {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; line-height: 1;
  background: var(--silver-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-float-num span { font-size: 1rem; }
.hero-float-text { font-size: var(--fs-xs); color: var(--text-body); margin-top: 5px; letter-spacing: .2px; }
.hero-float-text strong { color: #fff; font-weight: 700; }
@media (max-width: 900px) {
  .hero-float-tl { left: 8px; top: 12px; }
  .hero-float-br { right: 8px; bottom: 12px; }
  .hero-float { padding: 9px 12px; }
  .hero-float-num { font-size: 1.2rem; }
}

/* ══ HEADER — subtiele blur bij scrollen ══ */
nav.scrolled { backdrop-filter: blur(10px); }

/* Homepage-videoband: 3 compacte verticale kaarten, gecentreerd */
#video-testimonials.section-alt .video-grid {
  grid-template-columns: repeat(4, minmax(0, 220px));
  justify-content: center; gap: 18px;
}
@media (max-width: 620px) {
  #video-testimonials.section-alt .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* hero-float autoriteit-label (i.p.v. cijfer) */
.hero-float-label {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; line-height: 1;
  letter-spacing: .02em;
  background: var(--silver-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Video-bijschriften: gelijke hoogte zodat labels uitlijnen tussen kaarten */
#video-testimonials .video-result {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.25em;
}

/* Studio-vinkjes: nette insprong bij afbreken (icoon bovenaan) */
.studio-chip { align-items: flex-start; }
.studio-chip svg { margin-top: 1px; }

/* Hero-locatiechip: nette insprong als tekst afbreekt op smal scherm */
.hero-badge { align-items: flex-start; }
.hero-badge svg { margin-top: 2px; }

/* ══ "Resultaat dat blijft"-badge: zelfde glazen stijl/positie als de hero-badges ══ */
#pijn .floating-badge {
  top: 22px; left: -24px; bottom: auto; right: auto;
  background: rgba(17,17,19,0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--silver-border); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: 0 12px 34px rgba(0,0,0,0.5);
  gap: 12px; align-items: center;
}
#pijn .fb-icon {
  width: 30px; height: 30px; border: 1px solid var(--silver-border);
  background: rgba(192,192,192,0.06); border-radius: 6px;
}
#pijn .fb-icon svg { width: 16px; height: 16px; }
#pijn .fb-text strong { font-size: 0.82rem; letter-spacing: 0.04em; }
#pijn .fb-sub { font-size: var(--fs-xs); color: var(--text-body); margin-top: 3px; }

/* ══ STERREN — overal dezelfde kleur (warm goud, herkenbaar als reviews) ══ */
:root { --star: #e8c14a; }
.review-stars, .g-stars, .hero-float-stars { color: var(--star); }

/* ══ PROCES-TIJDLIJN ("Zo werkt het") ══ */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
/* verbindingslijn achter de stappen (desktop) */
.process-grid::before {
  content: ""; position: absolute; top: 92px; left: 16%; right: 16%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-border), transparent);
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px 32px;
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.process-step:hover { border-color: var(--silver-border); transform: translateY(-4px); }
.process-num {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 3.4rem; line-height: 1; letter-spacing: -0.02em; margin-bottom: 18px;
  background: var(--silver-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-icon {
  width: 46px; height: 46px; border-radius: 9px; margin-bottom: 16px;
  border: 1px solid var(--silver-border);
  background: linear-gradient(145deg, rgba(192,192,192,0.09), rgba(192,192,192,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.process-icon svg { width: 22px; height: 22px; stroke: var(--silver); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.process-title {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: var(--fs-h4);
  letter-spacing: 0.02em; color: var(--text-strong); margin-bottom: 10px; text-transform: none;
}
.process-step p { color: var(--text-body); font-size: var(--fs-sm); line-height: 1.65; }
@media (max-width: 760px) {
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-grid::before { display: none; }
  .process-num { font-size: 2.8rem; margin-bottom: 12px; }
}

/* ══ ICOON-CHIPS OVERAL GELIJK (prijskaarten · groepslessen · proces · cred) ══ */
.card-icon-wrap, .class-ico {
  width: 46px; height: 46px; border-radius: 9px;
  border: 1px solid var(--silver-border);
  background: linear-gradient(145deg, rgba(192,192,192,0.09), rgba(192,192,192,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.card-icon-wrap svg, .class-ico svg { width: 22px; height: 22px; stroke: var(--silver); stroke-width: 1.6; }

/* ══ GEBRANDE MINI-BADGES — embleem · streep · label (zoals het logo) ══ */
.section-tag, .hero-badge {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
}
.section-tag::before, .hero-badge::before {
  content: ""; display: block !important; box-sizing: content-box; flex-shrink: 0;
  width: 23px; height: 23px;                 /* embleem zelf groter, badge blijft gelijk */
  background: url('../images/emblem-badge.png') center / contain no-repeat;
  margin-left: -3px;                         /* iets naar links, richting de rand */
  padding-right: 12px; margin-right: 11px;   /* 12px links (15 pad − 3) = 12px rechts → embleem gecentreerd tussen rand en streep */
  border-right: 1px solid var(--silver-border);
}

/* ══ SUBTIELE GLANS OP DE ZILVEREN KNOPPEN ══ */
.btn-primary, .form-submit, .nav-cta, .sticky-cta-bar a.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after, .form-submit::after, .nav-cta::after, .sticky-cta-bar a.btn-primary::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,0.55) 50%, transparent 58%);
  transform: translateX(-135%);
  animation: btnShine 8s ease-in-out infinite;
}
/* tekst/pijl boven de glans houden */
.btn-primary > *, .form-submit > *, .nav-cta > * { position: relative; z-index: 2; }
@keyframes btnShine {
  0% { transform: translateX(-135%); }
  22%, 100% { transform: translateX(135%); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after, .form-submit::after, .nav-cta::after, .sticky-cta-bar a.btn-primary::after { display: none; }
}

/* ══ PREMIUM METALLIC PILLS — "Meest gekozen" + rooster-tijden ══ */
.card-badge, .class-time {
  background: var(--silver-grad); color: #0b0b0b;
  -webkit-text-fill-color: #0b0b0b;
  border-radius: var(--radius);
  box-shadow: 0 5px 16px rgba(224,226,230,0.22);
}
.card-badge {
  padding: 6px 15px; letter-spacing: 0.18em;
  box-shadow: 0 6px 20px rgba(224,226,230,0.28);
}

/* ══ FOTOSTRIP-BIJSCHRIFTEN — cleaner & rustiger ══ */
#fight-gallery figcaption {
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.1px; line-height: 1.35;
  color: #f2f2f2; padding: 32px 15px 13px;
  background: linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,0.30) 42%, rgba(8,8,8,0.9) 100%);
}
#fight-gallery figcaption em { font-style: normal; font-weight: 500; font-size: 0.68rem; color: var(--silver-dark); letter-spacing: 0.2px; }

/* ── Gecentreerde mobiele layout (telefoon) ── */
@media (max-width: 768px) {
  .diensten-intro { text-align: center; }
  #pijn .pijn-grid > div { text-align: center; }
  #pijn .pijn-list { max-width: 330px; margin-left: auto; margin-right: auto; text-align: left; }
  #over .over-grid > .fade-in { text-align: center; }
  .section-inner:has(> a.btn-secondary) { text-align: center; }
  .reviews-header { justify-content: center; text-align: center; }
  #faq .section-inner { text-align: center; }
  #faq .faq-grid { text-align: left; }
}
