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

:root {
  --blue-900: #0d1b2e;
  --blue-800: #0f2744;
  --blue-700: #133a6e;
  --blue-600: #1a56db;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --red-500: #ef4444;
  --orange-500: #f97316;
  --yellow-500: #eab308;
  --purple-500: #a855f7;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.08);
  --shadow-xl: 0 32px 64px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   URGENT BANNER
   =========================== */
.urgent-banner {
  background: linear-gradient(90deg, #b91c1c 0%, #dc2626 50%, #b91c1c 100%);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 100;
}
.urgent-banner a { color: white; font-weight: 700; text-decoration: underline; }
.pulse-dot {
  width: 8px; height: 8px;
  background: #fca5a5;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(252,165,165,.4); }
  50% { opacity: .8; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(252,165,165,0); }
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gray-900);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}
.logo strong { font-weight: 700; color: var(--blue-600); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--blue-600); background: var(--blue-100); }
.btn-nav {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--blue-600);
  color: white;
  transition: all .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--blue-700); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-200);
  gap: 4px;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all .2s;
}
.mobile-menu a:hover { background: var(--gray-100); }
.mobile-menu .btn-primary { text-align: center; margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 11px 22px;
}
.btn-primary {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
}
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,86,219,.3); }
.btn-secondary {
  background: rgba(255,255,255,.1);
  color: white;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-200, #bfdbfe);
}
.btn-outline:hover { background: var(--blue-600); color: white; border-color: var(--blue-600); transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   HERO
   =========================== */
/* 2-column hero grid */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 60px;
}
.hero-text { text-align: left; }
.hero-text .hero-ctas { justify-content: flex-start; }
.hero-text .hero-trust { justify-content: flex-start; }

/* Hero image */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Floating badges on hero image */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,27,46,.88);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: float 4s ease-in-out infinite;
}
.badge-secure { bottom: -20px; left: -24px; animation-delay: 0s; border-color: rgba(34,197,94,.3); }
.badge-time   { top: -20px; right: -24px; animation-delay: 1.3s; }
.badge-rating { bottom: 60px; right: -32px; animation-delay: 2.2s; border-color: rgba(251,191,36,.3); }
.hfb-title { font-size: 12px; font-weight: 700; color: white; line-height: 1.2; }
.hfb-sub   { font-size: 11px; color: rgba(255,255,255,.55); }

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, #0a1628 40%, #0d1f3c 100%);
  padding: 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
}
.glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, #1a56db 0%, transparent 70%); top: -200px; right: -100px; }
.glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, #dc2626 0%, transparent 70%); bottom: -100px; left: 100px; opacity: .15; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,32,32,.12);
  border: 1px solid rgba(229,32,32,.28);
  color: #fca5a5;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.badge-dot { width: 6px; height: 6px; background: #ef4444; border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
/* Red accent span used in hero h1 */
.hero-red {
  color: #dc2626;
  font-style: normal;
}
/* Keep .gradient-text as alias for backwards compat — now solid white */
.gradient-text {
  color: white;
  -webkit-text-fill-color: white;
}
/* Red CTA button — used for hero call action */
.btn-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(220,38,38,.35);
}
.btn-danger:hover { background: linear-gradient(135deg, #b91c1c, #991b1b); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,38,38,.5); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
}

/* ===========================
   STATS
   =========================== */
.stats-section {
  background: white;
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: background .2s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--gray-50); }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { font-size: 32px; color: var(--blue-400); }
.stat-label { font-size: 14px; color: var(--gray-600); font-weight: 500; }

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header.light h2 { color: white; }
.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
}
.section-header.light p { color: rgba(255,255,255,.7); }
.section-tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tag-light {
  background: rgba(96,165,250,.15);
  color: var(--blue-400);
}

/* ===========================
   SYMPTOMS
   =========================== */
