/* =====================================================================
   IDENTI MEDIA — style.css
   Huisstijl: donker, premium, blauw accent.
   Opbouw:  1. Tokens  2. Reset  3. Typografie  4. Layout  5. Knoppen
            6. Header/Nav  7. Hero  8. Secties  9. Kaarten  10. Proces
            11. Cases  12. Formulieren  13. Footer  14. Animaties
            15. Responsive
   ===================================================================== */

/* ------------------------------ 1. TOKENS -------------------------- */
:root {
  /* Kleuren — pas hier aan, nergens anders */
  --ink:            #05070D;
  --bg:             #0A0E1A;
  --bg-alt:         #080B14;
  --surface:        #0E1422;
  --surface-2:      #131A2B;
  --surface-3:      #182033;

  --blue:           #1E88F5;
  --blue-bright:    #35A9FF;
  --blue-light:     #6FC5FF;
  --blue-deep:      #0A5FD4;
  --cyan:           #00B4FF;

  --text:           #F2F5FA;
  --text-soft:      #C3CCDA;
  --text-muted:     #8A96AB;
  --text-dim:       #5B6579;

  --line:           rgba(255, 255, 255, 0.075);
  --line-strong:    rgba(255, 255, 255, 0.14);
  --line-blue:      rgba(30, 136, 245, 0.34);

  --glow-blue:      0 0 40px rgba(30, 136, 245, 0.28);
  --glow-blue-lg:   0 0 90px rgba(30, 136, 245, 0.22);
  --shadow-card:    0 24px 60px -20px rgba(0, 0, 0, 0.8);

  --grad-blue:      linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 45%, var(--cyan) 100%);
  --grad-text:      linear-gradient(120deg, #FFFFFF 0%, #CFE6FF 45%, var(--blue-bright) 100%);

  /* Typografie */
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Ritme */
  --container: 1280px;
  --gutter: 32px;
  --section-y: 140px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 82px;
}

