/* =========================================================
   Van Iersel Ecom | dark / navy premium
   ========================================================= */

:root {
  /* Surfaces (navy stack) */
  --bg:            #070d1c;
  --bg-2:          #0a1226;
  --surface:       #0e1730;
  --surface-2:     #12203f;
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text:          #eef2fb;
  --text-muted:    #9aa6c2;
  --text-dim:      #6c789a;

  /* Accent (electric azure) */
  --accent:        #4f8dff;
  --accent-bright: #7eb0ff;
  --accent-deep:   #2a63d6;
  --accent-glow:   rgba(79, 141, 255, 0.35);

  --whatsapp:      #25d366;

  /* Type */
  --font-logo:    'Avenir Next', Avenir, 'Manrope', system-ui, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 11vw, 140px);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 18px;
}
.accent { color: var(--accent); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.section__lead {
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 620px;
  margin-top: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #06122c;
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn--primary:hover { box-shadow: 0 14px 40px -8px var(--accent-glow); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-bright); }
.btn--whatsapp {
  background: var(--whatsapp);
  color: #04210f;
  font-weight: 600;
  margin-top: 28px;
}
.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 20px;
  overflow: visible;
}
.whatsapp-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(37,211,102,.5); }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
  mix-blend-mode: screen;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 13, 28, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-logo);
}
.brand__name {
  display: inline-flex;
  align-items: baseline;
  gap: .34em;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav .brand__name { font-size: 24px; }
.brand__name strong { font-weight: 800; color: var(--text); }
.brand__name em {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-family: var(--font-logo);
  font-size: 1em;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238,242,251,.88);
  text-stroke: 1px rgba(238,242,251,.88);
  overflow: hidden;
}
.brand__name em::after {
  content: "Ecom";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.brand__name em::after {
  color: transparent;
  -webkit-text-stroke: 1px #5fe8ff;
  text-stroke: 1px #5fe8ff;
  clip-path: inset(0 100% 0 0);
  filter: drop-shadow(0 0 10px rgba(95,232,255,.55));
  animation: ecomSweep 5s cubic-bezier(.65,0,.35,1) infinite;
}
.brand:hover .brand__name em::after,
.footer__brand:hover .brand__name em::after {
  animation: ecomSweepHover 1.4s cubic-bezier(.65,0,.35,1) both;
}
@keyframes ecomSweep {
  0%, 8% { clip-path: inset(0 100% 0 0); opacity: 0; }
  14% { opacity: 1; }
  34% { clip-path: inset(0 0 0 0); opacity: 1; }
  48%, 100% { clip-path: inset(0 0 0 100%); opacity: 0; }
}
@keyframes ecomSweepHover {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; }
  20% { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px; color: var(--text-muted); font-weight: 500;
  position: relative; transition: color .2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-block: clamp(118px, 13vw, 150px) clamp(58px, 8vw, 88px);
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(320px, 390px);
  gap: clamp(28px, 3.2vw, 46px);
  align-items: center;
}
.hero__copy { max-width: 680px; min-width: 0; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero__sub { color: var(--text-muted); font-size: clamp(17px, 2.2vw, 21px); max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.hero__proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 38px;
  color: var(--text-dim); font-size: 15px;
}
.hero__proof strong { color: var(--text); font-weight: 700; }
.hero__proof .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }

.hero-motion {
  position: relative;
  width: min(100%, 390px);
  min-height: 390px;
  justify-self: end;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 35% 20%, rgba(79,141,255,.18), transparent 38%),
    linear-gradient(180deg, rgba(18,32,63,.72), rgba(7,13,28,.9));
  box-shadow: 0 30px 80px -48px rgba(0,0,0,.95);
  overflow: hidden;
}
.hero-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 54% 42%, #000, transparent 78%);
  opacity: .75;
  pointer-events: none;
}
.ig-card,
.dashboard-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  background: rgba(7,13,28,.78);
  box-shadow: 0 24px 60px -42px rgba(0,0,0,.92);
}
.ig-card {
  position: absolute;
  left: 24px;
  top: 34px;
  width: 184px;
  padding: 14px;
  animation: floatAd 7s ease-in-out infinite;
}
.ig-card__top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.ig-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a59, var(--accent));
}
.ig-card__top strong,
.dashboard-card__top strong,
.metric-row strong {
  display: block;
  color: var(--text);
  line-height: 1.1;
}
.ig-card__top small,
.metric-row span,
.dashboard-card__top span {
  color: var(--text-dim);
  font-size: 13px;
}
.ig-card__creative {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 148px;
  padding: 16px;
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.03)),
    radial-gradient(circle at 25% 20%, rgba(255,122,89,.58), transparent 34%),
    radial-gradient(circle at 80% 8%, rgba(79,141,255,.72), transparent 36%),
    #101a34;
}
.ig-card__creative span {
  color: rgba(255,255,255,.74);
  font-size: 12px;
}
.ig-card__creative strong {
  max-width: 120px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}
