/* ═══════════════════════════════════════════════════════
   Van Uffelen Design — premium AI-consultancy
   ═══════════════════════════════════════════════════════ */

:root {
  --bg-dark: #0b0d14;
  --bg-dark-2: #10131d;
  --bg-light: #f7f8fb;
  --bg-white: #ffffff;
  --ink: #0e1118;
  --ink-soft: #4b5265;
  --paper: #eef0f6;
  --white-soft: rgba(255,255,255,.72);
  --white-dim: rgba(255,255,255,.45);
  --blue: #4f7cff;
  --indigo: #6366f1;
  --purple: #a855f7;
  --cyan: #22d3ee;
  --grad: linear-gradient(100deg, var(--blue), var(--purple) 55%, var(--cyan));
  --glass: rgba(255,255,255,.06);
  --glass-border: rgba(255,255,255,.12);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px rgba(10,14,30,.10);
  --shadow-deep: 0 30px 80px rgba(5,8,20,.45);
  --ease: cubic-bezier(.22,.9,.28,1);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--bg-dark);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.container.narrow { width: min(860px, 92vw); }

/* ── Typography ── */
h1, h2, h3 { font-weight: 800; letter-spacing: -.03em; line-height: 1.08; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.015em; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; margin-bottom: 1.1rem; color: var(--cyan);
}
.light .eyebrow { color: var(--indigo); }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% 100%; animation: gradShift 6s ease infinite;
}
.grad-text-dark {
  background: linear-gradient(100deg, #3b5bdb, #7c3aed 60%, #0891b2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ── Sections ── */
.section { position: relative; padding: clamp(5rem, 10vw, 8.5rem) 0; overflow: hidden; }
.section.dark { background: var(--bg-dark); color: #fff; }
.section.dark:nth-of-type(even) { background: var(--bg-dark-2); }
.section.light { background: var(--bg-light); color: var(--ink); }
.section.light.alt { background: var(--bg-white); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p { margin-top: 1.1rem; font-size: 1.08rem; color: var(--white-soft); }
.light .section-head p { color: var(--ink-soft); }

/* ── Glass ── */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
}
.glass-dark {
  background: rgba(14,17,24,.82); color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px); border-radius: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.6rem; border-radius: 999px; border: none;
  font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  will-change: transform;
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.02rem; }
.btn-primary { background: var(--grad); background-size: 180% 100%; color: #fff; }
.btn-primary:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(99,102,241,.45); }
.btn-ghost { background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(14,17,24,.35); }
.btn.glow { position: relative; }
.btn.glow::after {
  content: ""; position: absolute; inset: -3px; border-radius: inherit; z-index: -1;
  background: var(--grad); filter: blur(16px); opacity: .55;
  transition: opacity .35s; animation: glowPulse 3.2s ease-in-out infinite;
}
.btn.glow:hover::after { opacity: .9; }
@keyframes glowPulse { 0%,100% { opacity: .4; } 50% { opacity: .7; } }

/* ── Loader ── */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--bg-dark);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-mark { position: relative; width: 92px; height: 92px; display: grid; place-items: center; }
.loader-v {
  font-size: 2.6rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.08); border-top-color: var(--blue); border-right-color: var(--purple);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* ── Spotlight ── */
.spotlight {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 40%), rgba(99,102,241,.10), transparent 65%);
  transition: opacity .5s;
}
body.spot-on .spotlight { opacity: 1; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s;
  backdrop-filter: blur(0px);
}
.header.scrolled {
  background: rgba(11,13,20,.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 10px 40px rgba(0,0,0,.35);
}
.header-inner {
  width: min(1280px, 94vw); margin: 0 auto; height: var(--header-h);
  display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: .65rem; font-weight: 700; letter-spacing: -.02em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad); font-weight: 800; font-size: 1.15rem; color: #fff;
  box-shadow: 0 6px 20px rgba(99,102,241,.4);
}
.logo-text { font-size: 1.02rem; white-space: nowrap; }
.logo-text em { font-style: normal; font-weight: 400; opacity: .65; }
.nav { display: flex; gap: 1.7rem; margin-left: auto; }
.nav-link {
  position: relative; font-size: .92rem; font-weight: 500; color: var(--white-soft);
  transition: color .3s; padding: .3rem 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.btn-header { white-space: nowrap; }
.menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: .5rem; margin-left: auto; }
.menu-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background:
    radial-gradient(900px 500px at 75% 18%, rgba(99,102,241,.16), transparent 60%),
    radial-gradient(700px 500px at 15% 85%, rgba(34,211,238,.08), transparent 60%),
    var(--bg-dark);
  overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.hero-aurora {
  position: absolute; inset: -20%; pointer-events: none; filter: blur(80px); opacity: .5;
  background:
    radial-gradient(38% 30% at 70% 30%, rgba(168,85,247,.22), transparent 70%),
    radial-gradient(30% 26% at 30% 70%, rgba(79,124,255,.20), transparent 70%);
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.08); }
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 500;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: var(--white-soft); margin-bottom: 1.6rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(34,211,238,.5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,211,238,.5); }
  70% { box-shadow: 0 0 0 10px rgba(34,211,238,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}
.hero-title { font-size: clamp(2.5rem, 5.6vw, 4.6rem); margin-bottom: 1.5rem; }
.line-mask { display: block; overflow: hidden; }
.line { display: block; transform: translateY(110%); animation: lineUp 1s var(--ease) forwards; }
.line-mask:nth-child(2) .line { animation-delay: .15s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--white-soft); max-width: 34rem; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-meta { display: flex; align-items: center; gap: 1.4rem; color: var(--white-dim); }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-size: 1.3rem; color: #fff; letter-spacing: -.02em; }
.hero-meta span { font-size: .82rem; }
.hero-meta-sep { width: 1px; height: 34px; background: rgba(255,255,255,.14); }

/* Hero visual: orb + rings + floating cards */
.hero-visual { position: relative; height: 480px; }
.orb-core {
  position: absolute; top: 50%; left: 50%; width: 150px; height: 150px;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #7c9bff, var(--indigo) 45%, #1b1145 100%);
  box-shadow: 0 0 80px rgba(99,102,241,.7), 0 0 200px rgba(168,85,247,.35), inset -12px -14px 40px rgba(0,0,10,.5);
  animation: orbFloat 7s ease-in-out infinite;
}
@keyframes orbFloat { 0%,100% { transform: translate(-50%,-52%); } 50% { transform: translate(-50%,-46%); } }
.orb-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14); transform: translate(-50%,-50%) rotateX(68deg);
}
.orb-ring.r1 { width: 250px; height: 250px; animation: ringSpin 14s linear infinite; }
.orb-ring.r2 { width: 350px; height: 350px; border-color: rgba(168,85,247,.25); animation: ringSpin 22s linear infinite reverse; }
.orb-ring.r3 { width: 450px; height: 450px; border-color: rgba(34,211,238,.18); animation: ringSpin 30s linear infinite; }
@keyframes ringSpin { from { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(0); } to { transform: translate(-50%,-50%) rotateX(68deg) rotateZ(360deg); } }
.orb-node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 14px var(--cyan);
  animation: nodeBlink 3s ease-in-out infinite;
}
.orb-node.n1 { top: 18%; left: 22%; }
.orb-node.n2 { top: 12%; right: 18%; background: var(--purple); box-shadow: 0 0 14px var(--purple); animation-delay: .8s; }
.orb-node.n3 { bottom: 16%; left: 14%; background: var(--blue); box-shadow: 0 0 14px var(--blue); animation-delay: 1.4s; }
.orb-node.n4 { bottom: 22%; right: 12%; animation-delay: 2s; }
@keyframes nodeBlink { 0%,100% { opacity: .4; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }
.orb-card {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  padding: .85rem 1.1rem; font-size: .8rem; min-width: 190px;
  animation: cardFloat 6s ease-in-out infinite;
  box-shadow: var(--shadow-deep);
}
.orb-card b { display: block; font-size: .84rem; }
.orb-card i { font-style: normal; color: var(--white-dim); font-size: .74rem; }
.oc-ico { font-size: 1.25rem; }
.orb-card.oc1 { top: 6%; right: 4%; animation-delay: 0s; }
.orb-card.oc2 { top: 44%; left: -4%; animation-delay: 1.6s; }
.orb-card.oc3 { bottom: 4%; right: 10%; animation-delay: 3.1s; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.28); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 4px; background: #fff; animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ── Dashboard ── */
.dashboard { padding: 0; overflow: hidden; box-shadow: var(--shadow-deep); border-radius: var(--radius-lg); }
.dash-topbar {
  display: flex; align-items: center; gap: 1rem; padding: .9rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.16); }
