/* ============================================================
   n8gency — Design System
   Clean, zakelijk, donker. Geen gradient tekst, geen emoji's.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variabelen ── */
:root {
  /* Achtergronden */
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #18181f;
  --bg-raised: #1e1e27;

  /* Grenzen */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  /* Kleur — één accentkleur, geen gradients */
  --accent: #4f6ef7;
  --accent-dim: rgba(79, 110, 247, 0.12);
  --accent-mid: rgba(79, 110, 247, 0.25);

  /* Tekst */
  --text-1: #f4f4f6;
  --text-2: #a0a0b0;
  --text-3: #606070;

  /* Schaduwen */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);

  /* Animaties */
  @keyframes pulseGlow {

    0%,
    100% {
      box-shadow: 0 0 20px rgba(79, 110, 247, 0.2);
    }

    50% {
      box-shadow: 0 0 50px rgba(79, 110, 247, 0.5);
    }
  }

  /* Afstanden */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Hoekradius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  /* Typografie */
  --font-head: 'Space Grotesk',
  system-ui,
  sans-serif;
  --font-body: 'Inter',
  system-ui,
  sans-serif;

  /* Animaties */
  --ease: 200ms ease;
  --ease-md: 300ms ease;

  /* Header hoogte */
  --header-h: 68px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Typografie ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--text-1);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.018em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--text-2);
  line-height: 1.75;
}

p+p {
  margin-top: var(--s4);
}

/* Accent kleur op tekst (spaarzaam gebruiken) */
.text-accent {
  color: var(--accent);
}

.text-2 {
  color: var(--text-2);
}

.text-3 {
  color: var(--text-3);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-center {
  text-align: center;
}

/* Section label — overline */
.label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s4);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s8);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}

.section {
  padding: var(--s24) 0;
}

@media (max-width: 768px) {

  .container,
  .header-container {
    padding: 0 var(--s6);
  }
}

.section-sm {
  padding: var(--s16) 0;
}

.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 1200px;
  margin-bottom: var(--s12);
}

.section-head.centered {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: var(--s4);
}

.section-head p {
  font-size: 1.0625rem;
}

/* ── Grid ── */
.grid {
  display: grid;
  gap: var(--s6);
}

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

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cols-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 1024px) {
  .cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {

  .cols-2,
  .cols-3,
  .cols-4 {
    grid-template-columns: 1fr;
  }
}

/* ── Kaarten ── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.card-sm {
  padding: var(--s5) var(--s6);
}

.card-lg {
  padding: var(--s10) var(--s10);
}

/* ── Tech grid (cases) ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s6);
}

.tech-card {
  display: flex;
  align-items: center;
  gap: var(--s6);
  padding: var(--s6);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--ease), transform var(--ease);
}

.tech-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.tech-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.tech-card-icon svg {
  width: 24px;
  height: 24px;
}

.tech-card strong {
  display: block;
  font-size: 1rem;
  color: var(--text-1);
  margin-bottom: 2px;
}

.tech-card p {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 0;
}

/* Card icon — accent blok zonder emoji */
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  flex-shrink: 0;
}

.card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.card h4 {
  margin-bottom: var(--s2);
}

/* Feature lijst in kaart */
.feat-list {
  margin-top: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: 0.875rem;
  color: var(--text-2);
}

.feat-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Dienstkaart — klikbaar */
.service-card {
  display: block;
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(79, 110, 247, 0.1);
}

.service-card-arrow {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s6);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--ease);
}

.service-card:hover .service-card-arrow {
  gap: var(--s3);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #3d5ae0;
  border-color: #3d5ae0;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: var(--bg-3);
  color: var(--text-2);
  border-color: var(--border);
}

.btn-ghost:hover {
  color: var(--text-1);
  border-color: var(--border-hover);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Badge / Tag ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 0.25rem 0.75rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-accent {
  background: var(--accent-dim);
  border-color: var(--accent-mid);
  color: var(--accent);
}

/* ── Layout ── */
.container,
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}

