/* ============================================
   HERO — cinematic floating controller stage
   ============================================ */

.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-7));
  padding-bottom: var(--s-9);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Hero achtergrond — stacked: image als basis, gradients erover.
   Volgorde (CSS): top → bottom. Dus url() ALTIJD als laatste. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 35%, rgba(255, 0, 0, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.30) 0%, rgba(5, 5, 5, 0.55) 60%, rgba(5, 5, 5, 0.82) 100%),
    url('../assets/Homepage2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::before {
  /* Subtle scanning red light bar - cinematic touch */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(255, 0, 0, 0.06) 50%, transparent 70%);
}
@keyframes scan {
  0%, 100% { transform: translateY(-15%); }
  50%      { transform: translateY(15%); }
}

.hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
}

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-9); }
}

/* ============================================
   3-CARD HERO (Mods / Reparaties / Overig)
   ============================================ */

.hero--cards {
  padding-top: calc(var(--nav-h) + var(--s-7));
  padding-bottom: var(--s-9);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--s-8);
  position: relative;
  z-index: 2;
  padding: var(--s-6) var(--s-5);
  border-radius: var(--r-xl, 20px);
  background: radial-gradient(
    ellipse at center,
    rgba(10, 10, 11, .65) 0%,
    rgba(10, 10, 11, .35) 55%,
    rgba(10, 10, 11, 0) 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 720px) {
  .hero__intro { padding: var(--s-5) var(--s-4); }
}
.hero__intro .eyebrow {
  justify-content: center;
}
.hero__intro h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  margin: var(--s-3) 0 var(--s-4);
}
.hero__intro h1 span {
  background: linear-gradient(135deg, var(--c-red-accent), var(--c-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__intro .lead {
  margin: 0 auto;
}

/* Grid of 3 cards */
.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  align-items: stretch;
}
@media (max-width: 960px) {
  .option-cards { grid-template-columns: 1fr; gap: var(--s-4); max-width: 520px; }
}

.option-card {
  position: relative;
  padding: var(--s-6);
  background:
    linear-gradient(135deg, rgba(28, 28, 32, 0.78) 0%, rgba(10, 10, 12, 0.92) 100%);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  z-index: 1;
}
.option-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-border-red);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(255, 0, 0, 0.18);
}

.option-card--popular {
  background:
    linear-gradient(135deg, rgba(34, 34, 38, 0.82) 0%, rgba(14, 14, 16, 0.94) 50%, rgba(34, 34, 38, 0.82) 100%);
  border-color: var(--c-border-red);
  box-shadow:
    0 -13px 80px rgba(255, 0, 0, 0.35),
    0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media (min-width: 961px) {
  .option-card--popular {
    transform: scale(1.04);
  }
  .option-card--popular:hover {
    transform: scale(1.04) translateY(-6px);
  }
}
.option-card--popular::before {
  content: "Meest gekozen";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: linear-gradient(180deg, var(--c-red-accent), var(--c-red));
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
}

.option-card__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  line-height: 1;
  color: var(--c-text);
}

.option-card__img {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto -8px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 0, .35);
  background: #0c0c0e;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .5),
    0 0 0 4px rgba(255, 0, 0, .12);
}
.option-card--tmr {
  align-items: center;
  text-align: center;
}
.option-card--tmr .option-card__list { text-align: left; }
.option-card--tmr .option-card__cta { align-self: stretch; justify-content: center; }

.option-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-dim);
  line-height: var(--lh-base);
  min-height: 3em;
}

.option-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  padding: 1rem var(--s-4);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
  border: 1px solid;
}
.option-card__cta svg { width: 18px; height: 18px; }
.option-card__cta--outline {
  background: linear-gradient(180deg, rgba(50, 50, 55, 0.55) 0%, rgba(10, 10, 12, 0.85) 100%);
  border-color: var(--c-border-strong);
  color: var(--c-text);
}
.option-card__cta--outline:hover {
  background: linear-gradient(180deg, rgba(70, 70, 78, 0.65) 0%, rgba(20, 20, 22, 0.9) 100%);
  border-color: var(--c-border-red);
}
.option-card__cta--primary {
  background: linear-gradient(180deg, var(--c-red-accent) 0%, var(--c-red) 100%);
  border-color: var(--c-red-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
}
.option-card__cta--primary:hover {
  background: linear-gradient(180deg, var(--c-red-bright) 0%, var(--c-red-accent) 100%);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.65);
  transform: translateY(-2px);
}

