/* ═══════════════════════════════════════════════
   WEBBIECORN — Gedeelde stijlen
   ═══════════════════════════════════════════════ */

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

:root {
  --black:      #0d0d0d;
  --black-mid:  #161616;
  --black-card: #1a1a1a;
  --red: #FF3355;
    --red-glow: 0 0 20px rgba(255, 51, 85, 0.4);
  --red-dark:   #b02240;
  --white:      #ffffff;
  --grey:       #888888;
  --border:     rgba(255,255,255,0.08);

    --glass-bg: rgba(20, 20, 22, 0.6);}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'SF Pro Display', sans-serif;
  background: radial-gradient(circle at 50% 0%, #1a0b10 0%, #0d0d0f 40%, #0d0d0f 100%);
  color: var(--white);
  overflow-x: hidden;
  animation: fade-in 0.4s ease-out forwards;
}

body.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}



h1, h2, h3, h4, h5, .nav-logo-text, .hero-eyebrow, .section-label, .avail-badge, .nav-links li a, .btn-primary, .btn-ghost, .stat-number, .stat-label {
  font-family: 'Inter', 'SF Pro Display', sans-serif;
}

/* ── NAVBAR ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
nav.solid {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text {
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: -0.5px; color: var(--white); line-height: 1;
}
.nav-logo-text span { color: var(--red); }

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li a {
  position: relative;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem; font-weight: 600;
  padding: 0.4rem 1.1rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px) saturate(160%);
  padding: 1.25rem 2rem 1.75rem;
  z-index: 99;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 1.05rem;
  font-weight: 600; padding: 0.8rem 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .nav-cta-mobile {
  display: block; margin-top: 1.2rem;
  background: var(--red); color: var(--white);
  text-align: center; padding: 0.85rem;
  border-radius: 4px; font-weight: 700;
  text-decoration: none; font-size: 1rem; border-bottom: none;
}
.mobile-menu .nav-cta-mobile:hover { background: var(--red-dark); color: var(--white); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px);     box-shadow: var(--red-glow);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px);     box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* ── SECTIONS ─────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.section-title em { font-style: normal; color: var(--red); }
.section-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 560px;
}

/* ── REVEAL ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PAGE HERO (subpagina's) ──────────────────── */
.page-hero {
  padding: 10rem 2rem 6rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,43,75,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.08; margin-bottom: 1.5rem;
  max-width: 700px;
}
.page-hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 540px;
}

/* ── OVER KAARTEN ─────────────────────────────── */
.over-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.over-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 8px; padding: 2.5rem;
}
.over-card p { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 1rem; }
.over-card p + p { margin-top: 1rem; }
.team-grid { display: flex; flex-direction: column; gap: 1rem; }
.team-member {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.team-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.team-name { font-weight: 700; font-size: 0.95rem; }
.team-role { color: var(--grey); font-size: 0.8rem; margin-top: 2px; }

/* ── DIENSTEN ─────────────────────────────────── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.dienst-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem;
  cursor: default;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.dienst-card:hover { border-color: var(--red);     transform: translateY(-8px);
    box-shadow: var(--red-glow);
}
.dienst-link-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.dienst-link-row {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.dienst-link-card:hover .dienst-link-row { gap: 0.7rem; }
.dienst-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.dienst-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.dienst-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; }
.dienst-features { list-style: none; margin-top: 1.25rem; }
.dienst-features li {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem; padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.dienst-features li::before { content: '→'; color: var(--red); font-size: 0.75rem; }
.dienst-price {
  margin-top: 1.5rem;
  font-size: 0.8rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.5px;
}
.dienst-card[id] { scroll-margin-top: 110px; }

.foto-addon {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.foto-addon-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.foto-addon-content {
  flex: 1 1 420px;
}
.foto-addon-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.foto-addon-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 800px;
}

/* ── CASES ─────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.case-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s;
  text-decoration: none; color: var(--white);
  display: block;
}
.case-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.case-card:hover::before { transform: scaleX(1); }
.case-card:hover { transform: translateY(-4px); }
.case-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.75rem;
}
.case-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.case-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; }
.case-meta {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.case-chip {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem;
  background: rgba(217,43,75,0.12);
  border: 1px solid rgba(217,43,75,0.25);
  border-radius: 100px; color: rgba(255,255,255,0.7);
}
.case-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.proof-strip {
  background: rgba(217,43,75,0.03);
  border-top: 1px solid rgba(217,43,75,0.12);
  border-bottom: 1px solid rgba(217,43,75,0.12);
}
.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.proof-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s;
}
.proof-item:hover {
  border-color: rgba(217,43,75,0.4);
  transform: translateY(-4px);
}
.proof-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.proof-headline {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.proof-text {
  color: rgba(255,255,255,0.58);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.package-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}
.package-card.featured {
  border-color: rgba(217,43,75,0.5);
  background: linear-gradient(135deg, rgba(217,43,75,0.08) 0%, var(--black-card) 70%);
}
.package-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  background: rgba(217,43,75,0.12);
  border: 1px solid rgba(217,43,75,0.3);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
}
.package-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.package-price span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.package-desc {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.package-list {
  list-style: none;
}
.package-list li {
  color: rgba(255,255,255,0.65);
  font-size: 0.84rem;
  line-height: 1.55;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
}
.package-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.package-actions .btn-primary,
.package-actions .btn-ghost {
  padding: 0.8rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 1px;
}
.package-actions .btn-ghost {
  border-color: rgba(255,255,255,0.14);
}
.package-actions .btn-ghost:hover {
  border-color: rgba(217,43,75,0.35);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.metric-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.25rem;
}
.metric-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.metric-copy {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.55;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.deliverable-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.deliverable-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.deliverable-card p {
  color: rgba(255,255,255,0.56);
  font-size: 0.84rem;
  line-height: 1.6;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.detail-panel {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.detail-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.detail-panel p,
.detail-panel li {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  line-height: 1.7;
}
.detail-panel ul {
  list-style: none;
  margin-top: 1rem;
}
.detail-panel li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.related-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
}
.related-links a:hover {
  border-color: rgba(217,43,75,0.35);
  color: var(--red);
}

@media (max-width: 900px) {
  .detail-split { grid-template-columns: 1fr; }
}

/* ── MARQUEE TEXT BAND ───────────────────────── */

  100% { transform: translateX(-50%); }
}

