/* ==========================================================================
   CleverAI - stylesheet
   Huisstijl: Lora + DM Sans, coral/gold/navy/cream
   ========================================================================== */

:root {
  --coral: #E8573A;
  --gold: #F2B134;
  --navy: #0F1F3D;
  --navy-mid: #1E3460;
  --cream: #FAF5EE;
  --light-blue: #EEF2F8;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  --navy-55: rgba(15, 31, 61, 0.55);
  --navy-12: rgba(15, 31, 61, 0.12);
  --cream-70: rgba(250, 245, 238, 0.7);
  --font-head: 'Lora', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --radius: 24px;
  --radius-sm: 14px;
  --section: clamp(5rem, 10vw, 8.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--white); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1.25rem; }

.container {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}

section { padding-block: var(--section); position: relative; }

.section-tight { padding-block: clamp(3.5rem, 6vw, 5.5rem); }

/* Label: klein, uppercase, Lora */
.label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.label::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  flex: none;
}
.label .nr { color: var(--navy-55); }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.7; }
.muted { color: var(--navy-55); }
.center { text-align: center; }
.center .label { justify-content: center; }

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: 1.05rem 1.9rem;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(232, 87, 58, 0.55);
  will-change: transform;
}
.btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -14px rgba(232, 87, 58, 0.65);
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
  border: 1.5px solid var(--navy-12);
}
.btn-outline:hover {
  color: var(--coral);
  border-color: var(--coral);
  box-shadow: none;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.35);
}
.btn-light:hover { color: var(--coral); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1.5px solid var(--coral);
  padding-bottom: 2px;
  transition: color 0.3s, gap 0.3s var(--ease);
}
.link-more:hover { color: var(--coral); gap: 0.85rem; }

/* ---------- Preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: transform 0.8s var(--ease);
}
.preloader.done { transform: translateY(-101%); }
.preloader .wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.preloader .count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--cream-70);
  letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
}
.preloader .bar {
  width: min(240px, 50vw);
  height: 2px;
  background: rgba(250, 245, 238, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader .bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient);
  transition: width 0.2s linear;
}

/* ---------- Custom cursor ---------- */

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--coral);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(232, 87, 58, 0.45);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              border-color 0.25s, background 0.25s;
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  background: rgba(232, 87, 58, 0.08);
  border-color: rgba(232, 87, 58, 0.7);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Header / navigatie ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform 0.45s var(--ease), background 0.35s, box-shadow 0.35s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(250, 245, 238, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--navy-12);
}
.site-header.hidden { transform: translateY(-100%); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand:hover { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 400;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a sup {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--coral);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav .btn { padding: 0.8rem 1.5rem; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  margin: 6px auto;
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.3s;
}
.nav-toggle.open span { background: var(--cream); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { clip-path: inset(0 0 0 0); visibility: visible; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { overflow: hidden; }
.mobile-menu a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  padding-block: 0.45rem;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease), color 0.3s;
}
.mobile-menu.open a { transform: translateY(0); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a sup {
  font-size: 0.85rem;
  color: var(--coral);
  font-family: var(--font-body);
}
.mobile-menu .btn { margin-top: 2rem; transform: none; font-size: 1rem; }

@media (max-width: 920px) {
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero (home) ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(42rem 42rem at 88% -10%, rgba(242, 177, 52, 0.16), transparent 60%),
    radial-gradient(36rem 36rem at -8% 110%, rgba(232, 87, 58, 0.10), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero .lead { max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--navy-12);
}
.hero-meta div { font-size: 0.92rem; }
.hero-meta .k {
  display: block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy-55);
  margin-bottom: 0.3rem;
}

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-blue);
  box-shadow: 0 30px 60px -30px rgba(15, 31, 61, 0.35);
}
.hero-visual img { width: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.hero-visual .badge {
  position: absolute;
  left: -1.25rem;
  bottom: 2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 36px -18px rgba(15, 31, 61, 0.4);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 400;
}
.hero-visual .badge .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

@media (max-width: 920px) {
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 26rem; }
  .hero-visual .badge { left: 1rem; }
}

/* ---------- Pagina-hero (subpagina's) ---------- */

.page-hero {
  padding-top: clamp(9rem, 16vw, 12rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { z-index: -1; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 44rem; }

/* ---------- Logomarquee ---------- */

.logos { padding-block: clamp(2.5rem, 5vw, 4rem); border-block: 1px solid var(--navy-12); }
.logos .intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--navy-55);
  margin-bottom: 2rem;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
  width: max-content;
  animation: marquee 28s linear infinite;
  padding-inline: clamp(1.5rem, 3.5vw, 3rem);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: clamp(2.4rem, 4.5vw, 3.4rem);
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s;
}
.marquee-track img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Tekstmarquee */
.marquee-text {
  padding-block: clamp(1.2rem, 2.4vw, 2rem);
  background: var(--navy);
  overflow: hidden;
}
.marquee-text .marquee-track {
  animation-duration: 36s;
  gap: 3.5rem;
}
.marquee-text span {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-text span i {
  font-style: normal;
  font-size: 0.8em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Statement ---------- */

.statement h2, .statement p.big {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 24ch;
  margin-inline: auto;
  text-align: center;
  color: var(--navy);
}
.statement .word {
  display: inline-block;
  opacity: 0.12;
  transition: opacity 0.5s ease;
}
.statement .word.on { opacity: 1; }
.statement .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ---------- Kaarten / pijlers ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 920px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  box-shadow: 0 6px 18px -12px rgba(15, 31, 61, 0.18);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -28px rgba(15, 31, 61, 0.32);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover::before { transform: scaleX(1); }

.card .nr {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--coral);
  margin-bottom: 1.4rem;
  display: block;
}
.card h3 { margin-bottom: 0.75rem; }
.card ul.checks {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.card ul.checks li {
  padding: 0.5rem 0 0.5rem 1.9rem;
  position: relative;
  border-bottom: 1px dashed var(--navy-12);
  font-size: 0.97rem;
}
.card ul.checks li:last-child { border-bottom: 0; }
.card ul.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient) border-box;
  border: 1.5px solid transparent;
}
.card ul.checks li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 1.24rem;
  width: 0.5rem;
  height: 0.28rem;
  border-left: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(-45deg);
}
.card .card-foot { margin-top: auto; }

