/* FD Details — light & premium (rood accent) */
:root {
  /* Friendly light base */
  --bg-void: #f6f7fb;
  --bg-deep: #ffffff;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --border: rgba(11, 11, 15, 0.1);

  /* Premium rood */
  --gold: #e11937;
  --gold-bright: #ff2a4e;
  --gold-muted: rgba(225, 25, 55, 0.7);
  --gold-dim: rgba(225, 25, 55, 0.32);
  --border-gold: rgba(225, 25, 55, 0.22);

  --text: rgba(11, 11, 15, 0.96);
  --text-soft: rgba(11, 11, 15, 0.72);

  /* Surface accents */
  --accent-warm: rgba(225, 25, 55, 0.12);
  --accent-cool: rgba(55, 90, 150, 0.08);
  --shine: linear-gradient(
    105deg,
    transparent 0%,
    rgba(11, 11, 15, 0.03) 42%,
    rgba(225, 25, 55, 0.1) 50%,
    rgba(11, 11, 15, 0.03) 58%,
    transparent 100%
  );

  --radius: 16px;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 60px rgba(11, 11, 15, 0.12);
  --shadow-strong: 0 50px 140px rgba(11, 11, 15, 0.14);

  /* Chrome (voor op donkere hero) + “ink metal” (voor light pages) */
  --metal: linear-gradient(180deg, #ffffff 0%, #e9edf6 12%, #b7c0d2 28%, #f7f9ff 48%, #8f9bb0 72%, #ffffff 100%);
  --metal-dark: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(190, 200, 220, 0.78), rgba(255, 255, 255, 0.86));
  --metal-ink: linear-gradient(180deg, #0b0b0f 0%, #2a2f38 28%, #0b0b0f 62%, #3c4452 100%);

  /* Rhino-achtig: strakke caps + leesbare sans (zie rhinotuning.nl) */
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-void);
  overflow-x: hidden;
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Metallic “iron/chrome” text */
.metal-text {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.55);
}

@supports not (-webkit-background-clip: text) {
  .metal-text {
    color: rgba(240, 244, 252, 0.95);
    background: none;
  }
}

::selection {
  background: rgba(155, 172, 196, 0.32);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.menu-toggle:focus-visible {
  outline-offset: 2px;
}

/* Levendige achtergrond: mesh + noise + slow drift */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 18% -8%, rgba(225, 25, 55, 0.16), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 12%, rgba(55, 90, 150, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 38% at 6% 92%, rgba(11, 11, 15, 0.03), transparent 46%),
    linear-gradient(168deg, #fbfbfe 0%, #f6f7fb 45%, #ffffff 100%);
  animation: mesh-breathe 30s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.24;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* Star field layer removed (cleaner & realistic) */

@keyframes mesh-breathe {
  0% {
    transform: scale(1) translate(0, 0);
    filter: saturate(1) contrast(1);
  }
  100% {
    transform: scale(1.05) translate(-1%, 1%);
    filter: saturate(1.06) contrast(1.02);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes shimmer-line {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, 94vw);
  margin-inline: auto;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 24px 70px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.92;
}

.logo img {
  width: auto;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  opacity: 1;
}

.logo__mark img {
  display: block;
  width: auto;
  height: 88px;
  max-height: 88px;
  filter: contrast(1.04);
  object-fit: contain;
  object-position: center;
  transform: none;
}

/* Iets ruimer logo op desktop */
@media (min-width: 900px) {
  .logo img {
    height: 112px;
  }
  .logo__mark img {
    height: 112px;
    max-height: 112px;
  }
}

/* Logo zonder “vak”: geen achtergrond, geen rand, geen schaduw */
.logo__mark {
  position: relative;
  display: inline-block;
  overflow: visible;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: translateZ(0);
}

/* Mobiel: behoud natuurlijke proporties (geen scale meer nodig) */
@media (max-width: 899px) {
  .logo__mark img {
    transform: none;
  }
}

/* Silver chrome outline sweep — uitgeschakeld (geen vak rond logo) */
.logo__mark::before {
  content: none;
}

.logo__mark::after {
  content: none;
}

@keyframes logo-shine {
  0% {
    transform: translateX(-78%) rotate(10deg);
    opacity: 0.1;
  }
  45% {
    opacity: 0.22;
  }
  55% {
    opacity: 0.28;
  }
  100% {
    transform: translateX(78%) rotate(10deg);
    opacity: 0.1;
  }
}

@keyframes logo-outline-rotate {
  to {
    transform: rotate(360deg);
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(11, 11, 15, 0.68);
  transition: color 0.25s var(--ease-out-expo);
}

/* Header is dark: make navigation readable */
.site-header .nav-desktop .nav-link {
  color: rgba(255, 255, 255, 0.78);
}

.nav-desktop .nav-link:hover {
  color: rgba(11, 11, 15, 0.92);
}

.site-header .nav-desktop .nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav-desktop .nav-link.is-active {
  color: var(--gold-bright);
  font-weight: 600;
}

.nav-desktop .nav-link.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 0.35rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff !important;
  background: linear-gradient(165deg, #ff2a4e 0%, #e11937 52%, #9c0f26 100%);
  border: 1px solid rgba(225, 25, 55, 0.28);
  box-shadow:
    0 12px 44px rgba(225, 25, 55, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 18px 70px rgba(11, 11, 15, 0.14);
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 58px rgba(255, 64, 84, 0.16),
    0 0 0 1px rgba(255, 120, 150, 0.16) inset,
    0 26px 100px rgba(0, 0, 0, 0.48);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0 1rem;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile .nav-link.is-active {
  color: var(--gold-bright);
  font-weight: 600;
}

.nav-mobile .nav-cta {
  margin-top: 0.35rem;
  align-self: flex-start;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #050608 !important;
  background: linear-gradient(165deg, #e4eaf2 0%, #9aa8ba 48%, #5d697c 100%);
  border: 1px solid rgba(220, 228, 238, 0.45);
  box-shadow: 0 4px 22px rgba(70, 88, 115, 0.32);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0 5.5rem;
  width: 100%;
  box-sizing: border-box;
}

.hero__glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 64, 84, 0.16) 0%, transparent 66%);
  filter: blur(40px);
  animation: float-soft 14s ease-in-out infinite;
  pointer-events: none;
}

/* Homepage hero: full-viewport video + poster fallback */
.hero--video {
  isolation: isolate;
  overflow: hidden;
  min-height: min(100vh, 980px);
  padding-top: 5.5rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #020203;
}

.hero__poster {
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(ellipse 85% 65% at 35% 30%, rgba(255, 64, 84, 0.08), transparent 52%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(120, 140, 180, 0.12), transparent 50%),
    linear-gradient(165deg, #05060c 0%, #030408 45%, #0c0e18 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.06) brightness(0.88);
  animation: hero-ken 22s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-ken {
  0% {
    transform: scale(1.06) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-0.8%, 0.5%);
  }
}

/* Hero: videomix (meerdere lagen) */
.hero__video-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: opacity;
}

.hero__video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
  transition: opacity 2s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.hero__video-layer.is-active {
  opacity: 1;
  z-index: 2;
}

/* Home: één hero-video fullscreen, loopt door (HTML loop + ended fallback).
   Altijd zichtbaar (opacity 1): anders blijft alles verborgen als de browser
   .mov/HEVC niet afspeelt — dan zie je tenminste poster + scrim. */
.hero__video-full {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  pointer-events: none;
  filter: saturate(1.06) contrast(1.04) brightness(0.98);
  transition: filter 0.6s var(--ease-out-expo);
}

.hero__video-full.is-ready {
  filter: saturate(1.08) contrast(1.05) brightness(1);
}

/* Chrome/Windows speelt veel .mp4 niet af → video verborgen, gradient-poster eronder */
.hero__video-full.fd-hero-video-failed,
html.fd-hero-video-failed .hero__video-full {
  opacity: 0;
  visibility: hidden;
}

/* Legacy enkelvoudige hero-video (indien nog ergens gebruikt) */
.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  filter: saturate(1.06) contrast(1.04) brightness(0.97);
  transition: opacity 1.35s var(--ease-out-expo);
  pointer-events: none;
}

.hero__video-bg.is-ready {
  opacity: 1;
}

.hero__media-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 80% at 30% 35%, rgba(5, 6, 12, 0.04), rgba(5, 6, 12, 0.22) 72%),
    linear-gradient(100deg, rgba(5, 6, 12, 0.28) 0%, rgba(5, 6, 12, 0.12) 45%, rgba(5, 6, 12, 0.04) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero--video .hero__glow {
  z-index: 1;
}

.hero--video .hero__grid,
.hero--video .hero__divider {
  position: relative;
  z-index: 2;
}

.hero--video .hero__grid::before {
  display: none;
}

/* Legacy class: keep rules for inner pages if referenced */
.hero--bg {
  isolation: isolate;
  overflow: hidden;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.section__label {
  color: var(--gold-muted);
}

.hero__eyebrow::before {
  background: linear-gradient(90deg, rgba(245, 248, 255, 0.85), rgba(245, 248, 255, 0.1), transparent);
}

.hero__divider {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 248, 255, 0.14) 22%,
    rgba(245, 248, 255, 0.72) 50%,
    rgba(245, 248, 255, 0.14) 78%,
    transparent 100%
  );
}

.hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 40% 35%, rgba(255, 64, 84, 0.08), transparent 55%),
    linear-gradient(165deg, #060810 0%, #030408 50%, #0a0c14 100%);
  background-size: cover;
  background-position: 58% 48%;
  filter: saturate(1.1) contrast(1.06) brightness(0.84);
  transform: scale(1.02);
  opacity: 1;
  pointer-events: none;
  animation: hero-pan 18s ease-in-out infinite alternate;
}

@keyframes hero-pan {
  0% {
    transform: scale(1.02) translate(0, 0);
    filter: saturate(1.1) contrast(1.06) brightness(0.84);
  }
  100% {
    transform: scale(1.06) translate(-1.2%, 0.8%);
    filter: saturate(1.14) contrast(1.1) brightness(0.8);
  }
}

.hero--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 95% 78% at 26% 42%, rgba(5, 6, 12, 0.02), rgba(5, 6, 12, 0.68) 68%),
    linear-gradient(90deg, rgba(5, 6, 12, 0.68) 0%, rgba(5, 6, 12, 0.48) 44%, rgba(5, 6, 12, 0.24) 100%),
    radial-gradient(ellipse 55% 55% at 80% 45%, rgba(255, 64, 84, 0.1), transparent 60%);
  pointer-events: none;
}

