/* ============================================================
   CoreForm Systems — Website stylesheet
   Versie 1.0 · 2026-05-08
   Bouwt voort op de huisstijl in /Huisstijl/assets/style.css

   Volgorde:
   1. Tokens (kleur, type, ruimte)
   2. Reset + basis
   3. Layout helpers
   4. Header + nav (inclusief mobile)
   5. Hero
   6. Sectie-componenten (cards, lists, badges)
   7. Pijn / oplossing / diensten / werkwijze / tarieven
   8. Over + FAQ + CTA
   9. Footer
   10. Animaties + responsive
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://rsms.me/inter/inter.css');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ============================================================
   1. Design tokens (overgenomen uit huisstijl)
   ============================================================ */
:root {
  /* Kleur */
  --cf-navy:        #102353;
  --cf-navy-deep:   #0A1A3A;
  --cf-navy-soft:   #1B3168;
  --cf-cyan:        #2BC9D9;
  --cf-cyan-soft:   #C7F1F5;
  --cf-blue:        #1B5DB8;

  --cf-charcoal:    #1A1A1A;
  --cf-stone:       #4A4A4A;
  --cf-grey-mid:    #8C8C8C;
  --cf-grey-line:   #E6E6E1;
  --cf-grey-light:  #D9D9D6;
  --cf-bone:        #FAFAF7;
  --cf-bone-warm:   #F4F3EE;
  --cf-white:       #FFFFFF;

  --cf-success:     #1F8F5F;
  --cf-warning:     #E0A93A;
  --cf-danger:      #C9342B;

  /* Type */
  --cf-font-sans:   'Inter', 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cf-font-mono:   'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Ruimte (4/8 systeem) */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  /* Hoeken */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px; --r-pill: 9999px;

  /* Schaduw */
  --shadow-xs: 0 1px 2px rgba(10,26,58,0.04);
  --shadow-sm: 0 2px 6px rgba(10,26,58,0.06);
  --shadow-md: 0 8px 24px rgba(10,26,58,0.08);
  --shadow-lg: 0 16px 48px rgba(10,26,58,0.12);

  /* Beweging */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;

  /* Layout */
  --container: 1200px;
  --header-h: 72px;
}

/* ============================================================
   2. Reset + basis
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: var(--cf-font-sans);
  font-feature-settings: "cv11", "ss01", "tnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--space-4));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cf-charcoal);
  background-color: var(--cf-bone);
}

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

h1, h2, h3, h4 {
  margin: 0 0 var(--space-4) 0;
  color: var(--cf-navy);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.25rem, 4vw + 1rem, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem); line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 0.5vw + 1rem, 1.625rem); line-height: 1.25; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.35; letter-spacing: 0; }

p { margin: 0 0 var(--space-5) 0; max-width: 65ch; }

a {
  color: var(--cf-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}
a:hover { border-bottom-color: currentColor; }

code, .mono { font-family: var(--cf-font-mono); }

::selection { background: var(--cf-cyan); color: var(--cf-navy); }

/* Focus state — toegankelijk en zichtbaar */
:focus-visible {
  outline: 3px solid var(--cf-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link voor toetsenbord-navigatie */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--cf-navy);
  color: var(--cf-white);
  border-radius: var(--r-md);
  z-index: 9999;
  transition: top var(--duration) var(--ease);
}
.skip-link:focus { top: var(--space-4); border-bottom-color: transparent; }

/* ============================================================
   3. Layout
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-6); }
}

.section {
  padding: var(--space-9) 0;
}
@media (max-width: 768px) {
  .section { padding: var(--space-8) 0; }
}

.section-header { max-width: 760px; margin-bottom: var(--space-7); }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--cf-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cf-blue);
  margin-bottom: var(--space-3);
}
.eyebrow.cyan { color: var(--cf-cyan); }
.eyebrow .dot { color: var(--cf-cyan); display: inline-block; }

/* Pulse-dot — subtiele "alive" indicator */
.dot.pulse {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cf-cyan);
  color: transparent;
  vertical-align: middle;
  margin-right: 6px;
  font-size: 0;
}
.dot.pulse::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--cf-cyan);
  opacity: 0;
  animation: pulse-ring 2.4s var(--ease) infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.9; }
  80%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--cf-stone);
  max-width: 60ch;
}