.option-card__list {
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}
.option-card__list h4 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-med);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--s-3);
}
.option-card__list ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.option-card__list li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--c-text-dim);
  line-height: 1.4;
}
.option-card__list li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.55);
}
.option-card__list li a {
  color: var(--c-text-dim);
  transition: color var(--t-base), padding-left var(--t-base);
}
.option-card__list li a:hover {
  color: var(--c-red-accent);
  padding-left: 2px;
}
.option-card--popular .option-card__list li::before {
  box-shadow: 0 0 10px var(--c-red-accent);
}

/* Subtle floating sparkles in the cards hero */
.hero--cards .hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---- Copy column ---- */

.hero__copy { position: relative; z-index: 2; }
.hero__copy h1 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-hero);
  line-height: 0.92;
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  margin: var(--s-4) 0 var(--s-5);
}
.hero__copy h1 .accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-red-bright), var(--c-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__copy .lead { max-width: 44ch; margin-bottom: var(--s-6); }

.hero__actions {
  display: flex; gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}
.hero__usp {
  display: flex;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.hero__usp-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--c-text-dim);
}
.hero__usp-item svg {
  width: 22px; height: 22px;
  color: var(--c-red);
}
.hero__usp-item strong {
  display: block;
  color: var(--c-text);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  font-size: var(--fs-sm);
  line-height: 1;
}
.hero__usp-item span { font-size: 0.75rem; color: var(--c-text-muted); }

/* ---- Stage column (controller + parts) ---- */

.hero__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(225,29,46,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

@media (max-width: 1100px) {
  .hero__stage { aspect-ratio: 16/10; max-width: 720px; margin-inline: auto; }
}

/* Photo backdrop with subtle 3D rotation + float */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  animation: hero-breathe 12s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
@keyframes hero-breathe {
  0%, 100% {
    transform: perspective(1400px) rotateY(-2deg) translateY(0) scale(1);
  }
  50%      {
    transform: perspective(1400px) rotateY(2deg) translateY(-10px) scale(1.015);
  }
}

/* Cinematic smoke layer */
.hero__smoke {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 30% at 25% 70%, rgba(255, 0, 0, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 75% 80%, rgba(255, 0, 0, 0.12) 0%, transparent 65%);
  filter: blur(20px);
  opacity: 0.7;
  mix-blend-mode: screen;
}
@keyframes smoke {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  33%      { transform: translate(20px, -10px); opacity: 0.9; }
  66%      { transform: translate(-15px, 8px); opacity: 0.5; }
}

/* Floating particles container */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(255, 200, 200, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 200, 200, 0.7);
  animation: drift-up linear infinite;
}
@keyframes drift-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120%) translateX(20px); opacity: 0; }
}

/* Subtle vignette over photo */
.hero__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 40%, rgba(10,10,11,0.55) 100%);
  pointer-events: none;
}
.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,0.55) 100%);
  pointer-events: none;
}

/* ---- Part hotspots ---- */

.part {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0;
  cursor: pointer;
  animation: drift 8s ease-in-out infinite;
}
.part:nth-child(2) { animation-delay: -1s; }
.part:nth-child(3) { animation-delay: -2s; }
.part:nth-child(4) { animation-delay: -3s; }
.part:nth-child(5) { animation-delay: -4s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  25%      { transform: translateY(-8px) translateX(4px); }
  50%      { transform: translateY(-4px) translateX(-3px); }
  75%      { transform: translateY(6px) translateX(2px); }
}

.part__card {
  background: rgba(17, 17, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-border-red);
  border-radius: var(--r-sm);
  padding: var(--s-3) var(--s-4);
  min-width: 160px;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.part__card::after {
  content: "+";
  position: absolute;
  top: -10px; right: -10px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  display: grid; place-items: center;
  font-size: var(--fs-md);
  box-shadow: 0 0 0 4px rgba(225,29,46,0.2), 0 4px 12px rgba(225,29,46,0.45);
  transition: transform var(--t-base) var(--ease-spring);
}
.part:hover .part__card {
  border-color: var(--c-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(225,29,46,0.25);
}
.part:hover .part__card::after { transform: scale(1.15) rotate(90deg); }

.part__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 2px;
}
.part__title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  color: var(--c-text);
}
.part__price {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--c-text-dim);
  margin-top: 2px;
}

/* Snapped state — when user clicks a part it "snaps" onto the controller */
.part.is-snapped .part__card {
  animation: snap 0.45s var(--ease-spring);
  border-color: var(--c-red);
  background: linear-gradient(180deg, var(--c-red-soft), rgba(17,17,20,0.9));
}
.part.is-snapped .part__card::after {
  content: "✓";
  background: var(--c-success);
  box-shadow: 0 0 0 4px var(--apex-green-border);
}
@keyframes snap {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.9) translateX(-12px); }
  100% { transform: scale(1); }
}