/* “Gek” maar luxe: subtle red light-streaks overlay */
.hero--bg .hero__glow::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 35%, rgba(255, 64, 84, 0.12) 50%, transparent 65%),
    linear-gradient(70deg, transparent 42%, rgba(255, 208, 216, 0.08) 50%, transparent 58%);
  background-size: 220% 220%;
  opacity: 0.55;
  mix-blend-mode: screen;
  filter: blur(10px);
  animation: hero-streaks 9.5s ease-in-out infinite;
}

@keyframes hero-streaks {
  0%,
  100% {
    transform: translateX(-3%) translateY(0) rotate(-2deg);
    opacity: 0.35;
  }
  50% {
    transform: translateX(3%) translateY(-1%) rotate(2deg);
    opacity: 0.65;
  }
}

/* Extra “creative premium” light sweeps (still subtle) — .hero--bg only */
.hero--bg .hero__grid::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 45% 35% at 10% 15%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 25%, rgba(255, 64, 84, 0.08), transparent 62%),
    linear-gradient(110deg, transparent 35%, rgba(245, 248, 255, 0.06) 50%, transparent 65%);
  filter: blur(8px);
  mix-blend-mode: screen;
  animation: hero-sweep 10s ease-in-out infinite;
}

@keyframes hero-sweep {
  0%,
  100% {
    transform: translateX(-2%) translateY(0);
    opacity: 0.42;
  }
  50% {
    transform: translateX(2%) translateY(-1%);
    opacity: 0.62;
  }
}

.hero--bg .hero__grid {
  position: relative;
}

.hero--bg .hero__grid > div:first-child {
  position: relative;
  z-index: 1;
}

.hero--bg .hero__glow {
  z-index: 0;
}

.hero--bg .hero__grid,
.hero--bg .hero__divider {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: min(1180px, 94vw);
  margin-inline: auto;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }
}

.hero--bg .hero__grid,
.hero--video .hero__grid {
  grid-template-columns: 1fr;
  max-width: min(1180px, 94vw);
}

.hero__grid > div:first-child {
  min-width: 0;
  transition: transform 0.8s var(--ease-out-expo), opacity 0.6s ease;
}

body.fd-hero-engaged .hero__grid > div:first-child {
  transform: translateY(-22px);
}

.hero__grid > div:first-child {
  min-width: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero__eyebrow-dot {
  color: rgba(155, 172, 196, 0.55);
  font-weight: 400;
  transform: translateY(-0.05em);
}

.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.8vw, 4.15rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 26px 120px rgba(0, 0, 0, 0.65);
}

.hero__title em {
  font-style: italic;
  background: var(--metal-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 34rem;
}

.hero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__lead {
  max-width: 38rem;
}

/* Premium red CTAs */
.btn--primary {
  color: #0b0b0f;
  background: linear-gradient(168deg, #ffd0d8 0%, #ff5a74 34%, #ff2a4e 64%, #b10022 100%);
  border-color: rgba(255, 208, 216, 0.16);
}

.btn--ghost {
  border-color: rgba(255, 64, 84, 0.22);
}

.btn--ghost:hover {
  background: rgba(255, 64, 84, 0.08);
  border-color: rgba(255, 64, 84, 0.32);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.88rem 1.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out-expo), box-shadow 0.22s, background 0.22s, border-color 0.22s;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(168deg, #ff2a4e 0%, #e11937 45%, #9c0f26 100%);
  border-color: rgba(225, 25, 55, 0.28);
  box-shadow:
    0 0 0 1px rgba(225, 25, 55, 0.12),
    0 18px 64px rgba(225, 25, 55, 0.22),
    0 26px 90px rgba(11, 11, 15, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(225, 25, 55, 0.14),
    0 22px 82px rgba(225, 25, 55, 0.28),
    0 34px 120px rgba(11, 11, 15, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.24) inset,
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn--block {
  width: 100%;
  margin-top: 1rem;
}

.btn--ghost {
  color: rgba(11, 11, 15, 0.92);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(11, 11, 15, 0.12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(225, 25, 55, 0.26);
  box-shadow: 0 0 0 1px rgba(225, 25, 55, 0.08), 0 0 26px rgba(225, 25, 55, 0.14);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__chips li {
  padding: 0.45rem 0.95rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s var(--ease-out-expo), border-color 0.25s,
    background 0.25s;
}

.hero__chips li:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 64, 84, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 14px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 64, 84, 0.12),
    0 0 26px rgba(255, 64, 84, 0.16);
}

/* Hero visual card */
.hero__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.65),
    var(--shadow-strong),
    0 0 90px rgba(186, 198, 218, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.45s var(--ease-out-expo);
  will-change: transform;
}

.hero__visual-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 60px rgba(0, 0, 0, 0.45);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.03);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero__visual:hover img {
  transform: scale(1.1);
}

.hero__visual--video .hero__video {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero__visual--video:hover .hero__video {
  transform: scale(1.1);
}

.hero__visual-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(ellipse 85% 75% at 50% 55%, transparent 35%, rgba(2, 2, 3, 0.5) 100%);
  mix-blend-mode: multiply;
}

.hero__visual-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 1.5rem 1.65rem 1.35rem;
  background: linear-gradient(0deg, rgba(2, 2, 3, 0.97) 0%, rgba(2, 2, 3, 0.5) 55%, transparent 100%);
}

.hero__visual-cap p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  text-shadow: 0 0 44px rgba(186, 198, 218, 0.18);
}

