/* ============================================
   VAN DER VELDE ENERGY — DESIGN SYSTEM
   ============================================ */

:root {
  /* Colors - light theme (default) */
  --black: #0A0A0A;
  --charcoal: #141414;
  --grey-950: #1A1A1A;
  --grey-900: #262626;
  --grey-800: #404040;
  --grey-500: #737373;
  --grey-300: #D4D4D4;
  --grey-200: #E5E5E5;
  --grey-100: #F5F5F5;
  --grey-50: #FAFAFA;
  --white: #FFFFFF;
  --orange: #F1B707;
  --orange-light: #F5C63A;
  --orange-dark: #D89E00;
  --orange-glow: rgba(241, 183, 7, 0.35);
  --gold: #F1B707;

  /* Semantic (theme-aware) tokens */
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --fg: #0A0A0A;
  --fg-muted: #525252;
  --fg-dim: #737373;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.16);
  --nav-bg: rgba(255, 255, 255, 0.72);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Spacing */
  --container: 1320px;
  --gutter: 32px;
  --radius: 20px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-alt: #141414;
  --bg-card: #1A1A1A;
  --bg-elevated: #242424;
  --fg: #FAFAFA;
  --fg-muted: #D0D0D0;
  --fg-dim: #BABABA;
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --nav-bg: rgba(20, 20, 20, 0.78);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--orange); color: var(--white); }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.loader-brand em { color: var(--orange); font-style: normal; }
.loader-mark { font-size: 26px; }
.loader-bar {
  width: 240px; height: 2px; background: var(--grey-900);
  border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%; background: var(--orange);
  animation: loaderFill 1.4s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [data-hover] { cursor: none; }

  .cursor {
    position: fixed; top: 0; left: 0; z-index: 10000;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--black);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.2s;
    mix-blend-mode: difference;
  }
  .cursor.hover {
    transform: translate(-50%, -50%) scale(3);
    background: var(--orange);
  }
  .cursor-glow {
    position: fixed; top: 0; left: 0; z-index: 9998;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.6s var(--ease-out), opacity 0.4s;
    filter: blur(20px);
  }
}
@media (hover: none) {
  .cursor, .cursor-glow { display: none; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform-origin: 0 50%; transform: scaleX(0);
  z-index: 200;
  transition: transform 0.1s linear;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: 0s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: als reveal 4s in de DOM staat zonder ".visible", of als user reduced-motion wil,
   of als JS uit staat, moet content sowieso zichtbaar zijn. */
.no-js .reveal, .no-js .reveal-line span {
  opacity: 1 !important; transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-line span { transform: translateY(0); transition: none; }
}
.reveal-line {
  display: block; overflow: hidden;
  /* extra ruimte zodat descenders van italic letters (g, p, j, y) niet worden afgekapt */
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.reveal-line span {
  display: block;
  transform: translateY(100%);
  transition: transform 1s var(--ease-out);
  /* geeft italic descenders visuele ruimte */
  padding-bottom: 0.05em;
}
.reveal-line.visible span {
  transform: translateY(0);
}
.reveal-line:nth-child(2) span { transition-delay: 0.15s; }
.reveal-line:nth-child(3) span { transition-delay: 0.3s; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.03);
}
.nav.hero-mode .nav-brand,
.nav.hero-mode .nav-links a,
.nav.hero-mode .nav-phone { color: var(--white); }
.nav.hero-mode.scrolled .nav-brand,
.nav.hero-mode.scrolled .nav-links a,
.nav.hero-mode.scrolled .nav-phone { color: var(--black); }
.nav.hero-mode.scrolled .nav-brand em { color: var(--orange); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.5px;
  transition: color 0.3s;
}
.nav-brand em { color: var(--orange); font-style: normal; }
.nav-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--orange);
  color: var(--white); font-size: 18px;
  box-shadow: 0 4px 12px var(--orange-glow);
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  border-radius: 8px;
  color: var(--grey-900);
  transition: all 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute;
  bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 20px; }

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--grey-900);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--orange); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.1px;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--orange-glow);
}
.btn-secondary {
  background: var(--black);
  color: var(--white);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366; color: var(--white);
}
.btn-whatsapp:hover {
  background: #1EBE5D; transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px var(--gutter) 100px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.08); }
  100% { transform: scale(1.18); }
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.7) 0%, transparent 50%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px; font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--orange-glow); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 32px;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, #FFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-lead {
  font-size: clamp(17px, 1.6vw, 22px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin-bottom: 44px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-scroll {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}
.scroll-indicator {
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  position: relative;
}
.scroll-line {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 8px; border-radius: 2px;
  background: var(--white);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

.hero-side {
  position: absolute;
  right: var(--gutter);
  bottom: 120px;
  z-index: 3;
}
.hero-stats-card {
  padding: 24px 28px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 24px;
}
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.glass-dark {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hsc-row { text-align: left; }
.hsc-num {
  font-size: 36px; font-weight: 800; color: var(--white);
  letter-spacing: -1.5px; line-height: 1;
}
.hsc-label {
  font-size: 11px; color: rgba(255,255,255,0.85);
  margin-top: 6px; letter-spacing: 0.5px;
  line-height: 1.3;
}
.hsc-divider {
  width: 1px; height: 44px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 900px) {
  .hero-side { display: none; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  padding: 20px 0;
  background: var(--black); color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  font-size: 14px; font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}
.marquee-track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  padding: 80px var(--gutter);
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.trust-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -2px;
  line-height: 1;
}
.trust-num span {
  background: linear-gradient(135deg, var(--black) 0%, var(--grey-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-label {
  margin-top: 10px;
  font-size: 13px; color: var(--grey-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============================================
   SECTIONS (BASE)
   ============================================ */
.section { padding: 130px var(--gutter); position: relative; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.7); }
.eyebrow-line {
  width: 32px; height: 1px; background: var(--orange);
}
.eyebrow-line.light { background: rgba(255,255,255,0.4); }
.section-title {
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--black);
}
.section-title.light { color: var(--white); }
.section-title em, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -1px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--grey-500);
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.5;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section { background: var(--grey-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.service-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card::after {
  content: ""; position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15), 0 0 0 1px rgba(245,166,35,0.2);
}
.service-card.featured {
  background: linear-gradient(180deg, var(--white) 0%, #FFF9F4 100%);
  border-color: rgba(245,166,35,0.2);
}
.sc-featured-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 5px 10px; border-radius: 100px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.sc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--black); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .sc-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}
.sc-tag {
  display: inline-block;
  padding: 3px 10px; border-radius: 100px;
  background: var(--grey-100);
  font-size: 11px; font-weight: 600;
  color: var(--grey-800);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--black);
}
.service-card p {
  font-size: 14px; color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sc-list {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}
.sc-list li {
  font-size: 13px; color: var(--grey-800);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.4;
}
.sc-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 12px; height: 2px; background: var(--orange);
}
.sc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--black);
  transition: gap 0.3s;
}
.service-card:hover .sc-cta { color: var(--orange); gap: 10px; }

/* ============================================
   WHY US
   ============================================ */
.why {
  position: relative;
  padding: 140px var(--gutter);
  color: var(--white);
  overflow: hidden;
}
.why-bg { position: absolute; inset: 0; z-index: 0; }
.why-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4;
}
.why-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--black) 0%, rgba(10,10,10,0.9) 30%, rgba(10,10,10,0.95) 100%);
}
.why .section-inner { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.why-intro { position: sticky; top: 120px; }
.why-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin: 28px 0 40px;
  max-width: 460px;
  line-height: 1.6;
}
.why-badge {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.wb-avatars {
  display: flex; align-items: center;
}
.wb-avatars img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--black);
  object-fit: cover;
  margin-left: -12px;
}
.wb-avatars img:first-child { margin-left: 0; }
.why-badge strong {
  font-size: 14px; font-weight: 700; color: var(--white);
}
.why-badge span {
  font-size: 12px; color: rgba(255,255,255,0.82);
}

