:root {
  --primary: #0097b2;
  --primary-dark: #007a92;
  --primary-light: #00b8d9;
  --purple: #97357d;
  --orange: #ee4c4b;
  --black: #111111;
  --dark: #1a1a2e;
  --gray: #555;
  --light-gray: #f5f7f9;
  --white: #ffffff;
  --font: 'Inter', 'Segoe UI', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,151,178,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { font-size: 1.05rem; color: var(--gray); line-height: 1.75; }
a { text-decoration: none; color: inherit; }

.highlight { color: var(--primary); }
.highlight-purple { color: var(--purple); }
.highlight-orange { color: var(--orange); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,151,178,0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,151,178,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(151,53,125,0.35);
}
.btn-purple:hover {
  background: #7a2965;
  transform: translateY(-2px);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  overflow: visible !important;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav.scrolled .nav-logo-name { color: var(--black); }
.nav.scrolled .nav-logo-sub { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--primary); background: rgba(0,151,178,0.08); }
.nav-links a.active { color: var(--primary); }

.nav-cta { margin-left: 16px; }

.nav-links a {
  display: inline-flex;
  align-items: center;
}
.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  margin-left: 6px;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,151,178,0.45);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav-hamburger span { background: var(--black); }

/* ---- NAV DROPDOWN ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.nav-dropdown-toggle:hover { color: var(--primary); background: rgba(0,151,178,0.08); }
.nav.scrolled .nav-dropdown-toggle { color: var(--black); }
.nav-dropdown-arrow { font-size: 0.62rem; margin-left: 4px; opacity: 0.75; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  min-width: 215px;
  list-style: none;
  padding: 8px;
  z-index: 1100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  border-radius: 8px;
  color: var(--black) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(0,151,178,0.08) !important;
  color: var(--primary) !important;
}

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 600px; margin: 16px auto 0; font-size: 1.1rem; }

.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-primary { background: rgba(0,151,178,0.1); color: var(--primary); }
.tag-purple { background: rgba(151,53,125,0.1); color: var(--purple); }
.tag-orange { background: rgba(238,76,0,0.1); color: var(--orange); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ---- GRADIENT BG ---- */
.bg-gradient {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2a3a 50%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}
.bg-gradient::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,151,178,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.bg-gradient::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(151,53,125,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bg-light { background: var(--light-gray); }
.bg-primary { background: var(--primary); }
.bg-dark { background: var(--dark); }

/* ---- STATS ---- */
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ---- ICON BOX ---- */
.icon-box {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.icon-box-primary { background: rgba(0,151,178,0.12); }
.icon-box-purple { background: rgba(151,53,125,0.12); }
.icon-box-orange { background: rgba(238,76,0,0.12); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 0.95rem; line-height: 1.7; }
.footer-logo img { height: 40px; margin-bottom: 12px; }
.footer-heading { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---- TRUSTED BAR ---- */
.trusted-bar { background: var(--light); border-bottom: 1px solid #e8e8e8; overflow: hidden; }
.trusted { padding: 40px 0; }
.trusted p { color: var(--gray); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; margin-bottom: 28px; }
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trusted-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  margin: 0 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--gray);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1px solid #e0e0e0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.trusted-logo img { height: 28px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: var(--transition); }
.trusted-logo:hover { border-color: var(--primary); color: var(--primary); }
.trusted-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

/* ---- SERVICE HERO (split layout) ---- */
.service-hero {
  padding: 140px 0 80px;
  position: relative;
  z-index: 0;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/Hero-background-diensten.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 16px 0 20px;
  line-height: 1.15;
}
.service-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.service-hero-bullets {
  list-style: none;
  margin: 0 0 36px;
}
.service-hero-bullets li {
  color: rgba(255,255,255,0.9);
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.975rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.service-hero-bullets li:last-child { border-bottom: none; }
.service-hero-bullets li::before {
  content: '✓';
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-img-placeholder {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: 20px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-img-placeholder .placeholder-icon { font-size: 3rem; opacity: 0.5; }

@media (max-width: 900px) {
  .service-hero { padding: 120px 0 60px; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-placeholder { height: 260px; }
}

/* ---- DIVIDER ---- */
.divider {
  width: 60px; height: 4px;
  border-radius: 2px;
  background: var(--primary);
  margin: 16px 0 24px;
}
.divider-center { margin: 16px auto 24px; }

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.testimonial-text { font-size: 1.05rem; font-style: italic; color: #444; margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: white;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.85rem; color: var(--gray); }

/* ---- PROCESS ---- */
.process-item { display: flex; gap: 24px; margin-bottom: 40px; }
.process-number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.process-content h3 { margin-bottom: 8px; font-size: 1.15rem; }
.process-content p { font-size: 0.95rem; }

/* ---- RESULT CARD ---- */
.result-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.result-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.result-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}
.result-card-body { padding: 28px; }
.result-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.result-card-tag {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0,151,178,0.1);
  color: var(--primary);
}
.result-card-tag.purple { background: rgba(151,53,125,0.1); color: var(--purple); }
.result-card-tag.orange { background: rgba(238,76,0,0.1); color: var(--orange); }
.result-card-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.result-stats { display: flex; gap: 24px; margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; }
.result-stat { text-align: center; }
.result-stat .num { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.result-stat .lbl { font-size: 0.75rem; color: var(--gray); }

/* ---- CONTACT FORM ---- */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font);
  transition: var(--transition);
  background: var(--white);
  color: var(--black);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,151,178,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

/* ---- CTA SECTION ---- */
.cta-section { padding: 100px 0; text-align: center; }
.cta-inner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--primary); font-weight: 700; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ---- NAV OVERLAY (mobile) ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 997;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}
.nav-overlay.visible { display: block; }

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

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 1rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-mobile-open {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
  }
  .nav-mobile-open .nav-logo-name { color: var(--black) !important; }
  .nav-mobile-open .nav-logo-sub { color: var(--primary) !important; }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height, 80px); left: 0; right: 0;
    bottom: 0;
    background: var(--white);
    padding: 16px 24px 96px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 1px solid #eee;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-mobile-open .nav-links a { color: var(--black); padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid #f0f0f0; }
  .nav-mobile-open .nav-links li:last-child a { border-bottom: none; }
  .nav-mobile-open .nav-dropdown-toggle { color: var(--black); padding: 14px 16px; font-size: 1.05rem; width: 100%; justify-content: flex-start; border-bottom: 1px solid #f0f0f0; }
  .nav-mobile-open .nav-cta {
    display: flex;
    padding: 12px 24px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid #eee;
    z-index: 1000;
    touch-action: manipulation;
  }
  .nav-mobile-open .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-mobile-open .nav-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    background: rgba(0,151,178,0.05);
    border-radius: 8px;
    padding: 4px 0 4px 12px;
    margin: 4px 0 8px 16px;
  }
  .nav-mobile-open .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-mobile-open .nav-dropdown-menu a { padding: 10px 16px !important; font-size: 0.95rem !important; color: var(--black) !important; border-bottom: none !important; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .page-hero { padding: 120px 0 56px; }
  .page-hero p { font-size: 1.05rem; }

  .cta-inner { padding: 56px 32px; }
  .cta-section { padding: 72px 0; }

  .card { padding: 32px 24px; }

  .testimonial-card { padding: 32px 24px; }

  .process-item { gap: 16px; }
}

@media (max-width: 600px) {
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero-image { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .grid-4 { grid-template-columns: 1fr; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }

  .page-hero { padding: 100px 0 44px; }
  .service-hero { padding: 96px 0 44px; }

  .cta-inner { padding: 44px 20px; border-radius: 16px; }
  .cta-section { padding: 56px 0; }

  .btn { padding: 13px 22px; font-size: 0.95rem; white-space: normal; text-align: center; }

  .card { padding: 28px 18px; }

  .footer { padding: 56px 0 28px; }
  .footer-grid { gap: 24px; }
  .footer-bottom { font-size: 0.78rem; }

  .section-header { margin-bottom: 32px; }

  .result-stats { flex-direction: column; gap: 12px; }

  /* grid gaps: inline styles overschrijven met !important */
  .grid-2, .grid-3 { gap: 28px !important; }
}