.hero__visual-cap span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(240, 243, 250, 0.72);
  max-width: 20rem;
  line-height: 1.45;
}

.hero .hero__divider.container {
  width: 100%;
  max-width: min(1180px, 94vw);
  margin-inline: auto;
}

.hero__divider {
  height: 1px;
  margin-top: 3.5rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(186, 198, 218, 0.12) 20%,
    rgba(186, 198, 218, 0.34) 50%,
    rgba(186, 198, 218, 0.12) 80%,
    transparent 100%
  );
  opacity: 0.9;
}

.hero__shimmer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.045) 45%,
    rgba(225, 235, 252, 0.1) 50%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer-line 9s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--tight {
  padding-top: 2rem;
}

/* Performance: render onder de fold pas wanneer nodig */
@supports (content-visibility: auto) {
  main > .section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

.section--showcase {
  padding-top: 3.25rem;
  background: transparent;
}

.showcase-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem;
  margin-top: 0.35rem;
}

@media (min-width: 900px) {
  .showcase-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.showcase-tile {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(8, 9, 14, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  aspect-ratio: 4/3;
}

.showcase-tile--hero {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

@media (max-width: 899px) {
  .showcase-tile--hero {
    aspect-ratio: 16/10;
  }
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.15s var(--ease-out-expo), filter 0.5s ease;
  filter: saturate(1.04) contrast(1.02);
}

.showcase-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.showcase-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.2rem 1rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 248, 252, 0.94);
  background: linear-gradient(0deg, rgba(2, 2, 4, 0.94) 0%, rgba(2, 2, 4, 0.2) 55%, transparent 100%);
}

.showcase-cta {
  margin: 2.5rem 0 0;
  text-align: center;
}

/* Homepage: filmstrook boven mosaic */
.showcase-film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.35rem;
}

@media (max-width: 720px) {
  .showcase-film-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-film {
  position: relative;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  aspect-ratio: 16 / 10;
  background: #020203;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 28px 85px rgba(0, 0, 0, 0.45);
}

.showcase-film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.showcase-film__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.2rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 248, 252, 0.94);
  background: linear-gradient(0deg, rgba(2, 2, 4, 0.96) 0%, rgba(2, 2, 4, 0.2) 55%, transparent 100%);
}

/* Homepage: volledige filmwand (alle clips) */
.fd-wall-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 720px) {
  .fd-wall-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.12rem;
  }
}

@media (min-width: 1100px) {
  .fd-wall-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

.fd-wall-tile {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 3;
  background: #020203;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 26px 78px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.fd-wall-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 64, 84, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 64, 84, 0.1),
    0 36px 100px rgba(0, 0, 0, 0.52);
}

.fd-wall-tile--feature {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

@media (max-width: 719px) {
  .fd-wall-tile--feature {
    aspect-ratio: 16 / 10;
  }
}

.fd-wall-tile__video {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.06) contrast(1.03) brightness(0.95);
  transition: filter 0.5s ease, transform 1.1s var(--ease-out-expo);
}

.fd-wall-tile:hover .fd-wall-tile__video {
  filter: saturate(1.1) contrast(1.05) brightness(1);
  transform: scale(1.02);
}

.fd-wall-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem 0.95rem;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 248, 252, 0.94);
  background: linear-gradient(0deg, rgba(2, 2, 4, 0.95) 0%, rgba(2, 2, 4, 0.18) 55%, transparent 100%);
  z-index: 2;
}

.showcase-tile__video {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.showcase-tile--video {
  padding: 0;
  border: none;
  background: #000;
}

.showcase-tile--video figcaption {
  z-index: 3;
}

/* Werkresultaat: page hero met film */
.page-hero--werk {
  position: relative;
  overflow: hidden;
  padding: 6.75rem 0 3.35rem;
  border-bottom: 1px solid var(--border);
}

.page-hero--werk .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero--werk .page-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.05);
}

.page-hero__poster {
  position: absolute;
  inset: -3%;
  background:
    radial-gradient(ellipse 75% 55% at 30% 35%, rgba(255, 64, 84, 0.1), transparent 55%),
    radial-gradient(ellipse 65% 55% at 75% 70%, rgba(120, 140, 180, 0.14), transparent 55%),
    linear-gradient(165deg, #05060c 0%, #030408 45%, #0c0e18 100%);
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.06) brightness(0.88);
}

.page-hero--werk::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(5, 6, 12, 0.88) 0%,
    rgba(5, 6, 12, 0.94) 42%,
    rgba(5, 6, 12, 0.97) 100%
  );
}

.page-hero--werk .container {
  position: relative;
  z-index: 2;
}

/* Werkresultaat: rustige hero + abstracte SVG (geen foto-/sitevoorbeelden) */
.page-hero--werk.page-hero--werk-visual {
  padding: clamp(2.65rem, 4.5vw, 3.35rem) 0 clamp(0.85rem, 1.8vw, 1.35rem);
}

.page-hero--werk.page-hero--werk-visual::before {
  background: linear-gradient(
    168deg,
    rgba(5, 6, 12, 0.94) 0%,
    rgba(5, 6, 12, 0.9) 50%,
    rgba(5, 6, 12, 0.97) 100%
  );
}

.werk-hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
}

@media (min-width: 880px) {
  .werk-hero-visual {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.48fr);
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
  }
}

.werk-hero-visual__intro {
  max-width: 34rem;
}

.werk-mosaic__tag,
.werk-hero-visual__tag {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.werk-hero-visual__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #12121a 0%, #07070c 100%);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
  max-width: 520px;
}

@media (min-width: 880px) {
  .werk-hero-visual__figure {
    margin-left: auto;
    max-width: none;
  }
}

.werk-hero-visual__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.section--werk-cases {
  padding-top: 0.35rem;
  padding-bottom: 3rem;
}

/* Game: Shine Challenge */
.page-hero--werk.page-hero--game {
  padding: clamp(2.6rem, 4.6vw, 3.4rem) 0 clamp(2rem, 4vw, 3.25rem);
}

.page-hero--werk.page-hero--game::before {
  background: radial-gradient(ellipse 70% 55% at 70% 35%, rgba(225, 29, 72, 0.06), transparent 58%),
    linear-gradient(168deg, #ffffff 0%, #f6f7fb 48%, #ffffff 100%);
  opacity: 1;
}

.page-hero--werk.page-hero--game .section__label {
  color: rgba(11, 11, 15, 0.55);
}

.game-hero {
  display: grid;
  gap: clamp(1.35rem, 2.6vw, 2.2rem);
  align-items: start;
}

@media (min-width: 980px) {
  .game-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    align-items: center;
  }
}

.game-hero__copy {
  max-width: 38rem;
}

.game-hud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 1rem;
}

.game-hud__item {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 11, 15, 0.1);
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(11, 11, 15, 0.06);
}

.page-hero--werk.page-hero--game .game-hud__item {
  border: 1px solid rgba(11, 11, 15, 0.1);
  background: #ffffff;
}

.game-hud__k {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 11, 15, 0.5);
}

.game-hud__v {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #0b0b0f;
}

.game-hud--lives {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.35rem;
}

.game-hud__item--lives .game-hud__strip {
  margin-top: 0.5rem;
}

