/* ============================================================
   HeadFirst — Personalized MSP Lead Landing · V3
   Modelled on headfirst.nl (light, clean, navy testimonials,
   red icon tiles, lavender highlight, numbered approach).
   Loads after colors_and_type.css. Prefix: .v3-
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: rgba(238,39,80,.20); color: var(--hf-aubergine); }

:root {
  --v3-navy:      #1E1B3E;   /* testimonial cards */
  --v3-navy-2:    #262251;
  --v3-lav:       #ECE5F2;   /* highlight box */
  --v3-lav-2:     #F4EFF8;
  --v3-paper:     #FBF9FC;
  --v3-hair:      #E9E2EE;
  --v3-hair-2:    #DED4E6;
  --v3-ink:       #221A26;
  --v3-ink-2:     #5A4F60;   /* body on light */
  --v3-shadow:    0 1px 2px rgba(43,5,42,.04), 0 20px 46px -26px rgba(43,5,42,.22);
  --v3-shadow-lg: 0 30px 70px -34px rgba(28,5,30,.4);
  --v3-maxw:      1180px;
  --v3-gutter:    clamp(20px, 4vw, 44px);
}

body { background: #fff; color: var(--v3-ink); font-family: var(--hf-font-body); }

.v3-container { width: min(var(--v3-maxw), 100% - (var(--v3-gutter) * 2)); margin-inline: auto; }
.v3-section { padding: clamp(58px, 8vw, 104px) 0; position: relative; }
.v3-section.tight { padding-block: clamp(46px, 6vw, 80px); }

/* Shared heading + eyebrow ---------------------------------- */
.v3-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 12px/1 var(--hf-font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--hf-red);
}
.v3-eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--hf-red); }
.v3-h2 {
  font: 700 clamp(28px, 3.6vw, 46px)/1.1 var(--hf-font-display);
  letter-spacing: -0.02em; color: var(--hf-aubergine); margin: 16px 0 0; text-wrap: balance;
}
.v3-h2 .accent { color: var(--hf-red); }
.v3-lead { font: 400 17px/1.62 var(--hf-font-body); color: var(--v3-ink-2); margin: 18px 0 0; max-width: 62ch; }
.v3-lead b { color: var(--hf-aubergine); font-weight: 600; }