/* Make parts overlay the photo */
.part { z-index: 5; }
.part__card { background: rgba(8, 8, 11, 0.88); }

/* Position each part to point at correct location on hero photo */
.part--triggers { top: 8%;  left: 4%; }
.part--shell    { top: 6%;  right: 4%; }
.part--sticks   { top: 48%; left: -2%; }
.part--paddles  { top: 44%; right: -2%; }
.part--led      { bottom: 8%; left: 50%; transform: translateX(-50%); }

@media (max-width: 1100px) {
  .part--sticks  { left: 4%; }
  .part--paddles { right: 4%; }
}
@media (max-width: 720px) {
  .part__card { min-width: 120px; padding: var(--s-2) var(--s-3); }
  .part--triggers { top: 4%; left: 4%; }
  .part--shell    { top: 4%; right: 4%; }
  .part--sticks   { top: 50%; left: 2%; }
  .part--paddles  { top: 42%; right: 2%; }
  .part--led      { bottom: 6%; }
  .part__title { font-size: 0.8rem; }
  .part__price { font-size: 0.625rem; }
}

/* Connection lines (SVG layer) */
.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__lines path {
  fill: none;
  stroke: rgba(225, 29, 46, 0.45);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  stroke-dashoffset: 0;
  animation: dash 30s linear infinite;
}
@keyframes dash {
  to { stroke-dashoffset: -200; }
}
.hero__lines circle {
  fill: var(--c-red);
  filter: drop-shadow(0 0 8px var(--c-red));
}

/* Hero scroll hint */
.hero__hint {
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  z-index: 5;
}
.hero__hint svg {
  width: 18px; height: 22px;
  color: var(--c-red);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ---- Marquee tape under hero ---- */
.marquee {
  position: relative;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-deep);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: var(--s-9);
  padding: var(--s-4) 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.marquee__item span:nth-child(2) { color: var(--c-red); }
.marquee__item svg { width: 28px; height: 28px; color: var(--c-red); flex-shrink: 0; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   PREMIUM SPLIT HERO — controller stage (2026 redesign)
   Tekst links, custom controller op glowing pedestal rechts.
   ============================================================ */
.hero--split {
  /* Desktop: tussen 650 en 900px, en maximaal ~90% van de schermhoogte. */
  min-height: clamp(650px, 90vh, 900px);
  padding-bottom: var(--s-6);
}

/* ------------------------------------------------------------
   Achtergrondvideo in de split-hero
   Alle achtergrondlagen zitten in .hero__media. Die krijgt z-index:0 en
   vormt een eigen stacking context, zodat er NERGENS een negatieve
   z-index nodig is (dat gaf compositie-problemen in Safari) en de
   hero-content (z-index 1-5) er altijd bovenop en klikbaar blijft.
     .hero__bg      0  achtergrondfoto + gradient (laatste vangnet)
     .hero__video   1  de video (object-fit: cover)
     .hero__poster  2  posterfoto, vervaagt pas bij het 'playing' event
     .hero__overlay 3  donkere overlay voor leesbaarheid
   ------------------------------------------------------------ */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__media > * { position: absolute; inset: 0; }

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* vult de hero volledig, zonder vervorming */
  object-position: center;    /* houdt het onderwerp gecentreerd in beeld */
  z-index: 1;
  pointer-events: none;       /* video is niet aanklikbaar */
  background: #050505;        /* donkere basis: geen witte/lege flits */
  border: 0;
}

/* Posterfoto ligt boven de video en verdwijnt pas als de video echt speelt.
   De class 'video-is-playing' wordt gezet door js/hero-video.js bij 'playing'. */
.hero__poster {
  z-index: 2;
  background: url("../assets/Homepage2.webp") center / cover no-repeat;
  opacity: 1;
  transition: opacity .6s ease;
}
.hero.video-is-playing .hero__poster { opacity: 0; }

.hero__overlay {
  z-index: 3;
  pointer-events: none;
  /* Donkere overlay over video én poster, voor leesbaarheid van de tekst. */
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 35%, rgba(255, 0, 0, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.30) 0%, rgba(5, 5, 5, 0.55) 60%, rgba(5, 5, 5, 0.82) 100%);
}
.hero--split .hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(var(--s-5), 5vw, var(--s-9));
  width: 100%;
}

/* ---- Links: content ---- */
.hero--split .hero__content { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: var(--s-4) 0 var(--s-5);
  text-wrap: balance;
}
.hero__title .accent { color: var(--c-red); }
.hero--split .lead {
  max-width: 46ch;
  color: var(--c-text-dim);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  margin-bottom: var(--s-6);
}
.hero--split .hero__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