.icon-blob {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 30% 70% 62% 38% / 46% 36% 64% 54%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
  flex: none;
}
.icon-blob svg { width: 1.5rem; height: 1.5rem; }

/* ---------- Cases ---------- */

.case-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--navy);
  color: var(--cream);
  aspect-ratio: 16 / 11;
}
.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s var(--ease), opacity 0.5s;
}
.case-card:hover img { transform: scale(1.06); opacity: 0.65; }
.case-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(15, 31, 61, 0) 30%, rgba(15, 31, 61, 0.92) 82%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.case-card .tag {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.case-card h3 { color: var(--white); margin-bottom: 0.4rem; }
.case-card p {
  color: rgba(250, 245, 238, 0.8);
  font-size: 0.95rem;
  margin: 0;
  max-width: 44ch;
}
.case-card .go {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s;
}
.case-card:hover .go { transform: translateY(0); opacity: 1; }
.case-card:hover { color: var(--cream); }

/* ---------- Cijfers ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }
.stats .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stats .desc { color: var(--navy-55); font-size: 0.98rem; max-width: 22rem; margin-inline: auto; }

/* ---------- Testimonials ---------- */

.testimonials { background: var(--light-blue); border-radius: var(--radius); }
.slider { position: relative; max-width: 52rem; margin-inline: auto; }
.slide { text-align: center; }
/* Slides gestapeld in één grid-cel: hoogte blijft constant, pijltjes verspringen niet */
.slides { display: grid; }
.slides .slide {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0s 0.6s;
}
.slides .slide.active {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 2rem;
  color: var(--navy);
}
.slide blockquote::before { content: "\201C"; color: var(--coral); }
.slide blockquote::after { content: "\201D"; color: var(--coral); }
.slide .who {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: left;
}
.slide .who img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 6px 16px -8px rgba(15, 31, 61, 0.4);
}
.slide .who strong { display: block; font-weight: 500; font-size: 1rem; }
.slide .who span { font-size: 0.85rem; color: var(--navy-55); }

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.slider-nav button {
  background: var(--white);
  border: 1px solid var(--navy-12);
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.1rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.slider-nav button:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dots i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--navy-12);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dots i.active { background: var(--coral); transform: scale(1.25); }

