/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji";
  .badge-loss {
    background: linear-gradient(
      90deg,
      rgba(229, 57, 53, 0.13) 20%,
      rgba(229, 57, 53, 0.1) 100%
    );
    border: 1px solid rgba(229, 57, 53, 0.18);
    color: #e53935;
  }
  .badge-win {
    background: linear-gradient(
      90deg,
      rgba(46, 125, 50, 0.13) 20%,
      rgba(46, 125, 50, 0.1) 100%
    );
    border: 1px solid rgba(46, 125, 50, 0.18);
    color: #2e7d32;
  }
  .badge-stress {
    background: linear-gradient(
      90deg,
      rgba(255, 193, 7, 0.13) 20%,
      rgba(229, 57, 53, 0.1) 100%
    );
    border: 1px solid rgba(255, 193, 7, 0.18);
    color: #e53935;
  }
  .badge-cashflow {
    background: linear-gradient(
      90deg,
      rgba(6, 182, 212, 0.13) 20%,
      rgba(46, 125, 50, 0.1) 100%
    );
    border: 1px solid rgba(6, 182, 212, 0.18);
    color: #2563eb;
  }
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

ul {
  margin: 0;
  padding-left: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--color-heading);
  transition: color 0.3s ease;
}

h1 {
  color: var(--color-heading);
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--color-heading);
  position: relative;
  display: inline-block;
  letter-spacing: -0.025em;
}

.section h2::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  margin-top: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-1));
}

.section-dark h2::after {
  background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
}

.section-cta-bold h2::after,
.legal-content h2::after,
.report-body h2::after,
.report-hero h2::after {
  display: none;
}

/* ---------- Variables (licht!) ---------- */
:root {
  --container-width: 1200px;

  --color-bg: #f6f8fb; /* hoofdachtergrond */
  --color-bg-alt: #eef3f8; /* afwisseling tussen secties */
  --color-surface: #ffffff; /* cards */
  --color-surface-2: #fbfdff; /* lichte variant */

  --color-text: #1f2a37;
  --color-heading: #0f172a;
  --color-muted: #3b3d42;

  --color-border: #dbe5f1;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;

  --color-accent-1: #06b6d4; /* cyan */
  --color-accent-2: #8b5cf6; /* violet */
  --color-accent-3: #ec4899; /* pink */

  --color-outline: #1f2a37;

  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 64px rgba(15, 23, 42, 0.12);

  --radius: 14px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container-width), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
  background: transparent;
}

.section-alt {
  background: linear-gradient(
    to bottom,
    var(--color-bg-alt),
    rgba(6, 182, 212, 0.02)
  );
}

.section-cta {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(6, 182, 212, 0.04)
  );
}

.section-intro {
  max-width: 70ch;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.section-intro strong {
  color: var(--color-heading);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 251, 0.86);
  border-bottom: 1px solid rgba(219, 229, 241, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
  transition: all 0.3s ease;
  align-items: center;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo img {
  height: 1rem;
  transition: all 0.3s ease;
  padding: 1px 0;
  padding-top: 1.5px;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  color: #2258d0;
  transition: all 0.3s ease;
}

.logo-tagline {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* --- Nav item wrapper --- */
.nav-item {
  position: relative;
}

.main-nav > .nav-item > a,
.main-nav > a {
  font-size: 0.95rem;
  color: var(--color-muted);
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav > .nav-item > a::after,
.main-nav > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent-1)
  );
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(-50%);
}

.main-nav > .nav-item > a:hover::after,
.main-nav > a:hover::after,
.nav-item.is-open > a::after {
  width: 80%;
}

.nav-item.is-open > a {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-heading);
}

.nav-item.is-open > a::after {
  width: 80%;
}

.main-nav > .nav-item > a.active,
.main-nav > a.active {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-heading);
}

.main-nav > .nav-item > a.active::after,
.main-nav > a.active::after {
  width: 80%;
}

/* --- Dropdown chevron --- */
.dd-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.5;
}

.nav-item.is-open .dd-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* --- Dropdown panel (desktop) --- */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  padding-top: 0.65rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100;
  margin-top: 0.4rem;
}

/* Invisible bridge so the mouse can travel from trigger to dropdown */
.dropdown::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.nav-item.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.dropdown a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-heading);
}

/* --- Mega dropdown (tools) --- */
.dropdown-mega {
  min-width: 520px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1.5rem;
  padding: 1rem 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-col {
  display: flex;
  flex-direction: column;
}

.dropdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-heading);
  padding: 0.4rem 0.75rem 0.2rem;
  opacity: 0.55;
}

.dropdown-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-border);
  margin-top: 0.35rem;
  padding-top: 0.35rem;
}

.dropdown-all-link {
  font-weight: 600;
  color: var(--color-primary) !important;
}

/* --- Dropdown tool icons --- */
.dropdown-mega .dropdown-col a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dd-tool-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 0.55rem;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  transition: background 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(34, 88, 208, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 99px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 19px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-cta-desktop {
  display: inline-flex;
}

.nav-mobile-cta {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 7rem 0 6rem;
  background: linear-gradient(160deg, #fff 0%, var(--color-bg) 40%, rgba(37, 99, 235, 0.05) 70%, rgba(6, 182, 212, 0.06) 100%);
  border-bottom: 1px solid rgba(219, 229, 241, 0.8);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(6, 182, 212, 0.75));
  border-radius: 8px;
  padding: 0.05em 0.35em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700;
  animation: highlight-pulse 3s ease-in-out infinite;
}

@keyframes highlight-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.15); }
  50% { box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25); }
}

.hero-subtitle {
  color: var(--color-muted);
  font-size: 1.15rem;
  max-width: 56ch;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* ---------- Hero AI Chat ---------- */
.hero-ai-chat {
  margin: 1.5rem 0 0.5rem;
  max-width: 560px;
}

.hero-ai-label {
  font-size: 0.92rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
}

.hero-ai-label svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.hero-ai-form {
  position: relative;
}

.hero-ai-input-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.5rem 0.5rem 0.5rem 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.hero-ai-input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
}

