/* ============================================
   ZORGELOOS AUTOTRANSPORT — Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --green-900: #0B3D1F;
  --green-800: #0E4D27;
  --green-700: #12612F;
  --green-600: #166D35;
  --green-500: #1A7D3D;
  --green-400: #2A9D4E;
  --green-300: #4DB870;
  --green-200: #8DD4A0;
  --green-100: #C8EACF;
  --green-50: #EAF7EC;

  --orange-900: #7A3200;
  --orange-800: #9D4200;
  --orange-700: #BE5200;
  --orange-600: #D45D00;
  --orange-500: #ED6B06;
  --orange-400: #F48A3A;
  --orange-300: #F7A76A;
  --orange-200: #FACDA0;
  --orange-100: #FDE8D0;
  --orange-50: #FFF5EB;

  /* Neutrals */
  --neutral-950: #0A0A0A;
  --neutral-900: #141414;
  --neutral-800: #1E1E1E;
  --neutral-700: #2E2E2E;
  --neutral-600: #4A4A4A;
  --neutral-500: #6B6B6B;
  --neutral-400: #8C8C8C;
  --neutral-300: #B0B0B0;
  --neutral-200: #D4D4D4;
  --neutral-100: #ECECEC;
  --neutral-50: #F8F8F8;
  --white: #FFFFFF;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 50%, var(--orange-500) 100%);
  --gradient-green: linear-gradient(135deg, var(--green-800) 0%, var(--green-500) 100%);
  --gradient-orange: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-400) 100%);
  --gradient-dark: linear-gradient(180deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  --gradient-hero-overlay: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.6) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-glow-green: 0 0 30px rgba(26,125,61,0.15);
  --shadow-glow-orange: 0 0 30px rgba(237,107,6,0.15);

  /* Typography */
  --font-primary: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1320px;
  --container-padding: 1.5rem;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.15;
  color: var(--neutral-900);
}

h1 {
  font-size: var(--font-size-7xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

p {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--neutral-600);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-500);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
}

.section-title {
  margin-bottom: var(--space-6);
}

.section-description {
  font-size: var(--font-size-lg);
  max-width: 680px;
  color: var(--neutral-500);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-base);
  line-height: 1;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(237, 107, 6, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 107, 6, 0.4);
}

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

.btn-secondary {
  background: transparent;
  color: var(--orange-500);
  border-color: var(--orange-500);
}

.btn-secondary:hover {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(18, 97, 47, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 97, 47, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--green-700);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--neutral-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

/* USP Top Bar */
.usp-bar {
  background: var(--green-800);
  padding: 10px 0;
  overflow: hidden;
}

.usp-bar .container {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
}

.usp-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 500;
  white-space: nowrap;
}

.usp-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange-400);
  flex-shrink: 0;
}

/* Main Navigation */
.main-nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
  transition: all var(--transition-base);
}

.site-header.scrolled .main-nav {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--neutral-800);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-700);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  transition: right var(--transition-slow);
  padding-top: 120px;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
}

.mobile-nav-link {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--neutral-800);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--neutral-100);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--green-700);
}

.mobile-nav-cta {
  margin-top: var(--space-8);
  padding: 0 var(--space-8);
}

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

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 160px;
  padding-bottom: var(--space-24);
  max-width: 720px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-bottom: var(--space-8);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  animation: fadeInUp 0.8s ease-out;
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--font-size-xl);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 560px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.hero-stat-number .accent {
  color: var(--orange-400);
}

.hero-stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- PAGE HERO (Subpages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background-color: var(--neutral-900);
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4);
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.7) 100%);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-content .hero-label {
  justify-content: center;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-6xl);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.page-hero-content h1 .text-gradient {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-content p {
  font-size: var(--font-size-xl);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out;
}

.page-hero-breadcrumb a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.page-hero-breadcrumb a:hover {
  color: var(--orange-400);
}

.page-hero-breadcrumb svg {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.3);
}