/* Buttons --------------------------------------------------- */
.v3-btn {
  font-family: var(--hf-font-display); font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; white-space: nowrap;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.v3-btn svg.arrow { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.v3-btn:hover svg.arrow { transform: translateX(4px); }
.v3-btn-primary { background: var(--hf-red); color: #fff; box-shadow: 0 12px 30px -14px rgba(238,39,80,.6); }
.v3-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(238,39,80,.7); }
.v3-btn-primary:active { color: #fff; transform: translateY(0) scale(.99); }
.v3-btn-outline { background: #fff; color: var(--hf-aubergine); border-color: var(--v3-hair-2); }
.v3-btn-outline:hover { border-color: var(--hf-red); color: var(--hf-red); transform: translateY(-2px); }
.v3-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.v3-btn-ghost:hover { border-color: rgba(255,255,255,.75); color: #fff; transform: translateY(-2px); }
.v3-btn-lg { font-size: 16px; padding: 17px 32px; }
.v3-btn:focus-visible { outline: 2px solid var(--hf-red); outline-offset: 3px; }

/* Scroll progress ------------------------------------------- */
.v3-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--hf-red), #FF6C88); z-index: 200; transition: width .1s linear; }

/* ============================================================
   HEADER — light, sticky
   ============================================================ */
.v3-header {
  position: sticky; top: 0; z-index: 90; background: rgba(35,5,31,.55);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,.08); transition: background .3s ease, border-color .3s ease;
}
.v3-header.is-scrolled { background: rgba(35,5,31,.92); border-bottom-color: rgba(255,255,255,.14); }
.v3-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 14px 0; }
.v3-logo { height: 28px; filter: brightness(0) invert(1); }
.v3-logo-link { display: inline-flex; }
.v3-co {
  justify-self: center; display: flex; align-items: center; gap: 12px;
  padding: 6px 15px 6px 6px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.05);
  transition: border-color .25s ease, background .25s ease;
}
.v3-co:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.v3-co image-slot { --slot-bg:#fff; width: 32px; height: 32px; border-radius: 50%; background:#fff; overflow:hidden; display:grid; place-items:center; flex-shrink:0; }
.v3-co-name { display: flex; flex-direction: column; line-height: 1.05; }
.v3-co-name .k { font: 500 9.5px/1 var(--hf-font-mono); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.v3-co-name .v { font: 700 14px/1.2 var(--hf-font-display); color: #fff; margin-top: 3px; }
.v3-nav-cta { justify-self: end; }
@media (max-width: 720px){ .v3-nav { grid-template-columns: 1fr auto; } .v3-co { display: none; } }

/* ============================================================
   HERO — light, personalized, MSP video
   ============================================================ */
.v3-hero { position: relative; overflow: hidden; isolation: isolate; color: #fff; padding: clamp(40px,5vw,72px) 0 clamp(52px,6vw,84px);
  background:
    radial-gradient(95% 80% at 88% -2%, rgba(238,39,80,.30) 0%, rgba(238,39,80,0) 46%),
    radial-gradient(90% 120% at 6% 112%, rgba(139,21,97,.5) 0%, rgba(139,21,97,0) 50%),
    linear-gradient(158deg, #4A0945 0%, #3B0738 52%, #2C052A 100%);
}
.v3-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 60% 20%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 60% 20%, #000 30%, transparent 78%);
}
.v3-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.v3-hero-lines { position: absolute; right: -10%; top: 0%; width: 108%; max-width: 1500px; opacity: .5; mix-blend-mode: screen; pointer-events: none; z-index: 0; will-change: transform; }
.v3-hero .v3-hero-lines { filter: saturate(1.15) brightness(1.05); }
.v3-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr 1.05fr; gap: clamp(30px,4vw,60px); align-items: center; }
@media (max-width: 940px){ .v3-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
/* beeld rechts verticaal centreren t.o.v. de tekstkolom (stond eerst bovenaan uitgelijnd) */
.v3-hero-aside { align-self: center; }

.v3-hero-tag {
  display: inline-flex; align-items: center; gap: 11px; flex-wrap: wrap;
  padding: 7px 15px 7px 7px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.05); margin-bottom: 22px;
}
.v3-hero-tag .chip { font: 600 11.5px/1 var(--hf-font-display); color: #fff; background: var(--hf-red); padding: 6px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.v3-hero-tag .chip svg { width: 13px; height: 13px; }
.v3-hero-tag .lab { font: 500 11.5px/1 var(--hf-font-mono); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.v3-hero-tag .lab b { color: #fff; font-weight: 600; }

.v3-hero-hi { font: 500 clamp(14px,1.4vw,16px)/1 var(--hf-font-mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 10px; }
.v3-hero-name { font: 800 clamp(52px,8vw,108px)/.92 var(--hf-font-display); letter-spacing: -0.04em; color: #fff; margin: 0; display: flex; align-items: baseline; flex-wrap: wrap; }
.v3-hero-name .dot { color: var(--hf-red); }
.v3-hero-lead { font: 400 clamp(18px,1.9vw,23px)/1.45 var(--hf-font-display); color: rgba(255,255,255,.94); margin: 22px 0 0; max-width: 25ch; }
.v3-hero-lead b { font-weight: 700; color: #fff; }
.v3-hero-lead .u { background-image: linear-gradient(transparent 60%, rgba(238,39,80,.55) 0); padding: 0 1px; }
.v3-hero-sub { font: 400 16px/1.6 var(--hf-font-body); color: rgba(255,255,255,.72); margin: 18px 0 0; max-width: 46ch; border-left: 2px solid var(--hf-red); padding-left: 16px; }
.v3-hero-cta { display: flex; gap: 13px; margin-top: 30px; flex-wrap: wrap; }
.v3-hero-divider { height: 1px; background: rgba(255,255,255,.12); margin: 30px 0 20px; }

.v3-identity { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 13px 17px; backdrop-filter: blur(6px); max-width: 470px; }
.v3-avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #fff; box-shadow: 0 0 0 2px var(--hf-red), 0 0 0 5px rgba(255,255,255,.1); }
.v3-avatar image-slot { width: 100%; height: 100%; }
.v3-identity .who .n { font: 700 15px/1.2 var(--hf-font-display); color: #fff; }
.v3-identity .who .r { font: 400 13px/1.35 var(--hf-font-body); color: rgba(255,255,255,.62); margin-top: 2px; }
.v3-identity .vsep { width: 1px; align-self: stretch; background: rgba(255,255,255,.14); }
.v3-identity .co-logo { width: 46px; height: 46px; border-radius: 10px; background: #fff; overflow: hidden; flex-shrink: 0; }
.v3-identity .co-logo image-slot { width: 100%; height: 100%; }

/* --- Hero video --- */
.v3-video { position: relative; }
.v3-video-frame {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16/10; background: #14031a;
  box-shadow: var(--v3-shadow-lg); border: 1px solid rgba(0,0,0,.05);
}
.v3-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.v3-video-frame.is-playing .v3-video-overlay { opacity: 0; pointer-events: none; }
.v3-video-frame.is-playing ~ .v3-video-chip { opacity: 0; pointer-events: none; }
.v3-video-overlay { position: absolute; inset: 0; z-index: 3; transition: opacity .4s ease; cursor: pointer; }
.v3-video-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,5,30,.08) 40%, rgba(28,5,30,.6) 100%); }
.v3-video-tag {
  position: absolute; left: 16px; top: 16px; z-index: 4; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(238,39,80,.94); color: #fff; padding: 7px 13px; border-radius: 999px;
  font: 600 11px/1 var(--hf-font-mono); letter-spacing: .1em; text-transform: uppercase;
}
.v3-video-tag .rec { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: v3-blink 1.4s infinite; }
@keyframes v3-blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.v3-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 4;
  width: 80px; height: 80px; border-radius: 50%; background: var(--hf-red); border: none; cursor: pointer;
  display: grid; place-items: center; color: #fff; box-shadow: 0 14px 40px rgba(238,39,80,.55);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .2s ease;
}
.v3-play::before { content: ""; position: absolute; inset: -1px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(238,39,80,.5); animation: v3-ring 2.6s infinite; }
@keyframes v3-ring { 0%{box-shadow:0 0 0 0 rgba(238,39,80,.45);} 70%{box-shadow:0 0 0 22px rgba(238,39,80,0);} 100%{box-shadow:0 0 0 0 rgba(238,39,80,0);} }
.v3-video-overlay:hover .v3-play { transform: translate(-50%,-50%) scale(1.07); background: var(--hf-red-600); }
.v3-play svg { margin-left: 4px; }
.v3-video-cap { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 4; color: #fff; }
.v3-video-cap .t { font: 600 16px/1.3 var(--hf-font-display); }
.v3-video-cap .s { font: 400 12px/1.3 var(--hf-font-mono); letter-spacing: .04em; color: rgba(255,255,255,.75); margin-top: 4px; text-transform: uppercase; }
.v3-video-chip {
  position: absolute; right: -14px; bottom: 42px; z-index: 5; background: #fff; color: var(--hf-aubergine);
  border-radius: 14px; padding: 11px 15px; box-shadow: 0 20px 40px -16px rgba(28,5,30,.45); display: flex; align-items: center; gap: 11px;
  transition: opacity .3s ease;
}
@media (max-width: 940px){ .v3-video-chip { right: 12px; bottom: 12px; } }
.v3-video-chip .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--hf-red-100); color: var(--hf-red); display: grid; place-items: center; flex-shrink: 0; }
.v3-video-chip .v { display: block; font: 800 15px/1 var(--hf-font-display); }
.v3-video-chip .l { display: block; font: 500 10.5px/1.2 var(--hf-font-mono); letter-spacing: .04em; color: var(--hf-ink-3); margin-top: 3px; text-transform: uppercase; }

/* ============================================================
   LOGO STRIP + VOORDELEN BOX
   ============================================================ */
.v3-logos { border-top: 1px solid var(--v3-hair); border-bottom: 1px solid var(--v3-hair); background: var(--v3-paper); }
.v3-logos-row { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px,4vw,56px); padding: 46px 0; flex-wrap: wrap; }
.v3-logos-lab { font: 500 11.5px/1.5 var(--hf-font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--hf-mute); max-width: 24ch; flex-shrink: 0; }
.v3-logos-list { flex: 1 1 auto; }
.v3-logos-list { display: flex; align-items: center; gap: clamp(24px,4vw,48px); flex-wrap: wrap; justify-content: space-evenly; }
.v3-client-logo { height: clamp(100px,12vw,148px); width: auto; max-width: 340px; object-fit: contain; mix-blend-mode: multiply; opacity: .95; transition: opacity .25s ease, transform .25s ease; }
.v3-client-logo:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 760px){ .v3-logos-list { justify-content: center; width: 100%; gap: clamp(28px,7vw,48px); } }
/* strip met veel logo's: raster in plaats van flex, anders blijven er losse logo's
   op een halflege tweede rij achter. Vier per rij, kleiner dan de standaardstrip. */
.v3-logos-many { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2.4vw,30px); justify-items: center; align-items: center; }
.v3-logos-many .v3-client-logo { height: clamp(73px,7.8vw,101px); max-width: 215px; }
@media (max-width: 980px){ .v3-logos-many { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px){ .v3-logos-many { grid-template-columns: repeat(2, 1fr); } }

.v3-benefits { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(28px,5vw,64px); align-items: center; margin-top: clamp(40px,5vw,64px); }
@media (max-width: 860px){ .v3-benefits { grid-template-columns: 1fr; gap: 26px; } }
.v3-benefits-box { background: var(--v3-lav); border-radius: 22px; padding: clamp(26px,3vw,38px); }
.v3-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 30px; }
@media (max-width: 700px){ .v3-benefits-grid { grid-template-columns: 1fr; } }
.v3-benefits-grid li { list-style: none; display: flex; align-items: center; gap: 12px; font: 500 15.5px/1.4 var(--hf-font-display); color: var(--hf-aubergine); }
.v3-benefits-grid .ck { width: 24px; height: 24px; border-radius: 7px; background: var(--hf-red); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.v3-benefits-grid .ck svg { width: 14px; height: 14px; }
.v3-benefits ul { padding: 0; margin: 0; }

/* metric cards (proof band under hero) */
.v3-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(36px,4vw,52px); }
@media (max-width: 760px){ .v3-metrics { grid-template-columns: 1fr 1fr; } }
.v3-metric { background: #fff; border: 1px solid var(--v3-hair); border-radius: 16px; padding: 26px 24px; box-shadow: var(--v3-shadow); position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease; }
@media (hover:hover){ .v3-metric:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(43,5,42,.3); } }
.v3-metric .v { font: 800 clamp(30px,4vw,46px)/1 var(--hf-font-display); color: var(--hf-red); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.v3-metric .l { font: 400 14px/1.45 var(--hf-font-body); color: var(--v3-ink-2); margin-top: 10px; }
.v3-metric .corner { position: absolute; right: -55px; top: -70px; width: 260px; height: 260px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle at center, rgba(238,39,80,.15) 0%, rgba(238,39,80,.08) 36%, rgba(238,39,80,.03) 58%, rgba(238,39,80,0) 74%); filter: blur(12px); }

/* ============================================================
   WAAROM JIJ (personalized blocks)
   ============================================================ */
.v3-why-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px,5vw,64px); align-items: end; }
@media (max-width: 860px){ .v3-why-head { grid-template-columns: 1fr; gap: 18px; } }
.v3-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(38px,5vw,60px); }
@media (max-width: 860px){ .v3-blocks { grid-template-columns: 1fr; } }
.v3-block { position: relative; background: #fff; border: 1px solid var(--v3-hair); border-radius: 18px; padding: 28px 26px; overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease; }
.v3-block::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--hf-red); transform: scaleY(0); transform-origin: top; transition: transform .4s cubic-bezier(.16,1,.3,1); }
@media (hover:hover){ .v3-block:hover { transform: translateY(-6px); box-shadow: var(--v3-shadow); border-color: var(--v3-hair-2); } .v3-block:hover::before { transform: scaleY(1); } }
.v3-block .num { font: 500 12px/1 var(--hf-font-mono); letter-spacing: .1em; color: var(--hf-red); }
.v3-block-head { display: flex; align-items: center; gap: 14px; margin: 14px 0 16px; }
.v3-block .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--v3-lav); color: var(--hf-aubergine); display: grid; place-items: center; flex-shrink: 0; }
.v3-block h3 { font: 700 18px/1.25 var(--hf-font-display); color: var(--hf-aubergine); margin: 0; }
.v3-block p { font: 400 15px/1.6 var(--hf-font-body); color: var(--v3-ink-2); margin: 0; }
.v3-block .tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font: 500 11px/1 var(--hf-font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--hf-aubergine-500); }
.v3-block .tag::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--hf-red); }