.hero-ai-input-wrap textarea {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  line-height: 1.5;
  resize: none;
  background: transparent;
  font-family: inherit;
  color: var(--color-heading);
  min-height: 1.5em;
  max-height: 120px;
}

.hero-ai-input-wrap textarea::placeholder {
  color: var(--color-muted);
}

.hero-ai-send {
  flex-shrink: 0;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  overflow: visible;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  /* give some breathing room above the buttons so they aren’t
     jammed up against the subtitle or whatever text comes before */
  margin: 1.25rem 0 1rem;
}

.hero-note {
  color: var(--color-muted);
  font-size: 0.88rem;
  max-width: 65ch;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-note strong {
  color: var(--color-heading);
}

/* ---------- Hero Media ---------- */
.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 6px);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(219, 229, 241, 0.5);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-card {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(219, 229, 241, 0.8);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-heading);
  white-space: nowrap;
}

.hero-benefits svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Pilot badge and process steps (trust-building without testimonials) */
.pilot-badge {
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.06)
  );
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--color-heading);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.badge {
  display: inline-flex;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: var(--color-heading);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.7rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.process-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  text-align: left;
}

.process-step .kicker {
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.process-step .step-text {
  color: var(--color-muted);
  font-size: 0.95rem;
}

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

.muted {
  color: var(--color-muted);
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent-1),
    var(--color-accent-2)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
  letter-spacing: -0.015em;
}

.emphasis-card {
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(6, 182, 212, 0.04)
  );
  padding: 2.5rem;
}

/* Lists */
.card ul li {
  margin-bottom: 0.45rem;
  color: var(--color-muted);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.card:hover ul li {
  color: var(--color-heading);
}

/* SVG Icons */
.card-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-icon {
  transform: translateY(-4px);
  color: var(--color-accent-1);
  filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
}

.process-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover .process-icon {
  transform: translateY(-6px) scale(1.1);
  color: var(--color-accent-1);
  filter: drop-shadow(0 6px 16px rgba(6, 182, 212, 0.3));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.05rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-hover),
    var(--color-primary)
  );
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(6, 182, 212, 0.08)
  );
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--color-heading);
}

.btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.16),
    rgba(6, 182, 212, 0.12)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.btn-outline {
  background: #ffffff;
  border-color: var(--color-border);
  color: var(--color-heading);
}

.btn-outline:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.btn-small {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-primary:disabled {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: #ffffff;
}

/* ---------- About layout (foto + content) ---------- */
.about-section-layout {
  display: grid;
  grid-template-columns: auto 1fr; /* photo left, text right */
  gap: 1.25rem;
  align-items: center;
}

/* large abstract background shapes covering multiple sections */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  overflow: visible;
}

.bg-shapes circle,
.bg-shapes ellipse,
.bg-shapes polygon {
  vector-effect: non-scaling-stroke;
}

/* Stack vertically on small screens */
@media (max-width: 600px) {
  .about-section-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.5rem;
  }
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.about-photo {
  background: var(--color-surface);
  border: 3px solid white;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(219, 229, 241, 0.9);
  display: block;
  padding: 0;
  margin: 0;
}

.about-photo-note {
  margin: 0.85rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.about-content {
  display: grid;
  gap: 1.25rem;
}

.about-bullets {
  margin-top: 0.75rem;
  color: var(--color-muted);
}

.about-bullets li {
  margin-bottom: 0.45rem;
}

.about-cta {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.06)
  ) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.3) !important;
}

.about-cta:hover {
  border-color: rgba(37, 99, 235, 0.5) !important;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(6, 182, 212, 0.1)
  ) !important;
}

.about-cta .btn {
  margin-right: 0.35rem;
}

/* ---------- Forms ---------- */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
}

.contact-form label {
  display: block;
  font-weight: 650;
  color: var(--color-heading);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.form-note {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0.7rem 0 1rem;
}

.form-success-message {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #0f172a;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.contact-list a {
  color: var(--color-primary);
}

.contact-list a:hover {
  text-decoration: underline;
}

/* ---------- CTA section ---------- */
.section-cta .cta-inner {
  background: linear-gradient(
    135deg,
    var(--color-surface),
    rgba(6, 182, 212, 0.04)
  );
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-cta .cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
  border-radius: 50%;
}

.section-cta .hero-actions {
  justify-content: center;
}

.cta-note {
  color: var(--color-muted);
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: var(--color-heading);
  color: #94a3b8;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent-1),
    var(--color-primary)
  );
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.95rem;
  text-align: center;
}

/* ---------- Report page ---------- */
.report-hero {
  padding: 3.5rem 0 2.25rem;
}

.report-hero-inner {
  display: grid;
  gap: 1.25rem;
}

.report-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  margin: 0 0 0.75rem;
}

.report-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.6rem;
}

.report-subtitle {
  color: var(--color-muted);
  margin: 0;
}

.report-summary-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}

.report-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.85rem;
  row-gap: 0.15rem;
}

.report-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(6, 182, 212, 0.06)
  );
  color: var(--color-primary);
  border: 1px solid rgba(37, 99, 235, 0.14);
  grid-row: 1 / span 3;
}

.report-card-icon svg {
  width: 20px;
  height: 20px;
}