.page-hero-breadcrumb span {
  font-size: var(--font-size-sm);
  color: var(--orange-400);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 160px 0 70px;
  }

  .page-hero-content h1 {
    font-size: var(--font-size-4xl);
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero-content h1 {
    font-size: var(--font-size-3xl);
  }
}

/* ---------- INTRO / ABOUT SECTION ---------- */
.intro-section {
  padding: var(--space-32) 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.intro-text .section-title {
  margin-bottom: var(--space-6);
}

.intro-text p {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-lg);
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin: var(--space-10) 0;
}

.intro-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.intro-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-700);
}

.intro-feature h4 {
  margin-bottom: var(--space-1);
  font-size: var(--font-size-base);
  font-weight: 700;
}

.intro-feature p {
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.intro-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.intro-image:hover img {
  transform: scale(1.03);
}

.intro-image-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-md);
}

.intro-image-badge svg {
  width: 28px;
  height: 28px;
  color: var(--orange-500);
}

.intro-image-badge span {
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--neutral-800);
}

/* ---------- DIENSTEN / SERVICES ---------- */
.diensten-section {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
}

.diensten-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.diensten-header .section-label {
  justify-content: center;
}

.diensten-header .section-description {
  margin: 0 auto;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.dienst-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.dienst-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dienst-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dienst-card:hover .dienst-card-image img {
  transform: scale(1.08);
}

.dienst-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.dienst-card:hover .dienst-card-image-overlay {
  opacity: 1;
}

.dienst-card-body {
  padding: var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dienst-card-body h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.dienst-card-body p {
  font-size: var(--font-size-sm);
  flex: 1;
  margin-bottom: var(--space-6);
}

.dienst-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--orange-500);
  transition: gap var(--transition-base);
}

.dienst-card:hover .dienst-card-link {
  gap: var(--space-3);
}

.dienst-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.dienst-card:hover .dienst-card-link svg {
  transform: translateX(4px);
}

/* ---------- WHY US / USP SECTION ---------- */
.waarom-section {
  padding: var(--space-32) 0;
  background: var(--white);
}

.waarom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.waarom-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin: var(--space-10) 0;
}

.waarom-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.waarom-item-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

.waarom-item-content h4 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-lg);
}

.waarom-item-content p {
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.waarom-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.waarom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- WERKWIJZE / PROCESS SECTION ---------- */
.werkwijze-section {
  padding: var(--space-32) 0;
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.werkwijze-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(237, 107, 6, 0.06);
  pointer-events: none;
}

.werkwijze-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.werkwijze-header .section-label {
  justify-content: center;
  color: var(--orange-300);
}

.werkwijze-header .section-label::before {
  background: var(--orange-300);
}

.werkwijze-header .section-title {
  color: var(--white);
}

.werkwijze-header .section-description {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
}

.werkwijze-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,0.15);
}

.werkwijze-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.werkwijze-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  transition: all var(--transition-base);
}

.werkwijze-step:hover .werkwijze-step-number {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(237,107,6,0.3);
}

.werkwijze-step-number span {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--white);
}

.werkwijze-step h4 {
  color: var(--white);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.werkwijze-step p {
  color: rgba(255,255,255,0.5);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.werkwijze-cta {
  text-align: center;
  margin-top: var(--space-16);
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.reviews-header .section-label {
  justify-content: center;
}

.reviews-header .section-description {
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

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

.review-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-size: 72px;
  line-height: 1;
  color: var(--green-100);
  font-family: Georgia, serif;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--orange-400);
  fill: var(--orange-400);
}

.review-text {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.review-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.review-author-info strong {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.review-author-info span {
  font-size: var(--font-size-xs);
  color: var(--neutral-400);
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  padding: var(--space-32) 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-16);
  align-items: start;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-100);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: var(--green-200);
  box-shadow: var(--shadow-glow-green);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  gap: var(--space-4);
  user-select: none;
}

.faq-question h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-toggle {
  background: var(--green-700);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--neutral-600);
  transition: color var(--transition-fast);
}

.faq-item.active .faq-toggle svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: var(--space-24) 0;
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.cta-text h2 {
  color: var(--white);
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-3);
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-lg);
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ---------- CONTACT / FORM SECTION ---------- */
.contact-section {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-700);
}