.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ============================================================
   4. Header + nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--cf-grey-line);
  background: rgba(250, 250, 247, 0.95);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  color: var(--cf-navy);
  border: none;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.brand img { height: 34px; width: auto; }
.brand span small {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cf-stone);
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-list {
  display: flex;
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cf-stone);
  border: none;
  padding: var(--space-2) 0;
  position: relative;
}
.nav-list a:hover { color: var(--cf-navy); }
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--cf-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.nav-list a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cf-navy);
  position: relative;
  transition: all var(--duration) var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--cf-navy);
  transition: all var(--duration) var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.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); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--cf-bone);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-5);
    border-top: 1px solid var(--cf-grey-line);
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--cf-grey-line);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
  }
  .nav-list a {
    display: block;
    padding: var(--space-4) 0;
    font-size: 1.125rem;
    color: var(--cf-navy);
  }
  .nav-list a::after { display: none; }
}

/* ============================================================
   5. Knoppen
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-family: var(--cf-font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  min-height: 44px; /* touch target */
  white-space: nowrap;
}
.btn-primary {
  background: var(--cf-navy);
  color: var(--cf-white);
}
.btn-primary:hover {
  background: var(--cf-navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.btn-secondary {
  background: transparent;
  color: var(--cf-navy);
  border-color: var(--cf-navy);
}
.btn-secondary:hover {
  background: rgba(16, 35, 83, 0.06);
  border-bottom-color: var(--cf-navy);
}
.btn-cyan {
  background: var(--cf-cyan);
  color: var(--cf-navy);
}
.btn-cyan:hover {
  background: #46DCEC;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.btn-ghost {
  background: transparent;
  color: var(--cf-navy);
  border-color: transparent;
  padding: 13px 12px;
}
.btn-ghost:hover { background: rgba(16, 35, 83, 0.06); border-bottom-color: transparent; }

.btn-arrow svg {
  width: 16px; height: 16px;
  transition: transform var(--duration) var(--ease);
}
.btn-arrow:hover svg { transform: translateX(3px); }

/* ============================================================
   6. Hero
   ============================================================ */
.hero {
  position: relative;
  padding: var(--space-9) 0 var(--space-9);
  background: var(--cf-bone);
  overflow: hidden;
  isolation: isolate;
}

/* Hero-bg drift: drie zachte gradient-blobs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Blueprint-raster — subtiele "engineered" structuur, vervaagt naar de randen */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 35, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 83, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(125% 92% at 72% 6%, #000 26%, transparent 80%);
  mask-image: radial-gradient(125% 92% at 72% 6%, #000 26%, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.34;
  will-change: transform;
}
.blob-1 {
  top: -10%; left: -8%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(43,201,217,0.42) 0%, transparent 70%);
  animation: drift-a 18s ease-in-out infinite;
}
.blob-2 {
  bottom: -15%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(27,93,184,0.30) 0%, transparent 70%);
  animation: drift-b 22s ease-in-out infinite;
}
.blob-3 {
  top: 40%; left: 50%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(16,35,83,0.10) 0%, transparent 70%);
  animation: drift-c 26s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0)        scale(1); }
  33%      { transform: translate(40px, 30px)  scale(1.05); }
  66%      { transform: translate(-20px, 60px) scale(0.95); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0)         scale(1); }
  50%      { transform: translate(-50px, -40px) scale(1.1); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-40%, -60%) scale(1.15); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}

.hero h1 { margin-bottom: var(--space-5); }
.hero h1 em {
  font-style: normal;
  color: var(--cf-navy);
}
.hero .lead { margin-bottom: var(--space-6); }

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero-meta {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--cf-stone);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-meta svg { width: 18px; height: 18px; color: var(--cf-cyan); flex-shrink: 0; }

