/* ===== DEEJAY TIM - Luxe Dark Neon Theme ===== */
:root {
  --bg-dark: #06060b;
  --bg-darker: #030306;
  --neon-pink: #e600ff;
  --neon-red: #ff1744;
  --neon-red-glow: #ff4569;
  --neon-cyan: #00e5ff;
  --neon-magenta: #ff2d92;
  --neon-yellow: #ffe566;
  --accent-gold: #d4af37;
  --text-dim: rgba(255, 255, 255, 0.75);
  --text-bright: #fafafa;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  /* Typography – consistente schaal */
  --font-body: 'Rajdhani', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --text-body: 1.125rem;
  --text-body-sm: 0.95rem;
  --text-body-lg: 1.25rem;
  --text-caption: 0.8rem;
  --text-micro: 0.7rem;
  --line-body: 1.75;
}

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

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--line-body);
  background: var(--bg-dark);
  color: var(--text-bright);
  overflow-x: hidden;
}

.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;
}

/* Intro overlay – zwart scherm, waarschuwing + CTA, music player verborgen */
.music-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg-darker);
  transition: opacity 0.5s ease;
}

.music-intro-overlay.faded {
  opacity: 0;
  pointer-events: none;
}

/* Music player verborgen tijdens intro – verschijnt na klik */
body.intro-pending .music-player {
  visibility: hidden;
}

/* Music player verborgen wanneer gebruiker kiest voor zonder muziek */
body.no-music .music-player {
  display: none !important;
}

.music-intro-cta {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  max-width: 420px;
  width: 90%;
}

/* Taalwissel op intro – zichtbaar voor niet-Nederlandstaligen */
.music-intro-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.music-intro-lang-label {
  font-size: var(--text-caption);
  color: var(--text-dim);
  margin-right: 0.25rem;
}

.music-intro-lang .lang-btn {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  padding: 0.3rem 0.6rem;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  cursor: pointer;
}

.music-intro-lang .lang-btn[aria-pressed="true"] {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.music-intro-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  margin: 0 0 0.5rem;
}

.music-intro-instruction {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--text-dim);
  margin: 0 0 1.25rem;
}

/* Fieldset + legend – radiogroup 1.3.1, instructie via aria-describedby 3.3.2 */
.music-intro-fieldset {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: left;
}

.music-intro-legend {
  font-family: var(--font-body);
  font-size: var(--text-caption);
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  padding: 0;
}

.music-intro-radios {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* State styling: Selected ≠ Focus-visible ≠ Hover (WCAG 2.4.7, 2.1.1)
   - Selected: subtiele bg-fill + border (niet alleen kleur: ook radio-dot gevuld)
   - Focus-visible: outline/ring alleen bij toetsenbord – nooit verward met selected
   - Hover: subtiel, anders dan focus en selected */
.music-intro-radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 56px;
  padding: 0.875rem 1.25rem;
  background: transparent;
  border: 2px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, outline 0.15s;
}

/* Hover: subtiele achtergrond, geen border-change (anders dan selected) */
.music-intro-radio-option:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Selected: duidelijke visuele feedback (bg + border + dot) – WCAG 1.4.1 */
.music-intro-radio-option:has(input:checked) {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.5);
}

/* Focus-visible: alleen bij toetsenbord – outline ≠ selected styling */
.music-intro-radio-option:has(input:focus-visible) {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.music-intro-radio-option input[type="radio"]:focus {
  outline: none;
}

/* Visuele indicator geselecteerd – niet alleen kleur (WCAG 1.4.1) */
.music-intro-radio-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  background: transparent;
  position: relative;
}

.music-intro-radio-option:has(input:checked) .music-intro-radio-box {
  border-color: var(--neon-cyan);
}

.music-intro-radio-option:has(input:checked) .music-intro-radio-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
}

.music-intro-radio-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-bright);
  text-align: left;
}

.music-intro-radio-option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Primaire actieknop –zelfde breedte als kaarten voor visuele hiërarchie */
.music-intro-submit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, rgba(0, 229, 255, 0.8) 100%);
  color: var(--bg-darker);
  border: 2px solid rgba(0, 229, 255, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}

.music-intro-submit:hover:not(:disabled),
.music-intro-submit:focus-visible:not(:disabled) {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
  transform: scale(1.02);
}

