/* ================================
   ULTRA PREMIUM AUTO DETAILING CSS
   COMPLETE REDESIGN - Homepage
   ================================ */

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

:root {
  --primary: #e63946;
  --primary-dark: #c42532;
  --primary-light: #ff4d5a;
  --accent: #1d3557;
  --accent-light: #457b9d;
  --dark: #0a0e27;
  --light: #f8f9fa;
  --white: #ffffff;
  --chrome: #e8f0f7;
  --chrome-shine: #f5f9fc;
  --muted: #6b7280;
  --gradient-primary: linear-gradient(135deg, #e63946 0%, #c42532 100%);
  --gradient-dark: linear-gradient(135deg, #1d3557 0%, #0a0e27 100%);
  --gradient-chrome: linear-gradient(135deg, #ffffff 0%, #e8f0f7 50%, #ffffff 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.3);
  --shadow-glow-strong: 0 0 60px rgba(230, 57, 70, 0.5);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #fafbfc 0%, #f1f4f8 50%, #f8f9fa 100%);
  background-attachment: fixed;
}

/* Prevent horizontal scroll on all elements */
* {
  max-width: 100%;
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Fix for fixed elements on mobile */
@media (max-width: 768px) {
  .scroll-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
  }
  
  /* Ensure hero doesn't overflow */
  .hero::before,
  .hero::after {
    max-width: 100vw;
  }
  
  /* Fix particles container */
  .hero-particles {
    max-width: 100vw;
    overflow: hidden;
  }
}

/* ===== ULTRA HERO - Split Layout ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - var(--nav-height-scrolled));
    padding-top: var(--nav-height-scrolled);
  }
}

/* Parallax background layers */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-car.jpg') center/cover no-repeat;
  filter: brightness(0.65) contrast(1.15) saturate(1.1);
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}

/* Animated gradient meshes */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(232, 240, 247, 0.08), transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Shine particles effect */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: 
    radial-gradient(ellipse at center, transparent 30%, rgba(10, 14, 39, 0.6) 100%);
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--chrome-shine);
  border-radius: 50%;
  box-shadow: 
    0 0 8px rgba(255, 255, 255, 0.8), 
    0 0 16px rgba(232, 240, 247, 0.4);
  animation: float-particle 8s ease-in-out infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(1);
  }
}

/* Hero Container - Split Layout */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 3rem 2rem;
    min-height: calc(100vh - var(--nav-height-scrolled));
  }
}

/* Hero content - Left side */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: heroFadeIn 1.2s ease-out 0.3s forwards;
  text-align: left;
}

@media (max-width: 1024px) {
  .hero-content {
    text-align: center;
    align-items: center;
  }
}

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

/* Eyebrow text - Enhanced */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: pulse-glow 3s ease infinite;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.eyebrow-icon {
  font-size: 1.1rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
  }
}

/* Main heading with word-by-word animation */
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  margin: 0;
  color: var(--white);
  text-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(230, 57, 70, 0.5);
  letter-spacing: -3px;
  line-height: 1.1;
  position: relative;
}

.hero h1 .word {
  display: inline-block;
  opacity: 0;
  animation: wordFadeIn 0.8s ease forwards;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.5s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.7s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.9s; }
.hero h1 .word:nth-child(4) { animation-delay: 1.1s; }
.hero h1 .word:nth-child(5) { animation-delay: 1.3s; }

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

