/* =========================================
   BijzonderScherp – Complete Stijl
   Kleurstelling: Zwart, Wit, Rood accent
   Logo: Vuist met schaar, bold zwart/wit
   ========================================= */

:root {
  /* Primaire kleuren */
  --zwart: #111111;
  --zwart-2: #1a1a1a;
  --zwart-3: #222222;
  --rood: #c8102e;
  --rood-dark: #a00d24;
  --rood-light: #fdf0f2;
  --wit: #ffffff;
  --grijs-licht: #f5f5f5;
  --grijs: #e8e8e8;
  --grijs-mid: #999999;
  --grijs-dark: #555555;
  --tekst: #1a1a1a;
  --tekst-licht: #555555;
  --tekst-muted: #888888;
  --rand: #e0e0e0;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.20);

  /* Borders */
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Fonts */
  --font: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --transition: all 0.28s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--tekst); background: var(--wit); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 64px 0; }
.bg-licht { background: var(--grijs-licht); }
.bg-zwart { background: var(--zwart); }

/* =========================================
   TOPBAR
   ========================================= */
.topbar {
  background: var(--zwart);
  padding: 9px 0;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-inner a { color: rgba(255,255,255,0.75); }
.topbar-inner a:hover { color: var(--rood); }
.topbar-inner i { margin-right: 6px; color: var(--rood); font-size: 0.78rem; }
.topbar-badge {
  margin-left: auto;
  background: var(--rood);
  color: #fff;
  padding: 3px 13px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  background: var(--wit);
  z-index: 1000;
  border-bottom: 2px solid var(--zwart);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 8px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-right: auto;
}
.logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--zwart);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  letter-spacing: -0.1px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--rood);
  background: var(--rood-light);
}
.nav-links > li > a i.fa-chevron-down { font-size: 0.65rem; transition: transform 0.25s ease; }
.nav-links > li:hover > a i.fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  border: 1px solid var(--rand);
  z-index: 999;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tekst);
}
.dropdown-menu li a i { color: var(--rood); width: 16px; }
.dropdown-menu li a:hover { background: var(--rood-light); color: var(--rood); }

.btn-nav {
  background: var(--rood) !important;
  color: var(--wit) !important;
  padding: 9px 20px !important;
  border-radius: 7px !important;
  font-weight: 700 !important;
  margin-left: 6px;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--rood-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,0.3) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: 12px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--zwart);
  border-radius: 4px;
  transition: var(--transition);
  display: block;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primair {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--rood);
  color: var(--wit);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: -0.1px;
  box-shadow: 0 4px 14px rgba(200,16,46,0.3);
}
.btn-primair:hover {
  background: var(--rood-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200,16,46,0.38);
  color: #fff;
}
.btn-zwart {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--zwart);
  color: var(--wit);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-zwart:hover {
  background: var(--zwart-3);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline-wit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--wit);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-wit:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }

/* =========================================
   SECTIE HEADERS
   ========================================= */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--zwart);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.section-header p {
  font-size: 0.97rem;
  color: var(--tekst-licht);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.licht h2 { color: var(--wit); }
.section-header.licht p { color: rgba(255,255,255,0.65); }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rood);
  color: var(--wit);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.label-tag.zwart {
  background: var(--zwart);
}

.accent { color: var(--rood); }

/* =========================================
   HERO
   ========================================= */
.hero {
  background: var(--zwart);
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-links {
  padding: 72px 28px 56px;
  padding-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.35);
  color: #ff4d6d;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 26px;
  width: fit-content;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--wit);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.hero-title .rood { color: var(--rood); }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-blok {
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.stat-blok:last-child { border-right: none; }
.stat-blok strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--wit);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-blok strong span { color: var(--rood); }
.stat-blok em {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-style: normal;
  display: block;
  margin-top: 4px;
}