.contact-info-text h4 {
  margin-bottom: var(--space-1);
  font-size: var(--font-size-base);
}

.contact-info-text p {
  font-size: var(--font-size-sm);
}

.contact-info-text a {
  color: var(--orange-500);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-info-text a:hover {
  color: var(--orange-600);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-2xl);
}

.contact-form > p {
  margin-bottom: var(--space-8);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--neutral-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  padding: 14px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  background: var(--neutral-50);
  color: var(--neutral-800);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,125,61,0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  margin-top: var(--space-6);
}

.form-submit .btn {
  width: 100%;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--neutral-900);
  padding: var(--space-20) 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 320px;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--orange-400);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
}

.footer-contact-item a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.3);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--orange-500);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.6);
}

.footer-social a:hover svg {
  color: var(--white);
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: floatIn 0.6s ease-out 1s both;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

@keyframes floatIn {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }

/* ---------- HERO QUICK-QUOTE FORM ---------- */
.hero-quote-form {
  margin-top: var(--space-10);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  max-width: 680px;
}

.hero-quote-form-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-quote-form-label svg {
  width: 16px;
  height: 16px;
  color: var(--orange-400);
}

.hero-quote-form-inner {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
}

.hero-quote-field {
  flex: 1;
  position: relative;
}

.hero-quote-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--neutral-400);
  pointer-events: none;
  z-index: 1;
}

.hero-quote-field input {
  width: 100%;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  transition: all var(--transition-fast);
}

.hero-quote-field input::placeholder {
  color: rgba(255,255,255,0.4);
}

.hero-quote-field input:focus {
  border-color: var(--orange-400);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(237,107,6,0.15);
}

.hero-quote-submit {
  flex-shrink: 0;
}

.hero-quote-submit .btn {
  height: 100%;
  padding: 14px 28px;
  white-space: nowrap;
}

.hero-quote-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  padding: 0 var(--space-1);
}

.hero-quote-arrow svg {
  width: 20px;
  height: 20px;
}

/* ---------- WERKGEBIED SECTION ---------- */
.werkgebied-section {
  padding: var(--space-32) 0;
  background: var(--white);
  position: relative;
}

.werkgebied-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.werkgebied-header .section-label {
  justify-content: center;
}

.werkgebied-header .section-description {
  margin: 0 auto;
}

.werkgebied-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.werkgebied-card {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.werkgebied-card.werkgebied-home {
  background: var(--green-50);
  border-color: var(--green-200);
}

.werkgebied-card.werkgebied-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.werkgebied-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.werkgebied-card.werkgebied-home .werkgebied-card-icon {
  background: var(--green-700);
}

.werkgebied-card.werkgebied-home .werkgebied-card-icon svg {
  color: var(--white);
}

.werkgebied-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-700);
}

.werkgebied-card h4 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.werkgebied-card .werkgebied-badge {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-100);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.werkgebied-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.werkgebied-card ul li {
  font-size: var(--font-size-sm);
  color: var(--neutral-500);
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.werkgebied-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-400);
  flex-shrink: 0;
}

.werkgebied-card.werkgebied-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.werkgebied-card.werkgebied-wide h4 {
  color: var(--white);
  font-size: var(--font-size-2xl);
}

.werkgebied-card.werkgebied-wide p {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-6);
}

.werkgebied-card.werkgebied-wide .werkgebied-card-icon {
  background: rgba(255,255,255,0.15);
}

.werkgebied-card.werkgebied-wide .werkgebied-card-icon svg {
  color: var(--white);
}

.werkgebied-cta {
  text-align: center;
  margin-top: var(--space-12);
}

.werkgebied-cta p {
  font-size: var(--font-size-lg);
  color: var(--neutral-500);
  margin-bottom: var(--space-4);
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--neutral-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: var(--space-3) var(--space-4);
}