/* Highlight word - ULTRA PREMIUM SCHITTEREN EFFECT */
.hero h1 .word.highlight {
  opacity: 1 !important;
  position: relative;
  display: inline-block;
  color: var(--white);
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: wordFadeIn 0.8s ease forwards, 
             subtleShine 5s ease-in-out infinite 1.3s;
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Fallback voor browsers zonder background-clip support */
@supports not (-webkit-background-clip: text) {
  .hero h1 .word.highlight {
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    background: none;
  }
}

@keyframes subtleShine {
  0%, 100% {
    background-position: 0% 50%;
    text-shadow: 
      0 0 15px rgba(255, 255, 255, 0.5),
      0 0 30px rgba(255, 255, 255, 0.3),
      0 4px 12px rgba(0, 0, 0, 0.8);
  }
  50% {
    background-position: 100% 50%;
    text-shadow: 
      0 0 20px rgba(255, 255, 255, 0.7),
      0 0 40px rgba(255, 255, 255, 0.4),
      0 4px 12px rgba(0, 0, 0, 0.8);
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.7;
  max-width: 600px;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .hero-cta-group {
    justify-content: center;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.3rem 3rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.cta-button svg {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  vertical-align: middle;
}

.cta-button.primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-button.large {
  padding: 1.4rem 3rem;
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 24px 80px rgba(230, 57, 70, 0.7), 0 0 60px rgba(230, 57, 70, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button:hover svg {
  transform: translateX(8px) scale(1.1);
}

.cta-button:active {
  transform: translateY(-2px) scale(1.05);
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .hero-trust {
    justify-content: center;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-icon {
  width: 24px;
  height: 24px;
  background: rgba(230, 57, 70, 0.2);
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 800;
}

/* Hero Visual - Right side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroFadeIn 1.2s ease-out 0.5s forwards;
}

/* Floating stats badges - Redesigned */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
  .info-button,
  .pakket-button,
  .cta-button {
    min-height: 48px; /* Better touch target */
    touch-action: manipulation;
  }

  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero,
  section,
  .section-container {
    overflow-x: hidden;
  }

  /* Fix images on mobile */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Better spacing for mobile */
  .dienst-card,
  .pakket-card,
  .review-card {
    margin-bottom: 0;
  }
}

.stat-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: statFadeIn 0.8s ease-out forwards;
}

.stat-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-badge:hover::before {
  opacity: 1;
}

.stat-badge:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

@keyframes statFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.stat-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-badge .label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 2px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ===== Sections Modern Layout ===== */
section {
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 6rem 1.5rem;
  }
}

/* Section Fade Animation */
.section-fade {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* On mobile, reduce animation distance */
@media (max-width: 768px) {
  .section-fade {
    transform: translateY(40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* On mobile, reduce animation distance */
@media (max-width: 768px) {
  .section-fade {
    transform: translateY(40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Section Dividers */
.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(230, 57, 70, 0.2) 20%, 
    rgba(230, 57, 70, 0.4) 50%, 
    rgba(230, 57, 70, 0.2) 80%, 
    transparent 100%);
  z-index: 1;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 2rem;
  }
}

/* Section Headers - Premium */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.35);
}

.section-label {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin: 0 0 1rem;
  color: var(--dark);
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(230, 57, 70, 0.3), transparent);
}

h1 {
  color: white;
}

/* ===== Diensten Premium Cards ===== */
.diensten {
  background: linear-gradient(180deg, var(--white) 0%, #f0f4f8 40%, var(--light) 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.diensten::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.04), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(29, 53, 87, 0.03), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Diensten Grid - Premium Layout */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

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

/* Dienst Card - Complete Redesign */
.dienst-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(230, 57, 70, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
  opacity: 0;
  animation: cardFadeIn 0.8s ease-out forwards;
}

.dienst-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.dienst-card:hover::after {
  opacity: 1;
}

.dienst-card {
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dienst-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

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

.dienst-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: var(--primary);
}

/* Dienst Image Wrapper */
.dienst-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.dienst-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.dienst-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* SVG iconen */
.dienst-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.dienst-card:hover .dienst-icon {
  transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
}

/* Dienst Content */
.dienst-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.dienst-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.dienst-header h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex: 1;
  line-height: 1.2;
}

.dienst-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.2;
  font-family: 'Urbanist', sans-serif;
}

.dienst-description {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

.dienst-footer {
  margin-top: auto;
  padding-top: 1rem;
}

.info-button {
  width: 100%;
  background: var(--gradient-dark);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.2);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.info-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.info-button:hover::before {
  transform: translateX(100%);
}

.info-button svg {
  transition: transform 0.4s ease;
}

.info-button:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.5), 0 0 30px rgba(230, 57, 70, 0.3);
}

.info-button:hover svg {
  transform: translateX(5px);
}

.info-button:active {
  transform: translateY(-1px);
}

/* ===== Werkwijze Timeline Layout ===== */
.proces {
  background: linear-gradient(180deg, #eef2f6 0%, var(--white) 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.proces::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(230, 57, 70, 0.03), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.werkwijze-timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding-left: 3rem;
}

@media (max-width: 768px) {
  .werkwijze-timeline {
    padding-left: 2rem;
  }
}

/* Vertical line */
.werkwijze-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

/* Timeline items animate via JavaScript now */

.timeline-marker {
  position: absolute;
  left: -3rem;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.4);
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
}

.marker-line {
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, var(--primary), transparent);
  margin-top: -1px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(230, 57, 70, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  margin-left: 1rem;
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.timeline-content h3 {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.timeline-content p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== Pakketten Premium Layout ===== */
.pakketten {
  background: linear-gradient(180deg, var(--white) 0%, #f0f4f8 40%, var(--light) 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pakketten::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.04), transparent 45%),
    radial-gradient(circle at 70% 50%, rgba(29, 53, 87, 0.03), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.pakketten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

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

/* Pakket Card - Premium Design */
.pakket-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(230, 57, 70, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: cardFadeIn 0.8s ease-out forwards;
}

.pakket-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.pakket-card:hover::after {
  opacity: 1;
}

.pakket-card {
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pakket-card.featured {
  border-color: var(--primary);
  border-width: 3px;
  box-shadow: var(--shadow-glow);
}

.pakket-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.pakket-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pakket-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pakket-card:hover .pakket-image {
  transform: scale(1.1);
}

.pakket-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.pakket-content h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.pakket-description {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

.pakket-price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(230, 57, 70, 0.1);
}

.price-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pakket-button {
  width: 100%;
  background: var(--gradient-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.2);
  margin-top: auto;
}

.pakket-button:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.5);
}

.pakket-button svg {
  transition: transform 0.4s ease;
}

.pakket-button:hover svg {
  transform: translateX(5px);
}

.pakket-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: var(--primary);
}

/* ===== Reviews Premium Layout ===== */
.reviews {
  background: linear-gradient(180deg, #eef2f6 0%, var(--white) 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 70%, rgba(230, 57, 70, 0.03), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

/* Review Card */
.review-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  padding: 2rem;
  border: 2px solid rgba(230, 57, 70, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Review cards animate via JavaScript now */

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: var(--primary);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.author-info {
  flex: 1;
}

.author-info strong {
  display: block;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
}

.review-stars .star {
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.review-content {
  flex: 1;
}

.review-text {
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.review-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(230, 57, 70, 0.1);
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.review-link:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

.review-link svg {
  transition: transform 0.3s ease;
}

.review-link:hover svg {
  transform: translateX(5px);
}

/* ===== Modal Glassmorphism ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.open {
  display: flex;
  opacity: 1;
  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  max-width: 560px;
  width: 90%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: modalSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 80vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-content h3 {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
}

.modal-content p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== Order Button Special ===== */
.order-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.order-button {
  background: var(--gradient-dark);
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.3);
}

.order-button:hover {
  background: var(--gradient-primary);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  line-height: 1;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
  background: var(--gradient-primary);
}

.scroll-to-top:active {
  transform: translateY(-4px) scale(1.05);
}

.scroll-to-top::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.scroll-to-top:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.3rem;
  }
}

/* ===== Responsive - Mobile Optimized ===== */
@media (max-width: 1024px) {
  .hero-container {
    padding: 3rem 2rem;
  }

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

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }

  .section-container {
    padding: 0;
  }

  .hero-container {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: calc(100vh - 72px);
  }

  .hero-content {
    text-align: center;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    padding: 0.6rem 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.5rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-button {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }

  .hero-trust {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }

  .stat-badge {
    padding: 1.5rem 1.25rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-badge .number {
    font-size: 2rem;
  }

  .stat-badge .label {
    font-size: 0.85rem;
  }

  .scroll-indicator {
    bottom: 2rem;
    font-size: 0.7rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .section-label {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .section-description {
    font-size: 0.95rem;
  }

  .diensten-grid,
  .pakketten-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .dienst-card,
  .pakket-card,
  .review-card {
    animation-delay: 0.1s !important;
  }

  .dienst-image-wrapper {
    height: 200px;
  }

  .dienst-content {
    padding: 1.5rem;
  }

  .dienst-header h3 {
    font-size: 1.3rem;
  }

  .dienst-number {
    font-size: 2.5rem;
  }

  .werkwijze-timeline {
    padding-left: 1.5rem;
    margin-top: 2.5rem;
  }

  .werkwijze-timeline::before {
    left: 0.75rem;
  }

  .timeline-marker {
    left: -1.5rem;
  }

  .timeline-content {
    margin-left: 0.5rem;
    padding: 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .pakket-image-wrapper {
    height: 240px;
  }

  .pakket-content {
    padding: 1.5rem;
  }

  .pakket-content h3 {
    font-size: 1.4rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .review-text {
    font-size: 0.95rem;
    padding-left: 1.25rem;
  }

  .section-cta {
    margin-top: 3rem;
  }

  .section-cta::before {
    height: 40px;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
    max-height: 90vh;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  /* Touch-friendly improvements */
  .info-button,
  .pakket-button,
  .cta-button {
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(6, 182, 212, 0.2);
  }

  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }

  .hero,
  section,
  .section-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  /* Fix images on mobile */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .dienst-card,
  .pakket-card,
  .review-card {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  .marker-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Fix grid overflow */
  .diensten-grid,
  .pakketten-grid,
  .reviews-grid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Fix hero container */
  .hero-container {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Fix timeline */
  .werkwijze-timeline {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Ensure containers don't overflow */
  .section-container {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 1rem;
  }

  .section-container {
    padding: 0 0.5rem;
  }

  .hero-container {
    padding: 1.5rem 1rem;
    min-height: calc(100vh - 72px);
    width: 100%;
    max-width: 100vw;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 12vw, 2.5rem);
    letter-spacing: -1px;
  }

  .hero h1 .word {
    margin-right: 0.25rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-cta-group {
    width: 100%;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .cta-button.large {
    padding: 1.1rem 2rem;
    font-size: 1rem;
  }

  .hero-trust {
    width: 100%;
  }

  .trust-item {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    gap: 0.75rem;
    width: 100%;
  }

  .stat-badge {
    padding: 1.25rem 1rem;
    width: 100%;
  }

  .stat-badge .number {
    font-size: 1.75rem;
  }

  .section-header {
    padding: 0 0.5rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .section-description {
    font-size: 0.9rem;
  }

  .diensten-grid,
  .pakketten-grid,
  .reviews-grid {
    gap: 1.25rem;
    width: 100%;
  }

  .dienst-image-wrapper,
  .pakket-image-wrapper {
    height: 180px;
  }

  .dienst-content,
  .pakket-content,
  .review-card {
    padding: 1.25rem;
  }

  .werkwijze-timeline {
    padding-left: 1rem;
    width: 100%;
  }

  .timeline-marker {
    left: -1rem;
  }

  .marker-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-content {
    padding: 1.25rem;
    margin-left: 0.25rem;
    width: calc(100% - 2rem);
  }

  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.2rem;
  }

  .modal-content {
    padding: 1.5rem 1.25rem;
    width: 98%;
    margin: 1rem;
  }
}