.report-card-label {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.report-card-value {
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

.report-card-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.report-quickwins {
  margin-top: 1.1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75),
    rgba(6, 182, 212, 0.04)
  );
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: calc(var(--radius) + 2px);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.report-h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.report-h3 {
  font-size: 1.05rem;
  margin: 0 0 0.65rem;
  color: var(--color-heading);
}

.report-toplist {
  margin: 0;
  padding-left: 1.15rem;
}

.report-topitem {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.report-topname {
  font-weight: 650;
  color: var(--color-heading);
}

.report-topmeta {
  color: var(--color-muted);
  white-space: nowrap;
}

.report-body.section {
  padding-top: 1.5rem;
}

.report-grid {
  display: grid;
  gap: 1.25rem;
}

.report-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.report-note {
  color: var(--color-muted);
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.report-kv {
  display: grid;
  gap: 0.55rem;
}

.kv-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(219, 229, 241, 0.9);
  background: rgba(37, 99, 235, 0.03);
}

.kv-key {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.kv-val {
  color: var(--color-heading);
  font-weight: 650;
}

.report-factors {
  display: grid;
  gap: 1.1rem;
}

.report-factor-table {
  display: grid;
  gap: 0.35rem;
}

.factor-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.03);
}

.factor-key {
  color: var(--color-heading);
  font-weight: 600;
}

.factor-val {
  color: var(--color-muted);
  font-variant-numeric: tabular-nums;
}

.report-table-wrap {
  overflow: auto;
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: 14px;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  background: #fff;
}

.report-table th,
.report-table td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid rgba(219, 229, 241, 0.8);
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
}

.report-table thead th {
  position: sticky;
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(246, 248, 251, 0.98),
    rgba(246, 248, 251, 0.92)
  );
  color: var(--color-heading);
  z-index: 1;
}

.report-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.report-table tfoot td {
  background: rgba(37, 99, 235, 0.04);
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.report-table .tfoot-label {
  text-align: left;
  color: var(--color-heading);
}

.report-formulas {
  display: grid;
  gap: 0.75rem;
}

.formula-item {
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.03),
    rgba(139, 92, 246, 0.02)
  );
}

.formula-title {
  font-weight: 750;
  color: var(--color-heading);
  margin-bottom: 0.35rem;
}

.formula-line {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

.report-empty {
  margin-top: 1.5rem;
  text-align: left;
}

@media (min-width: 860px) {
  .report-hero-inner {
    grid-template-columns: 1fr;
  }
  .report-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .report-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .kv-row {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: baseline;
  }
  .kv-key {
    font-size: 0.95rem;
  }
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 3.5rem;
  }

  .logo-tagline {
    display: inline;
  }

  .about-section-layout {
    grid-template-columns: 0.35fr 1.65fr;
    gap: 1.75rem;
  }
}

/* Mobile: stack hero layout */
@media (max-width: 767px) {
  .hero-media {
    order: -1;
  }

  .hero-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 72px;
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .main-nav > .nav-item > a,
  .main-nav > a {
    width: 100%;
    padding: 0.75rem 0.8rem;
    justify-content: space-between;
  }

  .main-nav > .nav-item > a:hover,
  .nav-item.is-open > a {
    transform: none;
  }

  /* Mobile: dropdown is inline, toggled only by JS */
  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    padding: 0 0 0 0.75rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown::before {
    display: none;
  }

  .nav-item.is-open > .dropdown {
    display: block !important;
  }

  .dropdown a {
    padding: 0.55rem 0.8rem;
    font-size: 0.88rem;
    white-space: normal;
  }

  .dropdown-mega {
    display: none;
    flex-direction: column;
    min-width: 0;
    gap: 0;
    padding: 0 0 0 0.75rem;
  }

  .nav-item.is-open > .dropdown-mega {
    display: flex !important;
  }

  .dropdown-mega .dropdown-footer {
    grid-column: auto;
  }

  .menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

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

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--color-border);
  }

  .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 3rem;
    min-height: auto;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .section-cta .cta-inner {
    padding: 1.5rem;
  }
}

/* --- About foto: compacter op mobile --- */
.about-photo img {
  width: 100%;
  object-fit: cover;
}

/* Mobile: rondje blijft rond en gecentreerd */
@media (max-width: 600px) {
  .about-photo {
    width: 160px;
    height: 160px;
    padding: 0;
    margin-bottom: 0;
  }
}

/* --- Add-ons: stats / pricing box --- */

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}

.stat {
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(6, 182, 212, 0.04)
  );
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.stat:hover::before {
  right: -10px;
  top: 10px;
}

.stat-kicker {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.stat-note {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.pricing-box {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.04),
    rgba(6, 182, 212, 0.04)
  );
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.pricing-box:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.06)
  );
  border-color: rgba(37, 99, 235, 0.35);
}

.pricing-box:hover::before {
  left: 100%;
}

/* ---------- Utility Classes ---------- */
.card-spacing-large {
  margin-top: 1.25rem;
}

.p-spacing-small {
  margin-bottom: 0.8rem;
}

.ul-spacing-top {
  margin-top: 1rem;
}

.muted-spacing {
  margin-top: 0.65rem;
}

/* visual markers for before/after examples */
.bad {
  color: #e53935; /* red */
  font-weight: 600;
}
.bad::before {
  content: "✖ ";
}
.good {
  color: #2e7d32; /* green */
  font-weight: 600;
}
.good::before {
  content: "✔ ";
}

.hero-actions-no-margin {
  margin-bottom: 0;
}

.regio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.regio-list ul {
  flex: 1;
  min-width: 150px;
}

/* ---------- Animations & Effects ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }
}

/* Add subtle animation to cards on load */
.card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Enhanced section backgrounds */
.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border),
    transparent
  );
  opacity: 0.4;
}

/* Responsive improvements for creative design */
@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.vragen-blok-wit {
  transition:
    transform 0.5s cubic-bezier(0.77, 0.2, 0.32, 1.01),
    opacity 0.5s cubic-bezier(0.77, 0.2, 0.32, 1.01);
  will-change: transform, opacity;
}