.mobile-sticky-cta-inner {
  display: flex;
  gap: var(--space-3);
  max-width: var(--container-max);
  margin: 0 auto;
}

.mobile-sticky-cta .btn-sticky {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--font-size-sm);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  line-height: 1;
}

.mobile-sticky-cta .btn-sticky svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-sticky-cta .btn-sticky-call {
  background: var(--white);
  color: var(--green-700);
  border: 2px solid var(--green-700);
}

.mobile-sticky-cta .btn-sticky-call:active {
  background: var(--green-50);
}

.mobile-sticky-cta .btn-sticky-offerte {
  background: var(--gradient-orange);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(237,107,6,0.3);
}

.mobile-sticky-cta .btn-sticky-offerte:active {
  opacity: 0.9;
}

/* ---------- BEDANKT PAGE ---------- */
.bedankt-section {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.bedankt-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.bedankt-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-8);
  animation: bedanktPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  position: relative;
}

.bedankt-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--green-200);
  animation: bedanktRing 1s ease-out 0.6s both;
}

.bedankt-icon svg {
  width: 48px;
  height: 48px;
  color: var(--green-600);
}

@keyframes bedanktPop {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bedanktRing {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bedankt-content h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.bedankt-content h1 .text-gradient {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bedankt-content > p {
  font-size: var(--font-size-lg);
  color: var(--neutral-500);
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.bedankt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.bedankt-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
}

.bedankt-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
}

.bedankt-step-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange-500);
}

.bedankt-step h4 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.bedankt-step p {
  font-size: var(--font-size-xs);
  color: var(--neutral-400);
  line-height: 1.5;
}

.bedankt-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  h1 { font-size: var(--font-size-5xl); }
  h2 { font-size: var(--font-size-4xl); }

  .intro-grid,
  .waarom-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .werkwijze-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }

  .werkwijze-steps::before {
    display: none;
  }

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

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

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

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

  .werkgebied-card.werkgebied-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }

  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }
  h3 { font-size: var(--font-size-2xl); }

  /* Header */
  .usp-bar .container {
    gap: var(--space-4);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 0 var(--container-padding);
  }

  .usp-bar .container::-webkit-scrollbar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding-top: 140px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .hero-stat {
    min-width: 100px;
  }

  /* Hero Quote Form */
  .hero-quote-form-inner {
    flex-direction: column;
  }

  .hero-quote-arrow {
    display: none;
  }

  .hero-quote-submit .btn {
    width: 100%;
    padding: 14px;
  }

  /* Diensten */
  .diensten-grid {
    grid-template-columns: 1fr;
  }

  /* Werkwijze */
  .werkwijze-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  /* Werkgebied */
  .werkgebied-grid {
    grid-template-columns: 1fr;
  }

  .werkgebied-card.werkgebied-wide {
    grid-column: span 1;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-text h2 {
    font-size: var(--font-size-3xl);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }

  .whatsapp-button {
    bottom: 78px;
  }

  /* Bedankt */
  .bedankt-steps {
    grid-template-columns: 1fr;
  }

  .bedankt-actions {
    flex-direction: column;
  }

  .bedankt-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: var(--font-size-3xl); }

  .hero-stat-number {
    font-size: var(--font-size-2xl);
  }

  .werkwijze-steps {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-logo img {
    height: 40px;
  }

  .whatsapp-button {
    width: 56px;
    height: 56px;
    bottom: 78px;
    right: 20px;
  }

  .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }

  .bedankt-content h1 {
    font-size: var(--font-size-3xl);
  }
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neutral-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 10000;
  padding: var(--space-5) 0;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.cookie-text {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-sm);
}

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.cookie-accept {
  background: var(--green-700);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--green-600);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.05);
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- HERO TRUST ROW ---------- */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.85);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--orange-400);
}

/* star icons in trust row */
.hero-trust-item svg[fill="currentColor"] {
  color: #F9C43A;
  width: 14px;
  height: 14px;
}

