/* ============================================================
   VOXDAL — site.css
   Shared chrome + components for the whole site.
   Pair with colors_and_type.css. Apple design language.
   ============================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 60px; }
body { background: var(--surface); font-family: var(--font-text); color: var(--fg1); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Links/secondary actions in neutral gray instead of blue (brand request) */
:root { --link: #5b5e5e; }

/* ---- utilities ---- */
.eyebrow { font-family: var(--font-text); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--vox-flame); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; margin-bottom: 18px; }
.flame-word { background: var(--vox-flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wrap { max-width: var(--container-wide); margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }
.center { text-align: center; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-text); font-size: 17px; font-weight: 500; padding: 13px 26px; border-radius: var(--r-pill); border: 1px solid transparent; cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease); }
.btn-primary { background: var(--vox-flame); color: #fff; box-shadow: var(--shadow-flame); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: scale(.975); }
.btn-ghost { background: transparent; color: var(--link); padding: 13px 8px; }
.btn-ghost:hover { color: var(--vox-red-700); }
.btn-ghost.on-dark { color: #ff8d62; }
.btn-outline { background: transparent; color: var(--black); border-color: var(--gray-3); }
.btn-outline:hover { border-color: var(--black); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-row.center { justify-content: center; }

/* ============================================================
   GLOBAL NAV (frosted, Apple) — voxdal.nl IA
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 200; height: 56px; background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid transparent; transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease); }
.nav.scrolled { border-bottom-color: var(--gray-4); }
.nav-inner { max-width: var(--container-wide); margin: 0 auto; height: 100%; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { height: 27px; }
.nav-brand { display: flex; align-items: center; gap: 9px; }
.nav-mark { width: 27px; height: 27px; flex: none; }
.nav-wordmark { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.012em; color: var(--black); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link, .nav-trigger { font-family: var(--font-text); font-size: 14px; font-weight: 400; color: var(--black); background: none; border: none; cursor: pointer; letter-spacing: -0.01em; padding: 6px 0; position: relative; display: inline-flex; align-items: center; gap: 5px; transition: color var(--dur-fast) var(--ease); }
.nav-link:hover, .nav-trigger:hover { color: var(--accent-ink); }
.nav-link.current { color: var(--accent-ink); }
.nav-link.current::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--vox-flame); border-radius: 2px; }
.nav-caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-1px,-1px); transition: transform var(--dur-fast) var(--ease); opacity: .6; }

/* dropdown */
.nav-item { position: relative; }
.nav-dd { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 280px; background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px); border: 1px solid var(--gray-4); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.nav-item:hover .nav-dd, .nav-item.open .nav-dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-item:hover .nav-caret { transform: rotate(225deg) translate(-1px,-1px); }
.nav-dd a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--r-xs); font-size: 15px; font-weight: 500; color: var(--black); transition: background var(--dur-fast) var(--ease); white-space: nowrap; }
.nav-dd a:hover { background: var(--surface-2); }
.nav-dd a .ddmark { width: 22px; height: 22px; flex: none; }
.nav-dd a small { display: block; font-size: 12px; font-weight: 400; color: var(--fg2); margin-top: 2px; }
.nav-cta { font-size: 13px; font-weight: 500; color: #fff; background: var(--vox-flame); padding: 8px 16px; border-radius: var(--r-pill); white-space: nowrap; transition: transform var(--dur-fast) var(--ease); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--black); padding: 6px; }
.nav-burger svg { display: block; }

/* mobile menu */
.nav-mobile { display: none; }

/* ============================================================
   SCROLLCUE
   ============================================================ */
.scrollcue { display: block; width: 26px; height: 42px; margin: 56px auto 0; border-radius: 14px; border: 2px solid var(--gray-3); position: relative; }
.scrollcue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px; background: var(--gray-2); transform: translateX(-50%); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translate(-50%,0);} 30%{opacity:1;} 70%{opacity:1;} 100%{opacity:0; transform: translate(-50%,12px);} }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 104px 28px; position: relative; overflow: hidden; }
.section.light { background: var(--surface); }
.section.alt { background: var(--surface-2); }
.section.dark { background: #000; color: #fff; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -0.02em; color: var(--black); margin: 0 0 16px; text-wrap: balance; }
.section-head p { font-size: 19px; line-height: 1.45; color: var(--fg2); margin: 0; text-wrap: pretty; }

/* ============================================================
   QUOTE HERO (home — Einstein)
   ============================================================ */
.hero-quote { position: relative; background: var(--surface); padding: 112px 28px 96px; text-align: center; overflow: hidden; }
.hero-quote .markwrap { position: relative; width: 116px; height: 116px; margin: 0 auto 36px; }
.hero-quote .mark { width: 116px; height: 116px; position: relative; z-index: 1; }
.hero-quote .glow { position: absolute; inset: -50px; border-radius: 50%; filter: blur(64px); background: radial-gradient(circle, rgba(247,121,31,.26), rgba(251,176,64,0) 68%); }
.quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 5vw, 60px); line-height: 1.14; letter-spacing: -0.022em; color: var(--black); max-width: 980px; margin: 0 auto; text-wrap: balance; }
.quote-by { font-size: 16px; color: var(--fg3); margin-top: 26px; letter-spacing: .01em; }
.hero-quote .btn-row { justify-content: center; margin-top: 40px; }