/* Hero visual — geometrische compositie met logo en code-hint */
.hero-visual {
  position: relative;
  aspect-ratio: 1.05 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cf-cyan), var(--cf-blue), var(--cf-navy));
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
  font-family: var(--cf-font-mono);
  font-size: 0.8125rem;
  color: var(--cf-stone);
}
.hero-card-head .dots { display: flex; gap: 6px; }
.hero-card-head .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--cf-grey-line); }
.hero-card-head .dots span:first-child { background: #ED6A5E; }
.hero-card-head .dots span:nth-child(2) { background: #F4BF4F; }
.hero-card-head .dots span:nth-child(3) { background: #61C554; }

.hero-card-body { font-family: var(--cf-font-mono); font-size: 0.875rem; line-height: 1.85; color: var(--cf-charcoal); }
.hero-card-body .ln-num { display: inline-block; width: 20px; color: var(--cf-grey-mid); user-select: none; }
.hero-card-body .kw     { color: var(--cf-blue); }
.hero-card-body .str    { color: var(--cf-success); }
.hero-card-body .num    { color: #B5520A; }
.hero-card-body .com    { color: var(--cf-grey-mid); font-style: italic; }
.hero-card-body .fn     { color: var(--cf-navy); font-weight: 600; }

.hero-floating {
  position: absolute;
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-floating-1 {
  top: 8%; left: -4%;
  animation: float-y 6s ease-in-out infinite;
}
.hero-floating-2 {
  bottom: 12%; right: -6%;
  animation: float-y 7s ease-in-out infinite 1.5s;
}
.hero-floating .icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--cf-cyan-soft);
  color: var(--cf-navy);
  display: grid; place-items: center;
}
.hero-floating .icon svg { width: 20px; height: 20px; }
.hero-floating strong { display: block; color: var(--cf-navy); font-weight: 700; font-size: 1rem; }
.hero-floating small { color: var(--cf-stone); font-size: 0.75rem; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 880px) {
  .hero-floating { display: none; }
}

/* ============================================================
   7. Trust strip — marquee
   ============================================================ */
.trust-strip {
  padding: var(--space-6) 0 var(--space-5);
  border-top: 1px solid var(--cf-grey-line);
  border-bottom: 1px solid var(--cf-grey-line);
  background: var(--cf-bone-warm);
  overflow: hidden;
}
.trust-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cf-stone);
  margin: 0 0 var(--space-4);
  text-align: center;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  width: max-content;
  animation: marquee 60s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track > span {
  font-family: var(--cf-font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cf-stone);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.marquee-track > span.dot {
  color: var(--cf-cyan);
  font-size: 0.5rem;
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   8. Pijn / oplossing
   ============================================================ */
.pijn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  counter-reset: pijn;
}
.pijn-card {
  position: relative;
  padding: var(--space-5);
  padding-left: calc(var(--space-5) + 38px);
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-md);
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.pijn-card::before {
  counter-increment: pijn;
  content: counter(pijn, decimal-leading-zero);
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  font-family: var(--cf-font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cf-danger);
  opacity: 0.7;
}
.pijn-card:hover {
  border-color: var(--cf-grey-mid);
  transform: translateY(-2px);
}
.pijn-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cf-charcoal);
  margin: 0;
  line-height: 1.5;
}

.oplossing {
  background: var(--cf-navy);
  color: var(--cf-bone);
  position: relative;
  overflow: hidden;
}
.oplossing::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,201,217,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.oplossing h2 { color: var(--cf-white); position: relative; }
.oplossing .lead { color: rgba(250,250,247,0.85); position: relative; }
.oplossing .eyebrow { color: var(--cf-cyan); }

.opl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-7);
  position: relative;
}
@media (max-width: 768px) {
  .opl-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}
.opl-item .icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(43,201,217,0.16);
  color: var(--cf-cyan);
  display: grid; place-items: center;
  margin-bottom: var(--space-4);
}
.opl-item .icon svg { width: 24px; height: 24px; }
.opl-item h3 {
  color: var(--cf-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}
.opl-item p { color: rgba(250,250,247,0.78); margin: 0; }

/* ============================================================
   9. Diensten
   ============================================================ */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}