.vragen-blok-wit.slide-out {
  transform: translateX(-60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-out-right {
  transform: translateX(60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-in {
  transform: translateX(60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-in-from-left {
  transform: translateX(-60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-active {
  transform: translateX(0);
  opacity: 1;
}

.progress-bar-container {
  margin-bottom: 2rem;
  background: #e5e7eb;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  transition: width 0.5s ease-out;
}

.progress-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

.form-row {
  text-align: left;
  margin: 0.75rem 0 1rem 0;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

/* Make this select visually consistent with the radio "button" options */
.form-row select#employees_range {
  border: 2px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.05);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-heading);
  cursor: pointer;
  text-align: center;
  text-align-last: center;
  transition: all 0.25s ease;
}

.form-row select#employees_range:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.1);
}

.form-row select#employees_range:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-hint {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.35rem;
}

.netlify-selftest-report-form {
  margin-top: 1rem;
}

.netlify-selftest-report-form [data-netlify-recaptcha] {
  margin-top: 0.75rem;
}

.card-section {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: left;
  background: rgba(37, 99, 235, 0.03);
}

.card-section h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.card-section h3:hover {
  color: var(--color-primary);
}

.card-section h3::after {
  content: "▼";
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  display: inline-block;
  width: 1.2rem;
  text-align: right;
}

.card-section.collapsed h3::after {
  transform: rotate(-90deg);
}

.card-section.collapsed > *:not(h3) {
  display: none !important;
}

.card-section.collapsed {
  padding: 1rem;
}

.card-section:not(.collapsed) {
  padding: 1rem;
}

/* Option List / Button Group Styling */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-item {
  flex: none;
  min-width: 0;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  display: none;
}

.option-item label {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 2px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.05);
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  user-select: none;
  color: var(--color-heading);
  margin: 0;
}

.option-item label:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.1);
}

.option-item input[type="radio"]:checked + label,
.option-item input[type="checkbox"]:checked + label {
  border-color: var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15),
    rgba(6, 182, 212, 0.08)
  );
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  margin: 0.25rem 0.25rem 0 0;
  cursor: pointer;
  user-select: none;
}

.pill input {
  width: auto;
  margin: 0;
}

/* Checkbox pills (GDPR / nieuwsbrief) - multiline friendly */
.pill.pill--checkbox {
  display: flex;
  width: 100%;
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  gap: 0.7rem;
  align-items: flex-start;
  white-space: normal;
  line-height: 1.35;
  border-color: rgba(219, 229, 241, 0.95);
  background: var(--color-surface);
  margin: 0.35rem 0 0 0;
}

/* Beat `.form-row label { display:block; margin-bottom:... }` */
.form-row label.pill.pill--checkbox {
  display: flex;
  margin-bottom: 0;
  font-weight: 600;
}

.pill.pill--checkbox:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.03);
}

.pill.pill--checkbox.is-checked {
  border-color: var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(6, 182, 212, 0.06)
  );
}

.pill.pill--checkbox input[type="checkbox"] {
  margin-top: 0.1rem;
  flex: 0 0 auto;
}

.pill.pill--checkbox .pill-content {
  display: block;
  text-align: left;
}

.pill.pill--checkbox .pill-text {
  display: block;
  font-weight: 650;
  color: var(--color-heading);
}

.pill.pill--checkbox .pill-sub {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
  color: var(--color-muted);
}

.muted {
  opacity: 0.75;
}

.hidden {
  display: none !important;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.button-group .btn-wrap {
  flex: 1;
  min-width: 120px;
  position: relative;
  display: flex;
}

.button-group .btn-wrap .btn {
  width: 100%;
}

.btn-disabled-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: not-allowed;
  display: none;
}

.btn-disabled-overlay:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.55);
  outline-offset: 3px;
  border-radius: 12px;
}

.inline-validation {
  margin-top: 1rem;
  text-align: left;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.08);
}

.inline-validation strong {
  display: block;
  margin-bottom: 0.35rem;
}

.inline-validation ul {
  margin: 0;
  padding-left: 1.25rem;
}

.button-group .btn {
  flex: 1;
  min-width: 120px;
}

.button-group .btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(107, 114, 128, 0.12),
    rgba(107, 114, 128, 0.08)
  );
  border-color: rgba(107, 114, 128, 0.25);
  color: var(--color-heading);
}

.button-group .btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(107, 114, 128, 0.16),
    rgba(107, 114, 128, 0.12)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107, 114, 128, 0.15);
}

.inline-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .inline-2 {
    grid-template-columns: 1fr;
  }
}
/* ---------- Tools Section ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-1));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.tool-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.tool-card:hover .tool-logo {
  transform: scale(1.1);
}

.tool-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--color-heading);
}

.tool-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

.tools-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Featured Blog Cards (homepage) */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-link h3 {
  color: var(--color-heading);
  transition: color 0.2s ease;
}

.card-link:hover h3 {
  color: var(--color-primary);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.card-read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.card-link:hover .card-read-more {
  text-decoration: underline;
}

/* Tools Overview Page */
.tools-page-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(6, 182, 212, 0.04)
  );
  border-bottom: 1px solid var(--color-border);
}

.tools-page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.tools-page-intro {
  max-width: 70ch;
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

#tools-overview {
  opacity: 0;
  transition: opacity 0.15s ease;
}
#tools-overview.loaded {
  opacity: 1;
}

.tools-category {
  margin-bottom: 3rem;
}

.tools-category h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tools-category h2 svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
}

.tools-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.tool-list-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.tool-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.3);
}

.tool-list-card .tool-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.tool-list-card .tool-info {
  flex: 1;
}

.tool-list-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.tool-list-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

/* Built by Robic badge */
.badge-robic {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.10));
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--color-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
}

.badge-robic svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.tool-list-card .badge-robic {
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  font-size: 0.5rem;
  padding: 0.12rem 0.4rem;
  gap: 0.2rem;
}

.tool-list-card .badge-robic svg {
  width: 9px;
  height: 9px;
}

.tool-detail-header .badge-robic {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
}

.tool-detail-header .badge-robic svg {
  width: 13px;
  height: 13px;
}

/* Individual Tool Page */
.tool-detail-header {
  padding: 3rem 0 2rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(6, 182, 212, 0.04)
  );
  border-bottom: 1px solid var(--color-border);
}