/* ------------------------------ 2. RESET --------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
/* Vangnet: een inline-icoon zonder eigen maat groeit nooit mee */
svg { width: 1em; height: 1em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure, blockquote { margin: 0; }

::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------- 3. TYPOGRAFIE ------------------------- */
.display,
.h1, .h2, .h3, .h4 {
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.display { font-size: clamp(2.75rem, 6.2vw, 5rem); }
.h1      { font-size: clamp(2.35rem, 5vw, 4rem); }
.h2      { font-size: clamp(2rem, 3.9vw, 3.25rem); line-height: 1.08; }
.h3      { font-size: clamp(1.4rem, 2vw, 1.85rem); line-height: 1.18; letter-spacing: -0.028em; }
.h4      { font-size: 1.125rem; line-height: 1.3; letter-spacing: -0.02em; font-weight: 700; }

.accent { color: var(--blue-bright); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  box-shadow: var(--glow-blue);
}
.eyebrow--plain::before { display: none; }

.lead {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 56ch;
}

.body-text { color: var(--text-muted); line-height: 1.75; }
.body-text p + p { margin-top: 1.1em; }
.body-text strong { color: var(--text); font-weight: 600; }

.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

/* ----------------------------- 4. LAYOUT --------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 840px; }
.container--mid    { max-width: 1060px; }

.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--tight  { padding-block: 96px; }
.section--flush-top { padding-top: 0; }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head--wide { max-width: 900px; }

.split-head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.split-head .lead { max-width: 42ch; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Varianten voor tekst-naast-beeld blokken */
.grid--feature { gap: 64px; align-items: center; }
.grid--top     { gap: 56px; align-items: start; }
.grid--roomy   { gap: 32px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  border: 0;
  margin: 0;
}

/* Achtergrond-decoratie */
.bg-band { position: relative; overflow: hidden; }
.bg-band > * { position: relative; z-index: 2; }

.bg-band--alt { background: var(--bg-alt); }
.bg-band--surface { background: linear-gradient(180deg, var(--bg) 0%, #0B1120 50%, var(--bg) 100%); }

.glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.5;
}
.glow--a { width: 620px; height: 620px; background: radial-gradient(circle, rgba(30,136,245,0.30), transparent 70%); top: -220px; right: -180px; }
.glow--b { width: 520px; height: 520px; background: radial-gradient(circle, rgba(0,180,255,0.16), transparent 70%); bottom: -240px; left: -200px; }
.glow--c { width: 760px; height: 420px; background: radial-gradient(circle, rgba(30,136,245,0.16), transparent 70%); top: 40%; left: 50%; transform: translateX(-50%); }

.grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

/* ---------------------------- 5. KNOPPEN --------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 8px 26px -8px rgba(30, 136, 245, 0.75);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(30, 136, 245, 0.95), 0 0 44px rgba(30, 136, 245, 0.36);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--line-blue);
  background: rgba(30, 136, 245, 0.09);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--line-blue);
  color: var(--blue-bright);
}
.btn--outline:hover { background: rgba(30,136,245,0.1); transform: translateY(-2px); }

.btn--sm { padding: 11px 20px; font-size: 0.875rem; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--blue-bright);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow svg { width: 15px; height: 15px; }
.link-arrow:hover { gap: 14px; color: var(--blue-light); }

/* --------------------------- 6. HEADER / NAV ----------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft),
              backdrop-filter 0.4s var(--ease-soft), height 0.4s var(--ease-soft);
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(8, 11, 20, 0.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { flex: none; display: inline-flex; align-items: center; }
.brand img { height: 30px; width: auto; transition: height 0.4s var(--ease-soft); }
.site-header.is-scrolled .brand img { height: 26px; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }

.nav-link {
  position: relative;
  display: block;
  padding: 9px 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: var(--glow-blue);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 18px; }
.nav-link.is-active { color: var(--text); }
.nav-link.is-active::after { width: 22px; }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

/* CTA in de header: korte tekst zodra de ruimte krap wordt */
.header-cta__short { display: none; }
@media (max-width: 860px) {
  .header-cta__full  { display: none; }
  .header-cta__short { display: inline; }
  .header-cta { padding: 10px 16px; font-size: 0.8125rem; }
  .header-cta svg { width: 14px; height: 14px; }
  .header-inner { gap: 12px; }
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  flex: none;
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: background 0.2s linear;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease), top 0.25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobiel menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) 24px 40px;
  background: linear-gradient(180deg, #070A12 0%, #0A0E1A 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }

.mobile-nav__glow {
  position: absolute;
  top: -140px; right: -140px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(30,136,245,0.30), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.mobile-nav__list { position: relative; display: flex; flex-direction: column; }
.mobile-nav__list li {
  opacity: 0;
  transform: translateY(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open .mobile-nav__list li {
  animation: navIn 0.5s var(--ease) forwards;
}
.mobile-nav.is-open .mobile-nav__list li:nth-child(1) { animation-delay: 0.06s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(2) { animation-delay: 0.12s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(3) { animation-delay: 0.18s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(4) { animation-delay: 0.24s; }
.mobile-nav.is-open .mobile-nav__list li:nth-child(5) { animation-delay: 0.30s; }

@keyframes navIn { to { opacity: 1; transform: none; } }

.mobile-nav__link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 4px;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
}
.mobile-nav__link .idx {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
}
.mobile-nav__link.is-active { color: var(--blue-bright); }

.mobile-nav__foot {
  position: relative;
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.mobile-nav__meta a:hover { color: var(--blue-bright); }

/* Client portal knop */
.portal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.portal-link svg { width: 13px; height: 13px; }
.portal-link:hover {
  color: var(--text);
  border-color: var(--line-blue);
  background: rgba(30,136,245,0.07);
}

/* ------------------------------ 7. HERO ---------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 92px);
  padding-bottom: 96px;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 90% at 78% 18%, rgba(30,136,245,0.20), transparent 60%),
              radial-gradient(ellipse 90% 70% at 10% 90%, rgba(0,180,255,0.09), transparent 60%),
              var(--bg);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}

.hero__title { margin-bottom: 28px; }
.hero__title .line { display: block; }

.hero__lead { margin-bottom: 40px; max-width: 50ch; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__meta li { display: flex; align-items: center; gap: 9px; }
.hero__meta li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

/* Hero visual — volledig in CSS/SVG, geen stockfoto */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 62% 38%, rgba(30,136,245,0.34), transparent 58%),
    linear-gradient(150deg, #0D1524 0%, #070A12 60%, #0A1020 100%);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero__beams { position: absolute; inset: 0; opacity: 0.85; }
.hero__beams span {
  position: absolute;
  top: -30%;
  width: 1px;
  height: 160%;
  background: linear-gradient(180deg, transparent, rgba(30,136,245,0.75), transparent);
  transform-origin: top center;
  animation: beam 7s ease-in-out infinite;
}
.hero__beams span:nth-child(1) { left: 24%; transform: rotate(16deg); animation-delay: 0s; }
.hero__beams span:nth-child(2) { left: 44%; transform: rotate(16deg); opacity: 0.55; animation-delay: 1.4s; }
.hero__beams span:nth-child(3) { left: 66%; transform: rotate(16deg); opacity: 0.8; animation-delay: 2.6s; }
.hero__beams span:nth-child(4) { left: 84%; transform: rotate(16deg); opacity: 0.4; animation-delay: 3.8s; }

@keyframes beam {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(30,136,245,0.22);
  animation: float 12s ease-in-out infinite;
}
.hero__orb--1 { inset: 14%; }
.hero__orb--2 { inset: 26%; animation-delay: -4s; border-color: rgba(30,136,245,0.14); }
.hero__orb--3 { inset: 38%; animation-delay: -8s; border-color: rgba(0,180,255,0.18); }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, -14px, 0) scale(1.02); }
}

.hero__logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18%;
}
.hero__logo img {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 0 34px rgba(30, 136, 245, 0.45));
}

.hero__tags {
  position: absolute;
  top: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: right;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.4);
}
.hero__tags--bottom { top: auto; bottom: 26px; }

/* Klantenbalk */
.trustbar {
  position: relative;
  z-index: 3;
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 52px;
}
.trustbar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 48px;
}
.trustbar__item {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.trustbar__item:hover { color: var(--text); }
.trustbar__more {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Pagina-hero (binnenpagina's) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 88px);
  padding-bottom: 72px;
  overflow: hidden;
  background: radial-gradient(ellipse 110% 80% at 72% 10%, rgba(30,136,245,0.17), transparent 62%), var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { position: relative; z-index: 3; max-width: 860px; }
.page-hero .lead { margin-top: 24px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--text-dim); }
.breadcrumb [aria-current] { color: var(--text-muted); }

/* ----------------------------- 9. KAARTEN -------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: linear-gradient(165deg, var(--surface) 0%, rgba(10,14,26,0.72) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(30,136,245,0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.card:hover {
  border-color: var(--line-blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.9), 0 0 0 1px rgba(30,136,245,0.1), var(--glow-blue-lg);
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 2; }

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(30, 136, 245, 0.1);
  border: 1px solid rgba(30, 136, 245, 0.22);
  color: var(--blue-bright);
  flex: none;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card__icon svg { width: 21px; height: 21px; }
.card:hover .card__icon {
  background: rgba(30, 136, 245, 0.18);
  box-shadow: 0 0 22px rgba(30, 136, 245, 0.35);
}

.card__title { margin-bottom: 10px; }
.card__text { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.68; }
.card__foot { margin-top: auto; padding-top: 22px; }

.card__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 16px;
}

.card--link:hover { cursor: pointer; }

.card-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  transition: all 0.35s var(--ease);
}
.card-arrow svg { width: 14px; height: 14px; }
.card:hover .card-arrow {
  border-color: var(--blue);
  background: rgba(30,136,245,0.14);
  color: var(--blue-bright);
  transform: translateX(3px);
}

/* Featurelijst */
.feature-list { display: grid; gap: 14px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.feature-list svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--blue-bright); }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pill svg { width: 14px; height: 14px; color: var(--blue-bright); }

/* Waardeblokken met icoon */
.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 38px;
}
.value-row li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-soft);
}
.value-row svg { width: 19px; height: 19px; color: var(--blue-bright); flex: none; }

