/* ==========================================================================
   1. MASTER THEME SYSTEM & TOKENS
   ========================================================================== */
:root {
  /* Base Neutral Palette */
  --ink:          #16181d;
  --body-text:    #4c4f58;
  --muted:        #83878f;
  --line:         #e7e6ee;
  --bg-main:      #fcfcfd;
  --bg-soft:      #f7f7fa;
  --white:        #ffffff;

  /* Persistent Universal Accent (Contact & Key CTA Buttons) */
  --accent:       #1fa15a;
  --accent-dark:  #168247;
  --accent-ink:   #ffffff;

  /* Typography */
  --font-head:    "Poppins", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geometry & Shadows */
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 35px rgba(37, 99, 235, 0.2);
  --container:    1240px;
  --gutter:       24px;
}

/* Dynamic Theme Variations */
[data-theme="purple"] {
  --primary:       var(--purple);
  --primary-dark:  var(--purple-dark);
  --primary-light: #decbf7;
  --primary-tint:  #f6f2fb;
}

[data-theme="purple-light"] {
  --primary:       var(--purple);
  --primary-dark:  var(--purple);
  --primary-light: #decbf7;
  --primary-tint:  #f6f2fb;
}

[data-theme="green"] {
  --primary:       var(--green-dark);
  --primary-dark:  var(--green-dark);
  --primary-light: #dcf1e3;
  --primary-tint:  #f3faf5;
}

[data-theme="green-light"] {
  --primary:       var(--green);
  --primary-dark:  var(--green);
  --primary-light: #dcf1e3;
  --primary-tint:  #f3faf5;
}

[data-theme="orange"] {
  --primary:       var(--orange);
  --primary-dark:  var(--orange-dark);
  --primary-light: #fdead4;
  --primary-tint:  #fff7ef;
}

[data-theme="blue"] {
  --primary:       var(--blue);
  --primary-dark:  var(--blue-dark);
  --primary-light: #bce3f7;
  --primary-tint:  #f0f8ff;
}

[data-theme="red"] {
  --primary:       var(--red);
  --primary-dark:  var(--red-dark);
  --primary-light: #f8c2c4;
  --primary-tint:  #fdf2f2;
}

[data-theme="yellow"] {
  --primary:       var(--yellow);
  --primary-dark:  var(--yellow-dark);
  --primary-light: #fde68a;
  --primary-tint:  #fffbeb;
}

.page-wrapper {
  padding-top: 125px;
}

.icon-badge.soft svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Base Resets */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

.section-tight { padding-block: 40px; }
.section-space { padding-block: 56px; }

/* Utility Components toegevoegd uit Source 5 */
.eyebrow {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px auto;
}
.section-head p { font-size: 17px; color: var(--muted); margin-top: 12px; }

.section-divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

.pill-tag {
  font-size: 12px; font-weight: 700;
  color: var(--primary-dark); background: var(--primary-tint);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 16px;
  display: inline-block;
}

/* ==========================================================================
   DEV TOOLBAR (LIVE SWITCHER)
   ========================================================================== */
.demo-toolbar {
  position: fixed; top: 0; left: 0; right: 0; height: 52px;
  background: #0f172a; color: #f8fafc;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; z-index: 9999; font-size: 0.85rem; border-bottom: 1px solid #334155;
}
.demo-controls { display: flex; gap: 20px; align-items: center; }
.demo-controls label { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.demo-controls select {
  background: #1e293b; color: #fff; border: 1px solid #475569;
  padding: 5px 12px; border-radius: 6px; font-size: 0.85rem; cursor: pointer;
}

/* ==========================================================================
   2. NAVIGATION & BUTTONS
   ========================================================================== */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  position: sticky; top: 52px; z-index: 1000;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 99px;
  background: conic-gradient(from 200deg, #ee7c1e, #1f9e56, #5b2c91, #ee7c1e);
  flex-shrink: 0;
}
.logo-drives { color: var(--primary); transition: color 0.3s; }

.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--body-text);
  font-weight: 600; font-size: 0.95rem; padding: 8px 16px; border-radius: var(--radius-sm);
  transition: all 0.2s; position: relative;
}
.nav-links a:hover { color: var(--ink); background-color: var(--bg-soft); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background-color: var(--ink); border-radius: 2px;
}