/* ── Navigatie / Header ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg);
  padding: 20px 0;
  transition: all 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: rgba(10, 10, 15, 0.98);
  padding: 12px 0;
  border-bottom-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 768px) {

  .container,
  .header-container {
    padding: 0 var(--s6);
  }
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex: 1;
}

.utility-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-3);
}

.utility-sep {
  opacity: 0.2;
}

.utility-link {
  color: var(--text-2);
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}

.utility-link:hover {
  color: var(--text-1);
}

.utility-link.italic {
  font-style: italic;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

.header-nav-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  padding: 0;
  background: none;
  border: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: none;
}

.nav-link.contact-link {
  position: relative;
}

.nav-link.contact-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.btn-header-cta {
  background: #2d3643 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s var(--ease);
}

.btn-header-cta:hover {
  background: #384352 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-sparkle {
  width: 18px;
  height: 18px;
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

@media (max-width: 1100px) {

  .nav-list,
  .header-nav-row {
    gap: 24px;
  }

  .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .utility-bar {
    display: none;
  }
}

/* Logo — één kleur */
.logo {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.04em;
  padding: 0;
  text-decoration: none;
  transition: opacity var(--ease);
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.8;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s2) var(--s3);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--ease);
  flex-shrink: 0;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-dropdown-trigger .nav-link {
  padding-right: 2px;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  padding: var(--s2);
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-dropdown-btn svg {
  transition: transform var(--ease);
}

.nav-dropdown:hover .nav-dropdown-btn svg,
.nav-dropdown:focus-within .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s2);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) var(--s3);
  color: var(--text-2);
  font-size: 0.875rem;
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
  text-decoration: none;
}

.dropdown-link:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-link.active {
  color: var(--accent);
}

/* Dropdown divider */
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: var(--s2) 0;
}

/* Sub-links (trainingen onder AI Trainingen) */
.dropdown-link-sub {
  padding-left: calc(var(--s3) + 28px + var(--s3));
  font-size: 0.8125rem;
  color: var(--text-3);
}

.dropdown-link-sub:hover {
  color: var(--text-2);
}

.dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-2);
  fill: none;
  stroke-width: 1.75;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--ease-md), opacity var(--ease);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .btn-header-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 5rem var(--s6) var(--s8);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--ease-md);
    border-top: 1px solid var(--border);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s1);
    width: 100%;
  }

  .nav-list>li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: var(--s3) var(--s4);
    font-size: 1rem;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: var(--bg-3);
    margin-top: var(--s1);
    margin-left: var(--s4);
    box-shadow: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown-trigger .nav-link {
    flex: 1;
  }

  .nav-dropdown-btn svg {
    margin-left: auto;
  }
}

.mobile-only-link {
  display: none;
}

@media (max-width: 900px) {
  .mobile-only-link {
    display: block;
  }
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: var(--s8);
}

.breadcrumb a {
  color: var(--text-3);
  transition: color var(--ease);
}

.breadcrumb a:hover {
  color: var(--text-2);
}

.breadcrumb-sep {
  color: var(--text-3);
}