/* --------------------- MEDIA-PLACEHOLDERS -------------------------
   Vervang het hele .media-ph blok later door:
   <img src="assets/images/..." alt="..." loading="lazy">
   ------------------------------------------------------------------ */
.media-ph {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 30%, rgba(30,136,245,0.10), transparent 62%),
    linear-gradient(160deg, var(--surface-2) 0%, #0A0F1B 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
  padding: 24px;
}
.media-ph--square  { aspect-ratio: 1 / 1; }
.media-ph--portrait{ aspect-ratio: 4 / 5; }
.media-ph--reel    { aspect-ratio: 9 / 16; }
.media-ph--wide    { aspect-ratio: 21 / 9; }

.media-ph__inner { position: relative; z-index: 2; display: grid; justify-items: center; gap: 12px; }
.media-ph__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
}
.media-ph__icon svg { width: 20px; height: 20px; }
.media-ph__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 26ch;
}

/* hoekmarkeringen */
.media-ph__corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  z-index: 2;
}
.media-ph__corner--tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.media-ph__corner--tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.media-ph__corner--bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.media-ph__corner--br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.media-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  z-index: 1;
}

/* ---------------------------- 10. PROCES --------------------------- */
.process { position: relative; }
.process__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.process__step { position: relative; padding-top: 58px; }