.game-hud__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.game-life {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.game-life--bomb {
  width: 1.35rem;
  height: 1.15rem;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 20'%3E%3Cpath fill='%23e11d48' d='M12 18.2c-.4 0-.8-.1-1.1-.3C7.4 15.8 2 11.4 2 7.1 2 4.4 4.1 2.2 6.8 2.2c1.6 0 3.1.8 4 2.1.9-1.3 2.4-2.1 4-2.1C17.5 2.2 19.7 4.4 19.7 7.1c0 4.3-5.4 8.7-8.9 10.8-.3.2-.7.3-1.1.3z'/%3E%3C/svg%3E");
  filter: drop-shadow(0 1px 2px rgba(225, 29, 72, 0.25));
}

.game-life--bomb.is-lost {
  opacity: 0.28;
  filter: grayscale(1) drop-shadow(0 0 0 transparent);
  transform: scale(0.92);
}

.game-life--car {
  width: 1.55rem;
  height: 0.72rem;
  border-radius: 0.22rem;
  background: linear-gradient(180deg, #64748b 0%, #334155 48%, #1e293b 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 1px 3px rgba(15, 23, 42, 0.2);
  position: relative;
}

.game-life--car::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 22%;
  height: 38%;
  border-radius: 0.1rem;
  background: rgba(148, 163, 184, 0.45);
}

.game-life--car.is-lost {
  opacity: 0.22;
  filter: grayscale(1);
  transform: scale(0.9);
  box-shadow: none;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.game-help {
  margin: 1rem 0 0;
  color: rgba(11, 11, 15, 0.65);
  max-width: 48ch;
}

.game-discount-reward {
  display: none;
  margin: 1rem 0 0;
  max-width: 42rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(202, 138, 4, 0.35);
  background: rgba(254, 243, 199, 0.35);
  color: rgba(66, 32, 6, 0.92);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.5;
}

.game-discount-reward.is-visible {
  display: block;
}

.game-discount-reward p {
  margin: 0 0 0.65rem;
}

.game-discount-reward p:last-of-type {
  margin-bottom: 0;
}

.game-discount-reward__hint {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(66, 32, 6, 0.82);
  line-height: 1.45;
}

.game-discount-reward__hint code {
  font-size: 0.85em;
}

.game-discount-wa {
  margin-top: 0.85rem;
}

.game-discount-reward .game-discount-wa[hidden] {
  display: none !important;
}

/* Opvallende WhatsApp-CTA na game-acties (score + tijd + code) */
.game-wa-strip {
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 2px solid rgba(34, 197, 94, 0.5);
  background: linear-gradient(165deg, rgba(220, 252, 231, 0.55) 0%, rgba(167, 243, 208, 0.4) 100%);
  max-width: 42rem;
  box-shadow: 0 10px 28px rgba(22, 101, 52, 0.12);
}

.game-wa-strip__label {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(22, 101, 52, 0.95);
}

.game-wa-strip__btn {
  width: 100%;
  max-width: 28rem;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #22c55e 0%, #15803d 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.game-wa-strip__btn:hover {
  filter: brightness(1.05);
}

.game-wa-strip__hint {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(22, 101, 52, 0.82);
  line-height: 1.45;
}

.game-wa-strip[hidden] {
  display: none !important;
}

/* Site-wide floating CTA: Shine Challenge + optioneel WhatsApp na vrijspelen korting */
.fd-site-game-fab {
  position: fixed;
  z-index: 10050;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: min(240px, calc(100vw - 24px));
  pointer-events: none;
}

.fd-site-game-fab > * {
  pointer-events: auto;
}

.fd-site-game-fab__play {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #e11937 0%, #9f0f26 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.2;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fd-site-game-fab__play:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  color: #fff;
}

.fd-site-game-fab__sub {
  font-weight: 500;
  font-size: 0.72rem;
  opacity: 0.92;
  line-height: 1.25;
}

.fd-site-game-fab__wa {
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  background: rgba(22, 24, 28, 0.94);
  color: #86efac;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.fd-site-game-fab__wa:hover {
  background: rgba(30, 35, 40, 0.98);
  color: #bbf7d0;
}

.fd-theme-light .fd-site-game-fab__wa {
  background: rgba(255, 255, 255, 0.96);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.5);
}

.nav-link--game-promo {
  font-weight: 600;
  color: #fbbf24 !important;
}

.fd-theme-light .nav-link--game-promo {
  color: #b45309 !important;
}

.game-stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0c;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.game-canvas {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
}

/* In-canvas HUD + actions (mobiel) */
.game-stage-ui {
  display: none;
}

@media (max-width: 900px) {
  /* Op mobiel gebruiken we de in-canvas Start knop, niet de overlay */
  .game-start-overlay {
    display: none !important;
  }

  .game-stage-ui {
    display: flex;
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.7rem;
  }

  .game-stage-ui__top {
    display: grid;
    gap: 0.55rem;
  }

  .game-stage-ui__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .game-stage-ui__stat {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 12, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.5rem;
    text-align: center;
  }

  .game-stage-ui__stat .k {
    display: block;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
  }
  .game-stage-ui__stat .v {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
  }

  .game-stage-ui__lives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .game-stage-ui__lives .life-group {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 12, 0.72);
    padding: 0.45rem 0.55rem;
  }

  .game-stage-ui__lives .k {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
    margin-bottom: 0.35rem;
  }

  .game-stage-ui__lives .strip {
    display: flex;
    gap: 0.22rem;
    flex-wrap: wrap;
  }

  .game-stage-ui__actions {
    display: flex;
    gap: 0.55rem;
    justify-content: center;
    pointer-events: auto;
  }

  .game-stage-ui__actions .btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Startscherm: alleen Start (mooi gecentreerd) */
  .game-stage:not(.is-running) .game-stage-ui__top {
    display: none;
  }
  .game-stage:not(.is-running) .game-stage-ui__actions [data-game-reset] {
    display: none !important;
  }
  .game-stage:not(.is-running) .game-stage-ui__actions [data-game-start] {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    min-width: 10.5rem;
  }

  /* Verberg de zij-HUD op mobiel (we gebruiken in-canvas HUD) */
  .game-hero__copy .game-hud,
  .game-hero__copy .game-actions {
    display: none !important;
  }
}

/* Optie: maak het spel groter op telefoon */
.game-stage.is-zoomed {
  position: fixed;
  inset: 0;
  z-index: 9999;
  border-radius: 0;
}
.game-stage.is-zoomed .game-canvas {
  aspect-ratio: auto;
  height: 100dvh;
  width: 100vw;
}

html.is-game-zoomed,
html.is-game-zoomed body {
  overscroll-behavior: none;
}

.game-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.85rem;
}

.game-overlay__pill {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 20, 24, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

/* ——— “Klik om te starten” overlay vóór de eerste game-run ——— */
.game-start-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  cursor: pointer;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(225, 29, 72, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 60% at 75% 85%, rgba(99, 102, 241, 0.12), transparent 60%),
    linear-gradient(165deg, #0d0d12 0%, #07070a 60%, #0d0d12 100%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.game-start-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 90%);
}

.game-start-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  pointer-events: none;
}

.game-start-overlay__inner {
  position: relative;
  text-align: center;
  max-width: 32rem;
  padding: 1.5rem 1.75rem;
  border-radius: 22px;
  background: rgba(15, 15, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.game-start-overlay__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(225, 29, 72, 0.92);
}

.game-start-overlay__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}

.game-start-overlay__hint {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.game-start-overlay__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 72, 0.55);
  background: linear-gradient(135deg, #e11937, #b91c1c);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 12px 38px rgba(225, 29, 72, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.game-start-overlay__btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #ffffff;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.25));
}

.game-start-overlay__btn:hover,
.game-start-overlay__btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 48px rgba(225, 29, 72, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: brightness(1.05);
  outline: none;
}

.game-start-overlay__pulse {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(225, 29, 72, 0.45);
  opacity: 0.7;
  animation: gameStartPulse 1.8s ease-out infinite;
}

@keyframes gameStartPulse {
  0% { transform: scale(0.96); opacity: 0.6; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.section--werk-cases .section__head {
  margin-bottom: 1.1rem;
}

/* Werkresultaat: hero met studio-fotomozaïek */
.page-hero--werk-mosaic {
  min-height: min(78vh, 52rem);
}

.page-hero--werk.page-hero--werk-mosaic::before {
  background: linear-gradient(
    165deg,
    rgba(3, 4, 10, 0.78) 0%,
    rgba(5, 6, 12, 0.88) 38%,
    rgba(5, 6, 12, 0.96) 100%
  );
}

.page-hero--werk-mosaic .page-hero__media {
  display: block;
}

.werk-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.45rem;
  padding: 0.45rem;
  box-sizing: border-box;
}

.werk-mosaic__tile {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.werk-mosaic__tile--a {
  grid-column: 1 / -1;
}

.werk-mosaic__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.04) brightness(0.92);
  transition: transform 1.2s var(--ease-out-expo);
}