.dienst-card {
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  position: relative;
}
.dienst-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cf-cyan);
}
.dienst-card .badge-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--cf-navy);
  color: var(--cf-cyan);
  display: grid; place-items: center;
  margin-bottom: var(--space-4);
}
.dienst-card .badge-icon svg { width: 26px; height: 26px; }
.dienst-card h3 { margin-bottom: var(--space-2); }
.dienst-card p { color: var(--cf-stone); margin-bottom: var(--space-4); }
.dienst-card .examples {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4) 0;
  border-top: 1px solid var(--cf-grey-line);
  padding-top: var(--space-4);
}
.dienst-card .examples li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  font-size: 0.9375rem;
  color: var(--cf-charcoal);
  margin-bottom: var(--space-2);
  line-height: 1.5;
}
.dienst-card .examples li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--cf-cyan-soft);
  border-radius: 50%;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23102353'><path fill-rule='evenodd' d='M16.7 5.7a1 1 0 010 1.4l-7 7a1 1 0 01-1.4 0l-3-3a1 1 0 111.4-1.4L9 11.9l6.3-6.3a1 1 0 011.4 0z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.dienst-card .price-line {
  font-family: var(--cf-font-mono);
  font-size: 0.875rem;
  color: var(--cf-stone);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--cf-grey-line);
  padding-top: var(--space-3);
}
.dienst-card .price-line strong { color: var(--cf-navy); font-size: 1.125rem; font-weight: 700; }

/* ============================================================
   10. Werkwijze
   ============================================================ */
.werkwijze-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  counter-reset: stap;
  position: relative;
}
@media (max-width: 880px) {
  .werkwijze-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .werkwijze-list { grid-template-columns: 1fr; }
}
.stap {
  counter-increment: stap;
  position: relative;
  padding: var(--space-5);
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-lg);
}
.stap::before {
  content: "0" counter(stap);
  font-family: var(--cf-font-mono);
  font-size: 0.875rem;
  color: var(--cf-cyan);
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: var(--space-3);
}
.stap h3 { font-size: 1.125rem; margin-bottom: var(--space-2); }
.stap p {
  font-size: 0.9375rem;
  color: var(--cf-stone);
  margin: 0;
}
.stap .duur {
  display: inline-block;
  margin-top: var(--space-3);
  padding: 4px 10px;
  background: var(--cf-bone-warm);
  border-radius: var(--r-pill);
  font-family: var(--cf-font-mono);
  font-size: 0.75rem;
  color: var(--cf-stone);
}

/* ============================================================
   11. Tarieven
   ============================================================ */
.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 880px) {
  .tarieven-grid { grid-template-columns: 1fr; }
}
.tarief {
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tarief.featured {
  border: 2px solid var(--cf-navy);
  box-shadow: var(--shadow-md);
  transform: scale(1.015);
}
.tarief.featured::before {
  content: "Meest gevraagd";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cf-cyan);
  color: var(--cf-navy);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tarief h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}
.tarief .tagline {
  color: var(--cf-stone);
  font-size: 0.9375rem;
  margin-bottom: var(--space-5);
}
.tarief .price {
  font-family: var(--cf-font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cf-navy);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.tarief .price small {
  display: block;
  font-size: 0.75rem;
  font-family: var(--cf-font-sans);
  color: var(--cf-stone);
  font-weight: 500;
  margin-top: var(--space-1);
  letter-spacing: 0;
}
.tarief ul {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0;
  flex-grow: 1;
}
.tarief li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: 0.9375rem;
  border-top: 1px solid var(--cf-grey-line);
}
.tarief li:first-child { border-top: 0; }
.tarief li svg { width: 18px; height: 18px; color: var(--cf-cyan); flex-shrink: 0; margin-top: 3px; }
.tarief .btn { margin-top: auto; }

.tarieven-note {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 0.9375rem;
  color: var(--cf-stone);
}
.tarieven-note strong { color: var(--cf-navy); font-weight: 600; }

/* ============================================================
   12. Over Stan
   ============================================================ */
.over {
  background: var(--cf-bone-warm);
}
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-8);
  align-items: center;
}
@media (max-width: 880px) {
  .over-grid { grid-template-columns: 1fr; }
}

