/* ============================================================
   CONTAQT V2 — Pro Design System
   Aesthetic: Warm editorial meets modern SaaS. Confident,
   layered, with real depth and unexpected moments.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
/* overflow-x only on body, not html — html overflow breaks position:sticky */

/* ---- CSS Custom Properties ---- */
:root {
  --teal: #1B3D3D;
  --teal-mid: #245454;
  --teal-light: #2E6A6A;
  --bg: #F5F1EB;
  --bg-alt: #EFEAE2;
  --bg-warm: #F9F6F0;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B665E;
  --text-soft: #9E9889;
  --card-border: rgba(27,61,61,0.06);
  --card-shadow: 0 1px 3px rgba(27,61,61,0.04), 0 4px 16px rgba(27,61,61,0.03);
  --card-shadow-hover: 0 8px 30px rgba(27,61,61,0.08), 0 2px 8px rgba(27,61,61,0.04);
  --card-shadow-lifted: 0 20px 60px rgba(27,61,61,0.12), 0 4px 16px rgba(27,61,61,0.06);

  --accent: #1B3D3D;
  --accent-light: rgba(27,61,61,0.08);
  --accent-glow: rgba(27,61,61,0.15);
  --accent-hover: #142E2E;

  --basis: #3B9B8F;
  --basis-light: rgba(59,155,143,0.08);
  --basis-glow: rgba(59,155,143,0.15);
  --premium: #B8862F;
  --premium-light: rgba(184,134,47,0.08);
  --premium-glow: rgba(184,134,47,0.15);
  --podium: #F06B35;
  --podium-light: rgba(240,107,53,0.08);
  --podium-glow: rgba(240,107,53,0.15);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-basis {
  --accent: #3B9B8F;
  --accent-light: rgba(59,155,143,0.08);
  --accent-glow: rgba(59,155,143,0.15);
  --accent-hover: #2E8078;
}
.page-premium {
  --accent: #B8862F;
  --accent-light: rgba(184,134,47,0.08);
  --accent-glow: rgba(184,134,47,0.15);
  --accent-hover: #9A7128;
}
.page-podium {
  --accent: #F06B35;
  --accent-light: rgba(240,107,53,0.08);
  --accent-glow: rgba(240,107,53,0.15);
  --accent-hover: #D85A28;
}
.page-general {
  --accent: #1B3D3D;
  --accent-light: rgba(27,61,61,0.08);
  --accent-glow: rgba(27,61,61,0.15);
  --accent-hover: #142E2E;
  --heading-accent: #3B9B8F;
}

/* ---- Base Typography ---- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  border-top: 3px solid;
  border-image: linear-gradient(to right, var(--basis), var(--premium), var(--podium)) 1;
}

h1, h2, h3, h4 {
  font-family: 'Urbanist', sans-serif;
  color: var(--teal);
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 900;
}

h1 { font-size: clamp(40px, 4.2vw, 60px); }
h2 { font-size: clamp(34px, 4vw, 56px); font-weight: 800; line-height: 1.1; }
h3 { font-size: 24px; font-weight: 800; line-height: 1.2; }
h4 { font-size: 18px; font-weight: 700; line-height: 1.3; }

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

.accent { color: var(--heading-accent, var(--accent)); }
h1 em, h1 span.accent, h2 em, h2 span.accent { font-style: normal !important; color: var(--heading-accent, var(--accent)); }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ---- Icons ---- */
.lucide-icon {
  width: 22px; height: 22px;
  stroke-width: 1.8; flex-shrink: 0;
  stroke: currentColor; fill: none;
}

/* ============================================================
   ANIMATIONS — refined, purposeful
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.d1 { transition-delay: 0.08s; }
.fade-in.d2 { transition-delay: 0.16s; }
.fade-in.d3 { transition-delay: 0.24s; }
.fade-in.d4 { transition-delay: 0.32s; }
.fade-in.d5 { transition-delay: 0.4s; }
.fade-in.d6 { transition-delay: 0.48s; }

/* Scale-in variant */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-bounce);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ============================================================
   NOISE TEXTURE
   ============================================================ */