/* ============================================================
   MSP-VOORDELEN (4 icon tiles) — screenshot 8
   ============================================================ */
.v3-features { background: var(--v3-paper); }
.v3-features-head { max-width: 62ch; }
.v3-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,2.5vw,32px); margin-top: clamp(40px,5vw,64px); }
@media (max-width: 900px){ .v3-feat-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; } }
@media (max-width: 520px){ .v3-feat-grid { grid-template-columns: 1fr; } }
.v3-feat-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.v3-feat .tile { width: 52px; height: 52px; border-radius: 14px; background: var(--hf-red); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 26px -12px rgba(238,39,80,.55); flex-shrink: 0; }
.v3-feat h4 { font: 700 16.5px/1.25 var(--hf-font-display); color: var(--hf-aubergine); margin: 0; }
.v3-feat p { font: 400 14.5px/1.6 var(--hf-font-body); color: var(--v3-ink-2); margin: 0; }

/* ============================================================
   AANPAK (numbered) — screenshot 5
   ============================================================ */
.v3-approach-grid { display: grid; grid-template-columns: 1fr 1.06fr; gap: clamp(30px,5vw,64px); align-items: center; }
@media (max-width: 900px){ .v3-approach-grid { grid-template-columns: 1fr; gap: 34px; } }
.v3-approach-img { border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--v3-shadow); }
.v3-approach-img image-slot { width: 100%; height: 100%; }
.v3-steps { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 22px; }
.v3-step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.v3-step .n { font: 300 30px/1 var(--hf-font-display); color: var(--hf-red); min-width: 30px; font-variant-numeric: tabular-nums; }
.v3-step h4 { font: 700 17px/1.4 var(--hf-font-display); color: var(--hf-aubergine); margin: 0; display: inline; }
.v3-step p { font: 400 15px/1.6 var(--hf-font-body); color: var(--v3-ink-2); margin: 5px 0 0; }
.v3-step h4 + p { margin-top: 6px; }