.process__step::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 44px;
  right: -28px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-blue), var(--line));
}
.process__step:last-child::before { display: none; }

.process__num {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-blue);
  background: var(--bg);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--blue-bright);
  transition: all 0.4s var(--ease);
}
.process__step:hover .process__num {
  background: rgba(30,136,245,0.14);
  box-shadow: 0 0 26px rgba(30,136,245,0.45);
  border-color: var(--blue);
}
.process__title { margin-bottom: 9px; }
.process__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ----------------------------- 11. CASES --------------------------- */
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.case-card:hover {
  border-color: var(--line-blue);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -26px rgba(0,0,0,0.9), var(--glow-blue-lg);
}
.case-card .media-ph { border: 0; border-radius: 0; border-bottom: 1px solid var(--line); }
.case-card__body {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
}
.case-card__meta { flex: 1 1 auto; min-width: 0; }
.case-card__name { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 3px; }
.case-card__type { font-size: 0.875rem; color: var(--text-muted); }

/* Uitgebreide case op cases.html */
.case-block {
  padding-block: 96px;
  border-top: 1px solid var(--line);
}
.case-block:first-of-type { border-top: 0; padding-top: 0; }

.case-block__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.case-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(30,136,245,0.08);
  border: 1px solid rgba(30,136,245,0.24);
  border-radius: 999px;
  white-space: nowrap;
}
.case-block__tag svg { width: 14px; height: 14px; flex: none; }

.case-block__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.info-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.info-list__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 22px;
  background: var(--surface);
  font-size: 0.9375rem;
}
.info-list__key { color: var(--text-dim); font-weight: 600; }
.info-list__val { color: var(--text-soft); }

.note-box {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: rgba(30,136,245,0.055);
  border: 1px solid rgba(30,136,245,0.2);
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.note-box svg { width: 19px; height: 19px; flex: none; color: var(--blue-bright); margin-top: 2px; }

/* -------------------------- 12. FORMULIEREN ------------------------ */
.form-panel {
  padding: 40px;
  background: linear-gradient(165deg, var(--surface) 0%, rgba(10,14,26,0.8) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
}
.field .req { color: var(--blue-bright); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A96AB' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px;
  padding-right: 44px;
  cursor: pointer;
}
.field select option { background: #0E1422; color: var(--text); }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(30, 136, 245, 0.05);
  box-shadow: 0 0 0 3px rgba(30, 136, 245, 0.16);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #FF5C6E;
  box-shadow: 0 0 0 3px rgba(255, 92, 110, 0.13);
}

.field__error {
  display: none;
  font-size: 0.8125rem;
  color: #FF8492;
}
.field.has-error .field__error { display: block; }

.field label.checkbox { font-weight: 400; color: var(--text-muted); }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.checkbox input {
  width: 19px; height: 19px;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--blue);
  cursor: pointer;
}
.checkbox a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }

.form-status {
  display: none;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.55;
}
.form-status.is-visible { display: flex; }
.form-status--ok   { background: rgba(30,136,245,0.09); border: 1px solid rgba(30,136,245,0.3); color: var(--text-soft); }
.form-status--fail { background: rgba(255,92,110,0.08); border: 1px solid rgba(255,92,110,0.3); color: #FFC2C9; }
.form-status svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* Contactkaarten */
.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.contact-card:hover { border-color: var(--line-blue); transform: translateY(-2px); }
.contact-card__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(30,136,245,0.1);
  border: 1px solid rgba(30,136,245,0.22);
  color: var(--blue-bright);
  flex: none;
}
.contact-card__icon svg { width: 19px; height: 19px; }
.contact-card__label,
.contact-card__value { display: block; }
.contact-card__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.contact-card__value { font-size: 1rem; font-weight: 600; color: var(--text); word-break: break-word; }
.contact-card a.contact-card__value:hover { color: var(--blue-bright); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.35s var(--ease);
}
.faq__item.is-open { border-color: var(--line-blue); }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.faq__btn svg { width: 18px; height: 18px; flex: none; color: var(--blue-bright); transition: transform 0.35s var(--ease); }
.faq__item.is-open .faq__btn svg { transform: rotate(45deg); }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__panel p {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 68ch;
}