.page-hero--werk-mosaic:hover .werk-mosaic__tile img {
  transform: scale(1.06);
}

.werk-mosaic__accent {
  position: absolute;
  right: 8%;
  top: 18%;
  width: min(42%, 280px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.95), #fb7185);
  box-shadow: 0 0 28px rgba(225, 29, 72, 0.55);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

@media (max-width: 540px) {
  /* Mobiel: maak de meeste content gecentreerd voor een rustigere look */
  .page-hero,
  .page-hero .container,
  .section__head,
  .section__head .section__label,
  .section__head .section__title,
  .section__head .section__intro,
  .page-hero__title,
  .page-hero__lead,
  .hero__title,
  .hero__lead,
  .rh-h2,
  .rh-lead {
    text-align: center;
  }

  .hero__actions,
  .game-actions,
  .contact-quick {
    justify-content: center;
  }

  .stat-strip {
    justify-content: center;
  }

  .nav-mobile a {
    text-align: center;
  }

  .page-hero--werk-mosaic {
    min-height: min(70vh, 44rem);
  }

  .werk-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(10rem, 1.1fr) minmax(6.5rem, 0.55fr) minmax(6.5rem, 0.55fr);
  }

  .werk-mosaic__tile--a {
    grid-column: 1;
  }

  .werk-mosaic__accent {
    right: 6%;
    top: 12%;
    width: min(55%, 200px);
  }
}

/* Case-pagina: lichte uitlegkaarten — titels altijd donker (geen body-wit op licht vlak) */
.werk-case-detail .card h2,
.werk-case-detail .card h3 {
  color: #0b0b0f;
  -webkit-text-fill-color: #0b0b0f;
}

.werk-case-detail .card p {
  color: rgba(11, 11, 15, 0.74);
}

/* Werkresultaat: filmgrid */
.werk-film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

@media (min-width: 900px) {
  .werk-film-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.werk-film-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 5;
  background: #020203;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.werk-film-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.werk-film-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 0.95rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 248, 252, 0.92);
  background: linear-gradient(0deg, rgba(2, 2, 4, 0.96), transparent);
}

.werk-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .werk-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .werk-archive-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.werk-film-card--archive {
  aspect-ratio: 3 / 4;
}

.fd-case-section {
  background: linear-gradient(180deg, rgba(6, 7, 14, 0.55) 0%, rgba(4, 5, 8, 0.92) 100%);
}

/* Werkresultaat: case cards (klikbare autos) */
.case-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.case-card {
  position: relative;
  display: block;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(11, 11, 15, 0.1);
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(11, 11, 15, 0.08);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 25, 55, 0.28);
  box-shadow: 0 22px 60px rgba(11, 11, 15, 0.12);
}

.case-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
}

.case-card__media img,
.case-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02) brightness(1.02);
  transform: scale(1.03);
  transition: transform 1.1s var(--ease-out-expo);
}

.case-card__media video {
  pointer-events: none;
  background: #020203;
}

.case-card:hover .case-card__media img,
.case-card:hover .case-card__media video {
  transform: scale(1.06);
}

.case-card__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(11, 11, 15, 0.12) 100%);
}

.case-card--werk-art .case-card__media--werk-art {
  background: #0b0b10;
}

.case-card__art {
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.case-card__scrim--werk-art {
  background: linear-gradient(180deg, transparent 0%, transparent 65%, rgba(4, 5, 10, 0.28) 100%);
}

.case-card__body {
  padding: 1.2rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(11, 11, 15, 0.06);
}

.case-card__label {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.case-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: #0b0b0f;
}

.case-card__text {
  margin: 0 0 0.85rem;
  color: rgba(11, 11, 15, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 48ch;
}

.case-card__cta {
  display: inline-flex;
  font-weight: 600;
  color: var(--gold);
}

.fd-ba__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.35rem;
}

.fd-ba__hint {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
  max-width: 36rem;
}

/* Interactieve voor/na */
.fd-ba {
  max-width: 1080px;
  margin: 0 auto;
}

.fd-ba__inner {
  position: relative;
  --ba-pos: 42%;
  border-radius: calc(var(--radius-lg) + 10px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 10;
  background: #03040a;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 50px 120px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 64, 84, 0.06);
}

.fd-ba__inner > video.fd-ba__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.fd-ba__after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fd-ba__after.video-ba,
.fd-ba__before-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fd-ba--dual-video .fd-ba__before-inner {
  position: absolute;
  inset: 0;
}

.fd-ba--dual-video .fd-ba__before-inner,
.fd-ba--dual-video .fd-ba__before-video {
  filter: none;
}

.fd-ba--dual-video .fd-ba__before-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fd-ba__before-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
  pointer-events: none;
}

.fd-ba__dull {
  position: absolute;
  inset: 0;
  filter: grayscale(0.12) brightness(0.76) contrast(0.88) saturate(0.68);
}

.fd-ba__dull img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fd-ba__labels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.fd-ba__tag {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 248, 252, 0.95);
  background: rgba(2, 3, 6, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.fd-ba__tag--left {
  left: 1rem;
}

.fd-ba__tag--right {
  right: 1rem;
}

.fd-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-left: -1.5px;
  z-index: 5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 64, 84, 0.95));
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.65);
  cursor: ew-resize;
  touch-action: none;
}

.fd-ba__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(4, 5, 10, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.fd-ba__footnote {
  margin: 1.15rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 52rem;
}

.section__head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  background: var(--metal-ink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__intro {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* Service cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--single {
  grid-template-columns: 1fr;
  justify-items: start;
}

.prose-card {
  max-width: 54rem;
}

.prose-card__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 600;
  background: var(--metal-ink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.prose-card__lead {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.prose-card__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}

.prose-card__list li::marker {
  color: rgba(255, 64, 84, 0.55);
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  padding: 1.85rem 1.6rem;
  background:
    radial-gradient(ellipse 120% 80% at 10% 0%, rgba(225, 25, 55, 0.08), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.96) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0px));
  transition: border-color 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
  will-change: transform;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--shine);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(225, 25, 55, 0.22);
  --lift: -6px;
  box-shadow: var(--shadow-soft);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gold);
  background: rgba(225, 25, 55, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(225, 25, 55, 0.18);
}

.card h2,
.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* CTA strip */
.cta-strip {
  margin: 2rem 0;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(11, 11, 15, 0.1);
  background:
    radial-gradient(ellipse 80% 120% at 50% 120%, rgba(225, 25, 55, 0.12), transparent 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* Pricing */
.price-grid {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0 3.25rem;
}

/* Diensten: visual grid (foto + tekening/icoon + bullets) */
.diensten-visual-grid {
  display: grid;
  gap: 1.15rem;
  margin: 1.25rem 0 2.25rem;
}

@media (min-width: 720px) {
  .diensten-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 1100px) {
  .diensten-visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.diensten-visual {
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(11, 11, 15, 0.1);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(11, 11, 15, 0.07);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.diensten-visual:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 25, 55, 0.22);
  box-shadow: 0 18px 48px rgba(11, 11, 15, 0.1);
}

.diensten-visual__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #020203;
}

.diensten-visual__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02) brightness(1.02);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease-out-expo), filter 0.6s ease;
}

.diensten-visual:hover .diensten-visual__media img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.03) brightness(1.04);
}

.diensten-visual__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 11, 15, 0.25) 100%);
  pointer-events: none;
}

.diensten-visual__icon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 11, 15, 0.1);
  box-shadow: 0 4px 14px rgba(11, 11, 15, 0.12);
  color: var(--gold);
  z-index: 2;
  backdrop-filter: blur(8px);
}

.diensten-visual__body {
  padding: 1.15rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(11, 11, 15, 0.06);
}

.diensten-visual__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0b0b0f;
}