.why-list {
  display: flex; flex-direction: column;
  gap: 12px;
}
.why-item {
  display: flex; gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  cursor: default;
}
.why-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(245,166,35,0.3);
  transform: translateX(6px);
}
.wi-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}
.wi-content h4 {
  font-size: 20px; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.wi-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-intro { position: static; }
}

/* ============================================
   CALCULATOR
   ============================================ */
.calc-section {
  background:
    linear-gradient(180deg, #FFF9F4 0%, var(--white) 100%);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.calc-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.08);
}
.calc-slider { margin-bottom: 28px; }
.calc-slider label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
  font-size: 13px; font-weight: 500;
  color: var(--grey-800);
}
.calc-slider output {
  font-size: 16px; font-weight: 700;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.calc-slider input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--grey-100);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.calc-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px var(--orange-glow);
  transition: transform 0.15s;
}
.calc-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.calc-slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px var(--orange-glow);
}

/* Onafhankelijkheids-progressbar */
.calc-indep {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px dashed var(--border);
}
.calc-indep-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.calc-indep-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--fg-muted);
}
.calc-indep-value {
  font-family: var(--font-serif); font-style: italic;
  font-size: 32px; font-weight: 400;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.calc-indep-bar {
  height: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.calc-indep-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-light));
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px rgba(241, 183, 7, 0.4);
}
.calc-indep-scale {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 10px; color: var(--fg-dim);
  letter-spacing: 0.3px;
}