.music-intro-submit:focus {
  outline: none;
}

.music-intro-submit:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.music-intro-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Animated background grid */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 229, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(230, 0, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 229, 255, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Neon text utilities */
.neon-pink { color: var(--neon-pink); text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink); }
.neon-cyan { color: var(--neon-cyan); text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan); }
.neon-magenta { color: var(--neon-magenta); text-shadow: 0 0 10px var(--neon-magenta), 0 0 20px var(--neon-magenta); }
.neon-yellow { color: var(--neon-yellow); text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow); }
.neon-highlight { color: var(--neon-cyan); }

.neon-link {
  color: var(--neon-pink);
  text-decoration: none;
  transition: text-shadow 0.3s;
}
.neon-link:hover {
  text-shadow: 0 0 15px var(--neon-pink);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
  transition: background 0.3s;
}

.nav.scrolled { 
  background: rgba(6, 6, 11, 0.85); 
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-body);
  color: var(--neon-red);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(255, 23, 68, 0.6), 0 0 40px rgba(255, 23, 68, 0.3);
  letter-spacing: 0.25em;
}
.nav-logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 23, 68, 0.5));
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.nav-links a:focus { outline: none; }
.nav-links a:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* Hero actions: CTA + Instagram, gestapeld en gecentreerd */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero-actions { align-items: flex-start; }
}

/* Hero Instagram link – Sensibyte-stijl met gradient */
.hero-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
}
.hero-instagram:hover {
  transform: scale(1.05);
  opacity: 1;
}
.hero-instagram:focus { outline: none; }
.hero-instagram:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }
.hero-instagram-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.hero-instagram-handle {
  font-weight: 600;
  font-size: var(--text-body);
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-instagram:hover .hero-instagram-handle {
  background: linear-gradient(135deg, #9b4dd4 0%, #ff3d3d 50%, #ffd369 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Music toggle – compact, WCAG 2.2 (1.4.2, 4.1.2) */
.nav-music-wrap { display: flex; align-items: center; margin-right: 0.5rem; }
.nav-music-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-music-toggle:hover {
  color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.04);
}
.nav-music-toggle:focus { outline: none; }
.nav-music-toggle:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}
.nav-music-toggle[aria-pressed="true"] {
  color: var(--neon-cyan);
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.08);
}
.nav-music-toggle[aria-pressed="true"]:hover {
  background: rgba(0, 229, 255, 0.12);
}
.nav-music-icon { display: flex; align-items: center; justify-content: center; }
.nav-music-icon[hidden] { display: none !important; }

/* Language toggle - compact segmented control */
.nav-lang-wrap { display: flex; align-items: center; margin-left: 0.5rem; }
.lang-toggle {
  display: flex;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}
.lang-btn {
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-body-sm);
  letter-spacing: 0.1em;
  border: none;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--neon-cyan); }