.tool-detail-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.tool-detail-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.tool-detail-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.25rem;
}

.tool-detail-header .tool-tagline {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin: 0;
}

.tool-website-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.4rem;
  transition: color 0.2s ease;
}

.tool-website-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.tool-website-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tool-content {
  padding: 3rem 0;
}

.tool-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.tool-content h2:first-child {
  margin-top: 0;
}

.tool-content p {
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 75ch;
}

.tool-content ul {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tool-content li {
  margin-bottom: 0.5rem;
}

.tool-content strong {
  color: var(--color-heading);
}

.tool-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.tool-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.tool-feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}

.tool-feature-card p {
  font-size: 0.95rem;
  margin: 0;
}

.tool-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  color: var(--color-heading);
  text-decoration: none;
  transition: all 0.2s ease;
}

.integration-badge:hover {
  background: rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.integration-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.tool-cta-section {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(6, 182, 212, 0.04)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.tool-cta-section h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.tool-cta-section p {
  margin: 0 auto 1.5rem;
  max-width: 50ch;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  
  .tool-detail-header .container {
    flex-direction: column;
    text-align: center;
  }
  
  .tool-detail-logo {
    width: 64px;
    height: 64px;
  }
}

/* ---------- Blog Styles ---------- */

/* Blog Page Header */
.blog-page-header {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.04)
  );
  border-bottom: 1px solid var(--color-border);
}

.blog-page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.blog-page-intro {
  max-width: 65ch;
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Blog Card */
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
  line-height: 1.4;
}

.blog-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Blog Meta */
.blog-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.blog-category {
  font-size: 0.8rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 500;
}

/* Blog Author (in card) */
.blog-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.blog-author-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author span {
  font-size: 0.9rem;
  color: var(--color-heading);
  font-weight: 500;
}

/* Blog CTA Section */
.blog-cta-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.blog-cta-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-cta-section p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

/* Blog Article */
.blog-article {
  padding: 2rem 0 4rem;
}

.blog-article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.blog-article-header h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  max-width: 50ch;
}

/* Blog Author Header */
.blog-author-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.blog-author-header .blog-author-photo {
  width: 56px;
  height: 56px;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

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

.blog-author-role {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Blog Hero Image */
.blog-hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

/* Blog Layout with Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* Blog Content */
.blog-content {
  max-width: none;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
  display: block;
}

.blog-content h2::after {
  display: none;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.blog-content p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-text);
}

.blog-content a:not(.btn) {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.3);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

.blog-content a:not(.btn):hover {
  text-decoration-color: var(--color-primary);
}

.blog-content strong {
  color: var(--color-heading);
  font-weight: 600;
}

.blog-content em {
  color: var(--color-muted);
}

/* Blog Intro Paragraph */
.blog-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* Blog Highlight Box */
.blog-highlight {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(6, 182, 212, 0.04)
  );
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.blog-highlight h4 {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.blog-highlight p {
  margin: 0;
  font-size: 0.95rem;
}

/* Blog CTA (in article) */
.blog-cta {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.05)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.blog-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.blog-cta p {
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-sidebar-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-sidebar-section h3 svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.related-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-article {
  display: block;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--color-bg);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.related-article:hover {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.04);
  transform: translateX(4px);
}

.related-article-date {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.related-article-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.4;
}

/* Blog Back Link */
.blog-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* Blog Responsive */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    order: 2;
  }

  .blog-hero-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .blog-page-header h1 {
    font-size: 2rem;
  }

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

  .blog-article-header h1 {
    font-size: 1.75rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  .blog-content h3 {
    font-size: 1.1rem;
  }

  .blog-intro {
    font-size: 1.05rem;
  }

  .blog-author-header .blog-author-photo {
    width: 48px;
    height: 48px;
  }
}

/* ---------- Compact Cards ---------- */
.card-compact {
  padding: 1.25rem;
  text-align: center;
}

.card-compact .card-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
}

.card-compact h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card-compact p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

.card-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.04));
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

/* ---------- About Page ---------- */
.about-photo-large {
  max-width: 200px;
}

.about-photo-large img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
  transform: translateX(-5px);
}

.timeline-content {
  margin-left: 1rem;
}

.timeline-content h3 {
  margin-bottom: 0.25rem;
}

