/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Colors */
  --color-deep: #0f2b3c;
  --color-primary: #0d9488;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-text: #1a2e3b;
  --color-text-light: #3d5567;
  --color-bg-alt: #f0f4f7;
  --color-white: #ffffff;
  --color-border: #e2e8f0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.27vw, 1rem);
  --text-base: clamp(1rem, 0.93rem + 0.33vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.02rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2.3vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 3.75vw, 3.5rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 43, 60, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 43, 60, 0.1);
  --shadow-lg: 0 8px 30px rgba(15, 43, 60, 0.12);
  --shadow-card-hover: 0 12px 40px rgba(15, 43, 60, 0.15);

  /* Borders */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 4rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

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

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: var(--color-deep);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.25;
}

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

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--color-deep);
  color: var(--color-white);
  border-color: var(--color-deep);
}

.btn--secondary:hover {
  background: #163a50;
  border-color: #163a50;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--ghost.btn--on-amber {
  color: var(--color-deep);
  border-color: rgba(15, 43, 60, 0.3);
}

.btn--ghost.btn--on-amber:hover {
  background: rgba(15, 43, 60, 0.1);
  border-color: var(--color-deep);
  color: var(--color-deep);
}

.btn--lg {
  padding: 0.875rem 2.25rem;
  font-size: var(--text-base);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.is-scrolled {
  background: var(--color-deep);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo:hover {
  color: var(--color-white);
}

.nav__logo-icon {
  color: var(--color-accent);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-white);
}

.nav__link.is-active::after,
.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.nav__toggle.is-active .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__cta {
  font-size: var(--text-xs);
  padding: 0.5rem 1.25rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--color-deep);
  color: var(--color-white);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-section);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

@keyframes nodePulseAmber {
  0%, 100% { transform: scale(1); opacity: 0.38; }
  50% { transform: scale(1.3); opacity: 0.55; }
}