.lang-btn[aria-pressed="true"] {
  background: rgba(0, 229, 255, 0.15);
  color: var(--neon-cyan);
  border-color: rgba(0, 229, 255, 0.4);
}
.lang-btn:focus { outline: none; }
.lang-btn:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}
.lang-toggle:focus-within .lang-btn[aria-pressed="true"] {
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.5);
}
@media (max-width: 768px) {
  .nav-lang-wrap { margin-left: 0; margin-top: 1.5rem; justify-content: center; }
  .lang-toggle { margin: 0 auto; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle:focus { outline: none; }
.nav-toggle:focus-visible { outline: 2px solid var(--neon-red); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--neon-red);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  animation: fadeInUp 1s ease-out;
}

.hero-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-text {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-text { text-align: left; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.hero-title-line {
  display: block;
}

.hero-title-line:first-child {
  color: var(--text-bright);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-title-line.neon-red {
  color: var(--neon-red);
  text-shadow: 0 0 30px rgba(255, 23, 68, 0.6), 0 0 60px rgba(255, 23, 68, 0.3);
  animation: neonPulse 2.5s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: var(--text-body-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dim);
  margin: 1.5rem 0 2.5rem;
  letter-spacing: 0.25em;
}

.hero-cta:focus { outline: none; }
.hero-cta:focus-visible { outline: 2px solid var(--neon-red); outline-offset: 2px; }
.hero-cta {
  display: inline-block;
  padding: 1rem 2.75rem;
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, transparent 100%);
  border: 1px solid rgba(255, 23, 68, 0.6);
  color: var(--neon-red);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.25em;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #ff4569 0%, var(--neon-red) 50%, #d41035 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.hero-cta:hover,
.hero-cta:focus-visible,
.hero-cta:active {
  border-color: var(--neon-red);
  box-shadow: 0 0 40px rgba(255, 23, 68, 0.5);
  transform: translateY(-2px);
}
.hero-cta:hover::before,
.hero-cta:focus-visible::before,
.hero-cta:active::before { opacity: 1; }
.hero-cta { position: relative; z-index: 1; }
.hero-cta:hover,
.hero-cta:focus-visible,
.hero-cta:active { color: #0a0a0f; }

/* Video floats - speels verspreid over de site */
.video-float {
  position: absolute;
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}
.video-float:hover {
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
  transform: scale(1.03) rotate(var(--video-rotate, 0deg));
}
.video-float:focus { outline: none; }
.video-float:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }
.video-float video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.video-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-size: var(--text-body-sm);
  color: var(--neon-cyan);
  text-align: center;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.3s;
}
.video-float:hover .video-hint {
  opacity: 1;
}

/* Video-row: op desktop transparant (children positioneren t.o.v. section), op mobiel horizontale scroll */
.video-row {
  display: contents;
}

/* Posities worden random door JS ingesteld */
.video-float-1 { /* hero - fallback */ }
.video-float-2 { /* intro - fallback */ }
.video-float-3 { /* diensten - fallback */ }
.video-float-4 { /* hands-up - fallback */ }

/* IMG_4860 alleen op mobiel (vervangt IMG_4912), op desktop verbergen */
.video-mobile-only { display: none !important; }

@media (min-width: 1600px) {
  /* Ruime marge voor video’s: voorkomt overlap bij zoom en houdt tekst leesbaar */
  .hero-content { padding-right: 480px; }
  .intro { padding-left: 480px; }
  .diensten { padding-right: 480px; }
  .hands-up { padding-right: 480px; }
  .contact { padding-left: 480px; padding-right: 480px; position: relative; overflow: visible; }
}

.intro, .diensten, .hands-up, .contact {
  position: relative;
  overflow: visible;
}

/* Min-height zodat 2 video's per sectie max ~20% overlappen (video ~533px hoog) */
@media (min-width: 1600px) {
  .intro, .diensten, .hands-up { min-height: 1100px; }
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}
.video-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* Music player verborgen alleen in Hands Up zoom-carousel (niet bij 2 voorbeelden) */
body.handsup-zoom-open .music-player {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: none !important;
}
body.handsup-zoom-open .music-player * {
  transition: none !important;
}

/* Hands Up! full-page overlay – voelt als nieuwe pagina */
.handsup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.handsup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.handsup-overlay-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 4px;
}
.handsup-overlay-close:hover {
  background: rgba(255, 255, 0, 0.15);
  border-color: var(--neon-yellow);
}

.handsup-overlay-inner {
  width: 100%;
  max-width: 900px;
  padding: 4rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100vh;
  overflow-y: auto;
}

.handsup-overlay-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--neon-yellow);
  text-align: center;
  margin: 0 0 3rem;
  letter-spacing: 0.2em;
  text-shadow: 0 0 20px rgba(255, 229, 102, 0.3);
}