.calc-results {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}
.cr-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--grey-50);
  border-radius: 12px;
  transition: all 0.3s;
}
.cr-item:hover {
  background: var(--black);
  color: var(--white);
}
.cr-item:hover .cr-value { color: var(--orange); }
.cr-value {
  font-size: 22px; font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.cr-label {
  font-size: 10px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   PROCESS
   ============================================ */
.process-section { background: var(--white); position: relative; }
.process-line {
  position: absolute;
  top: 320px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.3;
  z-index: 0;
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative; z-index: 1;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
}
.ps-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 84px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -3px;
}
.ps-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--black); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.4s var(--ease);
}
.process-step:hover .ps-icon {
  transform: rotate(-8deg) scale(1.05);
  background: var(--orange);
  color: var(--white);
}
.process-step h4 {
  font-size: 22px; font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.process-step p {
  font-size: 14px; color: var(--grey-500);
  margin-bottom: 16px;
  line-height: 1.6;
}
.ps-time {
  font-size: 11px; font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-line { display: none; }
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-section { background: var(--grey-50); }
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  border: 1px solid var(--grey-200);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
}
.proj-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-100);
}
.proj-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.project-card:hover .proj-img img { transform: scale(1.08); }
.proj-info { padding: 24px 24px 28px; }
.proj-meta {
  font-size: 11px; font-weight: 600;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proj-info h4 {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.proj-info p {
  font-size: 13px; color: var(--grey-500);
  line-height: 1.5;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section { background: var(--white); }
.stars {
  font-size: 24px;
  color: var(--orange);
  letter-spacing: 6px;
  margin-top: 20px;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--grey-50);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--grey-100);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -20px; right: 20px;
  font-family: var(--font-serif);
  font-size: 140px;
  color: var(--orange);
  opacity: 0.1;
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
}
.review-stars {
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  color: var(--grey-800);
  line-height: 1.6;
  margin-bottom: 24px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
}
.ra-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--black), var(--grey-800));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.review-author strong {
  font-size: 14px; font-weight: 700;
  display: block; color: var(--black);
}
.review-author span {
  font-size: 12px; color: var(--grey-500);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  position: relative;
  padding: 140px var(--gutter);
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  filter: blur(80px);
  animation: ctaGlow 8s ease-in-out infinite alternate;
  opacity: 0.5;
}
@keyframes ctaGlow {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.2); }
}
.cta-final .section-inner { position: relative; z-index: 1; }
.cta-content { max-width: 800px; margin: 0 auto; }
.cta-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin: 20px 0 24px;
  color: var(--white);
}
.cta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.cta-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-guarantees {
  display: flex; gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cg-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.cg-item svg { color: var(--orange); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.82);
  padding: 100px var(--gutter) 40px;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-block {
  max-width: 320px;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.footer-brand em { color: var(--orange); font-style: normal; }
.fb-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--orange); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px var(--orange-glow);
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.footer-contact {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13px;
}
.footer-contact a, .fc-addr {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact svg { color: var(--orange); flex-shrink: 0; }

.footer-col h5 {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  flex-wrap: wrap; gap: 12px;
}
.fb-legal { display: flex; gap: 20px; }
.fb-legal a { color: rgba(255,255,255,0.78); }
.fb-legal a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease);
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.35), 0 0 0 20px transparent; }
}
.wa-float:hover {
  transform: scale(1.1) rotate(-4deg);
  background: #1EBE5D;
}