.noise { position: relative; }
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   BUTTONS — pill-shaped with fill animation
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow), 0 1px 3px rgba(0,0,0,0.1);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow), 0 2px 8px rgba(0,0,0,0.1);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid rgba(27,61,61,0.2);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-nav {
  padding: 10px 22px;
  font-size: 13px;
  box-shadow: 0 2px 10px var(--accent-glow);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.section-dark .btn-secondary,
.cta-section .btn-secondary,
.btn-white-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.section-dark .btn-secondary:hover,
.cta-section .btn-secondary:hover,
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

/* Op de teal CTA-section moet btn-primary contrasteren — anders viel hij weg op page-general (--accent = teal) */
.cta-section .btn-primary {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.cta-section .btn-primary:hover {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ============================================================
   TAGS / LABELS
   ============================================================ */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-light);
  color: var(--accent);
}
.tag-basis { background: var(--basis-light); color: var(--basis); }
.tag-premium { background: var(--premium-light); color: var(--premium); }
.tag-podium { background: var(--podium-light); color: var(--podium); }
.tag-teal { background: rgba(27,61,61,0.05); color: var(--teal); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ============================================================
   CARDS — layered with depth
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.card-spacious {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
}
.card-spacious .tag { margin-bottom: 24px; }
.card-spacious h3 { margin-bottom: 20px; font-size: 28px; }
.card-spacious h4 { margin-bottom: 16px; font-size: 22px; }
.card-spacious p { margin-bottom: 28px; font-size: 17px; line-height: 1.85; flex: 1; }
.card-spacious a { font-weight: 600; font-size: 16px; }

.card-accent-top {
  border-top: 3px solid var(--accent);
}
.card-accent-top.basis { border-top-color: var(--basis); }
.card-accent-top.premium { border-top-color: var(--premium); }
.card-accent-top.podium { border-top-color: var(--podium); }

/* Glass card for dark sections */
.card-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s;
}
.card-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.card-glass h3, .card-glass h4 { color: var(--white); }
.card-glass p { color: rgba(255,255,255,0.65); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--accent-light);
  color: var(--accent);
}
.card-glass .card-icon {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
/* Glass cards: equal height in grid */
.grid-3 .card-glass,
.grid-2 .card-glass {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.grid-3 .card-glass p,
.grid-2 .card-glass p {
  flex: 1;
}

/* ============================================================
   SECTION LAYOUTS
   ============================================================ */
section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.section-impact { padding: 100px 0 80px; }

/* Grid variants */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 28px; }
.grid-3-unequal { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 24px; }

.grid-2 { align-items: stretch; }
.grid-3, .grid-4, .grid-2-1, .grid-1-2, .grid-3-unequal {
  align-items: start;
}

/* Spotlight */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.spotlight h2 + p,
.spotlight h3 + p { margin-top: 16px; }
.spotlight-reverse { direction: rtl; }
.spotlight-reverse > * { direction: ltr; }

/* Stacked */
.stacked { display: flex; flex-direction: column; gap: 24px; }
.stacked-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.stacked-number {
  font-family: 'Urbanist', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.stacked-item-alt {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  padding: 40px 44px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.stacked-item-alt:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.stacked-item-alt .stacked-bg-number {
  font-family: 'Urbanist', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--heading-accent, var(--accent));
  opacity: 0.2;
  line-height: 1;
  position: static;
}
.stacked-item-alt .stacked-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Vertical timeline */
.steps-timeline-v {
  position: relative;
  padding-left: 80px;
}
.steps-timeline-v::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(27,61,61,0.1));
}
.step-tl-item {
  position: relative;
  padding: 0 0 48px 0;
}
.step-tl-item:last-child { padding-bottom: 0; }
.step-tl-dot {
  position: absolute;
  left: -80px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--teal);
}
.step-tl-item h4 { margin-bottom: 8px; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-large { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

/* Section headers */
.section-header-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}
.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header-center p { margin-top: 16px; font-size: 18px; }

/* Alternate background */
.bg-alt { background: var(--bg-alt); }

/* Vertical timeline steps */
.steps-timeline {
  position: relative;
  padding-left: 80px;
  max-width: 700px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(240,107,53,0.1));
}
.step-t-item {
  position: relative;
  padding: 0 0 56px 0;
}
.step-t-item:last-child { padding-bottom: 0; }
.step-t-dot {
  position: absolute;
  left: -80px;
  top: 4px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
  box-shadow: 0 2px 12px var(--accent-glow);
}
.step-t-item h4 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step-t-item p {
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   DARK SECTIONS — with depth and glow
   ============================================================ */
.section-dark {
  background: var(--teal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-dark .section-label { color: var(--accent); }
.section-dark .section-label::before { background: var(--accent); }

/* Radial accent glow */
.section-dark::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.07;
  top: -300px; left: -200px;
  pointer-events: none;
}
/* Secondary glow for depth */
.section-dark::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}

.full-bleed {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* ============================================================
   HERO SECTIONS — the star of the show
   ============================================================ */
.hero {
  padding: 60px 0 80px;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
  color: var(--text-muted);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
}
.hero-proof,
.social-proof {
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-proof .dot,
.social-proof .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease infinite;
}

/* Hero visual — the image with overlapping cards */
.hero-visual {
  position: relative;
  height: 560px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(27,61,61,0.15);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27,61,61,0.15) 100%);
  pointer-events: none;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
  z-index: 0;
  filter: blur(40px);
  animation: float 10s ease-in-out infinite;
}
.hero-blob-1, .hero-blob:first-of-type { top: -80px; right: -60px; }
.hero-blob-2, .hero-blob:nth-of-type(2) {
  bottom: -60px; left: -60px;
  background: var(--teal);
  opacity: 0.06;
  animation-delay: 3s;
  animation-name: floatReverse;
}