.handsup-overlay-phones {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

@media (max-width: 700px) {
  .handsup-overlay-phones {
    flex-direction: column;
  }
}

/* iPhone 12 Pro mockup – Apple iPhone 12 Pro Silver.png (1530×2892) */
.handsup-phone {
  width: min(280px, 42vw);
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .handsup-phone { width: min(260px, 80vw); }
}

.handsup-phone-frame {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* Screenshot achter de frame – iets kleiner zodat het netjes binnen de rand blijft */
.handsup-phone-screen {
  position: absolute;
  left: 12.5%;
  top: 6.8%;
  width: 75%;
  height: 86.5%;
  overflow: hidden;
  z-index: 0;
  border-radius: 8%;
}

.handsup-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Klikbare telefoons */
.handsup-phone-clickable {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.handsup-phone-clickable:hover {
  transform: scale(1.03);
}

/* Hands Up zoom modal – 75% donkerdere achtergrond, zwevend kruisje */
.handsup-zoom {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.handsup-zoom.open {
  opacity: 1;
  visibility: visible;
}

.handsup-zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
}

.handsup-zoom-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: color 0.2s, transform 0.2s;
}
.handsup-zoom-close:hover {
  color: #fff;
  transform: scale(1.1);
}

.handsup-carousel-prev,
.handsup-carousel-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.handsup-carousel-prev:hover,
.handsup-carousel-next:hover {
  background: rgba(255, 23, 68, 0.3);
  color: var(--neon-red);
}
.handsup-carousel-prev { left: 1.5rem; }
.handsup-carousel-next { right: 1.5rem; }
@media (max-width: 600px) {
  .handsup-carousel-prev, .handsup-carousel-next { width: 44px; height: 44px; font-size: 1.5rem; }
  .handsup-carousel-prev { left: 0.75rem; }
  .handsup-carousel-next { right: 0.75rem; }
}

.handsup-carousel-dots {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
}
.handsup-carousel-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.handsup-carousel-dots button:hover {
  background: rgba(255, 255, 255, 0.6);
}
.handsup-carousel-dots button[aria-selected="true"] {
  background: var(--neon-red);
  transform: scale(1.2);
}

.handsup-zoom-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.handsup-zoom-phone {
  width: min(380px, 90vw);
  position: relative;
}

.handsup-zoom-phone .handsup-phone-frame {
  width: 100%;
  height: auto;
  display: block;
}

.handsup-zoom-phone .handsup-phone-screen {
  position: absolute;
  left: 12.5%;
  top: 6.8%;
  width: 75%;
  height: 86.5%;
  overflow: hidden;
  z-index: 0;
  border-radius: 8%;
}

.handsup-zoom-phone .handsup-phone-frame {
  position: relative;
  z-index: 2;
}

.handsup-zoom-phone .handsup-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.video-modal-close:hover {
  background: rgba(230, 0, 255, 0.3);
  border-color: var(--neon-pink);
}
.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 380px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
.video-modal.open .video-modal-content {
  transform: scale(1);
}
.video-modal-phone {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
}
.video-modal-frame {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.video-modal-screen {
  position: absolute;
  left: 12.5%;
  top: 6.8%;
  width: 75%;
  height: 86.5%;
  overflow: hidden;
  z-index: 1;
  border-radius: 8%;
  background: #000;
}
.video-modal-screen video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-modal-close {
  padding-bottom: 4px;
}

/* Sections */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.3em;
}
.section-title + .section-subtitle,
.section-title + .hands-up-tagline,
.section-title + .contact-subtitle { margin-top: 0; }

.contact-subtitle {
  font-size: var(--text-body);
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: var(--text-body);
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 3rem;
}

/* Intro */
.intro-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  line-height: var(--line-body);
  letter-spacing: 0.02em;
  max-width: 680px;
  margin: 0 auto;
}
.intro-text p { margin-bottom: 1.5rem; }
.intro-cta-text {
  font-size: var(--text-body-lg);
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.08em;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  padding: 2.75rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.03);
}
.pricing-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.15), 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(-8px);
}

.pricing-card-featured {
  border-color: rgba(255, 45, 146, 0.25);
}
.pricing-card-featured:hover {
  border-color: rgba(255, 45, 146, 0.5);
  box-shadow: 0 0 50px rgba(255, 45, 146, 0.15), 0 20px 50px rgba(0,0,0,0.3);
}

.card-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: linear-gradient(135deg, var(--neon-magenta) 0%, #c91a6a 100%);
  color: #fff;
  padding: 0.35rem 1rem;
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(255, 45, 146, 0.4);
}

.pricing-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.pricing-subtitle { 
  font-family: var(--font-accent); 
  font-size: var(--text-body); 
  color: var(--text-dim); 
  margin-bottom: 1.5rem; 
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex: 1;
}
.pricing-features li {
  font-size: var(--text-body);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.pricing-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
}
.pricing-card-featured .pricing-features li::before { color: var(--neon-magenta); }