.over-card {
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cf-navy) 0%, var(--cf-blue) 100%);
  color: var(--cf-cyan);
  display: grid; place-items: center;
  font-family: var(--cf-font-mono);
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0 auto var(--space-4);
  border: 4px solid var(--cf-white);
  box-shadow: var(--shadow-md);
}
.over-card .name { font-size: 1.25rem; font-weight: 700; color: var(--cf-navy); margin: 0 0 var(--space-1); }
.over-card .role { font-size: 0.9375rem; color: var(--cf-stone); margin: 0 0 var(--space-4); }
.over-card .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--cf-grey-line);
}
.over-card .stat strong {
  display: block;
  font-family: var(--cf-font-mono);
  font-size: 1.5rem;
  color: var(--cf-navy);
  font-weight: 700;
  line-height: 1;
}
.over-card .stat small { font-size: 0.75rem; color: var(--cf-stone); }

.over-text h2 { margin-bottom: var(--space-4); }
.over-text p { color: var(--cf-charcoal); }
.over-text .quote {
  border-left: 3px solid var(--cf-cyan);
  padding: var(--space-3) var(--space-5);
  margin: var(--space-5) 0;
  font-size: 1.0625rem;
  color: var(--cf-stone);
  font-style: italic;
}

/* ============================================================
   13. FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cf-grey-line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cf-navy);
  transition: color var(--duration) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cf-blue); }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 24px; height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102353' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--duration) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--cf-blue); }
.faq-item .answer {
  padding: 0 0 var(--space-5);
  color: var(--cf-stone);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item .answer p { margin: 0 0 var(--space-3); max-width: none; }
.faq-item .answer p:last-child { margin: 0; }

/* ============================================================
   14. Contact / CTA
   ============================================================ */
.contact {
  background: var(--cf-navy);
  color: var(--cf-bone);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  bottom: -180px; left: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,201,217,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.contact h2, .contact h3 { color: var(--cf-white); }
.contact .eyebrow { color: var(--cf-cyan); }
.contact .lead { color: rgba(250,250,247,0.85); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
  position: relative;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

.contact-info { color: rgba(250,250,247,0.85); }
.contact-info ul { list-style: none; padding: 0; margin: var(--space-5) 0 0 0; }
.contact-info li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(250,250,247,0.12);
}
.contact-info li:first-child { border-top: 0; }
.contact-info .icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(43,201,217,0.16);
  color: var(--cf-cyan);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info .icon svg { width: 18px; height: 18px; }
.contact-info strong { display: block; color: var(--cf-white); font-weight: 600; margin-bottom: 2px; }
.contact-info a { color: var(--cf-cyan); border-bottom-color: transparent; }
.contact-info a:hover { border-bottom-color: var(--cf-cyan); }

/* Form */
.form-card {
  background: var(--cf-white);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  color: var(--cf-charcoal);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 540px) {
  .form-card { padding: var(--space-7); }
}

.form-row { margin-bottom: var(--space-4); }
.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (max-width: 540px) {
  .form-row.split { grid-template-columns: 1fr; }
}

.form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cf-stone);
  margin-bottom: var(--space-1);
}
.form-row .req { color: var(--cf-danger); }

.input, .textarea, .select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--cf-font-sans);
  font-size: 1rem;
  color: var(--cf-charcoal);
  background: var(--cf-white);
  border: 1.5px solid var(--cf-grey-line);
  border-radius: var(--r-md);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  min-height: 44px;
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--cf-cyan);
  box-shadow: 0 0 0 3px rgba(43, 201, 217, 0.22);
}
.helper {
  font-size: 0.8125rem;
  color: var(--cf-stone);
  margin-top: var(--space-1);
}

.form-card .btn { width: 100%; padding: 14px 20px; font-size: 1rem; }

.form-status {
  margin-top: var(--space-4);
  font-size: 0.9375rem;
  padding: 10px 14px;
  border-radius: var(--r-md);
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(31,143,95,0.12); color: var(--cf-success); }
.form-status.error   { background: rgba(201,52,43,0.12);  color: var(--cf-danger); }

/* ============================================================
   15. Footer
   ============================================================ */
.site-footer {
  background: var(--cf-navy-deep);
  color: rgba(250,250,247,0.7);
  padding: var(--space-8) 0 var(--space-5);
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  color: var(--cf-white);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: var(--space-2); }
.footer-grid a { color: rgba(250,250,247,0.7); border: none; }
.footer-grid a:hover { color: var(--cf-cyan); }