/* Floating stat cards — elevated glassmorphism */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 40px rgba(27,61,61,0.12), 0 1px 3px rgba(27,61,61,0.06);
  z-index: 3;
  min-width: 160px;
}
.float-card-1 { top: 24px; right: -28px; animation: float 7s ease-in-out infinite; }
.float-card-2 { top: 200px; left: -36px; animation: floatReverse 8s ease-in-out infinite 1s; }
.float-card-3 { bottom: 48px; right: 16px; animation: float 6s ease-in-out infinite 2s; }

.float-card .card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0;
}
.float-card .card-title,
.float-card h4 {
  font-size: 13px; font-weight: 700; color: var(--teal);
  margin-bottom: 2px; font-family: 'DM Sans', sans-serif;
  line-height: 1.3;
}
.float-card .card-text,
.float-card p {
  font-size: 12px; color: var(--text-soft);
}
.float-card .card-stat,
.float-card .stat {
  font-family: 'Urbanist', sans-serif;
  font-size: 34px; font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

/* Page hero (product & inner pages) — split layout with visual */
.page-hero {
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(38px, 4.5vw, 64px); margin-bottom: 20px; }
.page-hero p { font-size: 18px; max-width: 600px; margin: 0 auto; }

.page-hero-decorated {
  position: relative;
}
.page-hero-decorated::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.05;
  top: -200px; right: -120px;
  pointer-events: none;
  filter: blur(60px);
}
.page-hero-decorated::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.03;
  bottom: -100px; left: -80px;
  pointer-events: none;
  filter: blur(40px);
}

/* Product hero — split layout with visual side */
.product-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 70vh;
}
.product-hero-content {
  position: relative;
  z-index: 2;
}
.product-hero-content h1 {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 20px;
}
.product-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.product-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Price display */
.price-display {
  margin-bottom: 8px;
}
.price-display .price-amount {
  font-family: 'Urbanist', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-display .price-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-soft);
  margin-left: 4px;
}
.price-note {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 32px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--accent); text-decoration: none; font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ============================================================
   PRODUCT / PRICING CARDS
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  opacity: 1;
  transition: opacity 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-lifted);
}
.product-card.basis::before { background: var(--basis); }
.product-card.basis .product-label { color: var(--basis); }
.product-card.basis .product-features .check { color: var(--basis); }
.product-card.premium::before { background: var(--premium); }
.product-card.premium .product-label { color: var(--premium); }
.product-card.premium .product-features .check { color: var(--premium); }
.product-card.podium::before { background: var(--podium); }
.product-card.podium .product-label { color: var(--podium); }
.product-card.podium .product-features .check { color: var(--podium); }