.pricing-audience { font-size: var(--text-body-sm); color: var(--text-dim); margin-bottom: 0.5rem; }
.pricing-note { font-size: var(--text-body-sm); color: var(--text-dim); font-style: italic; margin-bottom: 1rem; }
.pricing-amount {
  margin-top: auto;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 1rem 0;
  text-shadow: 0 0 15px var(--neon-cyan);
}
.pricing-card-featured .pricing-amount { color: var(--neon-magenta); text-shadow: 0 0 15px var(--neon-magenta); }

.pricing-btn {
  display: block;
  margin-top: 1.75rem;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.5);
  color: var(--neon-cyan);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition: all 0.4s ease;
  border-radius: 2px;
}
.pricing-btn:focus { outline: none; }
.pricing-btn:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }
.pricing-btn:hover,
.pricing-btn:focus-visible,
.pricing-btn:active {
  background: linear-gradient(135deg, #33eeff 0%, var(--neon-cyan) 50%, #00a8c4 100%);
  color: #0a0a0f;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}
.pricing-card-featured .pricing-btn {
  border-color: rgba(255, 45, 146, 0.5);
  color: var(--neon-magenta);
}
.pricing-card-featured .pricing-btn:hover,
.pricing-card-featured .pricing-btn:focus-visible,
.pricing-card-featured .pricing-btn:active {
  background: linear-gradient(135deg, #ff6db5 0%, var(--neon-magenta) 50%, #b81a5c 100%);
  color: #0a0a0f;
  box-shadow: 0 0 30px rgba(255, 45, 146, 0.4);
}

/* Hands Up */
.hands-up { 
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 50%, rgba(0,0,0,0.1) 100%); 
}
.hands-up-tagline {
  text-align: center;
  font-size: var(--text-body);
  color: var(--neon-yellow);
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
}
.hands-up-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hands-up-visual {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hands-up-clickable {
  cursor: pointer;
  position: relative;
}
.hands-up-clickable:hover .hands-up-img {
  box-shadow: 0 0 35px rgba(255, 255, 0, 0.5);
}
.hands-up-klik {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-caption);
  color: var(--neon-yellow);
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.hands-up-clickable:hover .hands-up-klik {
  opacity: 1;
}

.hands-up-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 0, 0.5);
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.3);
  animation: handsBounce 1.5s ease-in-out infinite;
  transition: box-shadow 0.3s;
}
.hands-up-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 255, 0, 0.2) 0%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes handsBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.hands-up-text {
  flex: 1;
  min-width: 280px;
  max-width: 550px;
}
.hands-up-text p {
  margin-bottom: 1rem;
  font-size: var(--text-body);
  line-height: var(--line-body);
}

/* Contact */
.contact-form {
  max-width: 500px;
  margin: 0 auto 3rem;
}
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}
.form-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
  transition: all 0.3s;
}
.form-group textarea + label { top: 1.5rem; transform: none; }
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group:focus-within label,
.form-group.label-floated label {
  top: -0.5rem;
  left: 0;
  font-size: var(--text-caption);
  color: var(--neon-cyan);
}
/* Textarea-label: expliciet boven veld bij focus (override default top: 1.5rem) */
.form-group:focus-within textarea + label,
.form-group.label-floated textarea + label {
  top: -0.5rem !important;
  transform: none;
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--neon-red);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.2);
}
.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
  border-color: var(--neon-red);
}
.form-error-msg {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--text-caption);
  color: var(--neon-red);
}
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: transparent;
  border: 1px solid rgba(230, 0, 255, 0.5);
  color: var(--neon-pink);
  font-size: var(--text-body);
  font-weight: 700;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 4px;
}
.form-submit:focus { outline: none; }
.form-submit:focus-visible { outline: 2px solid var(--neon-pink); outline-offset: 2px; }
.form-submit:hover,
.form-submit:focus-visible,
.form-submit:active {
  background: linear-gradient(135deg, #ff33dd 0%, var(--neon-pink) 50%, #c200b8 100%);
  color: #0a0a0f;
  border-color: var(--neon-pink);
  box-shadow: 0 0 40px rgba(230, 0, 255, 0.35);
}

.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(255, 23, 68, 0.4);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3), 0 0 40px rgba(255, 23, 68, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 23, 68, 0.5), 0 0 50px rgba(255, 23, 68, 0.25);
}
.contact-whatsapp:focus { outline: none; }
.contact-whatsapp:focus-visible {
  outline: 2px solid var(--neon-red);
  outline-offset: 2px;
}
.whatsapp-icon {
  width: 24px;
  height: 24px;
}