/* ------------------------------ CTA-BAND --------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 130% at 12% 50%, rgba(30,136,245,0.30), transparent 62%),
    radial-gradient(ellipse 70% 120% at 88% 40%, rgba(0,180,255,0.16), transparent 60%),
    linear-gradient(180deg, #070A12, #0B1322);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: 120px;
}
.cta-band__aside { display: grid; gap: 26px; justify-items: start; }

/* ------------------------------ 13. FOOTER ------------------------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img { height: 62px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; max-width: 34ch; }

.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col li + li { margin-top: 11px; }
.footer-col a, .footer-col span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--blue-bright); }

.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.social-row svg { width: 17px; height: 17px; }
.social-row a:hover {
  color: var(--blue-bright);
  border-color: var(--line-blue);
  background: rgba(30,136,245,0.08);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--text-dim);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom a:hover { color: var(--blue-bright); }

/* --------------------------- 14. ANIMATIES ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

.reveal--left  { transform: translateX(-26px); }
.reveal--right { transform: translateX(26px); }
.reveal--left.is-in, .reveal--right.is-in { transform: none; }
.reveal--fade  { transform: none; }

/* Statusbalk voor de fallback zonder JS */
.no-js .reveal { opacity: 1; transform: none; }

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

/* --------------------------- 15. RESPONSIVE ------------------------ */

/* ---- Grote laptop ---- */
@media (max-width: 1180px) {
  :root { --section-y: 112px; --gutter: 28px; }
  .hero__inner { gap: 44px; }
  .grid--feature { gap: 48px; }
  .grid--top { gap: 40px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- Tablet landscape ---- */
@media (max-width: 1024px) {
  .nav, .header-actions > .portal-link { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { margin-left: auto; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: 0;
  }
  .hero__visual { max-height: 420px; max-width: 520px; margin-inline: auto; width: 100%; }

  .split-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .grid--feature, .grid--top, .grid--roomy { gap: 40px; }
  /* Beeld altijd onder de tekst zodra er één kolom is */
  .grid--feature > .media-ph { order: 2; max-width: 560px; width: 100%; }

  .case-block__grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 36px; padding-block: 88px; }
  .form-panel { padding: 32px; }

  /* Proces wordt een verticale tijdlijn */
  .process__track { grid-template-columns: 1fr; gap: 0; }
  .process__step {
    padding: 0 0 36px 68px;
    min-height: 0;
  }
  .process__step:last-child { padding-bottom: 0; }
  .process__step::before {
    top: 46px;
    bottom: -6px;
    left: 21px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--line-blue), var(--line));
  }
  .process__step:last-child::before { display: none; }
  .process__num { top: 0; }
}

/* ---- Tablet portrait ---- */
@media (max-width: 820px) {
  :root { --section-y: 88px; --header-h: 72px; }

  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid { gap: 18px; }
  .grid--feature, .grid--top, .grid--roomy { gap: 34px; }

  .case-gallery { grid-template-columns: repeat(2, 1fr); }

  .form-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .info-list__row { grid-template-columns: 1fr; gap: 5px; }
  .case-block__head { grid-template-columns: 1fr; }
}