.breadcrumb-current {
  color: var(--text-2);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

/* Subtiele achtergrond grid — geen gradients */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Subtiele radiale verlichting — geen kleurverloop op tekst */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 60% 30%, rgba(79, 110, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.hero-pretitle {
  margin-bottom: var(--s5);
}

.hero-title {
  margin-bottom: var(--s5);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: var(--s8);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: var(--s6);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.875rem;
  color: var(--text-3);
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Typed text — geen cursor animatie, gewoon inline */
.typed-text {
  color: var(--text-1);
}

.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--accent);
  vertical-align: middle;
  margin-left: 2px;
}

/* ── Page Hero (binnenste pagina's) ── */
.page-hero {
  padding: calc(var(--header-h) + var(--s16)) 0 var(--s16);
  border-bottom: 1px solid var(--border);
}

.page-hero-content {
  max-width: 1200px;
}

.page-hero-content h1 {
  margin-bottom: var(--s4);
}

.page-hero-content p {
  font-size: 1.0625rem;
  max-width: 800px;
}

/* Tool hero (technieken / applicaties) */
.tool-hero {
  display: flex;
  align-items: flex-start;
  gap: var(--s6);
}

.tool-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-hero-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

@media (max-width: 640px) {
  .tool-hero {
    flex-direction: column;
    gap: var(--s4);
  }

  .tool-hero-icon {
    width: 52px;
    height: 52px;
  }
}

/* ── Statistieken ── */
.stats-bar {
  padding: var(--s12) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: var(--s4);
}

.stat-number-wrap {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: var(--s2);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-3);
}

/* ── Proceslijn ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: var(--border);
}

.process-step {
  text-align: center;
  padding: var(--s6) var(--s4);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto var(--s4);
  position: relative;
  z-index: 1;
  transition: border-color var(--ease), background var(--ease);
}

.process-step:hover .step-num {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.process-step h4 {
  margin-bottom: var(--s2);
  font-size: 0.9375rem;
}

.process-step p {
  font-size: 0.8375rem;
}

@media (max-width: 768px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-row::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-row {
    grid-template-columns: 1fr;
  }
}

/* ── Testimonials ── */
.testimonial-card {
  padding: var(--s8);
}

.stars {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: var(--s4);
}

.quote-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: var(--s6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--accent);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-1);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ── CTA Blok ── */
.cta-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s16) var(--s12);
  text-align: center;
}

.cta-block h2 {
  margin-bottom: var(--s4);
}

.cta-block p {
  margin-bottom: var(--s8);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--s3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Ecosysteem / Techniek filter ── */
.filter-tabs {
  display: flex;
  gap: var(--s2);
  margin-bottom: var(--s8);
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.375rem 1rem;
  background: none;
  color: var(--text-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
}

.filter-tab:hover {
  color: var(--text-1);
  border-color: var(--border-hover);
}

.filter-tab.active {
  background: var(--accent-dim);
  border-color: var(--accent-mid);
  color: var(--accent);
}

/* Ecosysteem kaart */
.eco-card {
  display: block;
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease);
}

.eco-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.eco-card-body {
  text-align: left;
}

.eco-card h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--s1);
}

.eco-card p {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: var(--s3);
}

/* ── Case cards ── */
.case-card {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.case-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(79, 110, 247, 0.1);
}

.case-card h3 {
  margin-bottom: 0;
}

.case-card-meta {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
}

.case-sector {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.case-result {
  display: flex;
  gap: var(--s6);
  padding: var(--s4) 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
  flex-wrap: wrap;
}

.case-result-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-result-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.case-result-label {
  font-size: 0.75rem;
  color: var(--text-3);
}

.case-results-bar {
  display: flex;
  gap: var(--s8);
  padding: var(--s8);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
}

.case-results-bar .case-result-num {
  font-size: 2rem;
}

.case-meta-list {
  display: flex;
  gap: var(--s8);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
}

.case-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.case-meta-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
}

/* ── Blog cards ── */
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(79, 110, 247, 0.1);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  display: block;
  filter: brightness(0.85);
  transition: filter var(--ease-md);
}

.blog-card:hover .blog-card-img {
  filter: brightness(1);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s6);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-3);
}

.blog-card h3 {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

/* Blog post article body */
.blog-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
  margin-bottom: var(--s10);
  filter: brightness(0.85);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s8);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
}

.blog-post-meta .blog-date {
  font-size: 0.8125rem;
}

.blog-read-time {
  font-size: 0.8125rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: var(--s1);
}

.blog-body {
  max-width: 740px;
}