.product-card.featured {
  background: var(--white);
  color: var(--text);
  border-color: var(--premium);
  padding: 48px 40px;
  box-shadow: 0 8px 30px rgba(27,61,61,0.1);
  transform: scale(1.03);
}
.product-card.featured::before { background: var(--premium); }
.product-card.featured h3 { color: var(--teal); }
.product-card.featured .product-price { color: var(--premium); }
.product-card.featured .product-desc { color: var(--text-muted); }
.product-card.featured .product-features li {
  color: var(--text-muted);
  border-color: var(--card-border);
}
.product-card.featured .product-features .check { color: var(--premium); }
.product-card.featured .btn-primary {
  background: var(--premium);
  color: var(--white);
}
.product-card.featured .btn-primary:hover {
  background: #9A7128;
}
.product-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.product-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-soft); margin-bottom: 12px;
}
.product-card h3 { font-size: 26px; margin-bottom: 4px; }
.product-price {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900; font-size: 40px;
  color: var(--teal); margin: 16px 0 4px;
  letter-spacing: -0.02em;
}
.product-price span { font-size: 16px; font-weight: 400; opacity: 0.5; }
.product-desc { font-size: 15px; margin-bottom: 20px; }

.product-features {
  list-style: none; margin-bottom: 28px; flex-grow: 1;
}
.product-features li {
  font-size: 14px; color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  display: flex; align-items: center; gap: 10px;
}
.product-features li:last-child { border-bottom: none; }
.product-features .check {
  color: var(--accent); font-weight: 700; font-size: 16px;
}

.product-card .btn { align-self: stretch; justify-content: center; }

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); }
.review-card blockquote { flex: 1; }

.review-stars {
  color: #E8A838;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-card blockquote {
  font-size: 16px; line-height: 1.75;
  color: var(--text); margin-bottom: 24px;
  font-style: normal;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--bg);
}
.review-author .name { font-weight: 700; font-size: 14px; color: var(--teal); }
.review-author .company { font-size: 13px; color: var(--text-soft); }

/* Large spotlight review */
.review-spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.review-spotlight::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 32px;
  font-family: 'Urbanist', serif;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}
.review-spotlight .review-avatar {
  width: 88px; height: 88px;
}
.review-spotlight blockquote {
  font-size: 20px; line-height: 1.65;
  color: var(--text); margin-bottom: 16px;
}

.reviews-spotlight-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.reviews-spotlight-grid .review-card:nth-child(n+2) {
  margin-bottom: 0;
}

/* ============================================================
   AUDIENCE TAGS
   ============================================================ */
.audience-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.audience-tag {
  display: inline-flex; align-items: center;
  padding: 20px 34px;
  background: var(--white);
  border-radius: 50px;
  font-weight: 600; font-size: 16px;
  color: var(--teal); text-decoration: none;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: all 0.35s var(--ease-out);
}
.audience-tag:hover {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27,61,61,0.15);
}
.audience-tag svg {
  margin-left: 12px; width: 16px; height: 16px;
  transition: transform 0.25s var(--ease-out);
}
.audience-tag:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}
.comparison-table thead { background: var(--bg-alt); }
.comparison-table th {
  padding: 18px 24px; text-align: left;
  font-weight: 700; color: var(--teal);
  font-size: 14px;
  border-bottom: 1px solid var(--card-border);
}
.comparison-table td {
  padding: 16px 24px; font-size: 14px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-muted);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-warm); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-group-title {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin: 36px 0 16px;
  display: flex; align-items: center; gap: 12px;
}
.faq-group-title::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.faq-item {
  margin-bottom: 10px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(27,61,61,0.02);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--card-shadow); }