.contact-info {
  text-align: center;
  color: var(--text-dim);
  padding-bottom: 6rem;
}
/* WCAG 4.5:1 contrast op donkere achtergrond */
.contact-link {
  display: inline-block;
  color: #7df9ff;
  text-decoration: none;
  margin: 0 1rem 0.5rem;
  transition: text-shadow 0.3s, color 0.2s;
}
.contact-link:hover { color: #99fbff; text-shadow: 0 0 10px rgba(0, 229, 255, 0.6); }

/* Floating Music Player - Luxe */
.music-player {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 3 statussen: minimal (alleen label), player (nummer + controls), playlist */
.music-player.state-minimal .music-player-row {
  display: none !important; /* voorkom flash van player-view bij overgang vanuit playlist */
}
.music-player.state-minimal .music-player-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  margin: 0;
  border: none;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.music-player.state-minimal .music-player-handle {
  transform: rotate(0);
}

.music-player.state-player .music-playlist { display: none; }
.music-player.state-playlist .music-player-row { display: none; }

.music-player-handle {
  width: 64px;
  height: 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--neon-cyan);
  transition: all 0.3s;
  box-shadow: 0 -4px 20px rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(10px);
}
.music-player-handle:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
}

.music-player-handle.draw-attention {
  animation: musicPlayerAttention 2s ease-in-out 3;
}

@keyframes musicPlayerAttention {
  0%, 100% {
    box-shadow: 0 -4px 20px rgba(0, 229, 255, 0.1);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.6), 0 0 90px rgba(0, 229, 255, 0.35);
    opacity: 1;
  }
}

.music-player-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  max-height: 400px;
  background: linear-gradient(180deg, rgba(6,6,11,0.95) 0%, rgba(3,3,6,0.98) 100%);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  transition: all 0.4s;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4), 0 0 40px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(20px);
}

.music-player-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.75rem;
}

.music-playlist {
  overflow: hidden;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
}

.music-playlist-item {
  padding: 0.5rem 0.75rem;
  margin: 0.25rem 0;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-dim);
  font-size: var(--text-body-sm);
  transition: color 0.2s, background 0.2s;
}

.music-playlist-item:hover {
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.08);
}

.music-playlist-item.active {
  color: var(--neon-cyan);
  font-weight: 600;
}

.music-mute {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 0.4rem 0.5rem;
  transition: all 0.3s;
}
.music-mute:hover { 
  transform: scale(1.1); 
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.05);
}
.music-mute .music-muted { display: none; }
.music-player.muted .music-mute .music-muted { display: inline; }
.music-player.muted .music-mute .music-mute-icon:not(.music-muted) { display: none; }