.diensten-visual__list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(11, 11, 15, 0.74);
  font-size: 0.92rem;
  line-height: 1.7;
}

.diensten-visual__list li::marker {
  color: var(--gold);
}

@media (min-width: 720px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  padding: 1.75rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 11, 15, 0.1);
  background:
    radial-gradient(ellipse 120% 80% at 10% 0%, rgba(225, 25, 55, 0.12), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.96) 55%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0px));
  transition: border-color 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.price-card:hover {
  border-color: rgba(225, 25, 55, 0.28);
  --lift: -6px;
  box-shadow:
    0 18px 60px rgba(11, 11, 15, 0.14),
    0 0 0 1px rgba(225, 25, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.price-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(225, 25, 55, 0.72);
}

.price-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--metal-ink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-card__price {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(11, 11, 15, 0.92);
}

.price-card__list {
  margin: 0;
  padding: 0 0 0 1.05rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.price-card__list li::marker {
  color: rgba(255, 64, 84, 0.55);
}

.price-card__meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-card__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn--wa {
  padding: 0.7rem 1.1rem;
  font-size: 0.86rem;
}

.price-card:has(.price-card__media) {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.price-card__media {
  margin: 0;
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0b0f;
}

.price-card__media img,
.price-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
  transition: transform 0.75s var(--ease-out-expo);
}

.price-card:hover .price-card__media img,
.price-card:hover .price-card__img {
  transform: scale(1.04);
}

.price-card__body {
  padding: 1.6rem 1.55rem 1.75rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.price-card--featured {
  border-color: rgba(225, 25, 55, 0.26);
  background:
    radial-gradient(ellipse 120% 80% at 10% 0%, rgba(225, 25, 55, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 26px 70px rgba(225, 25, 55, 0.1);
}

/* Fix “randjes” between hero and next section */
.hero__divider {
  margin-top: 3.25rem;
  filter: blur(0.2px);
}

.section {
  background: transparent;
  margin-top: 0;
}

.cta-strip h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  background: none;
  color: #0b0b0f;
  -webkit-text-fill-color: #0b0b0f;
}

.cta-strip p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: rgba(11, 11, 15, 0.72);
}

/* Contact — lichte Rhino-achtige blokken (wit op grijs, hoge leesbaarheid) */
.section--contact {
  padding-top: 2.75rem;
  padding-bottom: 4.5rem;
  background: #eceef2;
  border-top: 1px solid rgba(11, 11, 15, 0.06);
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0;
}

@media (min-width: 840px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.contact-card {
  padding: 2rem 1.75rem;
  border-radius: 8px;
  border: 1px solid rgba(11, 11, 15, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(11, 11, 15, 0.06);
}

.contact-card--accent {
  border: 1px solid rgba(11, 11, 15, 0.08);
  border-left: 4px solid var(--gold);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(11, 11, 15, 0.06);
}

.contact-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0b0b0f;
  line-height: 1.15;
}

.contact-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  color: rgba(11, 11, 15, 0.74);
  line-height: 1.65;
}

.contact-card__list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: 0.95rem;
  color: rgba(11, 11, 15, 0.74);
  line-height: 1.75;
}

.contact-card__list li::marker {
  color: var(--gold);
}

.contact-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card__hint {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: rgba(11, 11, 15, 0.62);
}

/* Contact: snelle WhatsApp / Bel knoppen */
.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.contact-quick__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s var(--ease-out-expo), background 0.22s, border-color 0.22s;
}

.contact-quick__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.contact-quick__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

.contact-quick__btn--wa .contact-quick__icon {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.34);
  color: #25d366;
}

.contact-quick__btn--wa:hover {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.08);
}

.contact-quick__btn--tel .contact-quick__icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.contact-card__link {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.2s ease;
}

.contact-card__link:hover {
  color: #9c0f26;
}

.contact-card__link--muted {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(11, 11, 15, 0.62);
}

.contact-card__link--muted:hover {
  color: #0b0b0f;
}

.contact-card__phone {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(11, 11, 15, 0.78);
  text-decoration: none;
}

.contact-card__phone:hover {
  text-decoration: underline;
  color: #0b0b0f;
}

.contact-card__note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: rgba(11, 11, 15, 0.58);
  line-height: 1.55;
}

/* Contact — “pitlane” intake-balk */
.contact-pitlane {
  padding: 2.25rem 0 0;
  margin-bottom: -0.5rem;
}

.contact-pitlane__inner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(11, 11, 15, 0.1);
  background: linear-gradient(165deg, #ffffff 0%, #f4f6fa 55%, #eef1f6 100%);
  box-shadow:
    0 2px 4px rgba(11, 11, 15, 0.05),
    0 22px 56px rgba(11, 11, 15, 0.1);
}

.contact-pitlane__stripe {
  position: absolute;
  left: 0;
  top: -40%;
  bottom: -40%;
  width: 6px;
  background: linear-gradient(180deg, #fb7185 0%, #e11d48 45%, #9f1239 100%);
  box-shadow: 0 0 24px rgba(225, 29, 72, 0.45);
  transform: skewY(-6deg);
  transform-origin: center top;
}

.contact-pitlane__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  padding: 1.75rem 1.5rem 1.85rem 1.85rem;
}

@media (min-width: 900px) {
  .contact-pitlane__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 2.25rem;
    padding: 2rem 2.25rem 2.1rem 2.35rem;
    align-items: start;
  }
}

.contact-pitlane__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e11d48;
}

.contact-pitlane__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #0b0b0f;
}

.contact-pitlane__lead {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(11, 11, 15, 0.72);
  max-width: 28rem;
}

.contact-pitlane__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-pitlane__row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .contact-pitlane__row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.contact-pitlane__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-pitlane__field--full {
  grid-column: 1 / -1;
}

.contact-pitlane__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 11, 15, 0.55);
}

.contact-pitlane__field input,
.contact-pitlane__field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(11, 11, 15, 0.14);
  background: #ffffff;
  color: #0b0b0f;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-pitlane__field input::placeholder,
.contact-pitlane__field textarea::placeholder {
  color: rgba(11, 11, 15, 0.38);
}

.contact-pitlane__field input:focus,
.contact-pitlane__field textarea:focus {
  outline: none;
  border-color: rgba(225, 29, 72, 0.55);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.contact-pitlane__submit {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.contact-pitlane__fineprint {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(11, 11, 15, 0.52);
  line-height: 1.5;
}

/* Inner page hero */
.page-hero {
  padding: 6.5rem 0 3.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 64, 84, 0.05) 0%, transparent 55%);
}

.page-hero__title {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-hero__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Home teaser tiles */
.teaser-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

@media (min-width: 720px) {
  .teaser-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.teaser-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  min-height: 220px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 11, 15, 0.1);
  background:
    radial-gradient(ellipse 110% 70% at 0% 0%, rgba(225, 25, 55, 0.1), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.98) 100%);
  color: inherit;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 18px 60px rgba(11, 11, 15, 0.12);
  transition: border-color 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  overflow: hidden;
}

.teaser-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* Soft red shadow around entire outline */
  box-shadow:
    0 0 0 1px rgba(255, 64, 84, 0.06),
    0 0 26px rgba(255, 64, 84, 0.06);
  opacity: 0.8;
  transition: opacity 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.teaser-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* subtle highlight sweep inside the card (prevents “flat” edges) */
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 42%, rgba(255, 64, 84, 0.08));
  opacity: 0.12;
  mix-blend-mode: screen;
  transition: opacity 0.3s var(--ease-out-expo);
}

.teaser-tile:hover {
  border-color: rgba(225, 25, 55, 0.22);
  transform: translateY(-3px);
  box-shadow:
    0 22px 70px rgba(11, 11, 15, 0.16),
    0 0 0 1px rgba(225, 25, 55, 0.12),
    0 0 28px rgba(225, 25, 55, 0.14),
    0 0 60px rgba(225, 25, 55, 0.06);
}