/* ---- Mobiel ---- */
@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --section-y: 72px;
    --radius-lg: 18px;
    --radius: 14px;
  }

  body { font-size: 0.9375rem; }

  .display { font-size: clamp(2.35rem, 11.5vw, 3.1rem); line-height: 1.06; }
  .h1 { font-size: clamp(2rem, 9.5vw, 2.6rem); }
  .h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .h3 { font-size: 1.3rem; }

  .eyebrow { font-size: 0.66rem; letter-spacing: 0.18em; margin-bottom: 18px; }
  .eyebrow::before { width: 20px; }

  .lead { font-size: 1rem; line-height: 1.65; }

  .hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 64px;
  }
  .hero__inner { gap: 38px; }
  .hero__lead { margin-bottom: 30px; }
  /* Mobiel: eerst de boodschap, dan het beeld */
  .hero__visual {
    order: 2;
    aspect-ratio: 4 / 3;
    max-height: none;
    max-width: none;
  }
  .hero__logo { padding: 16%; }
  .hero__logo img { max-width: 180px; }
  .hero__tags { font-size: 0.56rem; letter-spacing: 0.22em; top: 16px; right: 16px; }
  /* De onderste labels botsen met de bovenste zodra het beeld lager wordt */
  .hero__tags--bottom { display: none; }
  .hero__meta {
    margin-top: 32px;
    padding-top: 22px;
    gap: 10px 20px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .btn { width: 100%; padding: 16px 24px; }
  .btn--sm { width: auto; }
  .btn-row { gap: 11px; }
  .btn-row .btn { flex: 1 1 100%; }

  .trustbar { margin-top: 48px; padding-top: 26px; gap: 14px 26px; }
  .trustbar__list { gap: 12px 26px; }
  .trustbar__item { font-size: 0.9375rem; }

  .page-hero { padding-top: calc(var(--header-h) + 52px); padding-bottom: 52px; }
  .breadcrumb { margin-bottom: 20px; font-size: 0.75rem; }

  .section-head { margin-bottom: 40px; }
  .split-head { margin-bottom: 40px; }

  .card { padding: 24px; }
  .card__icon { width: 42px; height: 42px; margin-bottom: 18px; }
  .grid--feature, .grid--top, .grid--roomy { gap: 28px; }

  .case-block { padding-block: 56px; }
  .case-block__grid { gap: 26px; }
  .case-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }

  .form-panel { padding: 24px 20px; border-radius: var(--radius); }

  .cta-band__inner { padding-block: 64px; gap: 28px; }
  .cta-band__aside { justify-items: stretch; }

  .mobile-nav__link { font-size: 1.55rem; padding: 17px 2px; }

  .site-footer { padding-top: 56px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
  .footer-brand img { height: 54px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; padding-block: 22px; }
  .footer-bottom nav { gap: 18px; }

  .process__step { padding-left: 58px; padding-bottom: 30px; }
  .process__num { width: 38px; height: 38px; font-size: 0.75rem; }
  .process__step::before { left: 18px; top: 40px; }

  .glow--a { width: 380px; height: 380px; top: -160px; right: -140px; }
  .glow--b { width: 320px; height: 320px; }
  .grid-lines { background-size: 60px 60px; }

  .info-list__row { padding: 15px 18px; }
  .note-box { padding: 16px 18px; font-size: 0.875rem; }
  .faq__btn { padding: 17px 18px; font-size: 0.9375rem; }
  .faq__panel p { padding: 0 18px 18px; }
}

/* ---- Kleine telefoons ---- */
@media (max-width: 400px) {
  .nav-toggle { width: 42px; height: 42px; border-radius: 11px; }
  .header-cta { padding: 10px 14px; }
}

@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .display { font-size: 2.1rem; }
  .brand img { height: 26px; }
  .header-cta__short { font-size: 0.78rem; }
}

/* ------------------------- JURIDISCHE PAGINA'S --------------------- */
.legal { padding-block: 72px 120px; }

.legal__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

.legal__toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  max-height: calc(100vh - var(--header-h) - 60px);
  overflow-y: auto;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.legal__toc h2 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.legal__toc li + li { margin-top: 9px; }
.legal__toc a {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}
.legal__toc a:hover { color: var(--blue-bright); }

.legal__body { max-width: 74ch; }
.legal__body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 52px 0 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.legal__body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 30px 0 12px;
  color: var(--text);
}
.legal__body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal__body p strong { color: var(--text-soft); }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.legal__body li { font-size: 0.9375rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 7px; }
.legal__body a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }

.legal__intro {
  padding: 26px 28px;
  margin-bottom: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue);
  border-radius: var(--radius-sm);
}
.legal__intro p { font-size: 0.9375rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 12px; }
.legal__intro p:last-child { margin-bottom: 0; }

.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

@media (max-width: 1024px) {
  .legal__layout { grid-template-columns: 1fr; gap: 34px; }
  .legal__toc { position: static; max-height: none; }
  .legal__toc ul { columns: 2; column-gap: 28px; }
}
@media (max-width: 640px) {
  .legal { padding-block: 48px 72px; }
  .legal__toc ul { columns: 1; }
  .legal__body h2 { font-size: 1.15rem; margin-top: 38px; padding-top: 22px; }
  .legal__intro { padding: 20px; }
}

/* ------------------------------ 404 -------------------------------- */
.error-page {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}
.error-page__code {
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.error-page .btn-row { justify-content: center; margin-top: 34px; }

/* ------------------------- BEDANKT-PAGINA -------------------------- */
.thanks {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}
.thanks__icon {
  display: grid;
  place-items: center;
  width: 84px; height: 84px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: rgba(30,136,245,0.12);
  border: 1px solid rgba(30,136,245,0.32);
  color: var(--blue-bright);
  box-shadow: 0 0 50px rgba(30,136,245,0.3);
}
.thanks__icon svg { width: 36px; height: 36px; }
.thanks .lead { margin-inline: auto; }
.thanks .btn-row { justify-content: center; margin-top: 34px; }