/* Compacte trust-regel onder de CTA's */
.hero__trustline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  padding: 0;
  margin: 0;
}
.hero__trustline li {
  position: relative;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  padding-left: 22px;
}
.hero__trustline li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 14px;
  transform: translateY(-50%);
  background: no-repeat center / contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff0000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* De zwevende controller-stage (.hero__product / .hero__controller /
   .hero__glow / .hero__pedestal en de bijbehorende keyframes) is verwijderd.
   Reden: het beeld dupliceerde de controller die al in de achtergrondvideo
   staat, kostte 1,67 MB boven de vouw en deed niets voor de bezoeker.
   De rechterkolom is nu de spotlight — zie css/home.css. */

/* ---- Subtiele Zwolle skyline + wordmark ---- */
.hero__skyline {
  position: absolute;
  z-index: 1;
  right: 0; bottom: 0;
  width: min(58%, 760px);
  height: 64%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  color: var(--c-red);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 42%);
  mask-image: linear-gradient(180deg, transparent, #000 42%);
}
.hero__skyline-word {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: 0.12em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,0,0,0.16);
  margin-right: 0.12em;
  user-select: none;
}
.hero__skyline-svg {
  width: 100%;
  height: 118px;
  opacity: 0.13;
}

/* ============================================================
   TRUST BAR — horizontale strip onder de hero
   ============================================================ */
.trustbar-section { padding-top: 0; padding-bottom: var(--s-6); }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(var(--s-3), 2vw, var(--s-6));
  padding: clamp(var(--s-4), 2.4vw, var(--s-5)) clamp(var(--s-4), 3vw, var(--s-7));
  background: var(--glass-bg, rgba(14,14,16,0.55));
  backdrop-filter: var(--glass-blur, blur(20px));
  -webkit-backdrop-filter: var(--glass-blur, blur(20px));
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-width: 0;
}
.trust-bar__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--c-red-soft);
  border: 1px solid var(--c-border-red);
  color: var(--c-red);
}
.trust-bar__icon svg { width: 20px; height: 20px; }
.trust-bar__text {
  display: flex;
  flex-direction: column;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.3;
  min-width: 0;
}
.trust-bar__text strong {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  color: var(--c-text);
  line-height: 1.1;
}

/* ============================================================
   PREMIUM SERVICE CARDS (3) — Reparaties / Mods / Build
   ============================================================ */
.services-section { padding-top: var(--s-6); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--s-4), 2vw, var(--s-5));
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg, rgba(14,14,16,0.55));
  backdrop-filter: var(--glass-blur, blur(20px));
  -webkit-backdrop-filter: var(--glass-blur, blur(20px));
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0b0d;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower) var(--ease-out);
}
.service-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,0.85) 100%);
}
.service-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.service-card__title .accent { color: var(--c-red); }
.service-card__body p {
  color: var(--c-text-dim);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  margin: 0;
  flex: 1;
}
.service-card__body .arrow-link { margin-top: auto; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-border-red);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,0,0,0.10);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }

/* ---- Grote CTA-knop variant ---- */
.btn--lg { padding: 0.95rem 1.6rem; font-size: var(--fs-sm); }

/* ============================================================
   RESPONSIVE — split hero
   ============================================================ */
@media (max-width: 960px) {
  .hero--split { min-height: clamp(550px, 80vh, 700px); padding-top: calc(var(--nav-h) + var(--s-5)); }
  .hero--split .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); text-align: center; }
  .hero--split .hero__content { order: 1; }
  .hero__spot { order: 2; }
  .hero--split .lead { margin-inline: auto; }
  .hero--split .hero__actions { justify-content: center; }
  .hero__trustline { justify-content: center; }
  .hero__skyline { width: 84%; }
}
@media (max-width: 760px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .service-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.25rem, 10vw, 3rem); }
  .trust-bar { grid-template-columns: 1fr; }
  .hero__trustline { gap: var(--s-2) var(--s-4); }
}

@media (prefers-reduced-motion: reduce) {
  .service-card, .service-card__media img { transition: none; }
  .service-card:hover { transform: none; }
  .service-card:hover .service-card__media img { transform: none; }
  /* Geen bewegende video: alleen de posterfoto (+ overlay) blijft staan. */
  .hero__video { display: none; }
  .hero__poster { transition: none; }
}
/* Trust-bar binnen de hero (onder de CTA's, full-width) */
.hero__trust-bar {
  position: relative;
  z-index: 2;
  margin-top: clamp(var(--s-6), 4vw, var(--s-7));
}
@media (max-width: 960px) {
  .hero__trust-bar { margin-top: var(--s-6); }
}