/* ============================================
   RESPONSIVE — MOBILE TWEAKS
   ============================================ */
@media (max-width: 640px) {
  .section { padding: 90px 20px; }
  .hero { padding: 110px 20px 80px; }
  .section-header { margin-bottom: 60px; }
  .hero-title { letter-spacing: -1.5px; }
  .why { padding: 90px 20px; }
  .why-item { padding: 22px; }
  .calc-card { padding: 28px 24px; }
  .review-card { padding: 24px; }
  .cta-final { padding: 90px 20px; }
  footer { padding: 60px 20px 30px; }
}

/* ============================================
   DARK MODE OVERRIDES
   ============================================ */
[data-theme="dark"] body { background: var(--bg); color: var(--fg); }
[data-theme="dark"] .nav.scrolled { background: var(--nav-bg); border-bottom-color: var(--border); }
[data-theme="dark"] .nav.hero-mode.scrolled .nav-brand,
[data-theme="dark"] .nav.hero-mode.scrolled .nav-links a,
[data-theme="dark"] .nav.hero-mode.scrolled .nav-phone { color: var(--fg); }
[data-theme="dark"] .nav-links a { color: var(--fg); }
[data-theme="dark"] .nav-phone { color: var(--fg); }
[data-theme="dark"] .services-section { background: var(--bg-alt); }
[data-theme="dark"] .service-card {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--fg);
}
[data-theme="dark"] .service-card h3 { color: var(--fg); }
[data-theme="dark"] .service-card p { color: var(--fg-muted); }
[data-theme="dark"] .sc-list li { color: var(--fg-muted); }
[data-theme="dark"] .sc-tag { background: var(--bg-elevated); color: var(--fg-muted); }
[data-theme="dark"] .sc-icon { background: var(--bg-elevated); color: var(--orange); }
[data-theme="dark"] .section-title { color: var(--fg); }
[data-theme="dark"] .section-subtitle { color: var(--fg-muted); }
[data-theme="dark"] .trust { background: var(--bg); border-bottom-color: var(--border); }
[data-theme="dark"] .trust-num,
[data-theme="dark"] .trust-num span {
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--fg);
}
[data-theme="dark"] .trust-label { color: var(--fg-dim); }
[data-theme="dark"] .calc-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="dark"] .cr-item { background: var(--bg-elevated); color: var(--fg); }
[data-theme="dark"] .cr-value { color: var(--fg); }
[data-theme="dark"] .cr-label { color: var(--fg-muted); }
[data-theme="dark"] .cr-item:hover { background: var(--orange); color: #0A0A0A; }
[data-theme="dark"] .cr-item:hover .cr-value { color: #0A0A0A; }
[data-theme="dark"] .review-card { background: var(--bg-card); border-color: var(--border); color: var(--fg); }
[data-theme="dark"] .review-text { color: var(--fg-muted); }
[data-theme="dark"] .project-card { background: var(--bg-card); border-color: var(--border); }
[data-theme="dark"] .project-card .proj-info h4 { color: var(--fg); }
[data-theme="dark"] .project-card .proj-info p { color: var(--fg-muted); }
[data-theme="dark"] .process-step { background: var(--bg-card); border-color: var(--border); color: var(--fg); }
[data-theme="dark"] .process-step h4 { color: var(--fg); }
[data-theme="dark"] .process-step p { color: var(--fg-muted); }
[data-theme="dark"] .btn-outline { color: var(--fg); border-color: var(--fg); }
[data-theme="dark"] .btn-outline:hover { background: var(--fg); color: var(--bg); }
[data-theme="dark"] .cursor { background: var(--fg); }

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--fg);
  transition: all 0.3s var(--ease);
  position: relative;
}
.nav.hero-mode:not(.scrolled) .theme-toggle {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.theme-toggle:hover {
  transform: rotate(20deg);
  background: rgba(241,183,7,0.1);
  border-color: var(--orange);
  color: var(--orange);
}
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ============================================
   MOBILE MENU
   ============================================ */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.nav.hero-mode:not(.scrolled) .nav-toggle {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
}
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 24px; font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.5px;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu-footer {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 12px;
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px var(--gutter) 100px;
  background: var(--bg-alt);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .page-hero-inner { grid-template-columns: 1fr; } }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(241, 183, 7, 0.1);
  color: var(--orange);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.page-hero-title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.page-hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.page-hero-lead {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.page-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  box-shadow: var(--shadow-hover);
}
.page-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 32px;
}
.breadcrumbs a { color: var(--fg-dim); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs svg { opacity: 0.5; }
.breadcrumbs .current { color: var(--fg); font-weight: 500; }

/* ============================================
   VIDEO PLACEHOLDER
   ============================================ */
.video-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1A1A1A, #0A0A0A);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
  border: 1px solid rgba(255,255,255,0.08);
}
.video-placeholder:hover { transform: scale(1.01); }
.video-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.4s;
}
.video-placeholder:hover img { opacity: 0.75; }
.video-play {
  position: relative; z-index: 2;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: all 0.3s var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.video-play::before {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  animation: videoPulse 2.5s ease-in-out infinite;
}
@keyframes videoPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}
.video-placeholder:hover .video-play {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}
.video-play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-label {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}