/* ============================================================
   SPLIT (intro / wie is voxdal / feature)
   ============================================================ */
.split { max-width: var(--container-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-visual { order: 1; }
.split-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.06; letter-spacing: -0.022em; color: var(--black); margin: 0 0 22px; text-wrap: balance; }
.section.dark .split-title { color: #fff; }
.split-body { font-size: 19px; line-height: 1.5; color: var(--fg2); margin: 0 0 24px; max-width: 480px; text-wrap: pretty; }
.section.dark .split-body { color: #a6a6ad; }

/* values chips */
.values { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 28px; }
.values li { font-size: 14px; font-weight: 500; color: var(--fg1); background: var(--surface-2); border: 1px solid var(--gray-4); padding: 7px 14px; border-radius: var(--r-pill); }
.section.alt .values li { background: #fff; }

/* link with chevron */
.arrow-link { display: inline-flex; align-items: center; gap: 6px; font-size: 17px; font-weight: 500; color: var(--link); transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.arrow-link span { transition: transform var(--dur-fast) var(--ease); }
.arrow-link:hover { gap: 9px; }
.arrow-link.on-dark { color: #ff8d62; }

/* ============================================================
   IMAGE PLACEHOLDER PANEL (brand-tinted, swap for real photo)
   ============================================================ */
.media { position: relative; width: 100%; min-height: 420px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(150deg, #fff 0%, #fff4ec 100%); display: flex; align-items: center; justify-content: center; }
.media .glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.media .g1 { width: 320px; height: 320px; top: -60px; right: -40px; background: radial-gradient(circle, rgba(247,121,31,.30), rgba(251,176,64,0) 70%); }
.media .g2 { width: 240px; height: 240px; bottom: -40px; left: -30px; background: radial-gradient(circle, rgba(239,65,54,.18), rgba(239,65,54,0) 70%); }
.media .mediamark { width: 150px; height: 150px; position: relative; z-index: 1; filter: drop-shadow(0 12px 28px rgba(239,65,54,.22)); }
.media .tag { position: absolute; left: 18px; bottom: 16px; font-size: 12px; color: var(--gray-2); background: rgba(255,255,255,.7); padding: 5px 10px; border-radius: var(--r-pill); backdrop-filter: blur(8px); z-index: 2; }
.media img.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- Animated energy brand visual (fox-head mark radiating energy) ---- */
.media.energy { background: radial-gradient(120% 120% at 50% 42%, #1e1410 0%, #0a0809 72%); }
.energy-field { position: absolute; left: 50%; top: 50%; width: 360px; height: 360px; transform: translate(-50%, -50%); border-radius: 50%; background: conic-gradient(from 0deg, rgba(247,121,31,0) 0%, rgba(247,121,31,.20) 18%, rgba(251,176,64,0) 38%, rgba(239,65,54,.16) 62%, rgba(247,121,31,0) 86%); mix-blend-mode: screen; opacity: .55; animation: energySpin 16s linear infinite; pointer-events: none; }
.energy-core { position: absolute; left: 50%; top: 50%; width: 300px; height: 300px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(247,121,31,.6), rgba(239,65,54,.14) 46%, rgba(0,0,0,0) 70%); filter: blur(6px); animation: energyCore 3.6s var(--ease) infinite; pointer-events: none; }
.energy-rings span { position: absolute; left: 50%; top: 50%; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%; border: 1.5px solid rgba(247,121,31,.5); opacity: 0; animation: energyRing 3.9s var(--ease-out) infinite; pointer-events: none; }
.energy-rings span:nth-child(2) { animation-delay: 1.3s; }
.energy-rings span:nth-child(3) { animation-delay: 2.6s; }
.energy-mark { position: absolute; left: 50%; top: 50%; width: 150px; height: 150px; transform: translate(-50%, -50%); filter: drop-shadow(0 0 24px rgba(247,121,31,.6)); animation: energyMark 3.6s var(--ease) infinite; z-index: 2; }
.energy-sparks i { position: absolute; bottom: 46%; width: 4px; height: 4px; border-radius: 50%; background: radial-gradient(circle, #ffe0b0, rgba(247,121,31,0) 70%); opacity: 0; animation: energySpark 4s linear infinite; pointer-events: none; }
@keyframes energySpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes energyCore { 0%, 100% { opacity: .68; transform: translate(-50%, -50%) scale(.9); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); } }
@keyframes energyRing { 0% { transform: scale(.45); opacity: 0; } 14% { opacity: .85; } 100% { transform: scale(2.5); opacity: 0; } }
@keyframes energyMark { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.045); } }
@keyframes energySpark { 0% { transform: translate(0, 0) scale(.5); opacity: 0; } 12% { opacity: 1; } 72% { opacity: .7; } 100% { transform: translate(var(--dx, 0), -132px) scale(1); opacity: 0; } }

/* ---- Energienetwerk: lijnen vanuit het pulserende logo, met bewegende punten ---- */
.energy-net { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.energy-net .enline { stroke: rgba(247,121,31,.24); stroke-width: 1.5; fill: none; }
.energy-net .ennode { fill: rgba(251,176,64,.5); }
.energy-net .enpulse { stroke: #fbb040; stroke-width: 2; fill: none; stroke-linecap: round; stroke-dasharray: 20 480; stroke-dashoffset: 500; animation: enPulse 3.4s linear infinite; }
@keyframes enPulse { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .energy-net .endot, .energy-net .enpulse { display: none; } }
@media (prefers-reduced-motion: reduce) { .media.energy .energy-field, .media.energy .energy-core, .media.energy .energy-rings span, .media.energy .energy-mark, .media.energy .energy-sparks i { animation: none; } .media.energy .energy-core { opacity: 1; } .media.energy .energy-rings span:first-child { opacity: .5; transform: scale(1.6); } }

/* ============================================================
   SERVICE CARDS (home + diensten overview)
   ============================================================ */
.svc-grid { max-width: var(--container-wide); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.svc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.svc-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.section.alt .svc-card { background: #fff; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-top { height: 150px; position: relative; overflow: hidden; background: linear-gradient(150deg, #fff, #fff2e8); display: flex; align-items: center; justify-content: center; }
.svc-top .icn { width: 60px; height: 60px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: var(--vox-red); transition: transform var(--dur) var(--ease); }
.svc-card:hover .svc-top .icn { transform: scale(1.08); }
.svc-glow { position: absolute; width: 200px; height: 200px; border-radius: 50%; filter: blur(46px); top: -40px; right: -30px; background: radial-gradient(circle, rgba(247,121,31,.28), rgba(251,176,64,0) 70%); }
.svc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.015em; color: var(--black); margin: 0; }
.svc-body p { font-size: 14px; line-height: 1.46; color: var(--fg2); margin: 0; flex: 1; }
.svc-body .arrow-link { font-size: 14px; }

/* ============================================================
   WAAROM band (reasons with icons)
   ============================================================ */
.waarom-grid { max-width: var(--container-wide); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.waarom-item { text-align: center; }
.waarom-ic { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(#fff,#fff) padding-box, var(--vox-flame) border-box; border: 1.5px solid transparent; color: var(--vox-red); }
.section.dark .waarom-ic { background: #161617; border: 1px solid #2a2a2e; color: #ff8d62; }
.waarom-item h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); margin: 0 0 6px; }
.section.dark .waarom-item h4 { color: #fff; }
.waarom-item p { font-size: 15px; line-height: 1.45; color: var(--fg2); margin: 0; }
.waarom-num { font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -0.02em; background: var(--vox-flame); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 8px; }

/* ============================================================
   LOGOS (over ons — bekend bij)
   ============================================================ */
.logos { max-width: 1000px; margin: 40px auto 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; }
.logo-chip { height: 64px; min-width: 150px; padding: 0 26px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--gray-4); border-radius: var(--r-md); font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); letter-spacing: -0.01em; box-shadow: var(--shadow-xs); overflow: hidden; }
.logo-chip img { max-height: 38px; width: auto; object-fit: contain; }
.logo-chip img[alt="Alliander"], .logo-chip img[src*="logo-alliander"] { max-height: 60px; }

/* ---- Logo carousel (right-to-left marquee) ---- */
.logo-marquee { max-width: var(--container-wide); margin: 44px auto 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-track { display: flex; gap: 18px; width: max-content; animation: logoScroll 32s linear infinite; }
.logo-track .logo-chip { flex: none; margin: 4px 0; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta { padding: 112px 28px; text-align: center; }
.cta.alt { background: var(--surface-2); }
.cta.dark { background: #000; color: #fff; position: relative; overflow: hidden; }
.cta .dark-glow { position: absolute; top: 0; left: 50%; width: 760px; height: 380px; transform: translateX(-50%); background: radial-gradient(ellipse at top, rgba(247,121,31,.16), rgba(0,0,0,0) 70%); pointer-events: none; }
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.06; letter-spacing: -0.022em; margin: 0 0 18px; color: var(--black); }
.cta.dark .cta-title { color: #fff; }
.cta-lead { font-size: 21px; line-height: 1.42; color: var(--fg2); margin: 0 auto 34px; max-width: 520px; }
.cta.dark .cta-lead { color: #a6a6ad; }

.footer { background: var(--surface); border-top: 1px solid var(--gray-4); padding: 64px 28px 36px; }
.footer-inner { max-width: var(--container-wide); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px; }
.footer-logo { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.5; color: var(--fg2); max-width: 320px; margin: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-4); display: flex; align-items: center; justify-content: center; color: var(--fg2); transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.footer-social a:hover { color: var(--accent-ink); border-color: var(--gray-3); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--black); margin: 0 0 14px; }
.footer-cols a, .footer-cols span.fi { display: block; font-size: 14px; color: var(--fg2); padding: 5px 0; transition: color var(--dur-fast) var(--ease); }
.footer-cols a:hover { color: var(--accent-ink); }
.footer-base { max-width: var(--container-wide); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--gray-4); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--gray-2); }

/* ============================================================
   REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
@media print { .js .reveal { opacity: 1 !important; transform: none !important; } }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } .scrollcue span { animation: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-copy { order: 1; }
  .split.reverse .split-visual { order: 2; }
  .split-body { max-width: none; }
  .svc-grid, .svc-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .waarom-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .section, .hero-quote, .cta { padding-left: 22px; padding-right: 22px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .svc-grid, .svc-grid.cols-5 { grid-template-columns: 1fr; }
  .waarom-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* mobile menu open */
.nav-mobile.open { display: block; position: fixed; top: 56px; left: 0; right: 0; bottom: 0; z-index: 199; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); padding: 16px 28px 28px; overflow-y: auto; }
.nav-mobile a { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); padding: 14px 0; border-bottom: 1px solid var(--gray-4); }
.nav-mobile a.sub { font-size: 16px; font-weight: 500; color: var(--fg2); padding-left: 14px; }

/* ============================================================
   DETAIL PAGE PATTERNS (service pages)
   ============================================================ */
.crumb { font-size: 13px; font-weight: 500; color: var(--gray-2); margin-bottom: 16px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.crumb a:hover { color: var(--accent-ink); }
.hero-split .split-title { font-size: clamp(40px, 5.4vw, 66px); line-height: 1.03; letter-spacing: -0.025em; }

/* stage (signature visual) */
.stage { position: relative; width: 100%; min-height: 470px; border-radius: var(--r-xl); overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); background: linear-gradient(150deg, #fff 0%, #fff6f0 100%); }
.stage.col { flex-direction: column; gap: 30px; }
.stage-glow { position: absolute; border-radius: 50%; filter: blur(62px); pointer-events: none; }
.stage .g1 { width: 320px; height: 320px; top: -60px; right: -40px; background: radial-gradient(circle, rgba(247,121,31,.30), rgba(251,176,64,0) 70%); }
.stage .g2 { width: 260px; height: 260px; bottom: -50px; left: -40px; background: radial-gradient(circle, rgba(239,65,54,.20), rgba(239,65,54,0) 70%); }
.stage-mark { width: 150px; height: 150px; position: relative; z-index: 1; filter: drop-shadow(0 12px 28px rgba(239,65,54,.22)); }
.stage-mark.faint { width: 120px; height: 120px; opacity: .13; position: absolute; right: 26px; bottom: 20px; filter: none; }

.glass { position: absolute; right: 28px; bottom: 28px; width: 244px; background: rgba(255,255,255,.86); backdrop-filter: blur(12px); border: 1px solid var(--gray-4); border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 18px; }
.gr { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--fg1); padding: 5px 0; }
.gdot { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-3); flex: none; }
.gr.on .gdot { background: var(--vox-orange); }
.gbar { height: 6px; border-radius: 3px; background: var(--gray-4); margin: 12px 0 8px; overflow: hidden; }
.gbar i { display: block; height: 100%; background: var(--vox-flame); border-radius: 3px; }
.gmeta { font-size: 12px; color: var(--gray-2); }

.flow { position: relative; z-index: 1; display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 0; }
.flow-node { font-size: 13px; font-weight: 600; color: var(--fg1); background: #fff; border: 1px solid var(--gray-4); padding: 8px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-xs); }
.flow-node.accent { color: #fff; background: var(--vox-flame); border-color: transparent; box-shadow: var(--shadow-flame); }
.flow-line { width: 20px; height: 2px; background: var(--gray-3); }
.kpi-row { position: relative; z-index: 1; display: flex; gap: 40px; }
.kpi { text-align: center; }
.kpi b { display: block; font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -0.02em; background: var(--vox-flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi span { font-size: 13px; color: var(--gray-1); }

.toggles { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; width: 280px; }
.tg { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.86); backdrop-filter: blur(10px); border: 1px solid var(--gray-4); border-radius: var(--r-sm); box-shadow: var(--shadow-xs); padding: 11px 14px; }
.tg span { font-size: 14px; color: var(--fg1); flex: 1; }
.sw { width: 38px; height: 22px; border-radius: 11px; background: var(--vox-flame); position: relative; flex: none; box-shadow: var(--shadow-flame); }
.sw::after { content: ""; position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.tg.off .sw { background: var(--gray-3); box-shadow: none; }
.tg.off .sw::after { right: auto; left: 2px; }
.tg.off span { color: var(--gray-2); }

.ladder { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; width: 270px; }
.rung { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--gray-4); box-shadow: var(--shadow-xs); font-size: 14px; font-weight: 500; color: var(--fg1); }
.rung.accent { background: var(--vox-flame); color: #fff; border-color: transparent; box-shadow: var(--shadow-flame); }
.rung .pin { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-3); }
.rung.accent .pin { background: #fff; }

.cap { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 32px); gap: 12px; }
.cap span { width: 32px; height: 32px; border-radius: 8px; background: var(--gray-4); }
.cap span.on { background: var(--vox-flame); box-shadow: var(--shadow-flame); }

/* ---- STAGE: ambient motion (light animation on service visuals) ---- */
.stage::before { content: ""; position: absolute; inset: -40px; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(239,65,54,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(239,65,54,.06) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(125% 110% at 50% 42%, #000 30%, transparent 80%);
  mask-image: radial-gradient(125% 110% at 50% 42%, #000 30%, transparent 80%);
  animation: stageGrid 24s linear infinite; }
@keyframes stageGrid { to { transform: translateY(-38px); } }
.stage-glow { animation: stageFloat 10s var(--ease) infinite; }
.stage .g2 { animation-delay: -5s; }
@keyframes stageFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(12px,-16px) scale(1.06); } }
/* flow (Proces) */
.flow-node { transition: background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.flow-node.accent { animation: nodeBreathe 3.2s var(--ease) infinite; }
@keyframes nodeBreathe { 0%, 100% { transform: translateY(0); box-shadow: var(--shadow-flame); } 50% { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(239,65,54,.36); } }
.flow-line { overflow: hidden; }
.flow-line.fill { background: var(--vox-flame); }
/* switches (Automatisering) */
.sw { transition: background .42s var(--ease), box-shadow .42s var(--ease); }
.sw::after { left: 2px; right: auto; transform: translateX(16px); transition: transform .42s var(--ease); }
.tg.off .sw::after { left: 2px; right: auto; transform: translateX(0); }
.tg { transition: border-color .4s var(--ease); }
.tg span { transition: color .4s var(--ease); }
/* checklist (Project Management) */
.gdot { transition: background .35s var(--ease); position: relative; }
.gr.on .gdot::after { content: ""; position: absolute; left: 2.7px; top: 1px; width: 2px; height: 4px; border: solid #fff; border-width: 0 1.4px 1.4px 0; transform: rotate(45deg); }
.gr { transition: color .35s var(--ease); }
.gbar i { transition: width .8s var(--ease-out); }
/* capacity + ladder breathing (Operationele / Interim) */
.cap span.on, .rung.accent { animation: capGlow 3.4s var(--ease) infinite; }
@keyframes capGlow { 0%, 100% { box-shadow: var(--shadow-flame); } 50% { box-shadow: 0 12px 30px rgba(239,65,54,.42); } }
@media (prefers-reduced-motion: reduce) {
  .stage::before, .stage-glow, .flow-node.accent, .cap span.on, .rung.accent { animation: none; }
}

/* intro + points */
.intro-statement { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.22; letter-spacing: -0.02em; color: var(--black); margin: 0 auto 16px; max-width: 760px; text-align: center; text-wrap: balance; }
.points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.point { padding-top: 24px; position: relative; }
.point::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 3px; border-radius: 2px; background: var(--vox-flame); }
.point h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); margin: 0 0 6px; }
.point p { font-size: 15px; line-height: 1.45; color: var(--fg2); margin: 0; }

/* feature blocks */
.feat-grid { max-width: var(--container-wide); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feat-grid.reverse .feat-copy { order: 2; }
.feat-grid.reverse .feat-visual { order: 1; }
.feat-num { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--gray-2); margin-bottom: 10px; }
.feat-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.07; letter-spacing: -0.02em; color: var(--black); margin: 0 0 20px; }
.feat-lead { font-size: 18px; line-height: 1.5; color: var(--fg2); max-width: 460px; margin: 0; text-wrap: pretty; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 22px 0 0; }
.chips li { font-size: 14px; font-weight: 500; color: var(--fg1); background: var(--surface-2); border: 1px solid var(--gray-4); padding: 7px 14px; border-radius: var(--r-pill); }
.section.alt .chips li { background: #fff; }

/* feature visuals */
.vstat { background: linear-gradient(150deg, #fff, #fff6f0); border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.vstat .big { font-family: var(--font-display); font-size: clamp(56px, 8vw, 88px); font-weight: 700; letter-spacing: -0.03em; background: var(--vox-flame); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.vstat .lbl { font-size: 16px; color: var(--fg2); margin-top: 12px; }
.vchecks { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: 32px; display: flex; flex-direction: column; gap: 4px; }
.vcheck { display: flex; gap: 14px; align-items: flex-start; padding: 16px 6px; border-bottom: 1px solid var(--gray-4); }
.vcheck:last-child { border-bottom: none; }
.vcheck .ic { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(#fff,#fff) padding-box, var(--vox-flame) border-box; border: 1.5px solid transparent; display: flex; align-items: center; justify-content: center; flex: none; color: var(--vox-red); font-weight: 700; }
.vcheck .ic svg { width: 16px; height: 16px; }
.vcheck h5 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--black); margin: 4px 0 4px; }
.vcheck p { font-size: 14px; line-height: 1.45; color: var(--fg2); margin: 0; }
.vcallout { background: linear-gradient(150deg, #fff, #fff6f0); border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: 44px 40px; position: relative; }
.vcallout::before { content: ""; position: absolute; left: 0; top: 40px; bottom: 40px; width: 4px; border-radius: 2px; background: var(--vox-flame); }
.vcallout p { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px); font-weight: 500; line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); margin: 0; padding-left: 28px; text-wrap: pretty; }

/* aanpak stepper */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.steps.three-cols { grid-template-columns: repeat(3, 1fr); }
.step { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 26px 24px 28px; }
.step .sn { font-family: var(--font-display); font-weight: 700; font-size: 14px; background: var(--vox-flame); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: 0.04em; }
.step h4 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); margin: 8px 0 8px; }
.step p { font-size: 14px; line-height: 1.46; color: var(--fg2); margin: 0; }

/* outcomes (dark) */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; position: relative; z-index: 1; }
.outcome { padding-top: 24px; border-top: 1px solid #2a2a2e; }
.outcome h4 { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.015em; color: #fff; margin: 0 0 8px; }
.outcome p { font-size: 15px; line-height: 1.5; color: #a6a6ad; margin: 0; }

@media (max-width: 980px) {
  .feat-grid { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid.reverse .feat-copy { order: 1; }
  .feat-grid.reverse .feat-visual { order: 2; }
  .feat-lead { max-width: none; }
  .points { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .outcomes { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 560px) {
  .points, .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TWEAKS — site-wide feel layers (Sfeer / Vlam-energie / Ritme)
   Driven by data-* on <body> (see voxtweaks.jsx)
   ============================================================ */
/* --- RITME --- */
body[data-ritme="Compact"] .section { padding-top: 74px; padding-bottom: 74px; }
body[data-ritme="Compact"] .hero-quote { padding-top: 76px; padding-bottom: 64px; }
body[data-ritme="Compact"] .quote { font-size: clamp(26px, 4.4vw, 50px); }
body[data-ritme="Compact"] .section-head { margin-bottom: 40px; }
body[data-ritme="Groots"] .section { padding-top: 150px; padding-bottom: 150px; }
body[data-ritme="Groots"] .hero-quote { padding-top: 140px; padding-bottom: 128px; }
body[data-ritme="Groots"] .quote { font-size: clamp(36px, 6vw, 76px); }
body[data-ritme="Groots"] .split-title, body[data-ritme="Groots"] .section-head h2, body[data-ritme="Groots"] .feat-title, body[data-ritme="Groots"] .cta-title { font-size: clamp(40px, 5.4vw, 66px); }
body[data-ritme="Groots"] .section-head { margin-bottom: 72px; }

/* --- SFEER: Warm --- */
body[data-sfeer="Warm"] { --surface: #fff8f2; --surface-2: #fdeee2; }
body[data-sfeer="Warm"] .svc-top { background: linear-gradient(150deg, #fff6ef, #ffe8d6); }
body[data-sfeer="Warm"] .hero-quote { background: linear-gradient(180deg, #fffaf6, #fff8f2); }
body[data-sfeer="Warm"] .media, body[data-sfeer="Warm"] .stage { background: linear-gradient(150deg, #fff7f0, #ffeede); }

/* --- SFEER: Nocturne --- */
body[data-sfeer="Nocturne"] { --surface: #0a0809; --surface-2: #141113; --surface-3: #141113; --black: #f5f5f7; --fg1: #f5f5f7; --fg2: #a8a8af; --fg3: #6c6c74; --gray-4: #26262a; --gray-3: #3a3a40; --link: #c7c7cc; --ink: #cfcfd4; --accent-ink: #ff8d62; }
body[data-sfeer="Nocturne"] .nav { background: rgba(10,8,9,.72); }
body[data-sfeer="Nocturne"] .nav.scrolled { border-bottom-color: #26262a; }
body[data-sfeer="Nocturne"] .nav-dd { background: rgba(20,17,19,.94); border-color: #2a2a2e; }
body[data-sfeer="Nocturne"] .nav-dd a { color: #f5f5f7; }
body[data-sfeer="Nocturne"] .nav-dd a:hover { background: #1c1a1c; }
body[data-sfeer="Nocturne"] .hero-quote { background: radial-gradient(120% 90% at 50% 0%, #1c1512 0%, #0a0809 60%); }
body[data-sfeer="Nocturne"] .svc-card, body[data-sfeer="Nocturne"] .section.alt .svc-card { background: #141113; }
body[data-sfeer="Nocturne"] .svc-top { background: linear-gradient(150deg, #1c1714, #100c0d); }
body[data-sfeer="Nocturne"] .svc-top .icn { background: #0a0809; }
body[data-sfeer="Nocturne"] .waarom-ic { background: linear-gradient(#141113,#141113) padding-box, var(--vox-flame) border-box; color: #ff8d62; }
body[data-sfeer="Nocturne"] .footer { background: #0a0809; border-top-color: #26262a; }
body[data-sfeer="Nocturne"] .footer-social a { border-color: #2a2a2e; }
body[data-sfeer="Nocturne"] .logo-chip { background: #141113; border-color: #2a2a2e; color: #cfcfd4; }
body[data-sfeer="Nocturne"] .stage, body[data-sfeer="Nocturne"] .media { background: radial-gradient(120% 120% at 50% 30%, #1c1512 0%, #0c0a0b 70%); }
body[data-sfeer="Nocturne"] .flow-node { background: #1c1a1c; border-color: #2e2a2e; color: #f5f5f7; }
body[data-sfeer="Nocturne"] .glass, body[data-sfeer="Nocturne"] .tg { background: rgba(28,26,28,.86); border-color: #2e2a2e; }
body[data-sfeer="Nocturne"] .rung { background: #1c1a1c; border-color: #2e2a2e; color: #f5f5f7; }
body[data-sfeer="Nocturne"] .gbar, body[data-sfeer="Nocturne"] .cap span { background: #2e2a2e; }
body[data-sfeer="Nocturne"] .vchecks, body[data-sfeer="Nocturne"] .vstat, body[data-sfeer="Nocturne"] .vcallout, body[data-sfeer="Nocturne"] .step { background: #141113; }
body[data-sfeer="Nocturne"] .vcheck { border-bottom-color: #26262a; }
body[data-sfeer="Nocturne"] .vcheck .ic { background: linear-gradient(#141113,#141113) padding-box, var(--vox-flame) border-box; }
body[data-sfeer="Nocturne"] .vcallout p, body[data-sfeer="Nocturne"] .vstat .lbl { color: #cfcfd4; }
body[data-sfeer="Nocturne"] .chips li, body[data-sfeer="Nocturne"] .section.alt .chips li { background: #1c1a1c; border-color: #2a2a2e; color: #e8e8ed; }
body[data-sfeer="Nocturne"] form input, body[data-sfeer="Nocturne"] form textarea { background: #141113 !important; border-color: #3a3a40 !important; color: #f5f5f7 !important; }
body[data-sfeer="Nocturne"] .scrollcue { border-color: #3a3a40; }

/* --- VLAM-ENERGIE: Ingetogen --- */
body[data-energie="Ingetogen"] .flame-word { background: none; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: currentColor; color: currentColor; }
body[data-energie="Ingetogen"] .eyebrow { background: none; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: var(--fg3); color: var(--fg3); }
body[data-energie="Ingetogen"] .waarom-num { background: none; -webkit-text-fill-color: currentColor; color: currentColor; }
body[data-energie="Ingetogen"] .hero-quote .glow, body[data-energie="Ingetogen"] .svc-glow, body[data-energie="Ingetogen"] .stage-glow, body[data-energie="Ingetogen"] .media .glow, body[data-energie="Ingetogen"] .dark-glow { opacity: .3; }

/* --- VLAM-ENERGIE: Expressief --- */
body[data-energie="Expressief"] .quote { background: var(--vox-flame); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
body[data-energie="Expressief"] .hero-quote .glow { opacity: 1; inset: -70px; filter: blur(76px); }
body[data-energie="Expressief"] .svc-glow { width: 260px; height: 260px; opacity: 1; }

/* Heartbeat animatie voor hero logo */
@keyframes voxHeartbeat {
  0%, 28%, 70%, 100% { transform: scale(1); }
  10% { transform: scale(1.14); }
  20% { transform: scale(1.02); }
  36% { transform: scale(1.22); }
  50% { transform: scale(1); }
}
@keyframes voxHeartGlow {
  0%, 28%, 70%, 100% { opacity: .75; transform: scale(1); }
  10% { opacity: 1; transform: scale(1.18); }
  36% { opacity: 1; transform: scale(1.28); }
  50% { opacity: .75; transform: scale(1); }
}
.hero-quote .mark { transform-origin: 50% 55%; animation: voxHeartbeat 1.4s ease-in-out infinite; will-change: transform; }
.hero-quote .glow { transform-origin: 50% 55%; animation: voxHeartGlow 1.4s ease-in-out infinite; will-change: transform, opacity; }