.faq-item.open { box-shadow: var(--card-shadow); }
.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 15px;
  color: var(--teal);
  background: none; border: none; width: 100%; text-align: left;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-warm); }
.faq-question::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after { transform: rotate(-135deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 15px; line-height: 1.8;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-weight: 600;
  color: var(--teal); margin-bottom: 8px; font-size: 14px;
}
.form-input {
  width: 100%; padding: 14px 20px;
  border: 1px solid rgba(27,61,61,0.1);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}
textarea.form-input { resize: vertical; min-height: 130px; }
select.form-input { cursor: pointer; }

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; gap: 12px;
  padding: 12px 0; font-size: 15px; color: var(--text);
}
.feature-list li::before {
  content: '✓'; color: var(--accent);
  font-weight: 700; flex-shrink: 0;
}

/* ============================================================
   NAVIGATION — sticky glass
   ============================================================ */
#site-nav {
  position: sticky; top: 0; z-index: 1000;
}
nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
  z-index: 100;
}
nav .container {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: inline-flex; align-items: center; height: 28px; text-decoration: none; }
.logo img { height: 28px; width: auto; }

.nav-menu {
  display: flex; gap: 4px; list-style: none;
  align-items: center; height: 100%;
}
.nav-item {
  position: relative; height: 100%;
  display: flex; align-items: center;
}
.nav-item > a, .nav-item > button {
  text-decoration: none; color: var(--text-muted);
  font-size: 14px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid transparent;
  background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 5px;
  transition: all 0.2s;
}
.nav-item > a:hover, .nav-item > button:hover {
  color: var(--teal);
  border-color: var(--card-border);
  background: var(--bg);
}
.service-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.nav-chevron {
  width: 10px; height: 10px; transition: transform 0.2s;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdowns */
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px; padding: 8px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(27,61,61,0.10);
  opacity: 0; visibility: hidden;
  transition: all 0.2s ease;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(2px);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; text-decoration: none;
  color: var(--text); border-radius: 10px;
  font-size: 14px; font-weight: 500;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--bg); }
.nav-dropdown .dropdown-arrow {
  font-size: 13px; color: var(--text-soft); margin-left: auto;
}
.nav-dropdown .dropdown-sub {
  font-size: 12px; color: var(--text-soft); font-weight: 400;
}
.dropdown-divider { height: 1px; background: var(--card-border); margin: 4px 8px; }

.nav-cta { margin-left: 14px; }
.nav-cta .btn-nav {
  border-radius: 100px;
  font-size: 13px;
  padding: 9px 20px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 1001;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--teal); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999;
  overflow-y: auto; padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-section { margin-bottom: 24px; }
.mobile-section-basis,
.mobile-section-premium,
.mobile-section-podium,
.mobile-section-neutral {
  border-left: 3px solid var(--text-soft);
  padding-left: 16px;
  border-radius: 2px;
}
.mobile-section-basis   { border-left-color: var(--basis); }
.mobile-section-premium { border-left-color: var(--premium); }
.mobile-section-podium  { border-left-color: var(--podium); }
.mobile-section-neutral { border-left-color: var(--text-soft); }
.mobile-section-basis .mobile-section-title  { color: var(--basis); }
.mobile-section-premium .mobile-section-title { color: var(--premium); }
.mobile-section-podium .mobile-section-title  { color: var(--podium); }
.mobile-section-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-soft); padding: 8px 0; margin-bottom: 4px;
}
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; text-decoration: none;
  color: var(--text); font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--card-border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn {
  width: 100%; justify-content: center;
  margin-top: 24px; font-size: 16px; padding: 16px;
  color: var(--white);
}

/* ============================================================
   FOOTER — Optie C: Inline CTA-balk + footer op zelfde achtergrond
   ============================================================ */