.blog-body h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  margin-top: var(--s12);
  margin-bottom: var(--s4);
}

.blog-body h3 {
  font-size: 1.125rem;
  margin-top: var(--s8);
  margin-bottom: var(--s3);
}

.blog-body p {
  margin-bottom: var(--s5);
}

.blog-body ul,
.blog-body ol {
  padding-left: var(--s6);
  margin-bottom: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.blog-body li {
  color: var(--text-2);
  line-height: 1.75;
}

.blog-body strong {
  color: var(--text-1);
  font-weight: 600;
}

.blog-body .callout {
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  margin: var(--s8) 0;
}

.blog-body .callout p {
  color: var(--text-1);
  margin-bottom: 0;
}

/* Logo strip — tool logos inline */
.logo-strip {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex-wrap: wrap;
  padding: var(--s6) var(--s8);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin: var(--s8) 0;
}

.logo-strip-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-1);
  text-decoration: none;
  transition: border-color var(--ease);
}

.logo-pill:hover {
  border-color: var(--border-hover);
}

.logo-pill img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.logo-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s8) 0;
  font-size: 0.9rem;
}

.comparison-table th {
  text-align: left;
  padding: var(--s3) var(--s4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: var(--accent);
  font-size: 1rem;
}

.comparison-table .cross {
  color: var(--text-3);
}

.comparison-table .partial {
  color: #f5a623;
}

.comparison-table .col-head {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-1);
}

/* ── Use cases ── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s3);
}

.use-case-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s4);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--ease);
}

.use-case-item:hover {
  border-color: var(--border-hover);
}

.use-case-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.use-case-icon-wrap svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
}

.use-case-item h5 {
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.use-case-item p {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ── Gerelateerd grid ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s3);
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s4);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease);
}

.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.related-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.related-card-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
}

.related-card strong {
  font-size: 0.8375rem;
  color: var(--text-1);
  display: block;
}

.related-card span {
  font-size: 0.7rem;
  color: var(--text-3);
}

/* ── FAQ Accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.faq-category {
  margin-bottom: var(--s10);
}

.faq-category-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s4);
  display: block;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item.open {
  border-color: var(--border-hover);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  transition: color var(--ease);
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--text-2);
  fill: none;
  stroke-width: 2;
  transition: transform var(--ease-md);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content-inner {
  padding: 0 var(--s6) var(--s5);
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ── Formulieren ── */
.form-grid {
  display: grid;
  gap: var(--s5);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
}

.form-label .req {
  color: var(--accent);
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.75rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-1);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-3);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 110, 247, 0.1);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23606070' stroke-width='1.5'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-2);
  color: var(--text-1);
}

.field-error {
  font-size: 0.8rem;
  color: #e05252;
  display: block;
}

.form-field.error .form-input,
.form-field.error .form-textarea,
.form-field.error .form-select {
  border-color: #e05252;
}

.form-success {
  display: none;
  padding: var(--s4);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--r-md);
  color: #4ade80;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-success.visible {
  display: block;
}

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Contactpagina layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s12);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border: none;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
}

.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-info-text a,
.contact-info-text span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  transition: color var(--ease);
}

.contact-info-text a:hover {
  color: var(--accent);
}

/* ── Tabbladen (trainingen) ── */
.track-tabs {
  display: flex;
  gap: var(--s2);
  margin-bottom: var(--s10);
  flex-wrap: wrap;
}

.track-tab {
  padding: var(--s3) var(--s5);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--ease);
}

.track-tab:hover {
  border-color: var(--border-hover);
  color: var(--text-1);
}

.track-tab.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.track-content {
  display: none;
}

.track-content.active {
  display: block;
}

/* Level card (trainingen) */
.level-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  margin-bottom: var(--s5);
  transition: border-color var(--ease);
}

.level-card:hover {
  border-color: var(--border-hover);
}

.level-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s6);
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--border);
}