.hero__bg g[fill="#0d9488"] circle {
  animation: nodePulse 5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hero__bg g[fill="#0d9488"] circle:nth-child(2) { animation-delay: 1.8s; }
.hero__bg g[fill="#0d9488"] circle:nth-child(3) { animation-delay: 3.5s; }

.hero__bg g[fill="#f59e0b"] circle {
  animation: nodePulseAmber 6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hero__bg g[fill="#f59e0b"] circle:nth-child(2) { animation-delay: 2s; }
.hero__bg g[fill="#f59e0b"] circle:nth-child(3) { animation-delay: 4s; }

.hero__inner {
  max-width: 52rem;
}

.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  line-height: 1.15;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 40rem;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero entrance animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__inner [data-hero-animate] {
  opacity: 0;
}

.hero__inner.is-hero-visible [data-hero-animate] {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__inner.is-hero-visible [data-hero-animate="1"] { animation-delay: 0ms; }
.hero__inner.is-hero-visible [data-hero-animate="2"] { animation-delay: 120ms; }
.hero__inner.is-hero-visible [data-hero-animate="3"] { animation-delay: 240ms; }
.hero__inner.is-hero-visible [data-hero-animate="4"] { animation-delay: 360ms; }
.hero__inner.is-hero-visible [data-hero-animate="5"] { animation-delay: 480ms; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-section) 0;
}

.section--white {
  background: var(--color-white);
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3xl);
  max-width: 40rem;
}

/* ============================================
   GRID
   ============================================ */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.section--alt .card {
  border-color: transparent;
}

/* ============================================
   STEPS (Aanpak)
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  counter-reset: step;
}

.step {
  position: relative;
}

.step__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.step__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.step__text {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ============================================
   TOOLS STRIP
   ============================================ */
.tools {
  background: var(--color-deep);
  padding: var(--space-3xl) 0;
}

.tools__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  text-align: center;
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.tools__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.tools__item {
  display: inline-flex;
  align-items: center;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.tools__item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   ABOUT (Over Tim)
   ============================================ */
.about {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about__photo {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.about__img {
  width: 280px;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__bio p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
}

.about__bio p:first-child {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline__heading {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 0.375rem;
  position: relative;
}

.timeline__item:not(:last-child) .timeline__marker::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + var(--space-xl) - 12px);
  background: var(--color-border);
}

.timeline__item:not(:last-child) {
  padding-bottom: var(--space-xl);
}

.timeline__role {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.timeline__company {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.timeline__link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ============================================
   IMAGE BREAKS
   ============================================ */
.img-break {
  width: 100%;
  height: clamp(200px, 30vw, 360px);
  overflow: hidden;
}

.img-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--color-accent);
  padding: var(--space-section) 0;
  text-align: center;
}

.cta-section__inner {
  max-width: 40rem;
}

.cta-section__title {
  font-size: var(--text-3xl);
  color: var(--color-deep);
  margin-bottom: var(--space-lg);
}

.cta-section__text {
  font-size: var(--text-lg);
  color: var(--color-deep);
  margin-bottom: var(--space-2xl);
}

.cta-section__form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-xl);
}

.tally-embed {
  border: none;
  min-height: 300px;
}

.cta-section__fallback {
  font-size: var(--text-sm);
  color: rgba(15, 43, 60, 0.6);
}

.cta-section__fallback a {
  color: var(--color-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-section__fallback a:hover {
  color: var(--color-text);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-3xl);
  align-items: start;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}

.footer__logo:hover {
  color: var(--color-white);
}

.footer__tagline {
  font-size: var(--text-xs);
  margin-top: var(--space-xs);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__legal {
  text-align: right;
  font-size: var(--text-xs);
}

.footer__legal p {
  margin-bottom: var(--space-xs);
}

.footer__legal p:last-child {
  margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="scale-up"] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate="scale-up"].is-visible {
  opacity: 1;
  transform: scale(1);
}

[data-animate][data-delay="100"] {
  transition-delay: 100ms;
}

[data-animate][data-delay="200"] {
  transition-delay: 200ms;
}

[data-animate][data-delay="300"] {
  transition-delay: 300ms;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__inner [data-hero-animate] {
    opacity: 1;
    animation: none;
  }

  .faq__answer-wrap,
  .faq__answer {
    transition: none;
  }

  .hero__bg circle {
    animation: none;
  }

  .btn,
  .card,
  .nav__link::after,
  .nav__toggle-bar,
  .tools__item {
    transition: none;
  }
}

/* ============================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__photo {
    position: static;
    justify-self: center;
  }

  .about__img {
    width: 220px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer__legal {
    grid-column: 1 / -1;
    text-align: left;
  }
}

/* ============================================
   RESPONSIVE — MOBILE NAV (< 768px)
   ============================================ */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--color-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-3xl);
    gap: var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav__menu.is-open {
    transform: translateX(0);
  }

  .nav__menu::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    z-index: -1;
  }

  .nav__menu.is-open::before {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .nav__link {
    font-size: var(--text-lg);
  }

  .nav__cta {
    font-size: var(--text-sm);
    padding: 0.75rem 1.75rem;
  }

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

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

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    min-height: auto;
    padding-bottom: var(--space-3xl);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__title br {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__legal {
    text-align: left;
  }

  .cta-section__form {
    padding: var(--space-lg);
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (< 640px)
   ============================================ */
@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-md);
  }

  .card {
    padding: var(--space-xl);
  }

  .section__title {
    margin-bottom: var(--space-2xl);
  }
}

/* ============================================
   BLOG — ARTICLE PAGE
   ============================================ */
.blog-article {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-section);
}

.blog-article__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  transition: color var(--transition-fast);
}

.blog-article__back::before {
  content: '\2190';
}

.blog-article__back:hover {
  color: var(--color-accent);
}