/* ============================================
   FEATURE GRID (2/3/4 col)
   ============================================ */
.feature-grid {
  display: grid;
  gap: 24px;
}
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .feature-grid.cols-3, .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .feature-grid.cols-2, .feature-grid.cols-3, .feature-grid.cols-4 { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  color: var(--fg);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(241,183,7,0.1);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card h4 {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   TWO-COLUMN CONTENT BLOCKS
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
}
.split-copy .section-eyebrow { margin-bottom: 16px; }
.split-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--fg);
}
.split-copy h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.split-copy p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.split-copy ul {
  margin: 24px 0;
  list-style: none;
}
.split-copy ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--fg);
  font-size: 15px;
  line-height: 1.5;
}
.split-copy ul li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(241,183,7,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F1B707' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
}
.split-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split-visual:hover img { transform: scale(1.04); }

/* ============================================
   STICKY COMPARER (thuisbatterij)
   ============================================ */
.compare-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .compare-wrapper { grid-template-columns: 1fr; }
}
.compare-sticky {
  position: sticky; top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.compare-sticky h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 700;
}
.compare-sticky .tab-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--fg);
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
  border: 1px solid transparent;
  margin-bottom: 6px;
  background: transparent;
}
.compare-sticky .tab-btn:hover { background: var(--bg-alt); }
.compare-sticky .tab-btn.active {
  background: var(--fg);
  color: var(--bg);
}
.compare-panels .compare-panel {
  display: none;
  animation: fadeInUp 0.5s var(--ease-out);
}
.compare-panels .compare-panel.active { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.compare-panel-header {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.compare-panel-img {
  width: 180px; height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.compare-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.compare-panel-info h3 {
  font-size: 36px; font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1;
}
.compare-panel-info .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--orange);
}
.compare-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 32px;
}
.spec-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.spec-row .spec-key {
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.spec-row .spec-val {
  font-size: 15px;
  color: var(--fg);
  font-weight: 600;
  text-align: right;
}
@media (max-width: 640px) {
  .compare-specs { grid-template-columns: 1fr; }
  .compare-panel-header { flex-direction: column; align-items: flex-start; }
  .compare-panel-img { width: 140px; height: 140px; }
}

/* ============================================
   DAK-VISUALISATIE (zonnepanelen)
   ============================================ */
.roof-visual {
  position: relative;
  background: linear-gradient(180deg, #E8F3FA 0%, #C7DFF0 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
}
[data-theme="dark"] .roof-visual {
  background: linear-gradient(180deg, #1A2530 0%, #0F1820 100%);
}
.roof-svg {
  width: 100%; height: auto;
  display: block;
}
.roof-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.roof-btn {
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.roof-btn:hover { background: var(--white); }
.roof-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px var(--orange-glow);
  border-color: var(--orange);
}
[data-theme="dark"] .roof-btn { background: rgba(255,255,255,0.1); color: var(--fg); border-color: rgba(255,255,255,0.15); }
[data-theme="dark"] .roof-btn:hover { background: rgba(255,255,255,0.18); }
[data-theme="dark"] .roof-btn.active { background: var(--orange); color: var(--white); }

.roof-stats {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  margin-top: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
}
[data-theme="dark"] .roof-stats { background: rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.08); }
.roof-stat { text-align: center; flex: 1; }
.roof-stat .rs-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
  transition: color 0.4s;
}
[data-theme="dark"] .roof-stat .rs-value { color: var(--fg); }
.roof-stat .rs-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-dim);
  margin-top: 6px;
}