.ig-card__meta {
  display: flex;
  gap: 6px;
  margin: 12px 0;
}
.ig-card__meta span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.ig-card__cta {
  width: 100%;
  padding: 9px 10px;
  border-radius: 9px;
  background: rgba(79,141,255,.18);
  color: var(--accent-bright);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.motion-path {
  position: absolute;
  z-index: 2;
  left: 190px;
  top: 178px;
  width: 84px;
  height: 2px;
  --pulse-distance: 80px;
  background: linear-gradient(90deg, rgba(126,176,255,.16), rgba(126,176,255,.75));
}
.motion-path::before,
.motion-path::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 22px rgba(126,176,255,.8);
  transform: translateY(-50%);
}
.motion-path::before { left: -2px; opacity: .45; }
.motion-path::after {
  left: 0;
  animation: dataPulse 2.6s ease-in-out infinite;
}
.motion-path span {
  position: absolute;
  right: -2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent-bright);
  border-right: 2px solid var(--accent-bright);
  transform: translateY(-50%) rotate(45deg);
}
.dashboard-card {
  position: absolute;
  right: 22px;
  bottom: 34px;
  width: 204px;
  padding: 18px;
  animation: floatDash 7s ease-in-out infinite;
}
.dashboard-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}
.dashboard-card__top strong {
  color: var(--whatsapp);
  font-family: var(--font-display);
  font-size: 30px;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid var(--border);
}
.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 62px;
  margin-top: 12px;
}
.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep));
  transform-origin: bottom;
  animation: barLift 2.8s ease-in-out infinite;
}
.chart-bars span:nth-child(1) { height: 38%; animation-delay: 0s; }
.chart-bars span:nth-child(2) { height: 52%; animation-delay: .12s; }
.chart-bars span:nth-child(3) { height: 46%; animation-delay: .24s; }
.chart-bars span:nth-child(4) { height: 72%; animation-delay: .36s; }
.chart-bars span:nth-child(5) { height: 88%; animation-delay: .48s; }
@keyframes floatAd {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(-1deg); }
}
@keyframes floatDash {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
  50% { transform: translate3d(0, 10px, 0) rotate(.4deg); }
}
@keyframes dataPulse {
  0% { transform: translate(0, -50%) scale(.75); opacity: 0; }
  18% { opacity: 1; }
  80%, 100% { transform: translate(var(--pulse-distance), -50%) scale(1); opacity: 0; }
}
@keyframes barLift {
  0%, 100% { transform: scaleY(.78); opacity: .72; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* aurora blobs */
.hero__aurora { position: absolute; inset: 0; z-index: 0; filter: blur(70px); opacity: .55; }
.blob { position: absolute; border-radius: 50%; }
.blob--1 { width: 480px; height: 480px; top: -120px; right: -60px;
  background: radial-gradient(circle, var(--accent), transparent 70%); animation: drift1 18s ease-in-out infinite; }
.blob--2 { width: 420px; height: 420px; bottom: -140px; left: -80px;
  background: radial-gradient(circle, var(--accent-deep), transparent 70%); animation: drift2 22s ease-in-out infinite; }
.blob--3 { width: 360px; height: 360px; top: 30%; left: 40%;
  background: radial-gradient(circle, #3a7bff, transparent 70%); animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-60px,50px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(70px,-40px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,-30px) scale(1.1)} }

/* subtle grid overlay */
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  opacity: .5;
}

/* ---------- Marquee ---------- */
.marquee-wrap { padding: 40px 0; border-block: 1px solid var(--border); background: var(--bg-2); }
.marquee-label {
  text-align: center; color: var(--text-dim); font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 26px;
}
.client-grid {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.client-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .035);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.client-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) brightness(0) invert(1);
  opacity: .64;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.client-logo--wide img { max-height: 48px; }
.client-logo--preserve img {
  filter: grayscale(1) saturate(0) contrast(1.08);
  opacity: .78;
}
.client-logo--mono-swap img {
  position: absolute;
  max-width: calc(100% - 44px);
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}
.client-logo--mono-swap .logo-mono {
  filter: none;
  opacity: .78;
}
.client-logo--mono-swap .logo-color {
  filter: none;
  opacity: 0;
}
.client-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(126,176,255,.34);
  background: #fff;
  box-shadow: 0 18px 42px -28px rgba(126,176,255,.65);
}
.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}
.client-logo--mono-swap:hover .logo-mono { opacity: 0; }
.client-logo--mono-swap:hover .logo-color { opacity: 1; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--border); }
.section__head { max-width: 720px; margin-bottom: 60px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  padding: 34px 28px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(79,141,255,.12), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.card:hover {
  transform: translateY(-6px) scale(1.018);
  border-color: rgba(126,176,255,.34);
  background: rgba(255,255,255,.06);
  box-shadow: 0 22px 52px -36px rgba(95,232,255,.5);
}
.card:hover::before { opacity: 1; }
.card__no { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 16px 0 12px; letter-spacing: -0.01em; }
.card p { color: var(--text-muted); font-size: 15.5px; }
.card--feature {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border-color: rgba(79,141,255,.28);
}
.card--wide {
  grid-column: span 2;
  min-height: 250px;
}
.card--wide h3 { font-size: clamp(28px, 4vw, 42px); }
.card--wide p { max-width: 680px; font-size: 17px; }
.card__badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-bright); border: 1px solid rgba(79,141,255,.4);
  padding: 4px 10px; border-radius: 999px;
  transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.card__badge:hover {
  color: #ffffff;
  border-color: rgba(95, 232, 255, .86);
  background: rgba(95, 232, 255, .18);
  box-shadow: 0 0 24px rgba(95, 232, 255, .28);
}