footer {
  background: var(--bg-alt);
  padding: 56px 0 32px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Inline CTA row */
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: var(--teal);
  border-radius: var(--radius-lg);
  margin-bottom: 56px;
}
.footer-cta-row h3 {
  color: var(--white);
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
  flex: 1;
  line-height: 1.25;
}
.footer-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cta-primary {
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color: var(--teal);
}
.btn-cta-secondary {
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  text-decoration: none;
  background: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cta-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p {
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
  color: var(--text-muted);
}
footer h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 18px;
  letter-spacing: 0;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 110px 0;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: 0.06;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section .container-narrow { position: relative; }
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; }

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1080px)
   ============================================================ */
@media (max-width: 1080px) {
  .container, .container-narrow { padding: 0 24px; }
  section { padding: 72px 0; }

  h1 { font-size: clamp(36px, 8vw, 52px); }

  .hero { min-height: auto; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 360px; }
  .float-card { display: none; }
  .hero-content { max-width: 100%; }

  .product-hero-split { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .product-hero-visual { display: none; }

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

  .spotlight, .spotlight-reverse { grid-template-columns: 1fr; gap: 32px; }
  .spotlight-reverse { direction: ltr; }

  .bento { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; }

  .section-header-split { grid-template-columns: 1fr; gap: 16px; }

  .product-card.featured { padding: 40px; }

  .review-spotlight { grid-template-columns: 1fr; text-align: center; }
  .reviews-spotlight-grid { grid-template-columns: 1fr; }

  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .nav-menu { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 44px 0; max-width: 100vw; }

  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }

  .hero { padding: 40px 0; }
  .hero-visual { height: 280px; }

  .grid-3, .grid-3-unequal { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }

  .stacked-item { grid-template-columns: 1fr; }
  .stacked-number { font-size: 48px; }

  .audience-tags { flex-direction: column; }
  .audience-tag { justify-content: space-between; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta-row { flex-direction: column; text-align: center; padding: 28px 24px; }
  .footer-cta-buttons { flex-direction: column; align-items: stretch; flex-shrink: 1; width: 100%; }
  .footer-cta-buttons .btn { flex: none; width: 100%; text-align: center; }

  .comparison-table { font-size: 13px; overflow-x: auto; display: block; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }

  /* Prevent overflow from decorative elements */
  .full-bleed { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
  .section-dark.full-bleed { padding-left: 0; padding-right: 0; }
  .subpage-hero-visual::before { inset: -20px; }

  /* Reduce card padding on mobile */
  .card { padding: 24px; }
  .card-spacious { padding: 28px 24px; }
  .card-spacious h4 { font-size: 18px; }
  .card-spacious p { font-size: 15px; }

  /* Prevent inline mockups from overflowing */
  .spotlight img, .spotlight iframe { max-width: 100%; height: auto; }

  /* Ensure containers don't overflow */
  .container, .container-narrow, .container-wide { padding: 0 20px; max-width: 100%; }

  /* Section dark needs to span full width without overflow */
  .section-dark { width: 100%; }

  /* Force inline-styled grids to collapse on mobile */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Force wide inline-styled flex rows to stack on mobile */
  [style*="display:flex"][style*="gap:40px"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }
}

/* ============================================================
   SUBPAGE HERO (Split layout with mockup placeholder)
   ============================================================ */
.subpage-hero {
  padding: 100px 0 80px;
}
.subpage-hero .container {
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 80px;
}
.subpage-hero + .section {
  padding-top: 80px;
}
.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.subpage-hero-content .breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  opacity: 0.6;
}
.subpage-hero-content h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 16px;
}
.subpage-hero-content h1 .accent {
  color: var(--heading-accent, var(--accent));
}
.subpage-hero-content p {
  font-size: 17px;
  max-width: 520px;
}
.subpage-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: var(--radius-lg);
}
.subpage-hero-visual::before {
  content: '';
  position: absolute;
  inset: -60px;
  background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  background-position: center;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  z-index: 0;
}
.subpage-hero-blob {
  display: none;
}
/* Stacked article cards (E6 — horizontal mini-cards) */
.hero-stacked-cards {
  position: relative;
  z-index: 1;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: rotate(2deg);
}
.hero-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--white, #fff);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--card-shadow, 0 4px 20px rgba(0,0,0,0.08));
  transition: box-shadow 0.3s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
              transform 0.3s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.hero-card:nth-child(1) { transform: rotate(-1.5deg); }