.timeline-date {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* Certification & Skills */
.certification-date {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.skills-list-large {
  gap: 0.75rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
}

.skills-list-large .skill-tag {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-marker {
    left: -1.5rem;
  }
  
  .about-photo-large {
    max-width: none;
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
  }
}

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Footer Enhanced ---------- */
.footer-content {
  /* Already inside .container — no extra width constraints needed */
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding-top: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.footer-contact-line {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.8;
}

.footer-contact-line a {
  color: #60a5fa;
  transition: color 0.2s ease;
}

.footer-contact-line a:hover {
  color: #93bbfc;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-regio {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 2;
}

.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
}

.footer-legal {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-legal a {
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-contact {
  font-size: 0.9rem;
}

.footer-contact a {
  color: #60a5fa;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    text-align: left;
  }
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2:first-of-type {
  margin-top: 2rem;
}

.legal-intro {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-contact {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
  text-align: center;
}

.legal-contact h3 {
  margin-bottom: 0.5rem;
}

.legal-contact p {
  margin: 0;
}

/* ---------- Booking Page ---------- */
.booking-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

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

.booking-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}

.booking-card-featured {
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.booking-card-header h2 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.booking-card-header h2::after {
  display: none;
}

.booking-card-desc {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.booking-card-price {
  margin-bottom: 1.25rem;
}

.booking-card .pricing-features {
  flex: 1;
}

.booking-select-btn {
  margin-top: auto;
}

.booking-hours-label {
  display: block;
  font-weight: 650;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.booking-hours-select {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.booking-hours-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  outline: none;
}

/* Duration toggle buttons (cards + form) */
.booking-duration-picker {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.booking-duration-label {
  display: block;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.booking-duration-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.booking-duration-btn {
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.booking-duration-btn:hover {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.04);
}

.booking-duration-btn.active {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  color: var(--color-primary);
  font-weight: 700;
}

.booking-duration-section {
  margin-bottom: 2rem;
}

.booking-duration-section h3 {
  margin-bottom: 0.75rem;
}

.booking-duration-section .booking-duration-btns {
  gap: 0.5rem;
}

.booking-duration-section .booking-duration-btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.95rem;
}

/* Booking form wrapper */
.booking-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.booking-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-form-header h2 {
  margin-bottom: 0;
}

.booking-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-summary-type {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-heading);
}

.booking-summary-details {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Calendar date picker */
.booking-date-section,
.booking-time-section {
  margin-bottom: 2rem;
}

.booking-date-section h3,
.booking-time-section h3 {
  margin-bottom: 1rem;
}

.booking-date-grid {
  max-width: 380px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cal-month-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-heading);
  text-transform: capitalize;
}

.cal-nav-btn {
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-heading);
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: var(--color-primary);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-dow {
  margin-bottom: 2px;
}

.cal-dow-cell {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  padding: 0.25rem 0;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  background: none;
  color: var(--color-heading);
  padding: 0;
}

.cal-empty {
  pointer-events: none;
}

.cal-cell.cal-available {
  cursor: pointer;
  background: rgba(37, 99, 235, 0.07);
  font-weight: 700;
  transition: background 0.15s, box-shadow 0.15s;
}

.cal-cell.cal-available:hover {
  background: rgba(37, 99, 235, 0.15);
}

.cal-cell.cal-available.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.cal-cell.cal-unavailable {
  opacity: 0.3;
  cursor: default;
}

.cal-cell.cal-today {
  box-shadow: inset 0 0 0 2px var(--color-primary);
  border-radius: 10px;
}

/* Time slots */
.booking-time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-time-btn {
  padding: 0.65rem 1.15rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
}

.booking-time-btn:hover {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.04);
}

.booking-time-btn.active {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  color: var(--color-primary);
  font-weight: 700;
}

.booking-loading {
  color: var(--color-muted);
  font-style: italic;
}

.booking-no-slots {
  color: var(--color-muted);
  padding: 1rem;
  text-align: center;
  background: var(--color-bg-alt);
  border-radius: 12px;
  width: 100%;
}

.booking-form {
  margin-top: 1.5rem;
}

/* Booking format toggle (online / op locatie) */
.booking-format-section {
  margin-top: 1.5rem;
}

.booking-format-toggle {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.booking-format-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.booking-format-btn:hover {
  border-color: var(--color-primary);
}

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

.booking-location-field {
  margin-top: 1rem;
}

.booking-location-field label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--color-heading);
}

.booking-location-field input {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-heading);
}

.booking-km-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: italic;
}

/* ---------- Pricing Page ---------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}

.pricing-card-featured {
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
}

.pricing-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.pricing-description {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
}

.price-period {
  font-size: 1.25rem;
  color: var(--color-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.pricing-examples {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-card-bg);
  border-radius: 8px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Pricing hourly section */
.pricing-hourly {
  display: grid;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pricing-hourly {
    grid-template-columns: 1fr auto;
  }
}

.pricing-hourly h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-hourly ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.pricing-hourly-price {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--color-card-bg);
  border-radius: 12px;
}

.pricing-hourly-price .price-amount {
  display: block;
}

.pricing-hourly-price .price-period {
  display: block;
  font-size: 1rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin: 0.75rem 0 0;
}

/* 4-column pricing grid (sessions) */
.pricing-grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

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

.pricing-session-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1.5rem;
}

/* Project pricing layout */
.pricing-project-layout {
  display: grid;
  gap: 2.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .pricing-project-layout {
    grid-template-columns: auto 1fr;
  }
}

.pricing-project-rate {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pricing-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pricing-project-features h3 {
  margin-bottom: 1.25rem;
}

.pricing-feature-categories {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .pricing-feature-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-feature-category h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}

.pricing-feature-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feature-category li {
  font-size: 0.9rem;
  color: var(--color-muted);
  padding: 0.2rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-feature-category li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.85rem;
}

.pricing-platform-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Example packages */
.pricing-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.pricing-package {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem;
}

.pricing-package-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.pricing-package-header h4 {
  font-size: 1rem;
  margin: 0;
}

.pricing-package-price {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  white-space: nowrap;
}

.pricing-package ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-package ul li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.pricing-package ul li::before {
  content: "→ ";
  color: var(--color-primary);
}

.pricing-project-details {
  margin-top: 2.5rem;
}

.pricing-project-details > h3 {
  margin-bottom: 1rem;
}

/* Vibe coding callout */
.pricing-vibe-coding {
  margin-top: 2rem;
}

.pricing-vibe-coding-inner {
  background: rgba(37, 99, 235, 0.04);
  border: 1.5px solid rgba(37, 99, 235, 0.15);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}

.pricing-vibe-coding h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pricing-vibe-coding p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* How it works steps */
.pricing-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .pricing-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-step {
  text-align: center;
  padding: 1.5rem;
}

.pricing-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pricing-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pricing-step p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
}

/* ---------- FAQ Styles ---------- */
.faq-list {
  max-width: 860px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 1.25rem;
  color: var(--color-muted);
}

/* ---------- Newsletter Styles ---------- */
.newsletter-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
}

.newsletter-section h3 {
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: #fff;
  transition: border-color 0.2s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ---------- Subtle Notification Banner ---------- */
.notification-banner {
  position: fixed;
  bottom: 80px; /* Above cookie banner */
  right: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 9980;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  max-width: 400px;
}

.notification-banner.active {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
}

.notification-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.notification-content p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.notification-content p strong {
  color: var(--color-primary);
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--color-muted);
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  color: var(--color-heading);
}