/* ============================================================
   UNIEK + REVIEW BANNER — screenshot 7
   ============================================================ */
.v3-unique-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,60px); align-items: center; }
@media (max-width: 940px){ .v3-unique-grid { grid-template-columns: 1fr; gap: 30px; } }
.v3-review-banner { border-radius: 20px; overflow: hidden; box-shadow: var(--v3-shadow); }
.v3-review-banner img { width: 100%; height: auto; display: block; }

/* ============================================================
   TESTIMONIALS CAROUSEL — screenshots 2-4
   ============================================================ */
.v3-testi { background: #fff; }
.v3-testi-stage { margin-top: clamp(34px,4vw,52px); }
.v3-testi-viewport { overflow: hidden; }
.v3-testi-track { display: flex; gap: 18px; align-items: stretch; }
.v3-testi-track.is-animating { transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.v3-testi-item { flex: 0 0 calc((100% - 36px) / 3); min-height: 340px; display: flex; }
.v3-testi-item--img { border-radius: 20px; overflow: hidden; }
.v3-testi-item--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v3-testi-item > .v3-testi-card { width: 100%; }
@media (max-width: 1100px){ .v3-testi-item { flex-basis: calc((100% - 18px) / 2); } }
@media (max-width: 760px){ .v3-testi-item { flex-basis: 100%; } .v3-testi-track { gap: 14px; } }
.v3-testi-side { border-radius: 20px; overflow: hidden; min-height: 340px; }
.v3-testi-side image-slot { width: 100%; height: 100%; }
.v3-testi-card {
  background: var(--v3-navy); color: #fff; border-radius: 20px; padding: clamp(30px,3.5vw,48px);
  display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; min-height: 340px;
}
.v3-testi-card::before { content: "\201C"; position: absolute; top: 6px; left: 26px; font: 800 130px/1 Georgia, serif; color: rgba(255,255,255,.07); }
.v3-testi-quote { position: relative; z-index: 1; font: 400 clamp(18px,2vw,25px)/1.42 var(--hf-font-display); font-style: italic; color: #fff; text-wrap: balance; transition: opacity .35s ease, transform .35s ease; }
.v3-testi-by { position: relative; z-index: 1; margin-top: 28px; transition: opacity .35s ease; }
.v3-testi-by .n { font: 700 16px/1.3 var(--hf-font-display); color: #fff; }
.v3-testi-by .r { font: 400 14px/1.4 var(--hf-font-body); color: rgba(255,255,255,.66); margin-top: 3px; }
.v3-testi-card.is-fading .v3-testi-quote { opacity: 0; transform: translateY(8px); }
.v3-testi-card.is-fading .v3-testi-by { opacity: 0; }
.v3-testi-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; }
.v3-testi-btn {
  width: 56px; height: 44px; border-radius: 999px; background: #fff; cursor: pointer;
  display: grid; place-items: center; color: var(--hf-aubergine); transition: transform .25s ease, border-color .25s ease, color .2s ease, background .2s ease;
}
.v3-testi-btn.prev { border: 1.5px solid var(--hf-red); }
.v3-testi-btn.next { border: 1.5px solid var(--hf-link); }
.v3-testi-btn:hover { transform: translateY(-2px); }
.v3-testi-btn.prev:hover { background: var(--hf-red); color: #fff; }
.v3-testi-btn.next:hover { background: var(--hf-link); color: #fff; }
.v3-testi-dots { display: flex; align-items: center; gap: 8px; margin-left: 6px; }
.v3-testi-dots .d { width: 8px; height: 8px; border-radius: 50%; background: var(--v3-hair-2); transition: background .25s ease, width .25s ease; }
.v3-testi-dots .d.on { background: var(--hf-red); width: 22px; border-radius: 999px; }

/* ============================================================
   CIJFERS (compact stats band)
   ============================================================ */
.v3-stats-band { background: var(--hf-aubergine); color: #fff; border-radius: 24px; padding: clamp(30px,4vw,50px); position: relative; overflow: hidden; }
.v3-stats-band .v3-hero-lines { opacity: .14; top: -30%; right: -6%; width: 55%; }
.v3-stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px,3vw,36px); }
@media (max-width: 760px){ .v3-stats-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
.v3-stat .v { font: 800 clamp(32px,4vw,48px)/1 var(--hf-font-display); color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.v3-stat .v .u2 { color: #FF6C88; }
.v3-stat .l { font: 400 14px/1.5 var(--hf-font-body); color: rgba(255,255,255,.72); margin-top: 10px; }
.v3-stat + .v3-stat { position: relative; }

/* ============================================================
   CONTACT — screenshot 1
   ============================================================ */
.v3-contact { background: var(--v3-paper); }
.v3-contact-grid { display: grid; grid-template-columns: 1fr 1px 1.05fr; gap: clamp(30px,4vw,56px); align-items: start; }
@media (max-width: 900px){ .v3-contact-grid { grid-template-columns: 1fr; gap: 40px; } .v3-contact-sep { display: none; } }
.v3-contact-sep { background: var(--v3-hair); align-self: stretch; }
.v3-contact h2 { font: 700 clamp(28px,3.4vw,42px)/1.1 var(--hf-font-display); letter-spacing: -0.02em; color: var(--hf-aubergine); margin: 0; }
.v3-contact-intro { font: 400 17px/1.62 var(--hf-font-body); color: var(--v3-ink-2); margin: 18px 0 0; max-width: 40ch; }
.v3-team { display: flex; margin: 30px 0 34px; }
.v3-team image-slot { width: clamp(96px, 10vw, 144px); height: clamp(96px, 10vw, 144px); border-radius: 50%; overflow: hidden; border: 3px solid #fff; box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); --slot-bg:#eee; }
.v3-team image-slot + image-slot { margin-left: -16px; }
.v3-contact-lines { display: grid; gap: 14px; }
.v3-cline { display: flex; align-items: flex-start; gap: 8px; }
.v3-cline .ic { width: 24px; height: 24px; color: var(--hf-aubergine); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.v3-cline .big { font: 600 16px/1.5 var(--hf-font-display); color: var(--hf-aubergine); }
.v3-cline .big a { color: inherit; }
.v3-cline .sub { font: 400 13.5px/1.4 var(--hf-font-body); color: var(--hf-mute); margin-top: 2px; }

.v3-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.v3-field { display: flex; flex-direction: column; gap: 8px; }
.v3-field.full { grid-column: 1 / -1; }
.v3-field label { font: 600 14px/1 var(--hf-font-display); color: var(--hf-aubergine); }
.v3-field input, .v3-field select, .v3-field textarea {
  font: 400 15px/1.4 var(--hf-font-body); color: var(--v3-ink); background: #fff;
  border: 1.5px solid var(--v3-hair-2); border-radius: 12px; padding: 13px 15px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.v3-field textarea { resize: vertical; min-height: 110px; }
.v3-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234F0A4A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.v3-field input:focus, .v3-field select:focus, .v3-field textarea:focus { outline: none; border-color: var(--hf-red); box-shadow: 0 0 0 4px rgba(238,39,80,.12); }
.v3-check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 11px; font: 400 13.5px/1.5 var(--hf-font-body); color: var(--v3-ink-2); }
.v3-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--hf-red); flex-shrink: 0; }
.v3-form-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.v3-form-foot .note { font: 400 13.5px/1.4 var(--hf-font-body); color: var(--hf-mute); }
.v3-form-success { grid-column: 1/-1; display: none; align-items: center; gap: 12px; background: rgba(31,157,90,.1); border: 1px solid rgba(31,157,90,.3); color: #157347; border-radius: 12px; padding: 14px 16px; font: 500 14.5px/1.4 var(--hf-font-body); }
.v3-form.sent .v3-form-success { display: flex; }

/* ============================================================
   CTA BAND
   ============================================================ */
.v3-cta-wrap { padding: 0 0 clamp(58px,7vw,96px); }
.v3-cta {
  position: relative; overflow: hidden; border-radius: 26px; color: #fff;
  background: radial-gradient(90% 130% at 90% 8%, rgba(238,39,80,.4) 0%, rgba(238,39,80,0) 46%), linear-gradient(150deg, #4A0945, #2C052A);
  padding: clamp(38px,5vw,60px) clamp(28px,5vw,60px); display: grid; grid-template-columns: 1.3fr auto; gap: 32px; align-items: center;
}
@media (max-width: 820px){ .v3-cta { grid-template-columns: 1fr; gap: 24px; } }
.v3-cta .v3-hero-lines { opacity: .2; top: -30%; right: -8%; width: 55%; }
.v3-cta .txt { position: relative; z-index: 2; }
.v3-cta h2 { font: 700 clamp(25px,3.2vw,40px)/1.14 var(--hf-font-display); letter-spacing: -0.02em; color: #fff; margin: 0; max-width: 22ch; text-wrap: balance; }
.v3-cta p { font: 400 16.5px/1.55 var(--hf-font-body); color: rgba(255,255,255,.74); margin: 15px 0 0; max-width: 46ch; }
.v3-cta .act { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.v3-cta .act .note { font: 500 12.5px/1.5 var(--hf-font-mono); letter-spacing: .04em; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; }
.v3-cta .act .note svg { width: 14px; height: 14px; color: #2ee6a0; }

/* ============================================================
   FOOTER
   ============================================================ */
.v3-footer { background: var(--v3-navy); color: rgba(255,255,255,.66); padding: 44px 0 32px; }
.v3-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.v3-footer img { height: 24px; }
.v3-footer .links { display: flex; gap: 24px; flex-wrap: wrap; }
.v3-footer .links a { font: 400 14px/1.4 var(--hf-font-body); color: rgba(255,255,255,.66); }
.v3-footer .links a:hover { color: #fff; }
.v3-footer .copy-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); margin-top: 24px; padding-top: 22px; }
.v3-footer .copy-row span, .v3-footer .copy-row a { font: 400 12.5px/1.5 var(--hf-font-mono); letter-spacing: .02em; color: rgba(255,255,255,.42); }
.v3-footer .copy-row a { text-decoration: underline; }
.v3-footer .copy-row a:hover { color: rgba(255,255,255,.75); }
.v3-footer .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
[data-reveal="fade"] { transform: none; }
[data-reveal="right"] { transform: translateX(-16px); }
[data-reveal="scale"] { transform: scale(.97); }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .v3-hero-lines { transform: none !important; }
}
html { scroll-behavior: smooth; }

/* ---------------------------------------------------------------------------
   FIX testimonial-stage, 5 augustus 2026.
   .v3-testi-stage had geen rij-opmaak, waardoor beeld, quote en beeld onder
   elkaar stapelden. De fotoslots klapten daarbij naar hoogte 0 terwijl hun
   container 340px hoog bleef, dus stond er boven en onder de quote een leeg
   blok van 340px. Onder 900px vervallen de zijbeelden en blijft de quote over.
   --------------------------------------------------------------------------- */
.v3-testi-stage { display: grid; grid-template-columns: 1fr 1.7fr 1fr; gap: 18px; align-items: stretch; }
.v3-testi-side { display: grid; min-height: 0; }
.v3-testi-side image-slot { display: block; width: 100%; height: 100%; min-height: 280px; }
@media (max-width: 900px) {
  .v3-testi-stage { grid-template-columns: 1fr; }
  .v3-testi-side { display: none; }
}

/* ---------------------------------------------------------------------------
   OG-MODUS, 8 september 2026.
   Aanleiding: LinkedIn Post Inspector toonde het og:image als een schermafdruk
   van de hele hero-top — bedrijfsnaam stond alleen in het 14px-badge in de nav,
   onleesbaar zodra LinkedIn het beeld naar duimnagelformaat schaalt in de feed
   of een InMail. make_og.py roept elke pagina op met ?og=1; deze regels tonen
   dan alleen naam + bedrijf, groot, op een vast 1200x630-canvas.
   --------------------------------------------------------------------------- */
html.og-mode, html.og-mode body { width: 1200px; height: 630px; overflow: hidden; margin: 0; }
html.og-mode [data-reveal] { opacity: 1 !important; transform: none !important; }
.og-mode .v3-progress,
.og-mode .v3-hero-lead, .og-mode .v3-hero-sub, .og-mode .v3-hero-cta, .og-mode .v3-hero-divider,
.og-mode .v3-hero-img, .og-mode .v3-hero-aside,
.og-mode section:not(.v3-hero), .og-mode footer { display: none !important; }
/* Het HeadFirst-merklogo blijft zichtbaar; de rest van de nav — het bedrijfsbadge en de
   CTA-knop — verdwijnt, want dat komt al groot terug in de hero zelf (bedrijfsnaam +
   identiteitsstrook). Sam, 8 september 2026: beide logo's horen in het deelbeeld te staan,
   niet alleen het bedrijfslogo.
   Sam, 9 september 2026: logo groter en naar rechtsboven; de "Voor <track> <plaats>"-chip
   mag eraf; voornaam + bedrijfsregel 1,3x groter (122px->159px, 50px->65px). */
.og-mode .v3-header {
  position: absolute; top: 0; left: 0; width: 1200px; padding: 32px 88px 0 0;
  background: none; border: none; backdrop-filter: none;
}
.og-mode .v3-nav { grid-template-columns: auto; padding: 0; justify-content: end; }
.og-mode .v3-co, .og-mode .v3-nav-cta { display: none !important; }
.og-mode .v3-logo { height: 46px; }
.og-mode .v3-hero {
  width: 1200px; height: 630px; padding: 0; margin: 0; display: flex; align-items: center;
  position: relative;
}
.og-mode .v3-hero-grid { grid-template-columns: 1fr; width: 1200px; padding: 0 88px; gap: 0; }
.og-mode .v3-hero-tag { display: none !important; }
.og-mode .v3-hero-hi { font-size: 24px; margin-bottom: 16px; }
.og-mode .v3-hero-name { font-size: 159px !important; margin: 0 0 8px; }
/* Bedrijfsnaam: los, groot element — bestaat niet in de gewone pagina, wordt
   door setupOgMode() in animations-v3.js ingevoegd zodra ?og actief is. */
.og-mode .v3-og-company {
  font: 800 65px/1.15 var(--hf-font-display, inherit); color: #fff; margin: 0 0 40px;
  display: block; max-width: 17ch;
}
.og-mode .v3-og-company b { color: var(--hf-red); font-weight: 800; }
.og-mode .v3-identity {
  max-width: none; padding: 22px 28px; gap: 24px; margin-top: 4px;
}
.og-mode .v3-avatar { width: 84px; height: 84px; }
.og-mode .v3-identity .who .n { font-size: 27px; }
.og-mode .v3-identity .who .r { font-size: 21px; }
.og-mode .v3-identity .co-logo { width: 76px; height: 76px; }