.footer-brand .brand { color: var(--cf-white); margin-bottom: var(--space-4); }
.footer-brand .brand small { color: rgba(250,250,247,0.5); }
.footer-brand p { color: rgba(250,250,247,0.6); font-size: 0.9375rem; max-width: 36ch; margin: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(250,250,247,0.1);
  font-size: 0.875rem;
  color: rgba(250,250,247,0.5);
}

/* ============================================================
   16. Animaties bij scroll + stagger
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger — kinderen van .stagger fade-up één voor één */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.stagger.in > *           { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.stagger.in > *:nth-child(6) { transition-delay: 400ms; }

/* Werkwijze: connector-lijn die "tekent" wanneer in beeld */
.werkwijze-list { position: relative; }
.werkwijze-list::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--cf-cyan) 0%, var(--cf-blue) 50%, var(--cf-navy) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1200ms var(--ease) 200ms;
  z-index: 0;
  border-radius: 2px;
  opacity: 0.45;
}
.werkwijze-list.in::before { transform: scaleX(1); }
@media (max-width: 880px) {
  .werkwijze-list::before { display: none; }
}
.stap { position: relative; z-index: 1; }

/* Counter — initieel 0 leesbaar, eindwaarde via JS */
.count { font-variant-numeric: tabular-nums; }

/* Code-card subtle scan-glow tijdens hover */
.hero-card { transition: transform 400ms var(--ease), box-shadow 400ms var(--ease); }
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(10,26,58,0.16); }

/* Service-card hover lift was er al; voeg subtiele cyan glow toe op de badge */
.dienst-card:hover .badge-icon {
  box-shadow: 0 8px 24px rgba(43,201,217,0.35);
  transform: scale(1.05);
}
.dienst-card .badge-icon {
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

/* Tarief featured: subtiele "ademhaling" */
.tarief.featured {
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { box-shadow: var(--shadow-md); }
  50%      { box-shadow: 0 12px 36px rgba(16,35,83,0.18); }
}

/* Reduced-motion: zet alle ambient animaties uit */
@media (prefers-reduced-motion: reduce) {
  .blob, .marquee-track, .dot.pulse::before, .tarief.featured, .hero-floating {
    animation: none !important;
  }
  .werkwijze-list::before { transform: scaleX(1); transition: none; }
}

/* ============================================================
   17. Utilities
   ============================================================ */
.center-text { text-align: center; }
.muted { color: var(--cf-stone); }
.mb-0 { margin-bottom: 0 !important; }

/* ============================================================
   18. (Cursor-glow verwijderd — rustiger en merk-trouwer)
   ============================================================ */

/* ============================================================
   19. Sectie-glow (subtiele radial achter sommige secties)
   ============================================================ */
.section-with-glow { position: relative; overflow: hidden; }
.section-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(43,201,217,0.10) 0%, rgba(43,201,217,0) 65%);
  pointer-events: none;
  top: -250px; right: -250px;
  z-index: 0;
  filter: blur(20px);
}
.section-with-glow > .container { position: relative; z-index: 1; }

/* ============================================================
   20. Solution-card (nieuwe hero visual)
   ============================================================ */