/* Form overlay (shown on click) */
.notification-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification-form-overlay.active {
  opacity: 1;
  visibility: visible;
}

.notification-form-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  width: 320px;
  max-width: calc(100vw - 2rem);
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.notification-form-overlay.active .notification-form-popup {
  transform: translateY(0);
  opacity: 1;
}

.notification-form-popup h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.notification-form-popup > p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.notification-form-popup form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notification-form-popup input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.95rem;
}

.notification-form-popup input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}

.notification-form-popup .btn {
  width: 100%;
}

.notification-form-popup .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notification-form-popup .popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--color-muted);
  padding: 0.25rem;
  line-height: 1;
}

.popup-captcha {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}

.popup-success {
  text-align: center;
  padding: 1rem 0;
}

.popup-success .success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-success .success-icon svg {
  width: 32px;
  height: 32px;
  color: #22c55e;
}

.popup-success h3 {
  margin-bottom: 0.5rem;
  color: #22c55e;
}

.popup-success p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.popup-success a {
  color: var(--color-primary);
  text-decoration: underline;
}

.newsletter-popup-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.notification-note {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
  text-align: center;
}

.notification-note a {
  color: var(--color-muted);
  text-decoration: underline;
}

@media (max-width: 500px) {
  .notification-banner {
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
  }
  
  .notification-form-popup {
    right: 0.5rem;
    left: 0.5rem;
    width: auto;
  }
  
  .popup-captcha {
    transform: scale(0.9);
    transform-origin: center;
  }
}

/* ---------- Thank You Page ---------- */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  text-align: center;
  max-width: 500px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  color: #22c55e;
}

.thank-you-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.thank-you-note {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Checklist Page ---------- */
.checklist-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.checklist-intro h2 {
  margin-bottom: 0.5rem;
}

.checklist-category {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.checklist-category h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.category-icon {
  font-size: 1.5rem;
}

.category-desc {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.checklist-item:hover {
  background: rgba(37, 99, 235, 0.05);
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checklist-item span {
  line-height: 1.5;
}

.category-tip {
  background: rgba(37, 99, 235, 0.08);
  border-left: 3px solid var(--color-primary);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

.category-tip strong {
  color: var(--color-primary);
}

.checklist-results {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.checklist-results h3 {
  margin-bottom: 1.5rem;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.score-item {
  padding: 1rem;
  background: var(--color-surface);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.score-range {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.score-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checklist-next-step {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
  border-radius: 12px;
  margin-top: 2rem;
}

.checklist-next-step h3 {
  margin-bottom: 0.75rem;
}

.checklist-next-step p {
  margin-bottom: 1.5rem;
  color: var(--color-muted);
}

.page-header .thank-you-icon {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .checklist-category {
    padding: 1.25rem;
  }
  
  .score-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9990;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.cookie-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Dark Section ---------- */
.section-dark {
  background: var(--color-heading);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
}

.section-dark::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
  pointer-events: none;
}

.section-dark::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
  pointer-events: none;
}

.section-dark h2 {
  color: #fff;
}

.section-dark .section-intro {
  color: #94a3b8;
}

.section-dark .section-intro strong {
  color: #e2e8f0;
}

/* ---------- Horizontal Timeline (Aanpak) ---------- */
.section-dark .timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 2.5rem 0 0;
  padding-left: 0;
  position: relative;
}

.section-dark .timeline::before {
  display: none;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-1));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.4);
  flex-shrink: 0;
}

.timeline-step .timeline-content {
  margin-left: 0;
}

.timeline-step .timeline-content h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.timeline-step .timeline-content p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
}

.timeline-connector {
  flex-shrink: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-1));
  align-self: center;
  margin-top: -2.5rem;
  opacity: 0.5;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .section-dark .timeline {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .timeline-step .timeline-content p {
    max-width: none;
    margin-inline: 0;
  }

  .timeline-number {
    margin-bottom: 0;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .timeline-connector {
    display: none;
  }
}

/* ---------- Compare (Before/After) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 2rem;
}

.compare-side {
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compare-side:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.compare-before {
  border-top: 3px solid #e53935;
}

.compare-after {
  border-top: 3px solid #2e7d32;
}

.compare-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--color-heading);
}

.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-icon-before {
  background: rgba(229, 57, 53, 0.12);
  color: #e53935;
}

.compare-icon-after {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
}

.compare-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.compare-side li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--color-text);
}

.compare-total {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 2px dashed var(--color-border);
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
}

.compare-total-before {
  color: #e53935;
}

.compare-total-after {
  color: #2e7d32;
}

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.compare-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-1));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

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

  .compare-divider {
    padding: 0.75rem 0;
  }

  .compare-arrow {
    transform: rotate(90deg);
  }

  .compare-side li {
    font-size: 0.88rem;
    flex-wrap: wrap;
  }
}

/* ---------- Bold CTA Section ---------- */
.section-cta-bold {
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8 40%, var(--color-accent-1));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.section-cta-bold::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.cta-bold-inner {
  position: relative;
  z-index: 1;
}

.cta-bold-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 1rem;
  display: block;
  letter-spacing: -0.025em;
}

.cta-bold-inner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 55ch;
  margin-inline: auto;
  font-size: 1.15rem;
  line-height: 1.7;
}

.cta-bold-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-bold-actions {
  margin-top: 1.5rem;
}

.btn-cta-bold {
  background: #fff;
  color: var(--color-primary);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-bold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--color-primary);
}

.cta-bold-inner .cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta-bold-inner .cta-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   BOLD COMPOSITIONS — page-space-breaking layouts
   ========================================================================== */

/* ---------- 1. Diensten: offset grid ---------- */
@media (min-width: 768px) {
  .grid-offset {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
    gap: 2.5rem;
  }

  .grid-offset > :nth-child(2) {
    margin-top: 4.5rem;
  }
}