/* ── CONTACT ─────────────────────────────────── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px; color: var(--white);
  font-family: 'Inter', 'SF Pro Display', sans-serif;
  font-size: 0.95rem; padding: 0.85rem 1rem;
  outline: none; transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--red); }
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--black-card); }
.contact-form textarea { min-height: 140px; }
.contact-form button {
  background: var(--red); color: var(--white);
  border: none; padding: 0.85rem 2rem;
  border-radius: 4px; font-weight: 700;
  font-size: 0.95rem; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.contact-form button:hover { background: var(--red-dark); transform: translateY(-2px); }
.contact-info { color: rgba(255,255,255,0.55); line-height: 2; font-size: 0.95rem; }
.contact-info strong { color: var(--white); display: block; margin-bottom: 0.5rem; font-size: 1.1rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.contact-detail-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.35rem;
}
.contact-detail-value { font-size: 0.95rem; color: rgba(255,255,255,0.7); }

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(217,43,75,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow-orb {
  position: absolute;
  top: -40%; right: -10%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(217,43,75,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.cta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(217,43,75,0.7);
  margin-bottom: 1rem;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.45);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 480px; margin: 0 auto 2.5rem;
  position: relative;
}
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── WAARDEKAARTEN ───────────────────────────── */
.waarden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.waarde-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem;
  transition: border-color 0.3s;
}
.waarde-card:hover { border-color: rgba(217,43,75,0.4); }
.waarde-nr {
  font-size: 2rem; font-weight: 800;
  color: rgba(217,43,75,0.25); line-height: 1;
  margin-bottom: 0.75rem;
}
.waarde-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.waarde-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── PROCESS STEPS ───────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 2rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.process-nr {
  font-size: 1.5rem; font-weight: 800;
  color: var(--red); flex-shrink: 0; line-height: 1; min-width: 2rem;
}
.process-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.process-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  text-align: center; padding: 2rem;
  color: rgba(255,255,255,0.35); font-size: 0.85rem;
}
footer a { color: var(--red); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover, .faq-item[open] { border-color: rgba(217,43,75,0.35); }
.faq-item summary {
  padding: 1.25rem 1.75rem;
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 400;
  color: var(--red); flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.75rem 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem; line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* ── SOCIAL PROOF / QUOTES ───────────────────── */
#social-proof { background: var(--black); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.quote-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  position: relative; transition: border-color 0.3s;
}
.quote-card:hover { border-color: rgba(217,43,75,0.3); }
.quote-mark {
  font-size: 3.5rem; line-height: 0.8;
  color: var(--red); opacity: 0.35;
  font-family: 'Inter', 'SF Pro Display', sans-serif;
  margin-bottom: 1rem; user-select: none;
}
.quote-text {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; margin-bottom: 1.5rem;
  font-style: italic;
}
.quote-author { display: flex; align-items: center; gap: 0.85rem; }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(217,43,75,0.15);
  border: 1px solid rgba(217,43,75,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--red);
  flex-shrink: 0;
}
.quote-name { font-size: 0.875rem; font-weight: 700; }
.quote-role { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

/* ── TEASER SECTIONS (homepage) ──────────────── */
.teaser-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--red); font-weight: 700; font-size: 0.9rem;
  text-decoration: none; margin-top: 1.5rem;
  transition: gap 0.2s;
}
.teaser-link:hover { gap: 0.75rem; }