.solution-card {
  background: linear-gradient(150deg, var(--cf-white) 0%, #FCFCFA 100%);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
  transition: transform 600ms var(--ease), box-shadow 600ms var(--ease);
}
.solution-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cf-cyan), var(--cf-blue), var(--cf-navy));
}
.solution-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--cf-grey-line);
}
.solution-title {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cf-navy);
  letter-spacing: -0.005em;
}
.solution-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cf-success);
  box-shadow: 0 0 0 0 rgba(31,143,95,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0   rgba(31,143,95,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(31,143,95,0);    }
  100% { box-shadow: 0 0 0 0   rgba(31,143,95,0);    }
}
.solution-status {
  font-family: var(--cf-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--cf-success);
  background: rgba(31,143,95,0.10);
  padding: 4px 9px;
  border-radius: var(--r-pill);
  font-weight: 700;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.solution-tile {
  padding: var(--space-3);
  border-radius: var(--r-md);
  background: var(--cf-bone);
  border: 1px solid var(--cf-grey-line);
  position: relative;
  transition: transform var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.solution-tile:hover {
  transform: translateY(-2px);
  border-color: var(--cf-cyan);
  background: var(--cf-white);
}
.tile-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  margin-bottom: var(--space-2);
}
.tile-icon svg { width: 16px; height: 16px; }
.tile-icon.site  { background: rgba(27,93,184,0.12);   color: var(--cf-blue); }
.tile-icon.cloud { background: rgba(43,201,217,0.18);  color: #0E8B98; }
.tile-icon.ai    { background: rgba(16,35,83,0.10);    color: var(--cf-navy); }
.tile-icon.link  { background: rgba(31,143,95,0.14);   color: var(--cf-success); }
.tile-label {
  font-size: 0.75rem;
  color: var(--cf-stone);
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.tile-value {
  font-family: var(--cf-font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cf-navy);
  line-height: 1;
}
.tile-value small {
  font-size: 0.6875rem;
  color: var(--cf-stone);
  font-weight: 500;
  margin-left: 3px;
  letter-spacing: 0;
}

.solution-bar {
  padding-top: var(--space-3);
  border-top: 1px solid var(--cf-grey-line);
}
.bar-track {
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--cf-grey-line);
  overflow: hidden;
  margin-bottom: var(--space-2);
  position: relative;
}
.bar-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--cf-cyan), var(--cf-blue));
  border-radius: var(--r-pill);
  animation: bar-grow 1.6s var(--ease) 600ms both;
  transform-origin: left;
  position: relative;
}
.bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: bar-shimmer 2.4s linear infinite;
  animation-delay: 2s;
}
@keyframes bar-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes bar-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}
.bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8125rem;
  color: var(--cf-stone);
}
.bar-meta strong {
  color: var(--cf-success);
  font-family: var(--cf-font-mono);
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================================
   21. Logo marquee (vervangt oude text-marquee)
   ============================================================ */
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: var(--space-3) 0;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: var(--space-7);
  width: max-content;
  animation: logo-marquee 42s linear infinite;
  will-change: transform;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-tile {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 100px;
  padding: 0 var(--space-3);
}
.logo-tile svg {
  height: 28px;
  width: auto;
  max-width: 36px;
  filter: grayscale(100%) brightness(0.65) contrast(1.1);
  opacity: 0.65;
  transition: filter 350ms var(--ease), opacity 350ms var(--ease), transform 350ms var(--ease);
}
.logo-tile:hover svg {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
  transform: scale(1.12);
}
.logo-tile.wordmark span {
  font-family: var(--cf-font-sans);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cf-stone);
  letter-spacing: -0.015em;
  opacity: 0.65;
  transition: color 300ms var(--ease), opacity 300ms var(--ease), transform 300ms var(--ease);
  display: inline-block;
}
.logo-tile.wordmark:hover span {
  color: var(--cf-navy);
  opacity: 1;
  transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* ============================================================
   22. Pillars (nieuwe tarieven — 2-pillar 'vanaf')
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 1020px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}
.pillar {
  position: relative;
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  border-radius: var(--r-xl);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 400ms var(--ease),
              box-shadow 400ms var(--ease),
              border-color 400ms var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cf-cyan), var(--cf-blue));
  transform: scaleX(0.05);
  transform-origin: left;
  transition: transform 600ms var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cf-cyan);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar::after {
  content: "";
  position: absolute;
  bottom: -140px; right: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.pillar-website::after  { background: radial-gradient(circle, rgba(27,93,184,0.30) 0%, transparent 60%); }
.pillar-software::after { background: radial-gradient(circle, rgba(43,201,217,0.32) 0%, transparent 60%); }
.pillar:hover::after { opacity: 0.75; transform: scale(1.05); }

.pillar > * { position: relative; z-index: 1; }

.pillar-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cf-blue);
  margin-bottom: var(--space-2);
}
.pillar h3 {
  font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pillar h3 .amp {
  color: var(--cf-cyan);
  font-weight: 400;
  font-family: var(--cf-font-mono);
  margin: 0 0.1em;
}
.pillar-price {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--cf-grey-line);
}
.pillar-price .muted {
  display: block;
  font-size: 0.8125rem;
  color: var(--cf-stone);
  margin-bottom: var(--space-1);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pillar-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--cf-font-mono);
  color: var(--cf-navy);
  line-height: 1;
}
.pillar-amount .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cf-stone);
}
.pillar-amount .big {
  font-size: clamp(3rem, 5vw + 1rem, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--cf-navy);
}
.pillar-amount .cents {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cf-stone);
  align-self: flex-start;
  margin-top: 10px;
}
.pillar-amount .onmaat {
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cf-navy);
}
.pillar-price .pillar-amount { margin-bottom: var(--space-1); }

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  flex-grow: 1;
}
.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: 0.9375rem;
  color: var(--cf-charcoal);
  line-height: 1.5;
}
.pillar-features li svg {
  width: 18px; height: 18px;
  color: var(--cf-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}
.pillar .btn { width: 100%; }

/* ============================================================
   23. Tilt-card (subtiele 3D hover, JS-driven)
   ============================================================ */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .tilt-card { transform: none !important; }
}