.hero-card:nth-child(2) { transform: rotate(0.5deg); }
.hero-card:nth-child(3) { transform: rotate(1.5deg); }
.hero-card:hover {
  transform: rotate(-0.5deg) scale(1.02);
  box-shadow: var(--card-shadow-hover, 0 8px 30px rgba(0,0,0,0.12));
}
.hero-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}
.hero-card-text {
  flex: 1;
  min-width: 0;
}
.hero-card-title {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal, #1b3d3d);
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.hero-card-intro {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--text-soft, #7a8a8a);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .subpage-hero {
    padding: 48px 0 56px;
  }
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .subpage-hero-visual { min-height: 200px; }
  .hero-stacked-cards {
    width: 280px;
    margin: 0 auto;
    transform: rotate(1deg);
  }
  .hero-card {
    padding: 10px;
    gap: 10px;
  }
  .hero-card img {
    width: 64px;
    height: 64px;
  }
}

/* ---- Hero Checks (style A: subtitle + bullet points) ---- */
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.hero-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   BROCHURE BANNERS
   ============================================================ */

/* Shared form elements */
.brochure-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 2px solid rgba(27,61,61,0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 200px;
}
.brochure-input:focus { border-color: var(--teal); }
.brochure-input::placeholder { color: var(--text-soft); }
.brochure-input-name { width: 160px; }

.btn-download {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-download:hover { background: var(--teal-mid); }

/* Banner E — Split section with visual (landing pages) */
.brochure-split {
  display: flex;
  align-items: center;
  gap: 60px;
}
.brochure-split__content { flex: 1; }
.brochure-split__content h3 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--teal);
  margin: 0 0 12px;
  line-height: 1.2;
}
.brochure-split__content > p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 24px;
}
.brochure-split__form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.brochure-split__privacy {
  font-size: 12px;
  color: var(--text-soft);
  margin: 0;
}
.brochure-split__visual {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-brochure {
  width: 260px;
  height: 340px;
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-mid) 100%);
  border-radius: 12px;
  transform: rotate(3deg);
  box-shadow: 0 12px 40px rgba(27,61,61,0.2);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.mock-brochure::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.mock-brochure__logo {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.mock-brochure__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.mock-brochure__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-brochure__line {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}
.mock-brochure__line:nth-child(1) { width: 80%; }
.mock-brochure__line:nth-child(2) { width: 60%; }
.mock-brochure__line:nth-child(3) { width: 90%; }
.mock-brochure__line:nth-child(4) { width: 45%; }
.mock-brochure__line:nth-child(5) { width: 70%; }
.mock-brochure__line:nth-child(6) { width: 55%; }

/* Banner B — Card with mockup (detail pages) */
.brochure-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(27,61,61,0.08), 0 1px 4px rgba(27,61,61,0.04);
  display: flex;
  overflow: hidden;
}
.brochure-card__mockup {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(27,61,61,0.04) 0%, rgba(27,61,61,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
}
.mockup-stack {
  position: relative;
  width: 140px;
  height: 180px;
}
.mockup-page {
  position: absolute;
  width: 120px;
  height: 160px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(27,61,61,0.1);
}
.mockup-page:nth-child(1) {
  top: 10px; left: 0;
  transform: rotate(-6deg);
  background: linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
}
.mockup-page:nth-child(2) {
  top: 0; left: 16px;
  transform: rotate(2deg);
}
.mockup-page:nth-child(2)::before {
  content: '';
  display: block;
  margin: 16px 12px 8px;
  height: 6px; width: 50%;
  background: var(--teal);
  border-radius: 3px;
  opacity: 0.6;
}
.mockup-page:nth-child(2)::after {
  content: '';
  display: block;
  margin: 0 12px;
  height: 4px; width: 70%;
  background: rgba(27,61,61,0.08);
  border-radius: 2px;
}
.brochure-card__content {
  flex: 1;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brochure-card__content h3 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--teal);
  margin: 0 0 8px;
}
.brochure-card__content .subtitle {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 20px;
}
.brochure-card__form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.brochure-card__privacy {
  font-size: 12px;
  color: var(--text-soft);
  margin: 0;
}