/* Universal Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: transparent;
  white-space: nowrap;
  justify-content: center;
}
.btn-accent { background-color: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background-color: var(--accent-dark); }
.btn-primary { background-color: var(--primary-dark); color: var(--white); }
article.active .btn-primary, .item-card:hover .btn-primary, .media-card:hover .btn-primary, a:hover .btn-primary, .btn-primary:hover { background-color: var(--primary); }
.btn-rounded { border-radius: 999px; }
.btn-outline { border: 1px solid var(--line); color: var(--ink); background: transparent; }
article.active .btn-outline, .item-card:hover .btn-outline, .media-card:hover .btn-outline, a:hover .btn-outline, .btn-outline:hover { border-color: var(--primary); color: var(--primary-dark) !important; }
.btn-link { color: black; position: relative; padding: 10px 30px; }
.btn-link:hover { color: var(--primary); text-decoration: underline; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary-dark); text-decoration: none; font-weight: 600;
  margin: 28px 0 16px; font-size: 0.9rem; transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }

/* Icon Badges */
.icon-badge {
  width: 70px; height: 70px; border-radius: var(--radius-md);
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.4rem; transition: background 0.3s;
}
.icon-badge.soft {
  background: var(--primary-dark);
  color: white;
  --r: 0.2;
  --a: 120deg;
  aspect-ratio: 1;
  --_a: (30deg*var(--r));
  --_r: (50%*cos(30deg)/cos((30deg*(1 - var(--r)))));
  transition: --r .5s,--a .5s;
  clip-path: shape(from calc(50% + var(--_r)*cos(var(--a) - var(--_a)))
  calc(50% + var(--_r)*sin(var(--a) - var(--_a))),
  curve to calc(50% + var(--_r)*cos(var(--a) + var(--_a)))
  calc(50% + var(--_r)*sin(var(--a) + var(--_a)))
  with calc(50% + 50%*cos(var(--a)))
  calc(50% + 50%*sin(var(--a))),
  line to calc(50% + var(--_r)*cos(60deg + var(--a) - var(--_a)))
  calc(50% + var(--_r)*sin(60deg + var(--a) - var(--_a))),
  curve to calc(50% + var(--_r)*cos(60deg + var(--a) + var(--_a)))
  calc(50% + var(--_r)*sin(60deg + var(--a) + var(--_a)))
  with calc(50% + 50%*cos(60deg + var(--a)))
  calc(50% + 50%*sin(60deg + var(--a))),
  line to calc(50% + var(--_r)*cos(120deg + var(--a) - var(--_a)))
  calc(50% + var(--_r)*sin(120deg + var(--a) - var(--_a))),
  curve to calc(50% + var(--_r)*cos(120deg + var(--a) + var(--_a)))
  calc(50% + var(--_r)*sin(120deg + var(--a) + var(--_a)))
  with calc(50% + 50%*cos(120deg + var(--a)))
  calc(50% + 50%*sin(120deg + var(--a))),
  line to calc(50% + var(--_r)*cos(180deg + var(--a) - var(--_a)))
  calc(50% + var(--_r)*sin(180deg + var(--a) - var(--_a))),
  curve to calc(50% + var(--_r)*cos(180deg + var(--a) + var(--_a)))
  calc(50% + var(--_r)*sin(180deg + var(--a) + var(--_a)))
  with calc(50% + 50%*cos(180deg + var(--a)))
  calc(50% + 50%*sin(180deg + var(--a))),
  line to calc(50% + var(--_r)*cos(240deg + var(--a) - var(--_a)))
  calc(50% + var(--_r)*sin(240deg + var(--a) - var(--_a))),
  curve to calc(50% + var(--_r)*cos(240deg + var(--a) + var(--_a)))
  calc(50% + var(--_r)*sin(240deg + var(--a) + var(--_a)))
  with calc(50% + 50%*cos(240deg + var(--a)))
  calc(50% + 50%*sin(240deg + var(--a))),
  line to calc(50% + var(--_r)*cos(300deg + var(--a) - var(--_a)))
  calc(50% + var(--_r)*sin(300deg + var(--a) - var(--_a))),
  curve to calc(50% + var(--_r)*cos(300deg + var(--a) + var(--_a)))
  calc(50% + var(--_r)*sin(300deg + var(--a) + var(--_a)))
  with calc(50% + 50%*cos(300deg + var(--a)))
  calc(50% + 50%*sin(300deg + var(--a))));
}
.icon-badge.sm { width: 44px; height: 44px; border-radius: 12px; font-size: 1.1rem; }
.icon-badge svg { width: 22px; height: 22px; }