.teaser-tile:hover::before {
  opacity: 1;
  box-shadow:
    0 0 0 1px rgba(255, 64, 84, 0.12),
    0 0 34px rgba(255, 64, 84, 0.14),
    0 0 80px rgba(255, 64, 84, 0.1);
}

.teaser-tile:hover::after {
  opacity: 0.22;
}

.teaser-tile > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .btn--primary,
  .nav-cta {
    position: relative;
    overflow: hidden;
  }

  .btn--primary::after,
  .nav-cta::after {
    content: "";
    position: absolute;
    inset: -40% -55%;
    background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
    transform: translateX(-35%) rotate(12deg);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.8s var(--ease-out-expo);
    pointer-events: none;
    mix-blend-mode: soft-light;
  }

  .btn--primary:hover::after,
  .nav-cta:hover::after {
    opacity: 0.8;
    transform: translateX(35%) rotate(12deg);
  }

  .card::after,
  .hero__visual::after,
  .teaser-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 64, 84, 0.16),
      transparent 45%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  .card:hover::after,
  .hero__visual:hover::after,
  .teaser-tile:hover::after {
    opacity: 0.9;
  }
}

.teaser-tile__label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.teaser-tile h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
}

.teaser-tile p {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.teaser-tile__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.teaser-tile__link:hover {
  color: #fff;
}

/* Voor / na gallery */
.ba-intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.ba-grid {
  display: grid;
  gap: 2.5rem;
}

.ba-item {
  margin: 0;
}

.ba-pair {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .ba-pair {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.ba-cell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 4/3;
}

.ba-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-cell__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-void);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 6px;
}

.ba-item figcaption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.ba-item figcaption strong {
  color: var(--text);
  font-weight: 600;
}

/* Portfolio gallery (full page) */
.gallery-page-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.gallery-page-item {
  margin: 0;
}

.gallery-page-item__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  aspect-ratio: 4/3;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 22px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gallery-page-item__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s var(--ease-out-expo), filter 0.45s ease;
  filter: saturate(1.03) contrast(1.02);
}

.gallery-page-item:hover .gallery-page-item__frame img {
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.03);
}

.gallery-page-item figcaption {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.site-footer .logo {
  font-size: 1.4rem;
}

.footer__tag {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 22rem;
}

.footer-social-wrap {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem 2.5rem;
}

.footer-social__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 5.5rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-social__link.is-soon {
  opacity: 0.85;
  cursor: default;
}

.footer-social__link.is-soon:hover {
  color: inherit;
  transform: none;
}

.footer-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: currentColor;
}

.footer-social__icon svg {
  display: block;
}

.footer-social__user {
  display: block;
  min-height: 1.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  text-align: center;
  max-width: 10rem;
}

.footer-social__user:empty::before {
  content: "\00a0";
}

/* Social “sprinkles” (verspreid op de pagina, klikbaar) */
[data-social-sprinkles] {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

[data-social-sprinkles] a[data-social-slot] {
  pointer-events: auto;
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  transition: transform 0.2s var(--ease-out-expo), border-color 0.2s, background 0.2s, color 0.2s;
}

[data-social-sprinkles] a[data-social-slot] .footer-social__icon {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-items: center;
}

[data-social-sprinkles] a[data-social-slot]:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(251, 113, 133, 0.34);
  background: rgba(225, 29, 72, 0.12);
  color: #fb7185;
}

[data-social-sprinkles] a[data-social-slot]:focus-visible {
  outline: 2px solid #fb7185;
  outline-offset: 3px;
}

/* Specifiek: werkresultaat hero — posities rond de illustratie */
.page-hero--werk-visual .werk-hero-visual__figure {
  position: relative;
}

.page-hero--werk-visual .werk-hero-visual__figure [data-social-sprinkles] a[data-social-slot=\"fb\"] {
  top: 10%;
  left: -14px;
}

.page-hero--werk-visual .werk-hero-visual__figure [data-social-sprinkles] a[data-social-slot=\"ig\"] {
  bottom: 14%;
  right: -12px;
}

.page-hero--werk-visual .werk-hero-visual__figure [data-social-sprinkles] a[data-social-slot=\"tt\"] {
  top: 56%;
  left: -18px;
  transform: rotate(-6deg);
}

@media (max-width: 880px) {
  .page-hero--werk-visual .werk-hero-visual__figure [data-social-sprinkles] a[data-social-slot=\"fb\"] {
    left: 10px;
    top: 10px;
  }
  .page-hero--werk-visual .werk-hero-visual__figure [data-social-sprinkles] a[data-social-slot=\"tt\"] {
    left: auto;
    right: 10px;
    top: 10px;
    transform: none;
  }
  .page-hero--werk-visual .werk-hero-visual__figure [data-social-sprinkles] a[data-social-slot=\"ig\"] {
    right: 10px;
    bottom: 10px;
  }
}

.footer__col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.footer__col a,
.footer__col p {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__col code {
  font-size: 0.82em;
  padding: 0.12em 0.4em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--gold-bright);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-soft);
  opacity: 0.85;
}

.footer__legal {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer__legal a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.footer__legal .sep {
  opacity: 0.35;
}

/* Eenvoudige tekstpagina’s (privacy / voorwaarden / cookies) */
.legal-content {
  max-width: 46rem;
}

.legal-content h2 {
  margin-top: 2.25rem;
  font-size: 1.25rem;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.legal-content ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal-content li + li {
  margin-top: 0.25rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-meta {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  opacity: 0.85;
}

/* ——— Fullscreen intro (“garage boot”) ——— */
body.fd-intro-active {
  overflow: hidden;
}

#fd-intro {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020305;
  animation: fd-intro-in 0.6s var(--ease-out-expo) both;
}

#fd-intro .fd-intro__brand-line {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 30px 110px rgba(0, 0, 0, 0.7);
}

#fd-intro .fd-intro__brand .fd-intro__brand-line + .fd-intro__brand-line {
  background: var(--metal-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fd-intro__wrap {
  transform: translateZ(0);
}

/* Premium “glitch pulse” */
#fd-intro.fd-intro--pulse .fd-intro__beam::after {
  opacity: 1;
  filter: blur(0.4px);
}

#fd-intro.fd-intro--pulse .fd-intro__scanlines {
  opacity: 0.5;
}

#fd-intro.fd-intro--pulse .fd-intro__brand-line {
  text-shadow:
    0 0 0 transparent,
    0 0 0 transparent,
    4px 0 rgba(232, 238, 255, 0.16),
    -4px 0 rgba(255, 255, 255, 0.12);
}

#fd-intro.fd-intro--out {
  pointer-events: none;
  animation: fd-intro-out 0.65s var(--ease-out-expo) forwards;
}

.fd-intro__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(255, 64, 84, 0.22), transparent 55%),
    radial-gradient(circle at 18% 25%, rgba(255, 120, 150, 0.12), transparent 42%),
    #020305;
}

.fd-intro__scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.2) 2px,
    rgba(0, 0, 0, 0.2) 3px
  );
  mix-blend-mode: multiply;
}

.fd-intro__logo {
  width: min(260px, 62vw);
  margin: 0.75rem auto 0.4rem;
  opacity: 0;
  animation: fd-fade-up 0.75s var(--ease-out-expo) 2.05s forwards;
}

.fd-intro__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 70px rgba(255, 64, 84, 0.18)) drop-shadow(0 30px 110px rgba(0, 0, 0, 0.7));
}

.fd-intro__beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fd-intro__beam::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(220, 230, 245, 0.12) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: skewX(-18deg) translateX(-40%);
  animation: fd-intro-beam 2.4s ease-in-out 0.15s forwards;
}

.fd-intro__skip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.fd-intro__skip:hover {
  color: var(--text);
  border-color: rgba(155, 172, 196, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.fd-intro__wrap {
  position: relative;
  z-index: 2;
  width: min(520px, 90vw);
  text-align: center;
  padding: 2rem 1rem;
}

.fd-intro__boot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 64, 84, 0.22);
  background: linear-gradient(165deg, rgba(255, 64, 84, 0.08), rgba(0, 0, 0, 0.5));
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(255, 220, 226, 0.78);
  text-align: left;
}