/* ---------- Blogkaarten ---------- */

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--navy);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  box-shadow: 0 6px 18px -12px rgba(15, 31, 61, 0.18);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -28px rgba(15, 31, 61, 0.32);
  color: var(--navy);
}
.blog-card .thumb { overflow: hidden; aspect-ratio: 16 / 10; background: var(--light-blue); }
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--navy-55);
  margin-bottom: 0.8rem;
}
.blog-card .meta .cat { color: var(--coral); font-weight: 500; }
.blog-card h3 { font-size: 1.15rem; line-height: 1.4; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.94rem; color: var(--navy-55); margin-bottom: 1.2rem; }
.blog-card .link-more { margin-top: auto; align-self: flex-start; font-size: 0.92rem; }

/* Blogfilter */
.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter button {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--navy-12);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s;
}
.filter button:hover { border-color: var(--coral); color: var(--coral); }
.filter button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.blog-card.hide { display: none; }

/* ---------- CTA-band ---------- */

.cta-band {
  background: var(--navy);
  border-radius: var(--radius);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.16;
  filter: blur(10px);
}
.cta-band::before { width: 22rem; height: 22rem; top: -11rem; right: -7rem; }
.cta-band::after { width: 16rem; height: 16rem; bottom: -9rem; left: -5rem; }
.cta-band h2 {
  color: var(--cream);
  max-width: 24ch;
  margin-inline: auto;
}
.cta-band p {
  color: rgba(250, 245, 238, 0.75);
  max-width: 52ch;
  margin: 0 auto 2.25rem;
}
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .note {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(250, 245, 238, 0.55);
}

/* ---------- Quote-band (HBR) ---------- */

.quote-band {
  border-top: 1px solid var(--navy-12);
  text-align: center;
}
.quote-band .q {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  max-width: 30ch;
  margin: 0 auto 1.5rem;
}
.quote-band .q em {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote-band cite { font-style: normal; font-size: 0.9rem; color: var(--navy-55); }
.quote-band cite a { color: var(--navy-55); border-bottom: 1px solid var(--navy-12); }
.quote-band cite a:hover { color: var(--coral); }
.quote-band .kicker { margin-top: 1rem; font-weight: 400; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  margin-top: var(--section);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 245, 238, 0.12);
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.site-footer p { color: rgba(250, 245, 238, 0.65); font-size: 0.95rem; max-width: 30ch; }
.site-footer h4 {
  color: var(--cream);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.6rem; }
.site-footer a { color: rgba(250, 245, 238, 0.75); font-size: 0.95rem; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(250, 245, 238, 0.45);
}
.footer-bottom a { color: rgba(250, 245, 238, 0.6); }

/* ---------- Artikel / case detail ---------- */

.article-hero {
  padding-top: clamp(8.5rem, 15vw, 11rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.article-hero .label { margin-bottom: 1.25rem; }
.article-hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 24ch; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--navy-55);
}
.article-meta strong { font-weight: 500; color: var(--navy); }

.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  box-shadow: 0 30px 60px -35px rgba(15, 31, 61, 0.4);
}
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.article {
  max-width: 46rem;
  margin-inline: auto;
}
.article h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-top: 3rem;
}
.article h3 { margin-top: 2.25rem; }
.article img { border-radius: var(--radius-sm); margin-block: 2rem; }
.article figure { margin: 2rem 0; }
.article figcaption {
  font-size: 0.85rem;
  color: var(--navy-55);
  margin-top: -1.25rem;
  padding-top: 0.5rem;
}
.article blockquote {
  margin: 2.25rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-left: 4px solid;
  border-image: var(--gradient) 1;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
}
.article blockquote p:last-child { margin-bottom: 0; }
.article ul, .article ol { padding-left: 1.4rem; }
.article li { margin-bottom: 0.5rem; }
.article li::marker { color: var(--coral); font-weight: 700; }
.article strong { font-weight: 500; }
.article .intro { font-size: 1.15rem; font-weight: 400; }
.article .tip {
  background: var(--light-blue);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: 0.97rem;
  margin-block: 2rem;
}
.article .tip strong { color: var(--coral); }

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-block: 2rem;
  background: var(--navy);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Case-feiten zijbalk-achtig blok */
.case-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  box-shadow: 0 6px 18px -12px rgba(15, 31, 61, 0.18);
}
@media (max-width: 720px) { .case-facts { grid-template-columns: 1fr 1fr; } }
.case-facts .k {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy-55);
  display: block;
  margin-bottom: 0.4rem;
}
.case-facts .v { font-weight: 400; font-size: 0.98rem; }