@media (max-width: 640px) {
  .hero-trust-row {
    gap: var(--space-4);
  }
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
  padding: var(--space-32) 0;
  background: var(--neutral-50);
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.reviews-header .section-label {
  display: flex;
  justify-content: center;
}

.google-rating-bar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  margin-top: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.google-rating-stars {
  display: flex;
  gap: 2px;
}

.google-rating-stars svg {
  width: 18px;
  height: 18px;
  color: #F9C43A;
}

.google-rating-score {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--neutral-900);
}

.google-rating-label {
  font-size: var(--font-size-sm);
  color: var(--neutral-500);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: #F9C43A;
}

.review-text {
  font-size: var(--font-size-base);
  color: var(--neutral-700);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--neutral-100);
  padding-top: var(--space-4);
}

.review-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--gradient-green);
  color: var(--white);
  font-size: var(--font-size-base);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--neutral-900);
}

.review-source {
  font-size: var(--font-size-xs);
  color: var(--neutral-400);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  padding: var(--space-32) 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.faq-header .section-description {
  max-width: 380px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--neutral-50);
  transition: box-shadow var(--transition-base);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--neutral-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition-fast);
}

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

.faq-question:hover {
  color: var(--green-700);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange-500);
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  border-top: 1px solid var(--neutral-100);
}

.faq-answer p {
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  line-height: 1.7;
  padding-top: var(--space-4);
}

@media (max-width: 900px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .faq-header .section-description {
    max-width: none;
  }
}

/* ---------- FAQ PAGE: CATEGORIE NAVIGATIE ---------- */
.faq-nav-section {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-100);
  padding: var(--space-6) 0;
  position: sticky;
  top: 130px;
  z-index: 100;
}

.faq-cat-nav {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.faq-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--neutral-700);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.faq-cat-btn svg {
  width: 16px;
  height: 16px;
  color: var(--orange-500);
  flex-shrink: 0;
}

.faq-cat-btn:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237,107,6,0.25);
}

.faq-cat-btn:hover svg {
  color: var(--white);
}

@media (max-width: 768px) {
  .faq-nav-section {
    position: static;
  }
  .faq-cat-nav {
    gap: var(--space-2);
  }
  .faq-cat-btn {
    padding: 8px 14px;
    font-size: var(--font-size-xs);
  }
}

/* ---------- FAQ PAGE: HOOFDINHOUD ---------- */
.faq-page-section {
  padding: var(--space-24) 0 var(--space-32);
  background: var(--neutral-50);
}

.faq-page-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.faq-category {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}

.faq-category-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 2px solid var(--neutral-100);
}

.faq-category-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(237,107,6,0.25);
}

.faq-category-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.faq-category-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-top: var(--space-1);
}

.faq-category .section-label {
  margin-bottom: var(--space-1);
}

.faq-list-items {
  list-style: none;
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-list-items li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  line-height: 1.6;
}

.faq-list-items li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--orange-500);
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .faq-category {
    padding: var(--space-8);
  }
  .faq-category-title {
    font-size: var(--font-size-2xl);
  }
  .faq-category-icon {
    width: 44px;
    height: 44px;
  }
  .faq-category-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ---------- FAQ PAGE: CONTACT SECTIE ---------- */
.faq-contact-section {
  background: var(--gradient-green);
  padding: var(--space-20) 0;
}

.faq-contact-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-10);
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  border: 1px solid rgba(255,255,255,0.12);
}

.faq-contact-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-contact-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.faq-contact-text h2 {
  font-size: var(--font-size-3xl);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.faq-contact-text p {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-size-lg);
  max-width: 520px;
}

.faq-contact-actions {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .faq-contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
  .faq-contact-icon {
    margin: 0 auto;
  }
  .faq-contact-text p {
    max-width: none;
  }
  .faq-contact-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .faq-contact-inner {
    padding: var(--space-8);
  }
  .faq-contact-text h2 {
    font-size: var(--font-size-2xl);
  }
}