.blog-article__category {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.blog-article__title {
  font-size: var(--text-4xl);
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  line-height: 1.15;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.blog-article__meta span:not(:last-child)::after {
  content: '\00B7';
  margin-left: var(--space-md);
}

/* ============================================
   BLOG — ARTICLE CONTENT (PROSE)
   ============================================ */
.blog-article__content {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article__content h2 {
  font-size: var(--text-2xl);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-article__content h3 {
  font-size: var(--text-xl);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-article__content p {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.blog-article__content ul,
.blog-article__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-article__content ul {
  list-style: disc;
}

.blog-article__content ol {
  list-style: decimal;
}

.blog-article__content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.blog-article__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-article__content a:hover {
  color: var(--color-accent);
}

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

.blog-article__content blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.blog-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.blog-article__content th {
  background: var(--color-bg-alt);
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--color-border);
}

.blog-article__content td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.blog-article__content code {
  background: var(--color-bg-alt);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
}

.blog-article__content pre {
  background: var(--color-deep);
  color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.blog-article__content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: 0.9em;
}

.blog-article__content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

.blog-article__content img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

/* ============================================
   BLOG — CTA ACTIONS (article bottom)
   ============================================ */
.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   BLOG — OVERVIEW PAGE
   ============================================ */
.blog-hero {
  background: var(--color-deep);
  color: var(--color-white);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero__title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.blog-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   BLOG — FILTERS
   ============================================ */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.blog-filters__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.blog-filters__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.blog-filters__btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   BLOG — CARD GRID
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card__category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.blog-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  flex-grow: 1;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.blog-card__link {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.blog-card__link:hover {
  color: var(--color-accent);
}

/* ============================================
   BLOG — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article__content {
    max-width: 100%;
    padding: 0 var(--space-lg);
  }

  .blog-article__header {
    padding: 0 var(--space-lg);
  }
}

@media (max-width: 640px) {
  .blog-article {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-3xl);
  }

  .blog-article__content {
    padding: 0 var(--space-md);
  }

  .blog-article__header {
    padding: 0 var(--space-md);
  }

  .blog-hero {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }
}

/* ============================================
   NEW DESIGN — ADDITIONAL TOKENS
   ============================================ */
:root {
  --color-success: #059669;
  --color-danger:  #dc2626;
}

/* ============================================
   HERO — STATS & TRUST BADGES
   ============================================ */
.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: nowrap;
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
}
.hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

/* ============================================
   SECTION — SUBTITLE
   ============================================ */
.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-light);
  max-width: 38rem;
  margin-top: calc(-1 * var(--space-2xl));
  margin-bottom: var(--space-3xl);
}

/* ============================================
   PAKKET CARDS
   ============================================ */
.card--pakket {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.card--pakket.card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-md);
}
.pakket__header {
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}
.card--featured .pakket__header {
  background: var(--color-primary);
  border-color: transparent;
}
.pakket__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(255,255,255,.2);
  color: var(--color-white);
  padding: .2rem .65rem;
  border-radius: 9999px;
  margin-bottom: var(--space-sm);
}
.pakket__title {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: .25rem;
}
.card--featured .pakket__title { color: var(--color-white); }
.pakket__replaces {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}
.card--featured .pakket__replaces { color: rgba(255,255,255,.7); }
.pakket__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pakket__oss {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.pakket__oss-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-primary);
  margin-bottom: .4rem;
}
.pakket__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.pakket__pill {
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(13,148,136,.1);
  color: var(--color-primary);
  padding: .2rem .65rem;
  border-radius: 9999px;
}
.pakket__features {
  list-style: none;
  flex: 1;
  margin-bottom: var(--space-md);
}
.pakket__features li {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  padding: .3rem 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.4;
}
.pakket__features li::before {
  content: '\2713';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .8em;
  margin-top: .2rem;
}
.pakket__foot { margin-top: auto; }
.pakket__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}
.pakket__price-val {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.15;
}
.pakket__price-val small {
  font-size: .72em;
  font-weight: 500;
  font-family: var(--font-body);
  opacity: .7;
}
.pakket__price-desc {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: .15rem;
  line-height: 1.3;
}
.pakket__server-note {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}
.pakket__server-note strong { color: var(--color-text); }
.pakket__footnote {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}
.pakket__footnote p {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.pakket__footnote p:last-child { margin-bottom: 0; }

/* ============================================
   PRICING BAR
   ============================================ */
.pricing-bar {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}
.pricing-bar__item {
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
}
.pricing-bar__sep {
  background: var(--color-border);
  height: 52px;
}
.pricing-bar__val {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-deep);
  line-height: 1;
}
.pricing-bar__val--teal  { color: var(--color-primary); }
.pricing-bar__val--amber { color: var(--color-accent); }
.pricing-bar__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-top: .3rem;
}
.pricing-bar__sub {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: .25rem;
}