/* ---------- 2. Stats: full-bleed banner ---------- */
.banner-stats {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 3rem;
  padding: 3.5rem calc(50vw - 50%);
  background: linear-gradient(135deg, #0f172a, #1e293b 60%, #0f172a);
  position: relative;
  overflow: hidden;
}

.banner-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-1), var(--color-accent-2));
}

.stat-grid-banner {
  margin-top: 0;
}

.stat-grid-banner .stat {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stat-grid-banner .stat::before {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent);
}

.stat-grid-banner .stat-kicker {
  color: var(--color-accent-1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

.stat-grid-banner .stat-value {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-grid-banner .stat-note {
  color: rgba(255, 255, 255, 0.55);
}

.stat-grid-banner .stat:hover {
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.18);
}

/* ---------- 3. Blog: featured + secondary ---------- */
@media (min-width: 768px) {
  .grid-blog-featured {
    grid-template-columns: 1.5fr 0.5fr;
    grid-template-rows: 1fr;
    align-items: stretch;
    gap: 2rem;
  }

  .card-featured {
    display: flex;
    flex-direction: column;
  }

  .card-featured .card-image {
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -2rem -2.25rem 1.5rem;
    width: calc(100% + 4.5rem);
  }

  .card-featured h3 {
    font-size: 1.5rem;
    letter-spacing: -0.015em;
  }

  .card-featured p {
    font-size: 1.05rem;
    flex: 1;
    line-height: 1.7;
  }

  .grid-blog-featured > :nth-child(2) {
    display: flex;
    flex-direction: column;
  }

  .grid-blog-featured > :nth-child(2) .card-image {
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -2rem -2.25rem 1rem;
    width: calc(100% + 4.5rem);
  }
}

/* ---------- 4. Compare: asymmetric (after side bigger) ---------- */
@media (min-width: 769px) {
  .compare-asymmetric {
    grid-template-columns: 0.85fr auto 1.15fr;
  }

  .compare-asymmetric .compare-divider {
    padding: 0 1.5rem;
  }

  .compare-asymmetric .compare-after {
    padding: 2rem;
    transform: scale(1.04);
    transform-origin: center center;
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.12);
    z-index: 1;
  }

  .compare-asymmetric .compare-after:hover {
    transform: scale(1.06);
  }

  .compare-asymmetric .compare-before {
    opacity: 0.85;
  }

  .compare-asymmetric .compare-before:hover {
    opacity: 1;
  }
}

/* ---------- 5. Over-mij: breakout photo ---------- */
@media (min-width: 768px) {
  .about-breakout {
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
    align-items: center;
  }

  .about-breakout .about-photo {
    width: 280px;
    height: 280px;
    margin-left: -3rem;
    box-shadow: 0 24px 80px rgba(37, 99, 235, 0.18);
  }

  .about-breakout .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (min-width: 1024px) {
  .about-breakout {
    grid-template-columns: 380px 1fr;
    gap: 4rem;
  }

  .about-breakout .about-photo {
    width: 340px;
    height: 340px;
    margin-left: -5rem;
  }
}

/* ─── Language Switcher ─── */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.lang-switch:hover {
  color: var(--color-accent);
  background: rgba(37, 99, 235, 0.08);
}

.lang-icon {
  flex-shrink: 0;
}

/* Desktop lang switch in header CTA group */
.lang-switch-desktop {
  margin-right: 0.5rem;
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

/* Mobile lang switch in nav */
.lang-switch-mobile {
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
}

.lang-switch-mobile .lang-switch {
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

/* Footer lang switch */
.footer-lang {
  margin-top: 1.25rem;
}

.footer-lang h4 {
  margin-bottom: 0.5rem;
}

.footer-lang .lang-switch {
  padding: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-lang .lang-switch:hover {
  color: #fff;
}

/* Hide mobile lang on desktop, show on mobile */
@media (min-width: 861px) {
  .lang-switch-mobile {
    display: none;
  }
}

@media (max-width: 860px) {
  .lang-switch-desktop {
    display: none;
  }
}

/* ==========================================================================
   Subscription / Abonnementen page styles
   ========================================================================== */

/* Package meta info */
.sub-package-meta {
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-muted);
}
.sub-meta-item {
  padding: 0.2rem 0;
}
.sub-meta-item strong {
  color: var(--color-heading);
}
.sub-extra-rate {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0.5rem 0 1rem;
  text-align: center;
}

/* Comparison table */
.sub-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sub-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
.sub-compare-table th,
.sub-compare-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.sub-compare-table th:first-child,
.sub-compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  min-width: 160px;
}
.sub-compare-table thead th {
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 1rem;
  color: var(--color-heading);
}
.sub-compare-featured {
  background: rgba(99, 102, 241, 0.06);
}
.sub-check {
  width: 20px;
  height: 20px;
  color: #22c55e;
  display: inline-block;
  vertical-align: middle;
}
.sub-cross {
  width: 20px;
  height: 20px;
  color: #64748b;
  display: inline-block;
  vertical-align: middle;
}

/* Module cards grid */
.sub-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.sub-module-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.sub-module-card:hover {
  border-color: var(--color-primary);
}
.sub-module-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.sub-module-icon svg {
  width: 100%;
  height: 100%;
}
.sub-module-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.sub-module-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.sub-module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.sub-module-card ul li {
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.sub-module-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.sub-modules-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.sub-modules-cta p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* Additional services */
.sub-additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.sub-additional-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  gap: 1rem;
}
.sub-additional-item strong {
  white-space: nowrap;
  color: var(--color-heading);
}

/* Terms grid */
.sub-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.sub-term-item {
  padding: 1.25rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.sub-term-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--color-heading);
}
.sub-term-item p {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 0;
}

/* Pricing grid 3-col */
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }
  .sub-modules-grid {
    grid-template-columns: 1fr;
  }
  .sub-additional-grid {
    grid-template-columns: 1fr;
  }
  .sub-terms-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Floating CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
  .floating-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
}