/* ==========================================================================
   3. HERO SECTION & TOGGLEABLE VISUALS
   ========================================================================== */
.hero-section:not(.section) {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 48px; min-height: 380px;
}
.hero-text h1 { font-size: 2.75rem; margin: 16px 0; letter-spacing: -0.02em; }
.hero-lead { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.hero-subtext { color: var(--muted); margin-bottom: 28px; max-width: 90ch; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; }

.hero-title {
  font-size: 2.6rem !important;
  margin-bottom: 12px !important;
  /* letter-spacing: .1em; */
  margin-top: 0 !important;
}

/* Hero Visual 1: Organic Blob */
.hero-blob-container {
  position: relative; background-color: var(--primary-tint);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  padding: 30px; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.hero-photo-frame {
  /* width: 100%; max-width: 420px; height: 280px; */
  width: 100%; max-width: 480px;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-icon {
  position: absolute; width: 46px; height: 46px;
  background: var(--primary-dark); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); font-size: 1.1rem; transition: background 0.3s;
  z-index: 1;
}
.icon-top-left { top: 10px; left: 15px; }
.icon-top-right { top: 30px; right: -10px; }
.icon-bottom-left { bottom: 20px; left: -5px; }
.icon-bottom-right { bottom: 10px; right: 25px; }

/* Hero Visual 2: Dashboard Mockup */
.hero-mockup-container {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.mockup-laptop {
  width: 100%; max-width: 420px; background: #1e293b; border-radius: 14px 14px 4px 4px;
  padding: 14px 14px 22px; box-shadow: var(--shadow-md);
}
.mockup-screen { background: var(--white); border-radius: 8px; padding: 16px; min-height: 220px; }
.mockup-bar-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.mockup-row { display: flex; gap: 12px; }
.mockup-panel { flex: 1; background: var(--bg-soft); border-radius: 8px; padding: 10px; }
.donut-chart {
  width: 72px; height: 72px; border-radius: 50%; margin: 4px auto;
  background: conic-gradient(#6c4bcb 0 25%, #ee7c1e 25% 50%, #0088ce 50% 70%, #1f9e56 70% 100%);
}
.bars-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: 6px; }
.bars-chart i { flex: 1; border-radius: 3px 3px 0 0; }
.bars-chart i:nth-child(1) { height: 55%; background: #6c4bcb; }
.bars-chart i:nth-child(2) { height: 85%; background: #ee7c1e; }
.bars-chart i:nth-child(3) { height: 40%; background: #0088ce; }
.bars-chart i:nth-child(4) { height: 70%; background: #1f9e56; }
.mockup-tablet {
  position: absolute; left: -20px; bottom: -20px; width: 180px;
  background: var(--white); border-radius: 12px; padding: 14px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}

/* Hero Visual 3: Stacked Notebook */
.hero-stack-container {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.stack-notebook {
  width: 220px; height: 280px; background: #fdfbf7; border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 24px 20px; transform: rotate(-5deg);
  position: relative; z-index: 2; border: 1px solid #e2e8f0;
}
.stack-cards { position: absolute; right: 10px; display: flex; z-index: 1; }
.stack-card-item {
  width: 70px; height: 180px; border-radius: 10px; color: #fff; padding: 12px 8px;
  margin-left: -24px; box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 700;
}

/* ==========================================================================
   4. GEÏNTEGREERDE LEGO-BLOCKS UIT SOURCE 5 (A, C, D, F, G, H)
   ========================================================================== */

/* LEGO-BLOCK A: Minimalistische Benefits Grid */
.stats-row-clean { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-clean { display: flex; flex-direction: column; gap: 14px; }
.stat-clean .icon-badge { width: 44px; height: 44px; border-radius: var(--radius-sm); background-color: var(--primary-tint); color: var(--primary-dark); }

/* LEGO-BLOCK C: Doelgroep Cards Grid */
.cards-grid { display: grid; gap: 24px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.persona-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; align-items: flex-start; transition: border-color 0.2s ease; }
.persona-card:hover { border-color: var(--primary); }
.persona-card p { font-size: 14.5px; color: var(--muted); }

/* LEGO-BLOCK D: Before / After Comparison */
.comparison-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.comp-col { display: flex; flex-direction: column; gap: 16px; }
.comp-badge { align-self: flex-start; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-sm); text-transform: uppercase; }
.comp-badge.negative { background: #fee2e2; color: #dc2626; }
.comp-badge.positive { background: var(--primary-tint); color: var(--primary-dark); }
.comp-col ul { list-style: none; }
.comp-col li { font-size: 15px; padding: 6px 0; color: var(--body-text); }
.vs-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--line); color: var(--muted); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; }

/* LEGO-BLOCK F: Solution Tiers */
.tier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.tier-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-md); background: #ffffff; }
.badge-featured { position: absolute; top: -12px; right: 24px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px; text-transform: uppercase; }
.tier-price { font-size: 24px; font-weight: 800; color: var(--ink); margin: 8px 0 12px; }
.tier-card p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.checklist { list-style: none; margin-bottom: 0; padding-left: 1rem; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.checklist svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.tier-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* LEGO-BLOCK G: Blog Article Section */
/* .article-container { max-width: 920px; margin: 0 auto; } */
.article-page { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 0; }
.article-container .hero-section { grid-template-columns: 1.1fr 0.75fr; margin-bottom: 0; }
.article-content > *:first-child { margin-top: unset; }
.article-header { margin-bottom: 32px; text-align: left; }
.article-header h1 { font-size: 36px; margin-top: 8px; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); color: var(--primary-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.article-content { text-align: justify; }
.article-content .lead-text { font-size: 19px; line-height: 1.6; color: var(--ink); font-weight: 500; margin-bottom: 24px; }
.article-content p { font-size: 16.5px; line-height: 1.75; color: var(--body-text); margin-bottom: 20px; }
.article-content h2 { font-size: 26px; margin: 36px 0 16px 0; }
.article-content h3 { font-size: 20px; margin: 28px 0 12px 0; }
.article-quote { border-left: 4px solid var(--primary); padding: 4px 0 4px 20px; margin: 32px 0; font-size: 18px; font-style: italic; color: var(--ink); font-weight: 600; line-height: 1.5; }
.callout-box { background: var(--primary-tint); border: 1px solid var(--primary-light); border-radius: var(--radius-md); padding: 24px; margin: 32px 0; }
.callout-box h4 { color: var(--primary-dark); margin-bottom: 8px; }
.callout-box p { font-size: 15px; margin-bottom: 0; }

/* LEGO-BLOCK H: Image Carousel / Slider */
.carousel-wrapper { position: relative; display: flex; align-items: center; }
.carousel-track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 12px 4px 24px 4px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 calc(45% - 12px); min-width: 280px;
  scroll-snap-align: start; background: var(--bg-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carousel-slide:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.carousel-slide img { width: 100%; height: 220px; object-fit: cover; display: block; }
.slide-caption { padding: 20px; }
.slide-caption h4 { font-size: 17px; margin-bottom: 6px; }
.slide-caption p { font-size: 14px; color: var(--muted); line-height: 1.4; }

.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #ffffff; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: absolute; z-index: 10; color: var(--ink);
  transition: all 0.2s ease;
}
.carousel-btn:hover { background: var(--primary); color: #ffffff; border-color: var(--primary); }
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }


/* Kennisbank tabs */
.knowledge-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  /*margin: 8px auto 24px;*/
  padding: 6px;
  max-width: 720px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  position: absolute;
  top: calc(125px + 36px);
  left: 50%;
  transform: translateX(-50%);
}

.knowledge-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--body-text);
  font: 600 0.95rem var(--font-body);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.knowledge-tab:hover {
  color: var(--ink);
  background: var(--white);
}

.knowledge-tab.is-active {
  color: var(--primary-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.knowledge-tab-panels {
  min-height: 200px;
}

.knowledge-tab-panel {
  display: none;
}

.knowledge-tab-panel.is-active {
  display: block;
}

.knowledge-tab-panel[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .knowledge-tabs {
    gap: 4px;
  }

  .knowledge-tab {
    min-height: 44px;
    padding: 9px 10px;
    font-size: .82rem;
    gap: 6px;
  }

  .knowledge-tab i {
    display: none;
  }
}

/* ==========================================================================
   5. PROCESS STEPS & BESTAANDE STRUKTUUR
   ========================================================================== */
.steps-block {
  display: grid; grid-template-columns: 2fr 1fr; gap: 32px;
  align-items: start;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-item { position: relative; }
.step-item:not(:last-child)::after {
  content: ''; position: absolute; top: 28px; right: -8px;
  width: calc(100% - 48px); border-top: 2px dashed var(--primary-light);
  z-index: 0;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background-color: var(--primary-tint); color: var(--primary-dark);
  border: 2px solid var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
  position: relative; z-index: 1; transition: all 0.3s;
}
.step-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step-item p { font-size: 0.88rem; color: var(--muted); }

.sidebar-card {
  background: var(--primary-tint); border: 1px solid var(--primary-light);
  border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s;
}
.sidebar-card h3 { font-size: 1.25rem; color: var(--primary-dark); margin-bottom: 16px; }
.sidebar-card .checklist { list-style: none; margin-bottom: 24px; }
.sidebar-card .checklist li {
  font-size: 0.9rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px;
}
.sidebar-card .checklist li i, .sidebar-card .checklist li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  color: black;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .icon-badge { margin-bottom: 20px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.feature-card .checklist { margin-top: auto; margin-bottom: 24px; }
.feature-card .checklist li { border-bottom: none; padding: 4px 0; }

.media-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.media-card {
  cursor: pointer;
}
.media-card:hover .btn-link, a.media-card:hover h3 {
  color: var(--primary);
}
.media-card:hover .media-card-icon {
  transform: scale(1.08);
}
.media-card span {
  text-decoration: none!important;
}

.media-card {
  background-color: var(--primary-tint); border: 1px solid var(--primary-light);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all 0.3s;
}
.media-card-header { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; flex-grow: 1; }
.media-card-icon {
  width: 40px; height: 40px; background-color: var(--primary);
  color: var(--white); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.95rem;
}
.media-card-icon svg {
  width: 22px;
  height: 22px;
}
.media-card-image {
  width: 100%;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}
.item-card .media-card-image {
  height: 160px;
}
.media-card-image img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-box .media-card-image img {
  object-fit: contain;
  border-radius: var(--radius-sm);
  width: initial;
  max-width: 100%;
  height: auto;
}

.value-bar-strip {
  background-color: var(--primary-tint); border: 1px solid var(--primary-light);
  border-radius: var(--radius-md); padding: 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; transition: all 0.3s;
}
.value-bar-strip p {
  margin-bottom: unset !important;
}
.value-bar-item { display: flex; gap: 16px; align-items: flex-start; position: relative; }
.value-bar-item:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; top: 10%;
  height: 80%; width: 1px; background-color: var(--primary-light);
}
.value-bar-item i { color: var(--primary); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 20px; display: flex; flex-direction: column; gap: 12px;
}

.split-section {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px;
}
.card-box {
  background-color: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.cta-card { background-color: var(--primary-tint); border-color: var(--primary-light); height: fit-content; }
.testimonial-card {
  background-color: var(--bg-soft); display: flex; flex-direction: column; justify-content: space-between;
}
.testimonial-card h5, .testimonial-card p {
  margin-bottom: 0;
}
.quote-icon { color: var(--primary); font-size: 2rem; line-height: 1; margin-bottom: 12px; }

.cta-banner {
  background-color: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm); gap: 24px;
}
.cta-banner h3, .cta-banner p {
  margin-bottom: unset !important;
}
.cta-info { display: flex; align-items: center; gap: 20px; }

.footer-container {
  display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; color: var(--muted);
}

/* Responsive Design adjustments */
@media (max-width: 1024px) {
  .cards-grid-3, .stats-row, .stats-row-clean { grid-template-columns: repeat(2, 1fr); }
  .hero-section, .steps-block, .split-section, .comparison-card { grid-template-columns: 1fr; }
  .cards-grid.cols-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .step-item:not(:last-child)::after { display: none; }
  .value-bar-item:not(:last-child)::after { display: none; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .carousel-slide { flex: 0 0 calc(80% - 12px); }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
  .article-container .hero-section { grid-template-columns: unset; margin-bottom: 5em !important; }
}
@media (max-width: 640px) {
  .cards-grid-3, .stats-row, .steps-grid, .stats-row-clean { grid-template-columns: 1fr; }
  .carousel-slide { flex: 0 0 100%; }
  .hero-text h1 { font-size: 2.1rem; }
  .nav-links { display: none; }
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--primary-tint);
    color: var(--primary);
    min-width: 7.5em;
    justify-content: center;
}

.item-card {
  display: flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.item-card a {
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  width: 100%;
  gap: 1.5em;
}

.item-card.column a {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  justify-content: start;
}

.item-card:hover {
  box-shadow: var(--shadow-md);
}
.item-card:not(.active):hover {
  transform: translateY(-3px);
}
.item-card.active, .item-card:hover {
    border-color: color-mix(
                    in srgb,
                    var(--primary-dark) 50%,
                    transparent
                  );
}

.item-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin: unset;
    text-align: left;
}

.item-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: .8em;
    flex-grow: 1;
    color: var(--ink);
    text-align: left;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 50%;
    transition: all 0.2s;
    color: var(--muted);
    aspect-ratio: 1/1;
}

.item-card.active .arrow-icon, .item-card:hover .arrow-icon {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.height-fit-content, .height-fit-content article {
  height: fit-content;
}

article.active:hover .btn-outline {
  background: var(--primary);
  color: white !important;
}
article.mb-0 .item-card-desc {
  margin-bottom: 0px;
  margin-top: -12px;
  padding-bottom: 8px;
}

@media (max-width: 992px) {
  .hero-section.aandeslag {
    display: flex;
    flex-direction: column-reverse;
    gap: 1em;
    padding-top: 0;
    margin-top: 0 !important;
  }
  .hero-section.aandeslag .hero-photo-frame {
    max-width: 400px;
  }
  .media-cards-grid {
    flex-direction: column;
  }
  .section-space.aandeslag .media-card-image {
    max-width: 450px !important;
  }

  .media-cards-grid.height-fit-content {
    flex-direction: column;
    display: flex;
  }

  .item-card-left {
    flex-direction: column;
    align-items: start;
  }

}