.fd-intro__boot span {
  display: block;
  opacity: 0;
  animation: fd-intro-line 0.5s ease-out forwards;
}

.fd-intro__boot span:nth-child(1) {
  animation-delay: 0.2s;
}
.fd-intro__boot span:nth-child(2) {
  animation-delay: 0.55s;
}
.fd-intro__boot span:nth-child(3) {
  animation-delay: 0.9s;
}
.fd-intro__boot span:nth-child(4) {
  animation-delay: 1.25s;
}
.fd-intro__boot span:nth-child(5) {
  animation-delay: 1.6s;
}

.fd-intro__boot em {
  font-style: normal;
  color: var(--gold-bright);
}

.fd-intro__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-muted);
  opacity: 0;
  animation: fd-fade-up 0.7s var(--ease-out-expo) 1.9s forwards;
}

.fd-intro__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1rem;
}

.fd-intro__brand-line {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 14vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: var(--text);
  opacity: 0;
  animation: fd-fade-up 0.85s var(--ease-out-expo) 2.1s forwards, fd-glitch 3.5s ease-in-out 2.4s infinite;
}

.fd-intro__brand .fd-intro__brand-line + .fd-intro__brand-line {
  animation: fd-fade-up 0.85s var(--ease-out-expo) 2.35s forwards, fd-glitch 3.5s ease-in-out 2.65s infinite;
  color: var(--gold-bright);
}

.fd-intro__tag {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
  opacity: 0;
  animation: fd-fade-up 0.75s var(--ease-out-expo) 2.45s forwards;
}

.fd-intro__strike {
  text-decoration: line-through;
  text-decoration-color: rgba(155, 172, 196, 0.5);
}

.fd-intro__wild {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  opacity: 0;
  animation: fd-fade-up 0.75s var(--ease-out-expo) 2.65s forwards;
}

.fd-intro__wild strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.fd-intro__note {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  color: var(--text-soft);
  opacity: 0;
  animation: fd-fade-up 0.6s var(--ease-out-expo) 2.85s forwards;
}

.fd-intro__go {
  opacity: 0;
  animation: fd-fade-up 0.7s var(--ease-out-expo) 3.05s forwards;
  min-width: 220px;
}

@keyframes fd-intro-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fd-intro-out {
  to {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(12px);
  }
}

@keyframes fd-intro-beam {
  0% {
    transform: skewX(-18deg) translateX(-45%);
  }
  100% {
    transform: skewX(-18deg) translateX(220%);
  }
}

@keyframes fd-intro-line {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fd-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fd-glitch {
  0%,
  90%,
  100% {
    text-shadow:
      0 0 0 transparent,
      0 0 0 transparent;
    transform: translate(0, 0);
  }
  91% {
    text-shadow:
      3px 0 rgba(186, 198, 218, 0.55),
      -3px 0 rgba(135, 160, 205, 0.28);
    transform: translate(-1px, 0);
  }
  93% {
    text-shadow:
      -2px 0 rgba(200, 230, 255, 0.14),
      2px 0 rgba(186, 198, 218, 0.45);
    transform: translate(1px, 0);
  }
  95% {
    text-shadow: 1px 0 rgba(255, 255, 255, 0.3);
    transform: translate(0, 0);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Video-hulpbalk (ontbrekende files / file:// / codec) */
.fd-video-hulp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 25000;
  padding: 0.85rem 0;
  background: rgba(8, 6, 10, 0.97);
  border-top: 1px solid rgba(255, 64, 84, 0.35);
  box-shadow: 0 -12px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.fd-video-hulp--hidden {
  display: none;
}

.fd-video-hulp__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

.fd-video-hulp__text {
  margin: 0;
  flex: 1;
  min-width: min(100%, 52rem);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.fd-video-hulp__text code {
  font-size: 0.82em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--gold-bright);
}

.fd-video-hulp__close {
  flex-shrink: 0;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}

.fd-video-hulp__close:hover {
  border-color: rgba(255, 64, 84, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #fd-intro {
    display: none !important;
  }

  body.fd-intro-active {
    overflow: auto !important;
  }

  body::before {
    animation: none;
  }

  .hero__glow {
    animation: none;
  }

  .hero__poster {
    animation: none;
  }

  .page-hero--werk .page-hero__media video {
    display: none;
  }

  .hero__shimmer {
    animation: none;
  }

  .hero__visual img {
    transform: none;
    transition: none;
  }

  .hero__visual:hover img {
    transform: none;
  }

  .hero__visual--video .hero__video,
  .hero__visual--video:hover .hero__video {
    transform: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Homepage additions: stats + steps ——— */
.stat-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  max-width: 40rem;
}

@media (min-width: 720px) {
  .stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }
}

.stat {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 11, 16, 0.92) 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat__kicker {
  margin: 0 0 0.2rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 208, 216, 0.75);
}

.stat__value {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 600;
  color: #f5f7fb;
}

.section--process {
  background: linear-gradient(180deg, rgba(6, 7, 14, 0.5) 0%, rgba(5, 6, 8, 0.7) 100%);
}

.why-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 980px) {
  .why-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: center;
  }
}

.why-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.why-point {
  padding: 1.15rem 1.15rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 11, 16, 0.96) 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-point h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
}

.why-point p {
  margin: 0;
  color: rgba(245, 247, 252, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-split__media {
  position: relative;
}

.why-split__video-frame {
  position: relative;
  width: 100%;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #020203;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 28px 85px rgba(0, 0, 0, 0.45);
}

.why-split__video-shell {
  position: absolute;
  inset: 0;
}

.why-split__video-shell .hero__video-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-split__video-shell .hero__video-layer {
  object-position: 50% 42%;
}

.why-split__video-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.22) 100%);
}

.why-collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.why-collage__tile {
  margin: 0;
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #020203;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 28px 85px rgba(0, 0, 0, 0.45);
}

.why-collage__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.03) brightness(0.88);
  transform: scale(1.04);
}

.why-collage__tile--a {
  grid-column: 1 / 7;
  aspect-ratio: 16 / 10;
}

.why-collage__tile--b {
  grid-column: 1 / 4;
  aspect-ratio: 4 / 3;
}

.why-collage__tile--c {
  grid-column: 4 / 7;
  aspect-ratio: 4 / 3;
}

.why-quote {
  margin-top: 2.25rem;
  padding: 1.6rem 1.5rem;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(255, 64, 84, 0.22);
  background:
    radial-gradient(ellipse 90% 110% at 50% 120%, rgba(255, 64, 84, 0.12), transparent 55%),
    linear-gradient(165deg, rgba(20, 21, 28, 0.98) 0%, rgba(8, 9, 12, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 110px rgba(0, 0, 0, 0.45);
}

.why-quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.25;
  color: #f5f7fb;
}

.why-quote__by {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.faq {
  margin-top: 2.25rem;
  padding: 1.5rem 1.35rem;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 11, 16, 0.96) 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: #f5f7fb;
}

.faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
  margin-top: 0.85rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(247, 248, 252, 0.92);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::marker {
  content: "";
}

.faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  border-radius: 10px;
  background: rgba(225, 29, 72, 0.15);
  color: #e11d48;
}

.faq__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq__summary-text {
  flex: 1;
  min-width: 0;
}

.faq__item summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
  margin-top: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.55rem;
}

.faq__item p {
  margin: 0.65rem 0 0;
  color: rgba(245, 247, 252, 0.88);
  line-height: 1.65;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: fdstep;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.step {
  position: relative;
  padding: 1.35rem 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 120% 80% at 10% 0%, rgba(255, 64, 84, 0.12), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 11, 16, 0.96) 60%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.step::before {
  counter-increment: fdstep;
  content: counter(fdstep);
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 208, 216, 0.9);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.step__title {
  margin: 0 2.4rem 0.55rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
}

.step__text {
  margin: 0;
  color: rgba(245, 247, 252, 0.9);
  font-size: 0.92rem;
  line-height: 1.6;
}