.symptoms-section { padding: 100px 0; background: var(--gray-50); }
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.symptom-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.symptom-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(26,86,219,.03) 100%);
}
.symptom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200, #bfdbfe); }
.symptom-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.symptom-icon.red { background: #fef2f2; color: var(--red-500); }
.symptom-icon.orange { background: #fff7ed; color: var(--orange-500); }
.symptom-icon.yellow { background: #fefce8; color: var(--yellow-500); }
.symptom-icon.purple { background: #faf5ff; color: var(--purple-500); }
.symptom-icon.blue { background: var(--blue-100); color: var(--blue-600); }
.symptom-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.symptom-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ===========================
   SERVICES
   =========================== */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, #0a1628 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s;
  position: relative;
  backdrop-filter: blur(8px);
}
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(96,165,250,.3); box-shadow: 0 24px 48px rgba(0,0,0,.3); }
.service-card.featured {
  background: white;
  border-color: white;
  color: var(--gray-900);
}
.service-card.featured h3, .service-card.featured p { color: var(--gray-900); }
.service-card.featured .service-features li { color: var(--gray-700); }
.service-card.featured .service-features li::before { background: var(--green-500); }
.service-card.featured .service-price { color: var(--gray-900); }
.service-card.service-card-cta {
  background: rgba(26,86,219,.15);
  border-color: rgba(96,165,250,.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-icon {
  width: 60px; height: 60px;
  background: rgba(96,165,250,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-400);
}
.service-card.featured .service-icon { background: var(--blue-100); color: var(--blue-600); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 4px 0 4px 20px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
}
.service-price {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  margin-top: auto;
}
.service-price strong { font-size: 22px; font-weight: 800; color: white; }
.service-card.featured .service-price strong { color: var(--gray-900); }

/* ===========================
   PROCESS
   =========================== */
/* Expliciete witte achtergrond — voorkomt donkere body-bleed van aangrenzende secties */
.process-section { padding: 100px 0; background: #ffffff; }
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-200, #bfdbfe) 100%);
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-600);
  background: white;
  border: 2px solid var(--blue-600);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  letter-spacing: .02em;
}
.step-content {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex: 1;
  transition: all .3s;
}
.step-content:hover { background: white; box-shadow: var(--shadow-md); border-color: var(--blue-200, #bfdbfe); transform: translateX(4px); }
.step-icon {
  width: 44px; height: 44px;
  background: var(--blue-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.step-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.step-content p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, #0a1628 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
  backdrop-filter: blur(8px);
}
.testimonial-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: white; font-size: 14px; }
.author-role { font-size: 12px; color: rgba(255,255,255,.5); }

/* ===========================
   ABOUT
   =========================== */
.about-section { padding: 100px 0; background: var(--gray-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content .section-tag { display: inline-block; margin-bottom: 16px; }
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-certs { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--gray-200);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.cert-badge:hover { border-color: var(--blue-200, #bfdbfe); transform: translateX(4px); }
.about-visual { display: flex; align-items: center; justify-content: center; }
.about-card-stack { position: relative; width: 320px; height: 280px; }
.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.card-back { inset: 0; background: linear-gradient(135deg, #1e3a6e, #1a56db); transform: rotate(6deg) translateY(8px); opacity: .4; }
.card-mid { inset: 0; background: linear-gradient(135deg, #1a4a8f, #2563eb); transform: rotate(3deg) translateY(4px); opacity: .6; }
.card-front {
  inset: 0;
  background: white;
  transform: rotate(0deg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.shield-animation svg { filter: drop-shadow(0 4px 16px rgba(26,86,219,.3)); animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-front-text { text-align: center; }
.cf-title { font-size: 22px; font-weight: 800; color: var(--gray-900); }
.cf-sub { font-size: 12px; color: var(--gray-400); }
.card-stats-mini {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  width: 100%;
  justify-content: center;
}
.card-stats-mini div { font-size: 12px; color: var(--gray-500); text-align: center; }
.card-stats-mini span { display: block; font-size: 20px; font-weight: 800; color: var(--blue-600); }

/* ===========================
   FAQ
   =========================== */
.faq-section { padding: 100px 0; background: #ffffff; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  background: #ffffff;  /* expliciet wit — voorkomt transparantie-problemen */
  border: none;
  text-align: left;
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;       /* expliciet donker — nooit onzichtbaar */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  transition: background .2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-chevron { flex-shrink: 0; transition: transform .3s; color: var(--gray-400); }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 28px;
  background: #f8fafc;  /* expliciet lichtgrijs */
  color: #334155;       /* altijd leesbaar */
}
.faq-answer.open { max-height: 300px; padding: 20px 28px 24px; }
.faq-answer p { font-size: 15px; color: #475569; line-height: 1.7; }

/* ===========================
   CONTACT
   =========================== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, #0a1628 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info > p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform .2s;
}
.contact-method:hover { transform: translateX(4px); }
.cm-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
}
.cm-label { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }
.cm-value { font-size: 16px; font-weight: 700; color: white; }
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.guarantee-box strong { display: block; color: var(--green-400); font-size: 15px; margin-bottom: 4px; }
.guarantee-box p { font-size: 13px; color: rgba(255,255,255,.6); }

/* FORM */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}
.contact-form h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--gray-50);
  transition: all .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.form-group textarea { resize: vertical; }
.form-urgency { margin: 16px 0 24px; }
.urgency-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.urgency-label input[type="checkbox"] { display: none; }
.urgency-check {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  transition: all .2s;
}
.urgency-label input:checked + .urgency-check {
  background: var(--red-500);
  border-color: var(--red-500);
}
.urgency-label input:checked + .urgency-check::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.form-disclaimer { font-size: 12px; color: var(--gray-600); margin-top: 14px; text-align: center; }
.form-disclaimer a { color: var(--blue-600); }
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.success-icon { margin-bottom: 24px; }
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: var(--gray-600); }
.form-success a { color: var(--blue-600); font-weight: 600; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.6);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.logo-light { color: white; }
.logo-light strong { color: var(--blue-400); }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

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

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 0 70px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-bottom: 1px solid var(--gray-200); }
  .stat-card:nth-child(2) { border-right: none; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline::before { left: 22px; }
  .step-number { width: 36px; height: 36px; font-size: 11px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: block; padding-bottom: 40px; }
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .urgent-banner { font-size: 12px; }
}

/* ===========================
   GLOBAL LINK RESET
   Links in lopende tekst erven kleur van de parent —
   voorkomt browser-default blauw/paars in paragrafen
   =========================== */
p a, li a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.2);
  transition: border-color .2s;
}
p a:hover, li a:hover { border-color: currentColor; }
/* Maar navigatie/CTAs/footer links NIET onderlijnen */
.navbar a, .btn, .btn *, .footer a, .footer-col a,
.contact-method, .urgent-banner a, .mobile-sticky-cta a {
  border-bottom: none;
}

/* ===========================
   COST OF HACK SECTION
   =========================== */
.cost-section { padding: 80px 0; background: #ffffff; }
.cost-section .section-header { margin-bottom: 48px; }
.cost-section .section-header strong { color: #b91c1c; }
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cost-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: all .3s;
}
.cost-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cost-item-cta { border-color: var(--blue-200, #bfdbfe); background: #eff6ff; }
.cost-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cost-value { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.cost-label { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* ===========================
   FORM TRUST BADGES
   =========================== */
.form-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 16px 0 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.ftb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
}
.form-social-proof {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 8px;
}
.form-social-proof strong { color: var(--blue-600); }

/* ===========================
   STICKY MOBILE CTA BAR
   =========================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 12px 16px;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.mobile-sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #dc2626;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s;
}
.mobile-sticky-call:active { background: #b91c1c; }
.mobile-sticky-scan {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-600);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s;
}
.mobile-sticky-scan:active { background: var(--blue-700); }
@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ===========================
   PLATFORMS SECTION
   =========================== */
.platforms-section {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.platforms-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
}
.platform-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  padding: 8px 24px;
  border-right: 1px solid var(--gray-200);
  transition: color .2s;
}
.platform-item:last-child { border-right: none; }
.platform-item:hover { color: var(--gray-800); }

/* ===========================
   EMERGENCY CTA SECTION
   =========================== */
.emergency-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.emergency-img-wrap {
  position: absolute;
  inset: 0;
}
.emergency-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.emergency-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,30,.92) 0%, rgba(10,10,30,.80) 60%, rgba(10,10,30,.70) 100%);
}
.emergency-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.emergency-left { flex: 1; }
.emergency-tag {
  display: inline-block;
  background: rgba(239,68,68,.2);
  border: 1px solid rgba(239,68,68,.5);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.emergency-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.emergency-left h2 em { color: #fca5a5; font-style: normal; }
.emergency-left p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 500px; line-height: 1.7; }
.emergency-right { text-align: center; flex-shrink: 0; }
.btn-emergency {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border-color: transparent;
  font-size: 22px;
  padding: 20px 44px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(220,38,38,.5);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all .2s;
  font-family: var(--font-display);
}
.btn-emergency:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(220,38,38,.6); }
.emergency-meta { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ===========================
   ABOUT PHOTO
   =========================== */
.about-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about-photo-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.apb-icon {
  width: 44px; height: 44px;
  background: rgba(34,197,94,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apb-title { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.apb-sub { font-size: 12px; color: var(--gray-500); }

/* ===========================
   TESTIMONIAL AVATAR IMAGES
   =========================== */
img.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.2);
}

/* ===========================
   RESPONSIVE ADDITIONS
   =========================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 40px; }
  .hero-visual { display: none; }
  .hero-text { text-align: center; }
  .hero-text .hero-ctas { justify-content: center; }
  .hero-text .hero-trust { justify-content: center; }
  .emergency-content { flex-direction: column; text-align: center; }
  .emergency-left p { margin: 0 auto; }
}
@media (max-width: 768px) {
  .platforms-grid { gap: 4px; }
  .platform-item { padding: 8px 14px; font-size: 12px; }
  .about-visual { display: block; }
  .about-photo-badge { left: 0; right: 0; bottom: -60px; width: fit-content; margin: 0 auto; }
  .emergency-section { padding: 60px 0; }
  .btn-emergency { font-size: 18px; padding: 16px 32px; }

  /* Hero mobile */
  .hero-badge { font-size: 12px; padding: 8px 14px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; }
  .hero-ctas { gap: 12px; }
  .hero-trust { gap: 10px; font-size: 13px; }

  /* Process timeline mobile — vertical, left-aligned */
  .process-timeline { padding-left: 0; }
  .process-step { flex-direction: column; gap: 12px; }
  .step-number { width: 40px; height: 40px; font-size: 11px; flex-shrink: 0; }
  .process-timeline::before { display: none; }
  .step-content { padding: 20px; background: var(--gray-50); border-radius: var(--radius); width: 100%; }
  .step-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .step-content h3 { font-size: 16px; }
  .step-content p { font-size: 14px; }

  /* Cost grid — 1 column on small mobile */
  .cost-grid { grid-template-columns: 1fr; }
  .cost-item { padding: 28px 20px; }

  /* Sections padding */
  .symptoms-section, .services-section, .process-section, .testimonials-section,
  .about-section, .faq-section, .contact-section, .cost-section { padding: 60px 0; }

  /* Contact grid spacing */
  .contact-grid { gap: 32px; }
  .contact-info { order: 2; }
  .contact-form-wrap { order: 1; }

  /* About section photo badge needs extra bottom room for the floating badge */
  .about-section { padding-bottom: 100px !important; }

  /* Sections inner padding */
  .container { padding: 0 16px; }

  /* Section header text */
  .section-header h2 { font-size: clamp(22px, 6vw, 32px); }
  .section-header p { font-size: 14px; }

  /* Services grid */
  .service-card { padding: 28px 20px; }

  /* FAQ */
  .faq-question { font-size: 15px; padding: 18px 16px; }
  .faq-answer p { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-badge { display: none; }
  .cost-grid { grid-template-columns: 1fr; }
  .platforms-grid { flex-wrap: wrap; gap: 0; }
  .platform-item { border-right: none; border-bottom: 1px solid var(--gray-200); width: 50%; justify-content: center; }
  .platform-item:nth-last-child(-n+2) { border-bottom: none; }
  .emergency-section { padding: 48px 0; }
  .btn-emergency { width: 100%; justify-content: center; }
  .emergency-right { width: 100%; }
}