/* ============================================
   ANIMATED DIAGRAM (laadpaal: zon → batterij → auto)
   ============================================ */
.flow-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.flow-nodes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.flow-node {
  text-align: center;
}
.flow-node-icon {
  width: 96px; height: 96px;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px var(--orange-glow);
  animation: floatY 3s ease-in-out infinite;
}
.flow-node:nth-child(3) .flow-node-icon { animation-delay: -1s; background: linear-gradient(135deg, #1E88E5 0%, #42A5F5 100%); box-shadow: 0 10px 40px rgba(30,136,229,0.35); }
.flow-node:nth-child(5) .flow-node-icon { animation-delay: -2s; background: linear-gradient(135deg, #0A0A0A 0%, #404040 100%); box-shadow: 0 10px 40px rgba(0,0,0,0.3); color: var(--orange); }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.flow-node h5 {
  font-size: 16px; font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.flow-node p {
  font-size: 13px; color: var(--fg-muted);
  line-height: 1.5;
}
.flow-arrow {
  position: relative;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.flow-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: flowMove 2.5s linear infinite;
}
@keyframes flowMove {
  to { transform: translateX(100%); }
}
@media (max-width: 700px) {
  .flow-nodes { grid-template-columns: 1fr; gap: 30px; }
  .flow-arrow { display: none; }
}

/* ============================================
   TABS (particulier / zakelijk)
   ============================================ */
.tab-switch {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin: 0 auto 40px;
}
.tab-switch button {
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  color: var(--fg-muted);
  transition: all 0.3s var(--ease);
  background: transparent;
}
.tab-switch button.active {
  background: var(--fg);
  color: var(--bg);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp 0.5s var(--ease-out); }

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion { max-width: 780px; margin: 0 auto; }
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-trigger {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.3px;
  background: transparent;
  transition: color 0.2s;
}
.acc-trigger:hover { color: var(--orange); }
.acc-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.acc-item.open .acc-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: rotate(45deg);
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.acc-item.open .acc-content { max-height: 1000px; }
.acc-body {
  padding: 0 0 24px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 90%;
}

/* ============================================
   TIMELINE (over-ons)
   ============================================ */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--border) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.timeline-item h4 {
  font-size: 22px; font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.timeline-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   TABLE OF CONTENTS (article)
   ============================================ */
.article-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static !important; }
}
.toc {
  position: sticky; top: 100px;
  align-self: start;
}
.toc h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 700;
}
.toc ol {
  list-style: none;
  counter-reset: toc;
}
.toc li {
  counter-increment: toc;
  padding: 8px 0;
  border-left: 2px solid var(--border);
  padding-left: 16px;
  transition: all 0.2s;
}
.toc li a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.toc li.active {
  border-left-color: var(--orange);
}
.toc li.active a { color: var(--fg); font-weight: 600; }
.toc li:hover a { color: var(--orange); }

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  max-width: 720px;
}
.article-body h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 60px 0 20px;
  color: var(--fg);
  scroll-margin-top: 100px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.article-body p {
  margin-bottom: 20px;
  color: var(--fg-muted);
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--fg-muted);
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 8px 24px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--fg);
  line-height: 1.4;
}
.article-body strong { color: var(--fg); font-weight: 700; }
.article-body a { color: var(--orange); border-bottom: 1px solid rgba(241,183,7,0.3); }
.article-body a:hover { border-bottom-color: var(--orange); }
.article-body img {
  border-radius: var(--radius);
  margin: 32px 0;
}
.callout {
  background: linear-gradient(135deg, rgba(241,183,7,0.08) 0%, rgba(241,183,7,0.02) 100%);
  border: 1px solid rgba(241,183,7,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.callout-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--orange); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.callout-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.callout-body p {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.55;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--fg-dim);
  font-size: 13px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-meta .cat {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(241,183,7,0.1);
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
}
.article-share {
  display: flex; gap: 10px;
  margin: 40px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.article-share span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-dim);
  margin-right: 8px;
}
.share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: all 0.25s var(--ease);
}
.share-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* ============================================
   KENNISBANK GRID
   ============================================ */