.hero-rechts {
  position: relative;
  overflow: hidden;
}
.hero-rechts img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75);
}
.hero-rechts::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--zwart) 0%, transparent 40%);
  pointer-events: none;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--rood);
  padding: 13px 0;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item i { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* =========================================
   DOELGROEPEN SECTIE
   ========================================= */
.doelgroepen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.32s ease;
  position: relative;
  background: var(--zwart);
}
.dg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.dg-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8);
}
.dg-card:hover .dg-img img { transform: scale(1.05); }
.dg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.dg-body {
  padding: 20px 22px 22px;
  background: var(--wit);
  border-top: 3px solid var(--rood);
}
.dg-body h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--zwart);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.dg-body .tagline {
  font-size: 0.85rem;
  color: var(--tekst-licht);
  margin-bottom: 18px;
  font-style: italic;
}
.dg-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.dg-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--tekst);
  font-weight: 500;
}
.dg-features li i { color: var(--rood); font-size: 0.8rem; flex-shrink: 0; }
.dg-prijs {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--grijs-licht);
  border-radius: 8px;
}
.dg-prijs .vanaf { font-size: 0.8rem; color: var(--tekst-muted); }
.dg-prijs .bedrag { font-size: 1.9rem; font-weight: 900; color: var(--rood); letter-spacing: -1px; }
.dg-prijs .per { font-size: 0.8rem; color: var(--tekst-muted); }
.btn-kaart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  width: 100%;
  background: var(--zwart);
  color: var(--wit);
  transition: var(--transition);
}
.btn-kaart:hover { background: var(--rood); color: #fff; transform: none; }

/* =========================================
   HOE WERKT HET
   ========================================= */
.stappen-rij {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stappen-rij::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--grijs);
  z-index: 0;
}
.stap {
  text-align: center;
  padding: 0 16px 16px;
  position: relative;
  z-index: 1;
}
.stap-num {
  width: 52px;
  height: 52px;
  background: var(--rood);
  color: var(--wit);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--wit);
  box-shadow: 0 0 0 3px var(--rood);
}
.stap h4 { font-size: 1rem; font-weight: 800; color: var(--zwart); margin-bottom: 8px; letter-spacing: -0.3px; }
.stap p { font-size: 0.85rem; color: var(--tekst-licht); line-height: 1.65; }
.stappen-cta { text-align: center; margin-top: 32px; }

/* =========================================
   USP SECTIE
   ========================================= */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.usp-tekst h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--zwart);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -1px;
}
.usp-intro {
  color: var(--tekst-licht);
  margin-bottom: 24px;
  line-height: 1.75;
  font-size: 0.95rem;
}
.usp-lijst { display: flex; flex-direction: column; gap: 16px; }
.usp-item { display: flex; gap: 16px; align-items: flex-start; }
.usp-icoon {
  width: 44px;
  height: 44px;
  background: var(--zwart);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--wit);
  flex-shrink: 0;
  transition: var(--transition);
}
.usp-item:hover .usp-icoon { background: var(--rood); }
.usp-content h5 { font-size: 0.97rem; font-weight: 800; color: var(--zwart); margin-bottom: 4px; }
.usp-content p { font-size: 0.86rem; color: var(--tekst-licht); line-height: 1.65; }