/* Responsive brochure banners */
@media (max-width: 768px) {
  .brochure-split { flex-direction: column; gap: 32px; }
  .brochure-split__visual { flex: none; }
  .brochure-split__form { flex-direction: column; }
  .brochure-split__form .brochure-input,
  .brochure-split__form .brochure-input-name { width: 100%; }
  .brochure-card { flex-direction: column; }
  .brochure-card__mockup { width: 100%; padding: 24px; }
  .brochure-card__form { flex-direction: column; }
  .brochure-card__form .brochure-input,
  .brochure-card__form .brochure-input-name { width: 100%; }
}

/* ==============================================
   KENNISBANK — Category Tags
   ============================================== */
.tag-retentie    { background: var(--basis-light);             color: var(--basis);    }
.tag-groei       { background: var(--podium-light);            color: var(--podium);   }
.tag-website     { background: rgba(27,61,61,0.05);            color: var(--teal);     }
.tag-seo         { background: rgba(27,61,61,0.08);            color: var(--teal-mid); }
.tag-tijdsbesparing { background: var(--premium-light);        color: var(--premium);  }

/* ==============================================
   KENNISBANK — Article Hero
   ============================================== */
.article-hero {
  padding: clamp(40px, 6vw, 80px) 0 0;
  background: linear-gradient(160deg, rgba(59,155,143,.07) 0%, var(--bg) 55%);
}
.article-hero .container::after {
  content: '';
  display: block;
  margin-top: clamp(24px, 3vw, 40px);
  height: 2px;
  background: linear-gradient(to right, var(--basis), transparent);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.article-date {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}
.article-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.article-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-intro {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.article-hero__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ==============================================
   KENNISBANK — Article Body (Prose)
   ============================================== */
.article-body { padding: clamp(40px, 5vw, 64px) 0; }

.article-body h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--teal);
  margin: 48px 0 16px;
}
.article-body h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--teal);
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}
.article-body a {
  color: var(--basis);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--teal); }
.article-body strong { font-weight: 700; color: var(--teal); }

/* ==============================================
   KENNISBANK — Article CTA Box
   ============================================== */
.article-cta { padding-top: 16px; padding-bottom: clamp(48px, 6vw, 80px); }

.article-cta__box {
  background: var(--white);
  border-radius: var(--radius-xl);
  border-top: 4px solid var(--basis);
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
}
.article-cta__box h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 12px;
}
.article-cta__box p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================
   KENNISBANK — Overview Page
   ============================================== */
.kennisbank-intro {
  padding: clamp(40px, 6vw, 72px) 0 0;
}
.kennisbank-intro h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 16px;
}
.kennisbank-intro p {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
}

.kennisbank-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 48px;
}
.kennisbank-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.kennisbank-filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.kennisbank-filter-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

.kennisbank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.kennisbank-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.kennisbank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,61,61,0.1);
}
.kennisbank-card a { text-decoration: none; color: inherit; display: block; }
.kennisbank-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.kennisbank-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.kennisbank-card:hover .kennisbank-card__image img { transform: scale(1.04); }
.kennisbank-card__image .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.kennisbank-card__body { padding: 20px 24px 24px; }
.kennisbank-card__body h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.3;
  margin-bottom: 8px;
}
.kennisbank-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.kennisbank-card__date {
  font-size: 12px;
  color: var(--text-soft);
  font-family: 'DM Sans', sans-serif;
}

.kennisbank-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.kennisbank-empty p { font-size: 17px; }

@media (max-width: 1024px) and (min-width: 769px) {
  .kennisbank-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .kennisbank-grid { grid-template-columns: 1fr; }
  .kennisbank-filters { gap: 8px; }
  .article-hero__grid { grid-template-columns: 1fr; }
  .article-hero__media { order: -1; }
  .article-hero__image { aspect-ratio: 16 / 9; }
}