.kb-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.kb-chip {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.kb-chip:hover { background: var(--bg-card); color: var(--fg); border-color: var(--border-strong); }
.kb-chip.active {
  background: var(--fg); color: var(--bg);
  border-color: var(--fg);
}

.kb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.kb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  color: var(--fg);
  display: flex; flex-direction: column;
  min-height: 220px;
}
.kb-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.kb-card .cat {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(241,183,7,0.1);
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  display: inline-block;
  margin-bottom: 14px;
  align-self: flex-start;
}
.kb-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.kb-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: auto;
}
.kb-card .kb-read {
  margin-top: 20px;
  display: inline-flex;
  align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--orange);
}

/* ============================================
   FORM (offerte)
   ============================================ */
.form-section {
  background: var(--bg-alt);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; gap: 40px; } }
.form-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.form-copy h2 em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 400; color: var(--orange);
}
.form-copy p { color: var(--fg-muted); font-size: 17px; margin-bottom: 24px; }
.form-benefits {
  list-style: none;
  margin-top: 24px;
}
.form-benefits li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--fg);
  font-size: 15px;
}
.form-benefits li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(241,183,7,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23F1B707' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--fg);
  transition: all 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(241,183,7,0.12);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-interest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .form-interest { grid-template-columns: repeat(2, 1fr); } }
.form-interest label {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.form-interest label:hover { border-color: var(--border-strong); color: var(--fg); }
.form-interest input { position: absolute; opacity: 0; }
.form-interest input:checked + label,
.form-interest label.checked {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: all 0.25s var(--ease);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--orange-glow);
}
.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--orange-glow);
}
.form-submit.loading {
  pointer-events: none;
  color: transparent;
}
.form-submit.loading::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-privacy {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}
.form-privacy a { color: var(--orange); }

.form-success {
  padding: 60px 40px;
  text-align: center;
}
.form-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  animation: successPop 0.6s var(--ease-out);
}
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.form-success h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================
   LOGOS STRIP
   ============================================ */
.logos-strip {
  padding: 60px var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.logos-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.logos-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--fg-dim);
  margin-bottom: 30px;
  font-weight: 600;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--fg-dim);
  letter-spacing: -0.5px;
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
  white-space: nowrap;
}
.logo-item:hover {
  opacity: 1;
  color: var(--fg);
}

/* ============================================
   USP BAR (small)
   ============================================ */
.usp-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 60px 0;
}
@media (max-width: 900px) { .usp-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .usp-bar { grid-template-columns: 1fr; } }
.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.usp-item svg {
  color: var(--orange);
  flex-shrink: 0;
}
.usp-item .usp-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

/* ============================================
   CONFETTI PIECES
   ============================================ */
.confetti-piece {
  position: fixed;
  width: 8px; height: 14px;
  z-index: 9999;
  pointer-events: none;
  top: -20px;
  animation: confettiFall 3s ease-out forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ============================================
   PAGE TITLE UTIL
   ============================================ */
.page-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--fg);
}
.page-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

/* ============================================
   BADGES / CHIPS
   ============================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(241,183,7,0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.badge.dark {
  background: rgba(0,0,0,0.06);
  color: var(--fg);
}

/* Force theme-aware footer bg */
[data-theme="dark"] footer { background: #050505; }

/* Small helpers */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