/* Beoordelingen kaart */
.beoordelingen-kaart {
  background: var(--zwart);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.beoordelingen-top {
  background: var(--rood);
  padding: 28px;
  text-align: center;
}
.sterren { font-size: 1.2rem; color: #FFD700; margin-bottom: 8px; letter-spacing: 2px; }
.score-groot { font-size: 3.2rem; font-weight: 900; color: var(--wit); line-height: 1; letter-spacing: -2px; }
.score-sub { font-size: 0.83rem; color: rgba(255,255,255,0.7); margin-top: 6px; }
.reviews-lijst { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.review-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.review-avatar {
  width: 38px;
  height: 38px;
  background: var(--rood);
  color: var(--wit);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-body strong { font-size: 0.84rem; color: var(--wit); display: block; margin-bottom: 3px; }
.review-body .r-sterren { font-size: 0.68rem; color: #FFD700; margin-bottom: 5px; }
.review-body p { font-size: 0.81rem; color: rgba(255,255,255,0.55); line-height: 1.55; font-style: italic; }

/* =========================================
   DIENSTEN GRID (donkere achtergrond)
   ========================================= */
.diensten-blokken {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dienst-blok {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
}
.dienst-blok:hover {
  background: rgba(200,16,46,0.12);
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-3px);
}
.dienst-blok i {
  font-size: 1.6rem;
  color: var(--rood);
  margin-bottom: 10px;
  display: block;
}
.dienst-blok h4 { font-size: 0.97rem; font-weight: 800; color: var(--wit); margin-bottom: 7px; }
.dienst-blok p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* =========================================
   CTA SECTIE
   ========================================= */
.cta-blok {
  background: var(--zwart);
  border-radius: var(--radius-xl);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.cta-blok::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--wit);
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.cta-content p { color: rgba(255,255,255,0.6); margin-bottom: 30px; line-height: 1.75; }
.cta-knoppen { display: flex; flex-wrap: wrap; gap: 14px; }

.cta-icoon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  font-size: 7rem;
  color: rgba(255,255,255,0.04);
}

/* =========================================
   AUDIENCE PAGE HERO
   ========================================= */
.audience-hero {
  background: var(--zwart);
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.audience-hero-tekst {
  padding: 72px 28px 52px;
  padding-left: max(28px, calc((100vw - 1200px) / 2 + 28px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.audience-hero-tekst h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--wit);
  line-height: 1.07;
  margin-bottom: 14px;
  letter-spacing: -1.5px;
}
.audience-hero-tekst p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 26px;
  line-height: 1.7;
}
.audience-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.audience-hero-img {
  position: relative;
  overflow: hidden;
}
.audience-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.audience-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--zwart) 0%, transparent 45%);
}

/* =========================================
   PAIN / OPLOSSING GRID
   ========================================= */
.pijnpunten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.pijn-kolom h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.pijn-kolom.rood h3 { color: #c0392b; }
.pijn-kolom.groen h3 { color: #1a7a3c; }
.pijn-kolom h3 i { font-size: 1rem; }

.pijn-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: var(--grijs-licht);
  border-left: 3px solid transparent;
}
.pijn-kolom.rood .pijn-item { border-left-color: #e74c3c; }
.pijn-kolom.groen .pijn-item { border-left-color: #27ae60; }
.pijn-icoon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--wit);
  flex-shrink: 0;
}
.pijn-kolom.rood .pijn-icoon { background: #e74c3c; }
.pijn-kolom.groen .pijn-icoon { background: #27ae60; }
.pijn-item h5 { font-size: 0.92rem; font-weight: 700; color: var(--zwart); margin-bottom: 4px; }
.pijn-item p { font-size: 0.84rem; color: var(--tekst-licht); line-height: 1.6; }

/* =========================================
   DIENSTEN KAARTEN (audience pagina)
   ========================================= */
.diensten-kaarten {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.dienst-kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--rand);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.dienst-kaart:hover {
  border-color: var(--rood);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.dk-icoon {
  width: 46px;
  height: 46px;
  background: var(--zwart);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--wit);
  flex-shrink: 0;
  transition: var(--transition);
}
.dienst-kaart:hover .dk-icoon { background: var(--rood); }
.dk-body h4 { font-size: 0.97rem; font-weight: 800; color: var(--zwart); margin-bottom: 6px; }
.dk-body p { font-size: 0.84rem; color: var(--tekst-licht); line-height: 1.6; margin-bottom: 10px; }
.merk-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.merk-tag {
  background: var(--grijs-licht);
  border: 1px solid var(--rand);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.73rem;
  color: var(--tekst-licht);
  font-weight: 600;
}

/* =========================================
   PRIJZEN TABEL
   ========================================= */
.prijzen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.prijs-kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 2px solid var(--rand);
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.prijs-kaart.uitgelicht {
  border-color: var(--zwart);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.prijs-kaart.uitgelicht::before {
  content: 'Meest gekozen';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rood);
  color: var(--wit);
  padding: 4px 18px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.prijs-kaart:hover:not(.uitgelicht) { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prijs-kaart h3 { font-size: 1.2rem; font-weight: 900; color: var(--zwart); margin-bottom: 6px; letter-spacing: -0.5px; }
.prijs-sub { font-size: 0.82rem; color: var(--tekst-muted); margin-bottom: 8px; }
.prijs-groot {
  font-size: 3rem;
  font-weight: 900;
  color: var(--rood);
  line-height: 1;
  margin: 18px 0;
  letter-spacing: -2px;
}
.prijs-groot span { font-size: 1rem; font-weight: 500; color: var(--tekst-muted); letter-spacing: 0; }
.prijs-kaart ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 22px 0;
}
.prijs-kaart ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--tekst);
  font-weight: 500;
}
.prijs-kaart ul li i { color: var(--rood); flex-shrink: 0; font-size: 0.82rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1px solid var(--rand);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testi-kaart:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-kaart::before {
  content: '"';
  font-size: 5rem;
  color: var(--grijs);
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 18px;
  line-height: 1;
}
.testi-sterren { font-size: 0.82rem; color: #FFD700; margin-bottom: 12px; letter-spacing: 2px; }
.testi-kaart p {
  font-size: 0.86rem;
  color: var(--tekst-licht);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-auteur { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--rood);
  color: var(--wit);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-auteur strong { display: block; font-size: 0.88rem; color: var(--zwart); font-weight: 800; }
.testi-auteur span { font-size: 0.78rem; color: var(--tekst-muted); }

/* =========================================
   CONTACT PAGINA
   ========================================= */
.page-hero {
  background: var(--zwart);
  padding: 70px 28px 50px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--wit);
  margin-bottom: 14px;
  letter-spacing: -1.5px;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info-kaart {
  background: var(--zwart);
  border-radius: var(--radius-lg);
  padding: 38px;
  color: rgba(255,255,255,0.65);
}
.contact-info-kaart h3 { color: var(--wit); font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.contact-info-kaart > p { font-size: 0.88rem; margin-bottom: 32px; line-height: 1.75; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icoon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--rood);
  flex-shrink: 0;
}
.ci-body strong { display: block; color: var(--wit); font-size: 0.86rem; font-weight: 700; margin-bottom: 3px; }
.ci-body span, .ci-body a { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.ci-body a:hover { color: var(--rood); }

.quick-links-kaart {
  margin-top: 20px;
  background: var(--grijs-licht);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.quick-links-kaart h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--zwart);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-links-kaart h4 i { color: var(--rood); }
.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid var(--rand);
  background: var(--wit);
  color: var(--zwart);
}
.quick-link:last-child { margin-bottom: 0; }
.quick-link .fa-arrow-right { margin-left: auto; font-size: 0.78rem; color: var(--tekst-muted); }
.quick-link:hover { background: var(--zwart); color: var(--wit); border-color: var(--zwart); }
.quick-link:hover .fa-arrow-right { color: var(--rood); }
.quick-link i:first-child { color: var(--rood); }

/* Contact Form */
.contact-form-wrap {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rand);
}
.contact-form-wrap h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--zwart);
  margin-bottom: 6px;
  letter-spacing: -0.8px;
}
.contact-form-wrap > p { font-size: 0.88rem; color: var(--tekst-licht); margin-bottom: 28px; }

.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-groep { margin-bottom: 18px; }
.form-groep label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--zwart);
  margin-bottom: 7px;
  letter-spacing: -0.2px;
}
.form-groep input,
.form-groep select,
.form-groep textarea {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--rand);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--tekst);
  transition: var(--transition);
  background: var(--wit);
}
.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus {
  outline: none;
  border-color: var(--rood);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-groep textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 28px;
  background: #f0fff5;
  border-radius: var(--radius);
  border: 1px solid #a8e6c0;
  color: #1a7a3c;
}
.form-success i { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.form-success h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }

/* FAQ */
.faq-lijst { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--rood); }
.faq-vraag {
  padding: 17px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zwart);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-vraag i { color: var(--rood); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-vraag i { transform: rotate(45deg); }
.faq-antwoord {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-antwoord { max-height: 300px; padding: 0 22px 17px; }
.faq-antwoord p { font-size: 0.87rem; color: var(--tekst-licht); line-height: 1.8; }

/* Prijzen tabel */
.prijzen-tabel {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.prijzen-tabel thead tr { background: var(--zwart); color: var(--wit); }
.prijzen-tabel th { padding: 15px 20px; font-size: 0.86rem; font-weight: 700; text-align: left; }
.prijzen-tabel td { padding: 13px 20px; font-size: 0.86rem; color: var(--tekst); border-bottom: 1px solid var(--rand); }
.prijzen-tabel tbody tr:last-child td { border-bottom: none; }
.prijzen-tabel tbody tr:nth-child(even) { background: var(--grijs-licht); }
.prijzen-tabel tbody tr:hover { background: var(--rood-light); }
.prijzen-tabel .cat-rij td { background: var(--rood-light); font-weight: 800; color: var(--rood-dark); font-size: 0.83rem; padding: 9px 20px; }

/* Notitie */
.prijs-notitie {
  text-align: center;
  margin-top: 24px;
  font-size: 0.84rem;
  color: var(--tekst-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.prijs-notitie i { color: var(--rood); }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--zwart); color: rgba(255,255,255,0.6); }
.footer-top { padding: 48px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-merk { }
.footer-merk .logo-footer {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-merk .logo-footer img { height: 48px; width: auto; }
.footer-merk p {
  margin-top: 12px;
  font-size: 0.86rem;
  line-height: 1.75;
  max-width: 270px;
  color: rgba(255,255,255,0.45);
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--rood); color: var(--wit); }

.footer-links h5,
.footer-contact h5 {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--wit);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a::before { content: '/'; font-size: 0.75rem; color: var(--rood); }
.footer-links a:hover { color: var(--wit); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 13px;
}
.footer-contact-item i { color: var(--rood); width: 15px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--rood); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--rood); }

/* =========================================
   MERKEN BALK
   ========================================= */
.merken-balk {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.merk-badge {
  background: var(--wit);
  border: 2px solid var(--rand);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--tekst-licht);
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.merk-badge:hover { border-color: var(--rood); color: var(--rood); }

/* =========================================
   ANIMATIES
   ========================================= */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  animation: opSchuiven 0.65s ease forwards;
}
.vertraging-1 { animation-delay: 0.12s; }
.vertraging-2 { animation-delay: 0.24s; }
.vertraging-3 { animation-delay: 0.36s; }
.vertraging-4 { animation-delay: 0.5s; }

@keyframes opSchuiven {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.zichtbaar { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-rechts { display: none; }
  .hero-links { padding: 60px 28px 44px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .doelgroepen-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-blokken { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .audience-hero { grid-template-columns: 1fr; min-height: auto; }
  .audience-hero-img { display: none; }
  .audience-hero-tekst { padding: 60px 28px 44px; }
  .pijnpunten-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .prijzen-grid { grid-template-columns: 1fr; max-width: 480px; }
  .prijs-kaart.uitgelicht { transform: scale(1); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    background: var(--wit);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 998;
    border-bottom: 2px solid var(--zwart);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { padding: 11px 14px; border-radius: 7px; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 14px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .topbar-inner { gap: 8px; justify-content: center; }
  .topbar-badge { margin-left: 0; }
  .section { padding: 44px 0; }
  .doelgroepen-grid { grid-template-columns: 1fr; }
  .diensten-kaarten { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .diensten-blokken { grid-template-columns: 1fr 1fr; }
  .stappen-rij { grid-template-columns: repeat(2, 1fr); }
  .stappen-rij::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-blok { flex-direction: column; padding: 36px 28px; }
  .cta-icoon { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-rij { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { justify-content: center; }
  .trust-item:nth-child(n+4) { display: none; }
}

@media (max-width: 480px) {
  .diensten-blokken { grid-template-columns: 1fr; }
  .stappen-rij { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .prijzen-grid { grid-template-columns: 1fr; max-width: 100%; }
  .prijs-tabel-wrap { overflow-x: auto; }
}

/* =========================================
   ACTIE BADGE
   ========================================= */
.actie-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rood);
  color: var(--wit);
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.actie-badge.groot { font-size: 0.82rem; padding: 7px 18px; margin-bottom: 16px; }
.actie-tag {
  display: inline-block;
  background: var(--rood);
  color: var(--wit);
  padding: 2px 9px;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-right: 4px;
}

/* =========================================
   VASTE PRIJS BLOK (audience pagina's)
   ========================================= */
.vaste-prijs-blok {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  background: var(--wit);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--rand);
  max-width: 900px;
  margin: 0 auto;
}
.vaste-prijs-links {
  background: var(--zwart);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.vaste-prijs-bedrag {
  font-size: 4.4rem;
  font-weight: 900;
  color: var(--wit);
  line-height: 1;
  letter-spacing: -3px;
  margin: 4px 0 6px;
}
.vaste-prijs-bedrag span {
  font-size: 2.2rem;
  letter-spacing: -1px;
  color: var(--rood);
}
.vaste-prijs-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.vaste-prijs-tekst {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 0;
}
.vaste-prijs-rechts {
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vaste-prijs-rechts h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--zwart);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.vaste-prijs-lijst {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.vaste-prijs-lijst li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.87rem;
  color: var(--tekst);
}
.vaste-prijs-lijst li i {
  color: var(--rood);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.82rem;
}
.vaste-prijs-notitie {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--tekst-muted);
  background: var(--grijs-licht);
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid var(--rand);
}
.vaste-prijs-notitie i { color: var(--rood); flex-shrink: 0; }

@media (max-width: 768px) {
  .vaste-prijs-blok { grid-template-columns: 1fr; max-width: 100%; }
  .vaste-prijs-links { padding: 32px 24px; }
  .vaste-prijs-rechts { padding: 28px 24px; }
  .vaste-prijs-bedrag { font-size: 3.4rem; }
}

/* =========================================
   ACTIE PRIJS BANNER (homepage)
   ========================================= */
.actie-prijs-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--zwart);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  overflow: hidden;
  position: relative;
}
.actie-prijs-banner::before {
  content: '';
  position: absolute;
  right: 260px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.apb-links h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--wit);
  margin-bottom: 10px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.apb-links > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 520px;
}
.apb-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 0;
}
.apb-checks span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.apb-checks span i { color: var(--rood); font-size: 0.8rem; }
.apb-prijs-blok {
  background: var(--rood);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  flex-shrink: 0;
  min-width: 200px;
  position: relative;
  z-index: 2;
}
.apb-bedrag {
  font-size: 4rem;
  font-weight: 900;
  color: var(--wit);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 4px;
}
.apb-bedrag span {
  font-size: 2rem;
  letter-spacing: -1px;
}
.apb-sub {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-bottom: 2px;
}
.apb-btw {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.apb-doelgroepen {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.apb-doelgroepen a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wit);
  transition: var(--transition);
}
.apb-doelgroepen a:hover { background: rgba(255,255,255,0.25); }
.apb-doelgroepen a i { font-size: 0.78rem; }

@media (max-width: 1024px) {
  .actie-prijs-banner { grid-template-columns: 1fr; padding: 40px 36px; gap: 28px; }
  .apb-prijs-blok { min-width: auto; padding: 28px 32px; }
  .apb-doelgroepen { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .actie-prijs-banner { padding: 32px 24px; gap: 24px; }
  .apb-bedrag { font-size: 3rem; }
  .apb-bedrag span { font-size: 1.5rem; }
}

/* =========================================
   PRIJZEN TABEL (nieuw)
   ========================================= */
.prijs-tabel-wrap {
  background: var(--wit);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rand);
  margin-bottom: 8px;
}
.prijs-tabel-titel {
  background: var(--zwart);
  color: var(--wit);
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0;
}
.prijs-tabel {
  width: 100%;
  border-collapse: collapse;
}
.prijs-tabel thead tr {
  background: rgba(200,16,46,0.06);
}
.prijs-tabel th {
  padding: 12px 24px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  color: var(--rood);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid var(--rand);
}
.prijs-tabel td {
  padding: 14px 24px;
  font-size: 0.88rem;
  color: var(--tekst);
  border-bottom: 1px solid var(--rand);
  vertical-align: middle;
}
.prijs-tabel td i {
  color: var(--rood);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
.prijs-tabel td strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--rood);
}
.prijs-tabel tbody tr:last-child td { border-bottom: none; }
.prijs-tabel tr.rij-accent { background: var(--grijs-licht); }
.prijs-tabel tbody tr:hover { background: var(--rood-light); }

/* =========================================
   UITGELICHT LABEL (nieuw)
   ========================================= */
.uitgelicht-label {
  display: inline-block;
  background: var(--rood);
  color: var(--wit);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* =========================================
   PRIJZEN OVERZICHT GRID (homepage)
   ========================================= */
.prijzen-overzicht-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.po-kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--rand);
  transition: var(--transition);
  text-align: center;
}
.po-kaart.uitgelicht {
  border-color: var(--rood);
  box-shadow: var(--shadow-lg);
}
.po-kaart:hover:not(.uitgelicht) {
  border-color: var(--zwart);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.po-icoon {
  width: 56px;
  height: 56px;
  background: var(--zwart);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--wit);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.po-kaart:hover .po-icoon { background: var(--rood); }
.po-kaart h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--zwart);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.po-lijst {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}
.po-lijst li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--rand);
  font-size: 0.86rem;
}
.po-lijst li:last-child { border-bottom: none; }
.po-lijst li span { color: var(--tekst-licht); }
.po-lijst li strong { color: var(--rood); font-weight: 900; font-size: 0.95rem; }

@media (max-width: 1024px) {
  .prijzen-overzicht-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .prijzen-overzicht-grid { grid-template-columns: 1fr; }
}

/* =========================================
   BESTEL POPUP MODAL
   ========================================= */
.bestel-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.bestel-popup-overlay.actief {
  opacity: 1;
  visibility: visible;
}
.bestel-popup-box {
  background: var(--wit);
  border-radius: var(--radius-xl);
  padding: 40px 36px 32px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 28px 80px rgba(0,0,0,0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.28s ease;
}
.bestel-popup-overlay.actief .bestel-popup-box {
  transform: translateY(0) scale(1);
}
.bestel-popup-sluit {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--tekst-muted);
  transition: color 0.2s;
  padding: 2px 6px;
}
.bestel-popup-sluit:hover { color: var(--rood); }
.bestel-popup-header {
  text-align: center;
  margin-bottom: 28px;
}
.bestel-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rood);
  color: var(--wit);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bestel-popup-header h2 {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--zwart);
  letter-spacing: -0.7px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.bestel-popup-header p {
  font-size: 0.9rem;
  color: var(--tekst-muted);
}
.bestel-popup-keuzes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.bestel-keuze-kaart {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 2px solid var(--rand);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--tekst);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
  background: var(--wit);
}
.bestel-keuze-kaart:hover {
  border-color: var(--zwart);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  color: var(--zwart);
}
.bkk-icoon {
  width: 46px;
  height: 46px;
  background: var(--zwart);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--wit);
  flex-shrink: 0;
  transition: background 0.2s;
}
.bestel-keuze-kaart:hover .bkk-icoon { background: var(--rood); }
.bkk-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bkk-body strong {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--zwart);
  letter-spacing: -0.3px;
}
.bkk-body span {
  font-size: 0.8rem;
  color: var(--tekst-muted);
}
.bkk-pijl {
  color: var(--tekst-muted);
  font-size: 0.85rem;
  transition: transform 0.2s, color 0.2s;
}
.bestel-keuze-kaart:hover .bkk-pijl { transform: translateX(4px); color: var(--rood); }
.bestel-popup-footer {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--rand);
}
.bestel-popup-footer a {
  font-size: 0.83rem;
  color: var(--tekst-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.bestel-popup-footer a:hover { color: var(--rood); }

@media (max-width: 480px) {
  .bestel-popup-box { padding: 32px 20px 24px; }
  .bestel-popup-header h2 { font-size: 1.3rem; }
  .bestel-keuze-kaart { padding: 14px; gap: 12px; }
  .bkk-icoon { width: 40px; height: 40px; font-size: 1rem; }
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wa-float-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.wa-float:hover .wa-float-btn {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.wa-float-label {
  background: #fff;
  color: #111;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 480px) {
  .wa-float { bottom: 18px; right: 18px; }
  .wa-float-btn { width: 52px; height: 52px; font-size: 1.5rem; }
  .wa-float-label { display: none; }
}