.music-info {
  display: flex;
  flex-direction: column;
  min-width: 110px;
}
.music-label { 
  font-size: var(--text-micro); 
  color: var(--text-dim); 
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.music-track { 
  font-family: var(--font-accent);
  font-size: var(--text-body); 
  font-weight: 500;
  color: var(--neon-cyan);
}

.music-controls { display: flex; gap: 0.4rem; }
.music-controls button {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: var(--text-body-sm);
  transition: all 0.3s;
}
.music-controls button:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

/* Tijdelijk uitgeschakeld tot activatie WhatsApp Business */
/*
.whatsapp-widget { position: fixed; bottom: 0.75rem; right: 1.5rem; z-index: 199; }
.whatsapp-float {
  width: 56px; height: 56px; padding: 0; border: none; cursor: pointer;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 20px rgba(0, 229, 255, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.4); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 0 32px rgba(0, 229, 255, 0.4); }
.whatsapp-float:focus { outline: none; }
.whatsapp-float:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; }
.whatsapp-popup {
  position: absolute; bottom: calc(100% + 12px); right: 0; width: 320px; max-width: calc(100vw - 2rem);
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.whatsapp-widget.open .whatsapp-popup { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.whatsapp-popup-inner { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35); }
.whatsapp-popup-header {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%); color: #fff;
}
.whatsapp-popup-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.whatsapp-popup-info { flex: 1; }
.whatsapp-popup-name { font-weight: 600; font-size: var(--text-body); display: block; }
.whatsapp-popup-status { font-size: var(--text-caption); opacity: 0.9; }
.whatsapp-popup-close { background: none; border: none; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 4px; opacity: 0.9; }
.whatsapp-popup-close:hover { opacity: 1; }
.whatsapp-popup-body { padding: 16px; background: #f0f2f5; }
.whatsapp-popup-msg {
  background: #fff; padding: 10px 14px; border-radius: 12px 12px 4px 12px; margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 8px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.whatsapp-popup-time { font-size: var(--text-micro); color: #667781; }
.whatsapp-popup-cta {
  display: block; text-align: center; padding: 12px 20px; background: #25D366; color: #fff;
  font-weight: 600; font-size: var(--text-body-sm); border-radius: 10px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-popup-cta:hover { background: #20bd5a; color: #fff; transform: translateY(-1px); }
*/

/* Mobile & Tablet – grid layout, video’s overlappen nooit tekst (ook bij zoom) */
@media (max-width: 1599px) {
  .hero-content { padding-right: 0; }
  .intro, .diensten, .hands-up, .contact { padding-left: 0; padding-right: 0; }
  .intro, .diensten, .hands-up { min-height: 0 !important; }

  /* Hero video verbergen op mobiel (staat in contact) */
  .hero-video-preview { display: none !important; }

  /* Video-row: vast 2-koloms grid, gelijke max-width voor consistente afstand tussen alle videos */
  .video-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    margin: 1rem auto;
    max-width: min(1100px, calc(100% - 2rem));
    box-sizing: border-box;
  }

  .video-row .video-float {
    flex: none;
    width: 100% !important;
    max-width: 300px !important; /* Niet groter dan floating layout (default modus) */
    aspect-ratio: 9/16;
    justify-self: center; /* Gecentreerd in cel bij smalle viewport */
  }

  .video-float {
    position: relative !important;
    margin: 0 !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: 100% !important;
  }
  .video-float:hover { transform: scale(1.02) !important; }

  /* IMG_4912 verbergen op mobiel, IMG_4860 tonen (6 unieke videos) */
  .video-desktop-only { display: none !important; }
  .video-mobile-only { display: block !important; }

  /* Tijdelijk uit – WhatsApp widget */
  /* .whatsapp-widget { bottom: 5rem; right: 1rem; transition: opacity 0.25s ease, visibility 0.25s; } */

  /* Video modal: géén frame op mobiel, fullscreen */
  .video-modal { padding: 0; }
  .video-modal-content {
    max-width: none;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }
  .video-modal-phone {
    width: 100%;
    height: 100%;
  }
  .video-modal-frame { display: none !important; }
  .video-modal-screen {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
  }
  .video-modal-screen video {
    object-fit: contain;
  }
}

/* Contact video-row verbergen op desktop */
@media (min-width: 1600px) {
  .video-row-contact { display: none !important; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; }

  /* Backdrop – donkere overlay, blurende website erachter */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
  }
  .nav.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }
  /* Tijdelijk uit – WhatsApp widget */
  /* .nav.menu-open ~ .whatsapp-widget { visibility: hidden; opacity: 0; pointer-events: none; transition: opacity 0.25s ease, visibility 0.25s; } */

  /* Menu – smaller, strakker, met subtiele afronding */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 280px;
    height: 100vh;
    height: 100dvh;
    z-index: 99;
    background: linear-gradient(180deg, rgba(8, 8, 14, 0.98) 0%, rgba(4, 4, 8, 0.99) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 16px 0 0 16px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open { right: 0; }
  .nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-links > li {
    border-radius: 8px;
  }
  .nav-links > li > a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .nav-links .nav-music-wrap { margin-top: 0.75rem; margin-right: 0; }
  .nav-links .nav-lang-wrap {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .section { padding: 4rem 1rem; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hands-up-content { flex-direction: column; }
  .hero-intro { flex-direction: column; }
  .hero-photo { width: 180px; height: 180px; }
}