/* ============================================
   KOSTENVERGELIJKING TABEL
   ============================================ */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th {
  padding: .875rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
}
.compare-table th:first-child { background: var(--color-deep); color: var(--color-white); }
.compare-table th.col-before   { background: #7f1d1d; color: var(--color-white); }
.compare-table th.col-after    { background: #14532d; color: var(--color-white); }
.compare-table td {
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.compare-table tr:nth-child(even) td { background: var(--color-bg-alt); }
.compare-table tr:last-child td {
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  background: #f0fdf4;
}
.compare-table td:first-child { font-weight: 600; }
.text-danger  { color: var(--color-danger);  font-weight: 600; }
.text-success { color: var(--color-success); font-weight: 600; }
.compare-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: opacity var(--transition-fast);
}
.compare-link:hover { opacity: .75; color: inherit; }
.compare-price {
  display: block;
  font-size: var(--text-xs);
  margin-top: .2rem;
  opacity: .85;
}
.compare-oss {
  font-size: var(--text-xs);
  color: var(--color-success);
  font-weight: 400;
}

/* ============================================
   CASE CARDS & TAGS
   ============================================ */
.card--case { background: var(--color-white); border-color: var(--color-border); }
.case__sector {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--space-md);
}
.case__results {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}
.case__result-val {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-success);
}
.case__result-lbl {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}
.case__stack {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}
.case__stack-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.case__quote {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-style: italic;
  line-height: 1.6;
}
.case__quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-style: normal;
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-weight: 600;
}
.tags { display: flex; flex-wrap: wrap; gap: .375rem; }
.tag {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
  padding: .2rem .65rem;
  border-radius: 9999px;
  color: var(--color-text-light);
}
.tag--oss {
  background: rgba(13,148,136,.08);
  border-color: rgba(13,148,136,.2);
  color: var(--color-primary);
  font-weight: 600;
}
.card--cta-soft {
  background: rgba(13,148,136,.06);
  border-color: rgba(13,148,136,.25);
}

/* ============================================
   TOOLS STRIP — EXTENSION
   ============================================ */
.tools__item-rep {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq { display: flex; flex-direction: column; gap: var(--space-md); }
.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  transition: background var(--transition-fast);
}
.faq__question:hover { background: var(--color-bg-alt); }
.faq__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(13,148,136,.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition-base), background var(--transition-fast);
  line-height: 1;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: var(--color-white);
}
.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__item.is-open .faq__answer-wrap {
  grid-template-rows: 1fr;
}
.faq__answer {
  overflow: hidden;
  padding: 0 var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.8;
  border-top: 1px solid transparent;
  transition: border-color 0.35s, padding 0.35s;
}
.faq__item.is-open .faq__answer {
  padding-bottom: var(--space-lg);
  border-top-color: var(--color-border);
}
.faq__answer p { padding-top: var(--space-lg); }

/* ============================================
   ABOUT — NEW INTRO LAYOUT
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--color-border);
}
.about-intro__img {
  width: 200px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-intro__bio p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  line-height: 1.75;
}
.about-intro__bio p:first-child {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

/* ============================================
   RICH TIMELINE (tl-*)
   ============================================ */
.tl {
  position: relative;
  padding-left: 2.75rem;
}
.tl::before {
  content: '';
  position: absolute;
  left: .625rem;
  top: .8rem;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}
.tl-entry {
  position: relative;
  padding-bottom: var(--space-2xl);
}
.tl-entry:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -2.75rem;
  top: .15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  z-index: 1;
}
.tl-dot--current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13,148,136,.15);
}
.tl-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}
.tl-role {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
}
.tl-company {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
}
.tl-company a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}
.tl-company a:hover { color: var(--color-accent); }
.tl-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.tl-oss-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-light);
  margin-bottom: .4rem;
}

/* ============================================
   KOSTENVERGELIJKER (INTERACTIEF)
   ============================================ */

/* Search bar: category dropdown + tool combobox */
.calc-bar {
  display: flex;
  gap: var(--space-sm);
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
}
.calc-bar__col {
  flex: 1;
}
.calc-bar__col--tool {
  flex: 1.5;
}
.calc-bar__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: .25rem;
}
.calc-bar__select {
  width: 100%;
  padding: .625rem .75rem;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  appearance: auto;
  transition: border-color .2s;
}
.calc-bar__select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Combobox (input + dropdown toggle) */
.calc-combo {
  position: relative;
  display: flex;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: border-color .2s;
}
.calc-combo:focus-within {
  border-color: var(--color-primary);
}
.calc-combo__input {
  flex: 1;
  padding: .625rem .75rem;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border: none;
  background: transparent;
  color: var(--color-text);
  min-width: 0;
}
.calc-combo__input:focus { outline: none; }
.calc-combo__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  border: none;
  border-left: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 0 calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 0;
  transition: background .15s;
}
.calc-combo__toggle:hover {
  background: var(--color-border);
}