.dash-dots span:first-child { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-title { font-size: .85rem; font-weight: 600; color: var(--white-soft); }
.dash-live { margin-left: auto; display: flex; align-items: center; gap: .45rem; font-size: .75rem; color: var(--cyan); text-transform: uppercase; letter-spacing: .12em; }
.dash-grid {
  display: grid; gap: 1px; background: rgba(255,255,255,.07);
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "k1 k2 k3 k4" "chart chart feed feed" "flow flow feed feed";
}
.dash-grid > div { background: rgba(13,16,25,.92); padding: 1.3rem 1.4rem; }
.dash-kpi label, .dash-chart label, .dash-feed label, .dash-flow label {
  display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--white-dim); margin-bottom: .55rem;
}
.dash-kpi strong { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; display: block; }
.dash-kpi strong span { font-size: inherit; }
.dash-kpi > span { font-size: .75rem; }
.dash-kpi .up { color: #34d399; }
.dash-kpi .neutral { color: var(--white-dim); }
.dash-kpi:nth-child(1) { grid-area: k1; } .dash-kpi:nth-child(2) { grid-area: k2; }
.dash-kpi:nth-child(3) { grid-area: k3; } .dash-kpi:nth-child(4) { grid-area: k4; }
.dash-chart { grid-area: chart; }
.chart-svg { width: 100%; height: 170px; }
.chart-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.dash.in-view .chart-line, .dashboard.in-view .chart-line { animation: drawLine 2.2s var(--ease) forwards .3s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.chart-dot { filter: drop-shadow(0 0 6px var(--cyan)); }
.dash-feed { grid-area: feed; }
.dash-feed ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; font-size: .84rem; color: var(--white-soft); }
.dash-feed li { display: flex; gap: .6rem; align-items: flex-start; animation: feedIn .6s var(--ease) both; }
.feed-ico {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 6px; font-size: .7rem;
  display: grid; place-items: center; font-style: normal;
}
.feed-ico.ok { background: rgba(52,211,153,.15); color: #34d399; }
.feed-ico.ai { background: rgba(168,85,247,.18); color: #c084fc; }
.feed-ico.warn { background: rgba(251,191,36,.15); color: #fbbf24; }
@keyframes feedIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.dash-flow { grid-area: flow; }
.flow { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.flow-step {
  padding: .5rem .95rem; border-radius: 999px; font-size: .8rem; font-weight: 600;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--white-dim);
}
.flow-step.done { color: #34d399; border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.08); }
.flow-step.active {
  color: #fff; border-color: rgba(99,102,241,.6); background: rgba(99,102,241,.18);
  box-shadow: 0 0 18px rgba(99,102,241,.35); animation: stepPulse 2s ease-in-out infinite;
}
@keyframes stepPulse { 0%,100% { box-shadow: 0 0 12px rgba(99,102,241,.25); } 50% { box-shadow: 0 0 26px rgba(99,102,241,.5); } }
.flow-arrow { width: 16px; height: 1px; background: rgba(255,255,255,.2); position: relative; }
.flow-arrow::after { content: ""; position: absolute; right: 0; top: -2.5px; border: 3px solid transparent; border-left-color: rgba(255,255,255,.35); }

/* ── Processen ── */
.proc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.1rem; }
.proc-card {
  background: var(--bg-white); border: 1px solid #e7e9f2; border-radius: var(--radius);
  padding: 1.5rem 1.35rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; will-change: transform;
}
.proc-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; z-index: -1;
  background: radial-gradient(300px circle at 50% 0%, rgba(99,102,241,.16), transparent 70%);
  transition: opacity .4s;
}
.proc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(30,40,90,.14); border-color: #c9d1ff; }
.proc-card:hover::before { opacity: 1; }
.proc-ico { font-size: 1.7rem; display: inline-block; margin-bottom: .8rem; }
.proc-card h3 { margin-bottom: .4rem; color: var(--ink); }
.proc-card p { font-size: .88rem; color: var(--ink-soft); }

/* ── Oplossingen ── */
.aurora-bg {
  position: absolute; inset: -10%; pointer-events: none; filter: blur(90px); opacity: .35;
  background:
    radial-gradient(30% 40% at 80% 20%, rgba(168,85,247,.3), transparent 70%),
    radial-gradient(34% 38% at 15% 80%, rgba(79,124,255,.28), transparent 70%);
  animation: aurora 20s ease-in-out infinite alternate;
}
.aurora-bg.aurora-2 { background: radial-gradient(30% 44% at 20% 25%, rgba(34,211,238,.2), transparent 70%), radial-gradient(30% 40% at 85% 75%, rgba(168,85,247,.25), transparent 70%); }
.aurora-bg.aurora-3 { background: radial-gradient(36% 46% at 50% 10%, rgba(99,102,241,.3), transparent 70%); }
.sol-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.15rem; position: relative; }
.sol-card {
  padding: 1.7rem 1.5rem;
  transition: transform .4s var(--ease), background .4s, border-color .4s, box-shadow .4s;
}
.sol-card:hover {
  transform: translateY(-6px); background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22); box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.sol-ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  font-size: 1.25rem; font-style: normal; margin-bottom: 1rem;
}
.i-blue { background: rgba(79,124,255,.16); color: #93b1ff; box-shadow: inset 0 0 0 1px rgba(79,124,255,.3); }
.i-purple { background: rgba(168,85,247,.14); color: #d0a2fb; box-shadow: inset 0 0 0 1px rgba(168,85,247,.3); }
.i-cyan { background: rgba(34,211,238,.12); color: #7ce7f7; box-shadow: inset 0 0 0 1px rgba(34,211,238,.3); }
.sol-card h3 { margin-bottom: .35rem; }
.sol-card p { font-size: .88rem; color: var(--white-soft); }

/* ── Branches ── */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.15rem; }
.branch-card {
  position: relative; border-radius: var(--radius); padding: 2.1rem 1.5rem 1.5rem;
  min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden; isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.branch-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,12,22,.05) 20%, rgba(8,10,18,.78));
}
.branch-card span { font-size: 2rem; margin-bottom: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); transition: transform .45s var(--ease); }
.branch-card h3 { font-size: 1.12rem; }
.branch-card p { font-size: .82rem; opacity: .85; }
.branch-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 26px 60px rgba(20,28,70,.25); }
.branch-card:hover span { transform: scale(1.18) rotate(-6deg); }
.b-bouw        { background: linear-gradient(135deg, #b45309, #78350f); }
.b-industrie   { background: linear-gradient(135deg, #475569, #1e293b); }
.b-logistiek   { background: linear-gradient(135deg, #0e7490, #164e63); }
.b-zorg        { background: linear-gradient(135deg, #0d9488, #134e4a); }
.b-retail      { background: linear-gradient(135deg, #be185d, #831843); }
.b-ecom        { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.b-makelaardij { background: linear-gradient(135deg, #059669, #064e3b); }
.b-installatie { background: linear-gradient(135deg, #d97706, #92400e); }
.b-financieel  { background: linear-gradient(135deg, #1d4ed8, #1e3a8a); }
.b-mkb         { background: linear-gradient(135deg, #4f46e5, #312e81); }
.b-zakelijk    { background: linear-gradient(135deg, #334155, #0f172a); }
.b-productie   { background: linear-gradient(135deg, #b91c1c, #7f1d1d); }

/* ── Resultaten ── */
.stats-section { background: radial-gradient(800px 400px at 50% 0%, rgba(99,102,241,.14), transparent 65%), var(--bg-dark-2); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.stat {
  text-align: center; padding: 2.4rem 1.2rem; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  transition: transform .4s var(--ease), border-color .4s;
}
.stat:hover { transform: translateY(-5px); border-color: rgba(99,102,241,.5); }
.stat strong {
  display: block; font-size: clamp(2.1rem, 3.4vw, 2.9rem); font-weight: 800; letter-spacing: -.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: .4rem;
}
.stat span { font-size: .88rem; color: var(--white-soft); }
.stats-note { margin-top: 1.6rem; font-size: .78rem; color: var(--white-dim); }

/* ── Cases ── */
.case-list { display: flex; flex-direction: column; gap: 2rem; }
.case-card {
  display: grid; grid-template-columns: .8fr 1.6fr; gap: 0; overflow: hidden;
  background: var(--bg-white); border: 1px solid #e7e9f2; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); transition: transform .45s var(--ease), box-shadow .45s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(30,40,90,.16); }
.case-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  color: #fff; min-height: 260px; position: relative; overflow: hidden;
}
.case-visual span { font-size: 3.4rem; filter: drop-shadow(0 8px 22px rgba(0,0,0,.35)); }
.case-visual em { font-style: normal; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
.case-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% 110%, rgba(255,255,255,.16), transparent 70%);
}
.cv-logistiek { background: linear-gradient(150deg, #155e75, #0b3441); }
.cv-bouw { background: linear-gradient(150deg, #b45309, #6b3308); }
.cv-retail { background: linear-gradient(150deg, #9d174d, #560d2c); }
.case-body { padding: 2.2rem 2.4rem; }
.case-tag {
  display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: #eef0fb; color: #4c53c9; border-radius: 999px; padding: .3rem .85rem; margin-bottom: .9rem;
}
.case-body h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 1.1rem; }
.case-body dl { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.3rem; }
.case-body dt { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #6d74e8; margin-bottom: .15rem; }
.case-body dd { font-size: .93rem; color: var(--ink-soft); }
.case-stats { display: flex; gap: 2.2rem; margin-bottom: 1.2rem; }
.case-stats b { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); display: block; }
.case-stats span { font-size: .78rem; color: var(--ink-soft); }
.case-body blockquote { border-left: 3px solid #c7cbff; padding-left: 1rem; font-size: .95rem; color: var(--ink); font-style: italic; }
.case-body cite { display: block; font-style: normal; font-size: .8rem; color: var(--ink-soft); margin-top: .3rem; }

/* ── Journey ── */
.journey { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; margin-bottom: 1.6rem; }
.journey-line {
  position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: rgba(255,255,255,.1); z-index: 0; border-radius: 2px; overflow: hidden;
}
.journey-line span { display: block; height: 100%; width: 8%; background: var(--grad); transition: width .6s var(--ease); }
.j-step { position: relative; z-index: 1; background: none; border: none; color: var(--white-dim); display: flex; flex-direction: column; align-items: center; gap: .7rem; transition: color .3s; }
.j-step i {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  font-style: normal; font-weight: 700; font-size: 1.05rem;
  background: var(--bg-dark-2); border: 1px solid rgba(255,255,255,.15);
  transition: all .4s var(--ease);
}
.j-step b { font-size: .85rem; font-weight: 600; }
.j-step:hover { color: #fff; }
.j-step.active { color: #fff; }
.j-step.active i {
  background: var(--grad); border-color: transparent;
  box-shadow: 0 0 30px rgba(124,77,255,.55); transform: scale(1.12);
}
.journey-info { padding: 1.6rem 2rem; font-size: 1.02rem; color: var(--white-soft); min-height: 84px; display: flex; align-items: center; }

/* ── USP ── */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.15rem; }
.usp-card {
  background: var(--bg-white); border: 1px solid #e7e9f2; border-radius: var(--radius);
  padding: 1.8rem 1.6rem; transition: transform .4s var(--ease), box-shadow .4s;
}
.usp-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(30,40,90,.12); }
.usp-ico {
  display: grid; place-items: center; width: 52px; height: 52px; font-size: 1.5rem;
  border-radius: 16px; background: linear-gradient(135deg, #eef1ff, #f4ecff);
  border: 1px solid #e3e6fb; margin-bottom: 1rem;
}
.usp-card h3 { color: var(--ink); margin-bottom: .35rem; }
.usp-card p { font-size: .9rem; color: var(--ink-soft); }

/* ── Testimonials ── */
.carousel { position: relative; overflow: hidden; padding-bottom: .5rem; }
.carousel-track { display: flex; gap: 1.2rem; transition: transform .65s var(--ease); will-change: transform; }
.testimonial { flex: 0 0 min(430px, 86vw); padding: 2rem 1.9rem; }
.stars { color: #fbbf24; letter-spacing: .2em; margin-bottom: 1rem; font-size: .95rem; }
.testimonial blockquote { font-size: 1.05rem; line-height: 1.55; margin-bottom: 1.4rem; color: #fff; }
.testimonial figcaption { display: flex; align-items: center; gap: .8rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; color: #fff; font-size: 1.05rem;
}
.av-1 { background: linear-gradient(135deg, #4f7cff, #312e81); }
.av-2 { background: linear-gradient(135deg, #a855f7, #6b21a8); }
.av-3 { background: linear-gradient(135deg, #0ea5e9, #0c4a6e); }
.av-4 { background: linear-gradient(135deg, #f472b6, #9d174d); }
.testimonial figcaption b { display: block; font-size: .95rem; }
.testimonial figcaption i { font-style: normal; font-size: .8rem; color: var(--white-dim); }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05); color: #fff; font-size: 1rem;
  transition: background .3s, transform .3s;
}
.carousel-nav button:hover { background: rgba(255,255,255,.14); transform: scale(1.08); }
.carousel-dots { display: flex; gap: .5rem; }
.carousel-dots i {
  width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.22);
  transition: all .4s var(--ease); cursor: pointer;
}
.carousel-dots i.active { width: 26px; background: var(--grad); }

/* Logo wall */
.logo-wall { margin-top: 4.5rem; text-align: center; }
.logo-wall-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .2em; color: var(--white-dim); margin-bottom: 1.6rem; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.8rem; align-items: center; }
.fake-logo {
  font-size: 1.05rem; letter-spacing: .02em; color: rgba(255,255,255,.4);
  font-weight: 300; transition: color .35s, transform .35s; white-space: nowrap;
}
.fake-logo b { font-weight: 700; }
.fake-logo:hover { color: rgba(255,255,255,.85); transform: translateY(-2px); }
.logo-wall-note { margin-top: 1.4rem; font-size: .72rem; color: rgba(255,255,255,.3); }

/* ── Over ons ── */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; display: flex; justify-content: center; }
.about-portrait {
  position: relative; width: min(340px, 80vw); aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1c2340, #0b0d14 70%);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 30px 80px rgba(20,28,70,.35);
}
.about-initials {
  font-size: 4.4rem; font-weight: 800; letter-spacing: -.04em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  position: relative; z-index: 1;
}
.about-glow {
  position: absolute; inset: 0;
  background: radial-gradient(240px 240px at 60% 30%, rgba(99,102,241,.35), transparent 70%),
              radial-gradient(220px 220px at 30% 80%, rgba(34,211,238,.2), transparent 70%);
  animation: aurora 12s ease-in-out infinite alternate;
}
.about-chip { position: absolute; bottom: -16px; padding: .6rem 1.2rem; font-size: .82rem; font-weight: 600; }
.about-copy h2 { margin-bottom: 1.2rem; color: var(--ink); }
.about-copy p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 34rem; }
.about-points { list-style: none; margin: 1.4rem 0 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.about-points li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: .95rem; }
.about-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: #16a34a; font-weight: 700;
}
.about-points b { color: var(--ink); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.blog-card {
  background: var(--bg-white); border: 1px solid #e7e9f2; border-radius: var(--radius);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(30,40,90,.14); }
.blog-cover {
  height: 165px; display: grid; place-items: center; font-size: 2.6rem; position: relative; overflow: hidden;
}
.blog-cover span { filter: drop-shadow(0 6px 18px rgba(0,0,0,.3)); transition: transform .5s var(--ease); }
.blog-card:hover .blog-cover span { transform: scale(1.18) rotate(-5deg); }
.bc-1 { background: linear-gradient(135deg, #4f7cff, #312e81); }
.bc-2 { background: linear-gradient(135deg, #7c3aed, #3b0764); }
.bc-3 { background: linear-gradient(135deg, #0891b2, #164e63); }
.bc-4 { background: linear-gradient(135deg, #db2777, #701a41); }
.bc-5 { background: linear-gradient(135deg, #059669, #064e3b); }
.bc-6 { background: linear-gradient(135deg, #d97706, #78350f); }
.blog-body { padding: 1.4rem 1.5rem 1.6rem; }
.blog-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #6d74e8; }
.blog-body h3 { margin: .5rem 0 .5rem; color: var(--ink); font-size: 1.08rem; line-height: 1.35; }
.blog-body p { font-size: .88rem; color: var(--ink-soft); margin-bottom: .9rem; }
.blog-meta { font-size: .76rem; color: #9aa0b5; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .9rem; }
.faq-item { padding: 0; overflow: hidden; transition: border-color .35s, background .35s; }
.faq-item[open] { border-color: rgba(99,102,241,.5); background: rgba(255,255,255,.08); }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; font-weight: 600; font-size: 1.02rem; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex: 0 0 auto; width: 12px; height: 12px;
  border-right: 2px solid var(--white-dim); border-bottom: 2px solid var(--white-dim);
  transform: rotate(45deg); transition: transform .35s var(--ease); margin-top: -4px;
}
.faq-item[open] .faq-chevron { transform: rotate(225deg); margin-top: 4px; border-color: var(--cyan); }
.faq-body { padding: 0 1.5rem 1.3rem; color: var(--white-soft); font-size: .95rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 1.6rem; align-items: start; position: relative; }
.contact-form { padding: 2.2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .4rem; font-size: .82rem; font-weight: 600; color: var(--white-soft); }
.contact-form input, .contact-form textarea {
  font: inherit; color: #fff; padding: .85rem 1rem; border-radius: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(99,102,241,.18);
}
.contact-form ::placeholder { color: rgba(255,255,255,.32); }
.form-note { font-size: .76rem; color: var(--white-dim); }
.form-success { color: #34d399; font-weight: 600; font-size: .95rem; }
.contact-side { display: flex; flex-direction: column; gap: 1.6rem; }
.planner { padding: 1.6rem; }
.planner > label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--white-dim); margin-bottom: 1rem; }
.planner-days { display: flex; gap: .5rem; margin-bottom: 1rem; }
.p-day {
  flex: 1; padding: .55rem .3rem; border-radius: 12px; font-size: .72rem; line-height: 1.4;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--white-soft);
  transition: all .3s;
}
.p-day b { font-size: .95rem; }
.p-day:hover { background: rgba(255,255,255,.12); }
.p-day.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 8px 22px rgba(99,102,241,.4); }
.planner-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-bottom: 1rem; }
.p-slot {
  padding: .55rem 0; border-radius: 10px; font-size: .82rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--white-soft);
  transition: all .3s;
}
.p-slot:hover { background: rgba(255,255,255,.12); }
.p-slot.active { border-color: var(--cyan); color: var(--cyan); background: rgba(34,211,238,.08); }
.planner-note { font-size: .72rem; color: var(--white-dim); }
.contact-info { padding: 1.6rem; font-size: .95rem; display: flex; flex-direction: column; gap: .45rem; }
.contact-info a { color: var(--white-soft); transition: color .3s; }
.contact-info a:hover { color: #fff; }
.map-ph {
  margin-top: .8rem; padding: 1.4rem 1rem; border-radius: 14px; text-align: center;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,.07) 12px 24px);
  border: 1px dashed rgba(255,255,255,.2); font-size: .82rem; color: var(--white-dim);
}
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  font-weight: 700; font-size: .9rem; transition: all .3s;
}
.socials a:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); }

/* ── Footer ── */
.footer { background: #07080d; border-top: 1px solid rgba(255,255,255,.07); padding: 4.5rem 0 2.5rem; color: var(--white-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer-brand p { margin-top: 1.1rem; font-size: .9rem; max-width: 20rem; color: var(--white-dim); }
.footer-col { display: flex; flex-direction: column; gap: .65rem; font-size: .9rem; }
.footer-col b { color: #fff; margin-bottom: .35rem; font-size: .95rem; }
.footer-col a { color: var(--white-dim); transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-news p { font-size: .85rem; color: var(--white-dim); }
.news-form { display: flex; gap: .5rem; margin-top: .5rem; }
.news-form input {
  flex: 1; font: inherit; font-size: .88rem; color: #fff; padding: .7rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); min-width: 0;
}
.news-form input:focus { outline: none; border-color: var(--indigo); }
.news-form .btn { padding: .7rem 1.1rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8rem; color: var(--white-dim);
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a:hover { color: #fff; }

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .nav { display: none; }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .header.menu-open .nav {
    display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: rgba(11,13,20,.97); backdrop-filter: blur(20px); padding: 1.6rem 5vw 2rem; gap: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 1rem; }
  .dash-grid { grid-template-columns: repeat(2, 1fr); grid-template-areas: "k1 k2" "k3 k4" "chart chart" "feed feed" "flow flow"; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-visual { min-height: 160px; }
  .journey { grid-template-columns: repeat(3, 1fr); gap: 1.4rem .6rem; }
  .journey-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { height: 330px; }
  .orb-card { min-width: 160px; font-size: .72rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .line { transform: none; }
}