/* ── SHIMMER TEXT ───────────────────────────── */
@keyframes shimmer-text {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-title em,
.page-hero-title em {
  background: linear-gradient(90deg, #D92B4B 0%, #ff6080 38%, #ffb0be 56%, #D92B4B 100%);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 5s ease-in-out infinite;
}

/* ── SCROLL PROGRESS BAR ────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff6080);
  z-index: 9999;
  box-shadow: 0 0 12px rgba(217,43,75,0.8), 0 0 5px rgba(217,43,75,0.5);
  pointer-events: none;
}

/* ── STATS STRIP ─────────────────────────────── */
/* ── CURSOR SPOTLIGHT ───────────────────────── */
#cursor-spotlight {
  position: fixed;
  pointer-events: none;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,43,75,0.06) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s;
  will-change: left, top;
}
#cursor-spotlight.active { opacity: 1; }

/* ── BUTTON GLOW ─────────────────────────────── */
.btn-primary {
  box-shadow: 0 4px 20px rgba(217,43,75,0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(217,43,75,0.5);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .over-grid, .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 4rem 1.25rem; }
  .page-hero { padding: 8rem 1.25rem 4rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .process-step { flex-direction: column; gap: 0.75rem; }
}
@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* IMAGE SECTIONS & SPLIT LAYOUTS */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 6rem 0;
}
.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr; /* Reset text direction inside */
}
.split-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--black-card);
  border: 1px solid var(--border);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-layout:hover .split-image img {
  transform: scale(1.05);
}

/* IMAGE CASE CARDS */
.case-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.case-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black-mid);
  border-bottom: 1px solid var(--border);
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-image img {
  transform: scale(1.05);
}
.case-content {
  padding: 2rem;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .foto-addon {
    align-items: flex-start;
    gap: 1rem;
  }
}


h1, h2, h3 {
    letter-spacing: -0.03em;
}

/* ═══ HERO MESH CANVAS ═══════════════════════ */
#hero-mesh {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ═══ HERO TITLE XL ═══════════════════════════ */
.hero-title-xl {
  font-size: clamp(3.2rem, 8vw, 6.5rem) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: -3px !important;
}
@media (max-width: 768px) {
  .hero-title-xl { letter-spacing: -1.5px !important; }
}

/* ═══ END-TO-END STAT ═════════════════════════ */
.end-to-end-stat {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
  -webkit-text-fill-color: var(--white);
  letter-spacing: -0.5px;
}

/* ═══ SECTION DIVIDERS ═══════════════════════ */
.section-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ═══ PREMIUM FOOTER ════════════════════════ */
#site-footer {
  background: #030303;
  position: relative;
  text-align: left;
  padding: 0;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,43,75,0.5), transparent);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* CTA Block */
.footer-cta-block {
  text-align: center;
  padding: 6rem 2rem 5rem;
  position: relative;
}
.footer-cta-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.footer-cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.footer-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.footer-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #D92B4B, #ff7b94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-sub {
  color: rgba(255,255,255,0.4);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.footer-btn {
  border-radius: 100px;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 0;
  padding: 5rem 0 4rem;
  align-items: start;
}
.footer-col {
  padding: 0 2.5rem;
}
.footer-col:first-child {
  padding-left: 0;
  padding-right: 3.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.footer-col:not(:first-child) {
  padding-top: 0.25rem;
}
.footer-col:not(:first-child):not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.04);
}
.footer-col:last-child {
  padding-right: 0;
  padding-left: 2.5rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.38rem 0;
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 32px; height: 32px;
}
.footer-logo span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo em {
  font-style: normal;
  color: var(--red);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 220px;
}
.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-kvk {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-family: monospace;
  letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-built {
  color: rgba(255,255,255,0.15);
}
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .footer-col {
    padding: 2rem 2rem 0 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .footer-col:first-child {
    grid-column: span 2;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 2rem;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col {
    padding: 1.5rem 0 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  }
  .footer-col:first-child {
    grid-column: span 1;
    padding-bottom: 1.5rem;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ═══ ENHANCED HOVER GLOW ═══════════════════ */
.premium-card,
.lab-card,
.dienst-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.premium-card:hover,
.lab-card:hover,
.dienst-card:hover {
  box-shadow: 0 0 0 1px rgba(217,43,75,0.2), 0 20px 60px rgba(217,43,75,0.08);
}

/* ═══ REDUCED MOTION ════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .aurora-glow { animation: none; }
  .hero-gradient-text { animation: none; background: var(--red) !important; -webkit-background-clip: text; }
  .ticker-scroll { animation: none; }
  .reveal, .gsap-reveal, .gsap-reveal-left, .gsap-reveal-right {
    opacity: 1 !important; transform: none !important;
  }
}