/* Dropdown (positioned under combobox) */
.calc-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: -2px;
  right: -2px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-height: 16rem;
  overflow-y: auto;
  z-index: 50;
  display: none;
}
.calc-dropdown.is-open { display: block; }
.calc-dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: background .1s;
  gap: var(--space-sm);
}
.calc-dropdown-item:hover,
.calc-dropdown-item.is-highlighted {
  background: var(--color-bg-alt);
}
.calc-dropdown-item-name { font-weight: 500; }
.calc-dropdown-item-right {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* Chips */
.calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  min-height: 0;
}
.calc-chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  padding: .375rem .5rem .375rem .75rem;
  font-size: var(--text-xs);
  transition: box-shadow .15s;
}
.calc-chip:hover { box-shadow: var(--shadow-sm); }
.calc-chip__name { font-weight: 600; font-size: var(--text-xs); }
.calc-chip__price {
  color: var(--color-text-light);
}
.calc-chip__price-input {
  width: 4rem;
  padding: .125rem .25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-family: var(--font-body);
  text-align: center;
}
.calc-chip__users {
  width: 2.75rem;
  padding: .125rem .25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  text-align: center;
  font-family: var(--font-body);
}
.calc-chip__label {
  font-size: 0.65rem;
  color: var(--color-text-light);
}
.calc-chip__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
  font-size: .875rem;
  padding: 0;
  line-height: 1;
  transition: color .15s;
}
.calc-chip__remove:hover { color: var(--color-danger); }

/* CTA knop */
.calc-cta {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.calc-note {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

/* Resultaten */
.calc-results {
  display: none;
  animation: calcFadeIn .3s ease;
}
.calc-results.is-visible { display: block; }

@keyframes calcFadeIn {
  from { opacity: 0; transform: translateY(.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Per-tool result block */
.calc-tool-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}
.calc-tool-block__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-sm);
}
.calc-tool-block__name {
  font-weight: 700;
  font-size: var(--text-base);
}
.calc-tool-block__cost {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}
.calc-tool-block__cost strong {
  color: #dc2626;
  font-weight: 700;
}
.calc-tool-block__alts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.calc-alt {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  transition: border-color .15s;
}
.calc-alt--best {
  border-left: 3px solid var(--color-primary);
  background: rgba(13, 148, 136, 0.03);
}
.calc-alt__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-alt__name { font-weight: 600; font-size: var(--text-sm); }
.calc-alt__match {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(13,148,136,.08);
  padding: .1rem .375rem;
  border-radius: var(--radius-sm);
}
.calc-alt__stats {
  display: flex;
  gap: var(--space-sm);
  color: var(--color-text-light);
}
.calc-alt__stats span { white-space: nowrap; }
.calc-alt__health--good { color: #16a34a; }
.calc-alt__health--ok   { color: #d97706; }
.calc-alt__health--low  { color: #dc2626; }

/* Warning */
.calc-warning {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: #92400e;
  margin-bottom: var(--space-md);
}

/* Summary */
.calc-summary {
  background: var(--color-deep);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-md);
}
.calc-summary-row {
  display: flex;
  justify-content: space-between;
  padding: .375rem 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.75);
}
.calc-summary-row--total {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-white);
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
}
.calc-summary-row--highlight {
  color: var(--color-accent);
  font-weight: 700;
  font-size: var(--text-xl);
}
.calc-summary-section {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}
.calc-summary-section:first-child { margin-top: 0; }
.calc-summary .text-success { color: #4ade80; }
.calc-summary .text-danger  { color: #fca5a5; }

/* Responsive calculator */
@media (max-width: 640px) {
  .calc-bar {
    flex-direction: column;
  }
  .calc-bar__col, .calc-bar__col--tool {
    flex: none;
  }
  .calc-tool-block__alts {
    grid-template-columns: 1fr;
  }
  .calc-tool-block__header {
    flex-direction: column;
    gap: .25rem;
  }
}

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
  .pricing-bar { grid-template-columns: 1fr 1px 1fr 1px 1fr; }
  .about-intro { grid-template-columns: 160px 1fr; gap: var(--space-xl); }
}

@media (max-width: 768px) {
  .hero__stats { flex-wrap: wrap; gap: var(--space-lg); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__img { width: 140px; }
}

@media (max-width: 640px) {
  .pricing-bar { grid-template-columns: 1fr; }
  .pricing-bar__sep { height: 1px; width: 100%; }
}

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