/* ---------- Aanpak / steps ---------- */
.aanpak { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.aanpak__intro { position: sticky; top: 110px; }
.steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.step {
  display: flex; gap: 22px; padding: 26px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .28s ease, transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.step:hover {
  border-color: rgba(126,176,255,.34);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 48px -36px rgba(95,232,255,.48);
  transform: translateX(6px) scale(1.018);
}
.step__no { font-family: var(--font-display); font-weight: 900; font-size: 26px; color: var(--accent); line-height: 1; }
.step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 15.5px; }

/* ---------- Focus ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.focus-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at 20% 0%, rgba(79,141,255,.12), transparent 62%);
  pointer-events: none;
}
.focus-card > * { position: relative; z-index: 1; }
.focus-card:hover {
  transform: translateY(-6px) scale(1.018);
  border-color: rgba(126,176,255,.34);
  background: rgba(255,255,255,.065);
  box-shadow: 0 22px 52px -36px rgba(95,232,255,.5);
}
.focus-card__kicker {
  font-family: var(--font-mono);
  color: var(--accent-bright);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.focus-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.08;
  margin: 34px 0 14px;
}
.focus-card p { color: var(--text-muted); font-size: 15.5px; }
.proof-panel {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 28px 30px;
  border: 1px solid rgba(126,176,255,.24);
  border-radius: var(--radius);
  background: rgba(79,141,255,.06);
}
.proof-panel__label {
  display: block;
  font-family: var(--font-mono);
  color: var(--accent-bright);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proof-panel strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}
.proof-panel__items { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.proof-panel__items span {
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.proof-panel__items span:hover {
  color: #ffffff;
  border-color: rgba(95, 232, 255, .86);
  background: rgba(95, 232, 255, .16);
  box-shadow: 0 0 24px rgba(95, 232, 255, .24);
  transform: translateY(-1px);
}
.section--compact { padding-block: clamp(64px, 9vw, 110px); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 430px;
  padding: clamp(26px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(520px circle at 18% 0%, rgba(79,141,255,.1), transparent 60%),
    var(--surface);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(126,176,255,.34);
  background:
    radial-gradient(560px circle at 18% 0%, rgba(95,232,255,.14), transparent 62%),
    rgba(255,255,255,.065);
  box-shadow: 0 24px 56px -36px rgba(95,232,255,.55);
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: rgba(126,176,255,.12);
  pointer-events: none;
}
.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}
.testimonial-card p:first-child { color: var(--text); }
.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(126,176,255,.28);
  box-shadow: 0 10px 26px -18px rgba(126,176,255,.75);
  flex: 0 0 auto;
}
.testimonial-author img.testimonial-photo--context {
  border-radius: 50%;
  object-position: 50% 35%;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
}
.testimonial-author span {
  display: block;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 14px;
}

/* ---------- Over ---------- */
.over { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.profile-panel {
  position: relative;
  min-height: clamp(560px, 52vw, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(120% 95% at 50% 5%, var(--surface-2), var(--bg) 72%);
  border: 1px solid var(--border);
}
.profile-panel::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 62%;
  top: 10%;
  right: -18%;
  background: radial-gradient(circle, var(--accent-glow), transparent 68%);
  filter: blur(18px);
}
.profile-panel > * { position: relative; z-index: 1; }
.profile-panel__photo {
  width: clamp(220px, 24vw, 310px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 50%;
  border: 1px solid rgba(126,176,255,.28);
  box-shadow: 0 22px 56px -34px rgba(95,232,255,.65);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.profile-panel:hover .profile-panel__photo,
.profile-panel__photo:hover {
  transform: scale(1.035);
  border-color: rgba(95,232,255,.64);
  box-shadow: 0 28px 68px -34px rgba(95,232,255,.78);
}
.profile-panel__label {
  font-family: var(--font-mono);
  color: var(--accent-bright);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.profile-panel strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}
.profile-panel span:not(.profile-panel__label) {
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  transition: color .25s ease, border-color .25s ease, text-shadow .25s ease, transform .25s ease;
}
.profile-panel span:not(.profile-panel__label):hover {
  color: #ffffff;
  border-color: rgba(95, 232, 255, .86);
  text-shadow: 0 0 18px rgba(95, 232, 255, .36);
  transform: translateX(3px);
}
.over__text p { color: var(--text-muted); margin-top: 18px; font-size: 16px; }
.over__text .section__title { margin-bottom: 8px; }
.link-arrow { display: inline-block; margin-top: 26px; color: var(--accent-bright); font-weight: 600; transition: gap .2s; }
.link-arrow:hover { color: var(--accent); }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__intro { position: sticky; top: 110px; }
.contact__form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 13px 16px; resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,141,255,.18);
}
.form-note { font-size: 14px; margin-top: 4px; }
.form-note.ok { color: var(--whatsapp); }
.form-note.err { color: #ff6b6b; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: #060b18;
  padding-block: clamp(56px, 8vw, 86px) 30px;
}
.footer__inner { display: grid; gap: 52px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.35fr .85fr .9fr .8fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}
.footer__brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-logo); }
.footer__intro {
  max-width: 330px;
  margin-top: 26px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
}
.footer__meta {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.45;
}
.footer__meta strong,
.footer__column h2 {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.footer__column {
  display: grid;
  align-content: start;
  gap: 14px;
}
.footer__column h2 { margin-bottom: 4px; }
.footer__column a,
.footer__column span,
.footer__legal a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color .2s ease, transform .2s ease;
}
.footer__column a:hover,
.footer__legal a:hover {
  color: var(--accent-bright);
  transform: translateX(2px);
}
.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__contact-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--text-dim);
  transition: color .2s ease;
}
.footer__contact-link path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__contact-link:hover svg { color: var(--accent-bright); }
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 26px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.footer__social:hover {
  background: rgba(95,232,255,.16);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(95,232,255,.24);
}
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13.5px;
}
.footer__bottom p:nth-child(2) { justify-self: center; }
.footer__legal {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* ---------- Legal pages ---------- */
.legal-page { min-height: 100vh; background: var(--bg); }
.legal-hero {
  padding-block: clamp(110px, 14vw, 170px) clamp(42px, 7vw, 76px);
  background:
    radial-gradient(760px circle at 18% 0%, rgba(79,141,255,.16), transparent 62%),
    var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.legal-wrap { max-width: 860px; }
.legal-back {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--accent-bright);
  font-size: 14px;
  font-weight: 600;
}
.legal-back:hover { color: var(--text); }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 84px);
  line-height: .95;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.legal-hero p:last-child {
  margin-top: 18px;
  color: var(--text-muted);
}
.legal-content {
  max-width: 860px;
  color: var(--text-muted);
}
.legal-content h2 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 38px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.85;
}
.legal-content a { color: var(--accent-bright); }
.legal-content a:hover { color: var(--text); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in-view { opacity: 1; transform: none; }
.card.reveal.in-view:hover { transform: translateY(-6px) scale(1.018); }
.step.reveal.in-view:hover { transform: translateX(6px) scale(1.018); }
.focus-card.reveal.in-view:hover { transform: translateY(-6px) scale(1.018); }
.testimonial-card.reveal.in-view:hover { transform: translateY(-6px) scale(1.025); }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero { align-items: flex-start; padding-block: 112px 66px; }
  .hero__content { grid-template-columns: 1fr; }
  .hero-motion {
    justify-self: start;
    width: min(100%, 460px);
  }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,13,28,.96); backdrop-filter: blur(14px);
    padding: 24px var(--pad); gap: 20px; border-bottom: 1px solid var(--border);
  }
  .hero__content, .aanpak, .over, .contact__inner { grid-template-columns: 1fr; }
  .hero-motion {
    justify-self: start;
    width: min(100%, 420px);
    min-height: 390px;
  }
  .ig-card { left: 22px; top: 34px; width: 188px; }
  .ig-card__creative { min-height: 150px; }
  .dashboard-card { right: 20px; bottom: 34px; width: 214px; }
  .motion-path { left: 190px; top: 184px; width: 88px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo { min-height: 82px; padding: 14px 16px; }
  .cards { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; min-height: auto; }
  .focus-grid { grid-template-columns: 1fr; }
  .proof-panel, .testimonial-grid { display: grid; grid-template-columns: 1fr; align-items: start; }
  .proof-panel__items { justify-content: flex-start; }
  .aanpak__intro, .contact__intro { position: static; }
  .over__photo { max-width: 360px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { grid-template-columns: 1fr; }
  .footer__bottom p:nth-child(2), .footer__legal { justify-self: start; }
}
@media (max-width: 520px) {
  .hero-motion {
    min-height: 360px;
  }
  .ig-card {
    left: 16px;
    top: 28px;
    width: 168px;
    padding: 12px;
  }
  .ig-card__creative {
    min-height: 132px;
    padding: 14px;
  }
  .ig-card__creative strong { font-size: 21px; }
  .dashboard-card {
    right: 14px;
    bottom: 28px;
    width: 190px;
    padding: 15px;
  }
  .dashboard-card__top strong { font-size: 25px; }
  .motion-path {
    left: 168px;
    top: 168px;
    width: 70px;
    --pulse-distance: 66px;
  }
  .footer__top { grid-template-columns: 1fr; }
  .footer__legal { gap: 12px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