.result-list { list-style: none; margin: 2rem 0; padding: 0; }
.result-list li {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--navy-12);
}
.result-list .big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 5.5rem;
  white-space: nowrap;
}

/* ---------- Team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 920px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  box-shadow: 0 6px 18px -12px rgba(15, 31, 61, 0.18);
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -28px rgba(15, 31, 61, 0.32); }
.team-card .photo { aspect-ratio: 1; overflow: hidden; background: var(--light-blue); }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.team-card:hover img { transform: scale(1.05); }
.team-card .info { padding: 1.25rem 1.5rem 1.5rem; }
.team-card .info strong { font-weight: 500; font-size: 1.05rem; display: block; }
.team-card .info span { color: var(--navy-55); font-size: 0.9rem; }

/* ---------- Split-secties ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } }
.split .visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15, 31, 61, 0.35);
}
.split .visual img { width: 100%; object-fit: cover; }

/* ---------- Formulieren ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 6px 18px -12px rgba(15, 31, 61, 0.18);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy-55);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--coral);
  background: var(--white);
}
.field textarea { min-height: 9rem; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--navy-55); margin-top: 1rem; }
.form-status { margin-top: 1rem; font-weight: 400; color: var(--coral); min-height: 1.5rem; }

/* Contactfeiten */
.contact-facts { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-facts .fact {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 6px 18px -12px rgba(15, 31, 61, 0.18);
}
.contact-facts .fact .icon-blob { margin: 0; width: 2.8rem; height: 2.8rem; }
.contact-facts .fact .icon-blob svg { width: 1.2rem; height: 1.2rem; }
.contact-facts .k { display: block; font-size: 0.8rem; color: var(--navy-55); }
.contact-facts .v { font-weight: 400; }
.contact-facts a.v { color: var(--navy); }
.contact-facts a.v:hover { color: var(--coral); }

/* ---------- Reveal-animaties ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

[data-reveal="clip"] {
  transform: none;
  clip-path: inset(12% 6% 12% 6% round var(--radius));
  transition: opacity 0.9s var(--ease), clip-path 1.1s var(--ease);
}
[data-reveal="clip"].in-view { clip-path: inset(0 0 0 0 round var(--radius)); }

.hero .split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero .split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
body.loaded .hero .split-word > span { transform: translateY(0); }

/* Parallax binnenbeeld */
[data-parallax] { overflow: hidden; }
[data-parallax] > img { will-change: transform; transform: translateY(var(--py, 0)) scale(1.12); }

/* ---------- Toegankelijkheid ---------- */

:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; }
  .hero .split-word > span { transform: none; }
  .statement .word { opacity: 1; }
  .preloader { display: none; }
}


/* ---------- Wordmarks en klantenchips ---------- */

.marquee-track .wm {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: var(--navy);
  opacity: 0.55;
  white-space: nowrap;
  transition: opacity 0.35s, color 0.35s;
}
.marquee-track .wm:hover { opacity: 1; color: var(--coral); }
.logos .marquee-track { animation-duration: 55s; }

.client-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.client-chips span {
  background: var(--white);
  border: 1px solid var(--navy-12);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  color: var(--navy);
}


/* ---------- Extra effecten (soepel scrollen, overgangen, rolhover) ---------- */

.smooth-wrap { position: fixed; top: 0; left: 0; width: 100%; will-change: transform; }

.page-veil {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--navy);
  transform: translateY(101%);
  transition: transform 0.42s var(--ease);
  pointer-events: none;
}
.page-veil.on { transform: translateY(0); }

.nav-links a .roll { position: relative; display: inline-block; overflow: hidden; vertical-align: bottom; }
.nav-links a .roll span { display: block; transition: transform 0.45s var(--ease); }
.nav-links a .roll span + span { position: absolute; left: 0; top: 100%; color: var(--coral); }
.nav-links a:hover .roll span { transform: translateY(-100%); }

.cursor-ring::after {
  content: "Bekijk";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.25s;
}
body.cursor-view .cursor-ring {
  width: 74px;
  height: 74px;
  background: rgba(232, 87, 58, 0.92);
  border-color: transparent;
}
body.cursor-view .cursor-ring::after { opacity: 1; }