/* ============================================================
   24. Werkwijze — duur-tag verwijderd, dus kleine adjust
   ============================================================ */
.stap .duur { display: none; }

/* ============================================================
   25. Diensten — examples zonder price-line nu
   ============================================================ */
.dienst-card .examples {
  border-top: 1px solid var(--cf-grey-line);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
}
.dienst-card .examples li { margin-bottom: var(--space-2); }
.dienst-card .examples li:last-child { margin-bottom: 0; }

/* ============================================================
   26. Tarieven note centered + accent
   ============================================================ */
#tarieven .tarieven-note {
  max-width: 720px;
  margin: var(--space-7) auto 0;
}

/* ============================================================
   27. Diensten — 3D coverflow-carrousel
   ============================================================ */
.dienst-carousel {
  position: relative;
  margin-top: var(--space-7);
  perspective: 1600px;
}
.dienst-viewport {
  position: relative;
  height: 510px;
  overflow: hidden;
}
.dienst-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  touch-action: pan-y;
  cursor: grab;
}
.dienst-track:active { cursor: grabbing; }

.dienst-carousel .dienst-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(280px, 86vw, 432px);
  height: calc(100% - var(--space-4));
  margin: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease),
              box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  -webkit-user-select: none;
  user-select: none;
}
.dienst-carousel:not(.ready) .dienst-card { opacity: 0; }
.dienst-carousel .dienst-card.is-active {
  box-shadow: var(--shadow-lg);
  border-color: var(--cf-cyan);
}

.dienst-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  background: var(--cf-white);
  border: 1px solid var(--cf-grey-line);
  color: var(--cf-navy);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.dienst-arrow svg { width: 22px; height: 22px; }
.dienst-arrow:hover { background: var(--cf-navy); color: var(--cf-white); }
.dienst-arrow:disabled { opacity: 0.3; cursor: default; }
.dienst-arrow-prev { left: 2px; }
.dienst-arrow-next { right: 2px; }
@media (min-width: 1180px) {
  .dienst-arrow-prev { left: -10px; }
  .dienst-arrow-next { right: -10px; }
}

.dienst-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.dienst-dot {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: var(--r-pill);
  border: none;
  background: var(--cf-grey-light);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.dienst-dot[aria-current="true"] {
  background: var(--cf-cyan);
  transform: scale(1.3);
}

@media (max-width: 768px) { .dienst-viewport { height: 560px; } }
@media (max-width: 420px) { .dienst-viewport { height: 600px; } }

/* Reduced-motion: geen 3D, maar een nette horizontaal-scrollbare rij */
@media (prefers-reduced-motion: reduce) {
  .dienst-carousel { perspective: none; }
  .dienst-viewport {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }
  .dienst-track {
    position: static;
    display: flex;
    gap: var(--space-5);
    transform-style: flat;
    padding-bottom: var(--space-3);
  }
  .dienst-carousel .dienst-card {
    position: relative;
    top: auto; left: auto;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto;
    width: min(86vw, 360px);
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
  .dienst-arrow { display: none; }
}