.level-header-left h3 {
  margin-top: var(--s2);
}

.level-meta {
  display: flex;
  gap: var(--s5);
  margin-top: var(--s3);
  flex-wrap: wrap;
}

.level-meta-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8125rem;
  color: var(--text-3);
}

.level-meta-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-3);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.level-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

@media (max-width: 640px) {
  .level-body {
    grid-template-columns: 1fr;
  }
}

.level-body-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--s3);
  display: block;
}

/* ── Vergelijkingstabel ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: var(--s3) var(--s5);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.compare-table th {
  font-weight: 700;
  color: var(--text-1);
  font-family: var(--font-head);
  background: var(--bg-3);
}

.compare-table td {
  color: var(--text-2);
}

.check-yes {
  color: #4ade80;
  font-weight: 700;
}

.check-no {
  color: #e05252;
  font-weight: 700;
}

.check-mid {
  color: var(--text-3);
}

/* ── Team kaarten ── */
.team-card {
  text-align: center;
  padding: var(--s8);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto var(--s5);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
  margin-top: var(--s4);
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  white-space: nowrap;
  background: var(--bg-2);
  color: var(--text-1);
  padding: 5px 12px;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity var(--ease), transform var(--ease);
}

.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--s8));
  max-width: 580px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s6);
  box-shadow: var(--shadow-lg);
  z-index: 800;
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-banner.visible {
  bottom: var(--s6);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 0.875rem;
}

.cookie-text a {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  gap: var(--s2);
  flex-shrink: 0;
}

/* ── Footer ── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: var(--s24) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--s12);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
}

.footer-brand .logo {
  margin-bottom: var(--s4);
  display: inline-block;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 260px;
  margin-bottom: var(--s5);
}

.footer-social {
  display: flex;
  gap: var(--s2);
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: all var(--ease);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--s4);
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color var(--ease);
}

.footer-col a:hover {
  color: var(--text-2);
}

.footer-newsletter h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--s3);
}

.footer-newsletter p {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: var(--s6);
}

.newsletter-form {
  display: flex;
  gap: var(--s2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px;
  transition: border-color var(--ease);
}

.newsletter-form:focus-within {
  border-color: var(--accent);
}

.newsletter-input {
  flex: 1;
  padding: 0.6rem 0.875rem;
  background: transparent;
  border: none;
  color: var(--text-1);
  font-size: 0.875rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--text-3);
}

.newsletter-input:focus {
  border-color: var(--accent);
}

.success-msg {
  font-size: 0.875rem;
  color: #4ade80;
  font-weight: 500;
}

.footer-bottom {
  max-width: 1200px;
  margin: var(--s16) auto 0;
  padding: var(--s5) var(--s6);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}

.footer-legal {
  display: flex;
  gap: var(--s5);
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-3);
  transition: color var(--ease);
}

.footer-legal a:hover {
  color: var(--text-2);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.stagger-1 {
  transition-delay: 0.08s;
}

.reveal.stagger-2 {
  transition-delay: 0.16s;
}

.reveal.stagger-3 {
  transition-delay: 0.24s;
}

.reveal.stagger-4 {
  transition-delay: 0.32s;
}

.reveal.stagger-5 {
  transition-delay: 0.40s;
}

/* ── Hulpklassen ── */
.mt-2 {
  margin-top: var(--s2);
}

.mt-4 {
  margin-top: var(--s4);
}

.mt-6 {
  margin-top: var(--s6);
}

.mt-8 {
  margin-top: var(--s8);
}

.mt-10 {
  margin-top: var(--s10);
}

.mt-12 {
  margin-top: var(--s12);
}

.mb-2 {
  margin-bottom: var(--s2);
}

.mb-4 {
  margin-bottom: var(--s4);
}

.mb-6 {
  margin-bottom: var(--s6);
}

.mb-8 {
  margin-bottom: var(--s8);
}

.w-full {
  width: 100%;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}