/* ============================================
   MR VENTILATIE - CLEAN AIR DESIGN SYSTEM
   Professional. Fresh. Trustworthy.
   ============================================ */

/* === TYPOGRAPHY SCALE SYSTEM === */
:root {
  /* Responsive heading sizes with clamp for fluid typography */
  --h1-size: clamp(2.25rem, 5vw, 3.5rem);
  --h2-size: clamp(1.6rem, 3vw, 2.5rem);
  --h3-size: clamp(1.2rem, 2.5vw, 1.5rem);
  --h4-size: 1.1rem;
  --body-size: 1rem;
  --small-text: 0.875rem;

  /* Typography consistency */
  --heading-weight: 700;
  --heading-line-height: 1.25;
  --body-line-height: 1.7;

  /* z-index scale */
  --z-base: 0;
  --z-above: 1;
  --z-dropdown: 10;
  --z-sticky: 90;
  --z-header: 100;
  --z-overlay: 999;
  --z-modal: 1000;
  --z-modal-content: 1001;
  --z-floating-cta: 2000;
  --z-toast: 9999;
  --z-cookie-banner: 10000;
}

/* Consistent heading styles */
h1, .h1 {
  font-size: var(--h1-size);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
}

h2, .h2 {
  font-size: var(--h2-size);
  font-weight: var(--heading-weight);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem 0;
}

h3, .h3 {
  font-size: var(--h3-size);
  font-weight: var(--heading-weight);
  line-height: 1.3;
  margin: 0 0 0.75rem 0;
}

h4, .h4 {
  font-size: var(--h4-size);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
}

/* === FLOATING AIR PARTICLES === */
.air-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.air-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: float-particle 18s infinite ease-in-out;
}
.air-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.air-particle:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 16s; }
.air-particle:nth-child(3) { left: 40%; animation-delay: 6s; animation-duration: 18s; }
.air-particle:nth-child(4) { left: 55%; animation-delay: 2s; animation-duration: 22s; }
.air-particle:nth-child(5) { left: 70%; animation-delay: 5s; animation-duration: 19s; }
.air-particle:nth-child(6) { left: 85%; animation-delay: 8s; animation-duration: 17s; }
.air-particle:nth-child(7) { left: 15%; animation-delay: 10s; animation-duration: 21s; }
.air-particle:nth-child(8) { left: 60%; animation-delay: 7s; animation-duration: 15s; }

@keyframes float-particle {
  0%, 100% {
    transform: translateY(100vh) scale(0.4);
    opacity: 0;
  }
  15% { opacity: 0.5; }
  50% {
    transform: translateY(45vh) translateX(20px) scale(0.9);
    opacity: 0.6;
  }
  85% { opacity: 0.2; }
  100% {
    transform: translateY(-15vh) translateX(-15px) scale(0.3);
    opacity: 0;
  }
}

/* === HEADER === */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover { text-decoration: none; }
.logo:hover img { transform: scale(1.03); }
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
}
.nav-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-list a:hover {
  color: var(--primary);
  background: rgba(13, 134, 247, 0.06);
  text-decoration: none;
}
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  transition: all 0.25s ease;
}

/* Invisible hover bridge - connects parent menu item to dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.has-dropdown:hover .dropdown {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
}
.dropdown li a:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.header-cta {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(13, 134, 247, 0.25);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(13, 134, 247, 0.35);
  color: white;
  text-decoration: none;
}
.phone-icon { font-size: 1rem; }
.mobile-menu-toggle { display: none; }
.site-header .mobile-menu-cta { display: none !important; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 12px rgba(13, 134, 247, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 134, 247, 0.35);
  color: white;
  text-decoration: none;
}
.btn-secondary {
  background: var(--primary-mid);
  color: white;
  box-shadow: 0 2px 12px rgba(13, 134, 247, 0.25);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 134, 247, 0.35);
  color: white;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Button focus states for accessibility */
.btn:focus-visible {
  outline: 3px dashed var(--primary);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

/* Button sizes */
.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  min-width: 200px;
}

.btn-large:hover {
  transform: translateY(-3px);
}

/* Mobile touch target compliance (WCAG 2.1 AA - 44px min) */
@media (max-width: 480px) {
  .btn {
    padding: 1rem 1.5rem;
    min-height: 44px;
  }

  .btn-large {
    width: 100%;
    min-width: unset;
  }
}

/* === HERO === */
.hero {
  background: linear-gradient(165deg, var(--primary) 0%, #0a6dc9 100%);
  color: white;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* === LOCATION PAGE HERO === */
.hero-location,
.hero-service {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, var(--primary-deepest) 100%);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-location::before,
.hero-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(13, 134, 247, 0.15) 0%, transparent 50%);
  pointer-events: none;
}


.hero-location .container,
.hero-service .container {
  position: relative;
  z-index: 2;
}

.hero-location h1,
.hero-service h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-location p,
.hero-service p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-location .btn-primary,
.hero-service .btn-primary {
  background: white;
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-location .btn-primary:hover,
.hero-service .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hero-location .btn-outline,
.hero-service .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
}

.hero-location .btn-outline:hover,
.hero-service .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* Subtle gradient mesh */
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(13, 134, 247, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* VERWIJDERD: Wave separator voor strakke horizontale lijnen
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FFFFFF' d='M0,60L80,55C160,50,320,40,480,45C640,50,800,70,960,72C1120,74,1280,58,1360,50L1440,42L1440,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}
*/

.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: white;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  opacity: 0.92;
  margin-bottom: 1.75rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.hero .btn-primary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.hero .btn-outline {
  background: rgba(13, 134, 247, 0.15);
  border: 2px solid white;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.hero .btn-outline:focus-visible {
  outline: 3px dashed white;
  outline-offset: 2px;
}
.hero-home { padding: 5.5rem 0 8rem; }

/* === PAGE HERO (SMALL) - Supporting pages === */
.page-hero-small {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-hero-small h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-hero-small h1::after {
  display: none;
}

.page-hero-small .hero-subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
  text-align: center;
}

/* === HERO VIDEO BACKGROUND === */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg,
    rgba(13, 134, 247, 0.88) 0%,
    rgba(10, 109, 201, 0.92) 100%);
  z-index: 1;
}
.hero.has-video::before,
.hero.has-video::after {
  z-index: 2;
}
.hero.has-video .container {
  z-index: 3;
}
.hero.has-video .air-particles {
  z-index: 2;
}

/* === PRICE BADGES === */
.hero-prices {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.price-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 1.15rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.price-badge:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.price-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-suffix {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.2rem;
  font-weight: 500;
}
.price-badge-accent {
  background: linear-gradient(135deg, rgba(13, 134, 247, 0.2) 0%, rgba(10, 94, 184, 0.15) 100%);
  border: 2px solid var(--primary);
}

/* === CONTENT SECTIONS - UNIFIED SPACING === */
.content-section {
  padding: 5rem 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* Desktop spacing */
@media (min-width: 769px) {
  section {
    padding: 5rem 0;
  }
}

/* Mobile spacing */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .content-section {
    padding: 3rem 0;
  }
}

/* Alternating backgrounds for visual rhythm */
/* Exclude hero sections from alternating backgrounds */
section:nth-child(even):not(.pillar-hero):not(.hero):not(.hero-home):not(.hero-location):not(.hero-service):not(.contact-hero):not(.page-hero):not(.page-hero-small):not(.cta-section):not(.pillar-cta) {
  background: var(--bg-light);
}

section:nth-child(odd):not(.pillar-hero):not(.hero):not(.hero-home):not(.hero-location):not(.hero-service):not(.contact-hero):not(.page-hero):not(.page-hero-small):not(.cta-section):not(.pillar-cta) {
  background: var(--bg);
}

/* Consistent max-width for content within sections */
section .container {
  max-width: var(--max-width);
}

/* Content wrapper for better text readability */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Centered intro/story content blocks */
[class*="-intro"],
[class*="-story"] {
  text-align: center;
}

[class*="-intro-content"],
[class*="-story-content"] {
  max-width: 800px;
  margin: 0 auto;
}


/* === USPs === */
.usps-section {
  background: white;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
  z-index: 10;
}
.usps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  justify-content: center;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}
.usp-check {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* === BENEFITS === */
.benefits-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 134, 247, 0.12),
              0 6px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(13, 134, 247, 0.15);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(13, 134, 247, 0.12) 0%, rgba(10, 94, 184, 0.08) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* === INCLUDES LIST === */
.includes-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
}
.includes-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 3rem;
  position: relative;
  font-size: 1.02rem;
  transition: all 0.2s ease;
}
.includes-list li:hover {
  padding-left: 3.2rem;
  color: var(--primary);
}
.includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 8px;
}
.includes-list li::after {
  content: "✓";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0a5eb8 50%, #084a94 100%);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric pattern overlay for depth */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Remove decorative underline in CTA */
.cta-section h2::after {
  display: none;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner p {
  font-size: 1.1rem;
  opacity: 0.92;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.cta-section .btn-primary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.cta-price {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  opacity: 0.88;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.cta-price span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* === PILLAR CTA (for pillar pages) === */
.pillar-cta {
  background: linear-gradient(165deg, var(--primary) 0%, #0a6dc9 100%);
  color: white;
  text-align: center;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.pillar-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pillar-cta h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.pillar-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar-cta .cta-price-reminder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pillar-cta .price-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.pillar-cta .price-note {
  font-size: 0.95rem;
  opacity: 0.9;
}

.pillar-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pillar-cta .btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.pillar-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.pillar-cta .cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.pillar-cta .trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* === FAQ === */
.faq-list { max-width: 800px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 134, 247, 0.2);
  box-shadow: 0 8px 24px rgba(13, 134, 247, 0.08);
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(13, 134, 247, 0.08);
}
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}
.faq-item summary:hover {
  color: var(--primary);
}
.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  transition: all 0.25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--primary);
  color: white;
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card-home, .service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  position: relative;
}
.service-card-home:hover, .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 134, 247, 0.12),
              0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(13, 134, 247, 0.15);
}

/* Service Card Images */
.service-card-image {
  display: block;
  margin: -1.75rem -1.75rem 1.5rem -1.75rem;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card-home:hover .service-card-image img,
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}
.service-card-content h3, .service-card-content h2 {
  margin-bottom: 0.5rem;
}
.service-card-home h3, .service-card h3 {
  margin-bottom: 0.5rem;
}
.service-card-home h3 a, .service-card h3 a {
  color: var(--primary);
  font-size: 1.2rem;
  transition: color 0.2s ease;
}
.service-card-home h3 a:hover, .service-card h3 a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}
.service-price {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.service-card-home p, .service-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.link-arrow {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}
.link-arrow:hover {
  gap: 0.7rem;
  text-decoration: none;
}

/* === STATS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-item {
  text-align: center;
  padding: 2.25rem 1.75rem;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 134, 247, 0.1),
              0 6px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(13, 134, 247, 0.15);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Stats grid responsive - fix for small phones */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

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

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

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

/* === CITIES GRID === */
.cities-home {
  background: var(--bg-light);
}
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.city-link {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.25s ease;
}
.city-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
}

/* === RELATED / NEARBY === */
.related-services, .nearby-cities {
  padding: 2.5rem 0;
}
.related-list, .cities-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.related-list li a, .cities-list li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  transition: all 0.25s ease;
}
.related-list li a:hover, .cities-list li a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 0.875rem 0;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.88rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumbs li::after {
  content: "/";
  color: var(--text-light);
  opacity: 0.4;
  margin-left: 0.25rem;
}
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a {
  color: var(--text-light);
  transition: color 0.2s ease;
}
.breadcrumbs a:hover { color: var(--primary); text-decoration: none; }
.breadcrumbs li:last-child span {
  color: var(--primary);
  font-weight: 600;
}

/* === FOOTER === */
.site-footer {
  background: #0f1a20;
  color: #c8d4dc;
  padding: 4rem 0 0;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
}

/* Footer grid - 6 columns on desktop */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 2.5rem;
}

.site-footer h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.6rem;
}

.site-footer a {
  color: #a8b8c4;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: white;
  text-decoration: none;
}

/* Footer brand column */
.footer-brand {
  padding-right: 1rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #a8b8c4;
  margin-bottom: 1.5rem;
}

/* Footer contact links */
.footer-contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-phone-link,
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

.footer-phone-link:hover,
.footer-email-link:hover {
  color: #3da5ff;
}

.footer-email-link {
  color: #a8b8c4;
  font-weight: 500;
}

.footer-email-link:hover {
  color: white;
}

/* Footer address */
.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  color: #8a9ca8;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Footer opening hours */
.footer-hours .opening-hours {
  padding: 0;
  margin: 0;
  background: transparent;
}

.footer-hours .opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: #a8b8c4;
  border: none;
}

.footer-hours .opening-hours li::before {
  display: none;
}

.footer-hours .opening-hours .day {
  color: #8a9ca8;
}

.footer-hours .opening-hours .time {
  color: #c8d8e4;
  font-weight: 500;
}

/* Footer trust badges */
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #8a9ca8;
}

.footer-trust .trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #6a7a84;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #6a7a84;
  font-size: 0.82rem;
}

.footer-legal a:hover {
  color: white;
}

.footer-copyright {
  margin: 0;
}

.footer-legal-info {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 100px; /* Above the lead-form-trigger button on desktop */
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 134, 247, 0.3);
  z-index: 90;
}

.back-to-top.is-visible,
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 134, 247, 0.4);
}

/* Mobile: position back-to-top above floating CTA bar */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 90px; /* Above the floating CTA bar (~70px height + padding) */
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .footer-logo img {
    height: 36px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-hours {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-legal {
    order: 2;
    gap: 1rem;
  }

  .footer-copyright {
    order: 1;
  }

  .footer-kvk {
    order: 3;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-hours {
    grid-column: auto;
  }

  .footer-hours .opening-hours li {
    font-size: 0.9rem;
  }
}

/* === SECTION HEADERS - UNIFIED STYLING === */
section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  letter-spacing: -0.02em;
}

/* Decorative underline for section h2 */
section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Section h3 - consistent styling */
section h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
}

/* Pillar section H3s - left aligned for subsections */
.pillar-section h3,
.pillar-section .content-section h3 {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* EXCEPTION: H3 directly after H2 (section sub-intro) stays centered */
.pillar-section h2 + h3 {
  text-align: center;
}

/* Pillar content: body text left-aligned for readability */
/* Exception: intro sections stay centered */
.pillar-section .content-section p {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pillar-section [class*="-intro"] p {
  text-align: center;
}

/* All paragraphs after H2 (before any H3) are intro - centered */
.pillar-section h2 + p,
.pillar-section h2 + p + p,
.pillar-section h2 + p + p + p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

/* After H3, paragraphs go back to left-aligned */
.pillar-section .content-section h3 ~ p {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Section intro text - centered under h2 (after the decorative underline) */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 1.5rem auto 2.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === SECTION CONTENT ALIGNMENT === */
/* Default: section content is centered for consistency */
section .container {
  text-align: center;
}

/* Body text in sections should be left-aligned for readability */
/* Exception: intro/story sections stay centered */
section p {
  text-align: left;
}

/* SPECIFICITY FIX: section[class*] (0-2-1) beats section p (0-2-0) */
section[class*="-intro"] p,
section[class*="-story"] p {
  text-align: center;
}

/* Headings inside centered containers should also be centered */
section[class*="-intro"] h2,
section[class*="-intro"] h3,
section[class*="-intro"] h4,
section[class*="-story"] h2,
section[class*="-story"] h3,
section[class*="-story"] h4 {
  text-align: center;
}

/* Nested centered blocks (like .about-mission inside .about-story) inherit centering */
section[class*="-intro"] [class*="-mission"],
section[class*="-story"] [class*="-mission"],
section[class*="-intro"] [class*="-mission"] h3,
section[class*="-story"] [class*="-mission"] h3,
section[class*="-intro"] [class*="-mission"] p,
section[class*="-story"] [class*="-mission"] p {
  text-align: center;
}

/* But intro paragraphs directly under headings stay centered */
section h2 + p,
section h3 + p,
.section-intro,
.section-description {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Lists stay left-aligned for scannability */
section ul,
section ol {
  text-align: left;
}

/* Cards and grid items: content centered within */
section .card,
section .stat-item,
section .service-card,
section .service-card-home,
section .testimonial-card,
section .benefit-item,
section .process-step,
section .usp-item {
  text-align: center;
}

/* But card descriptions stay left for readability */
section .card p,
section .service-card p,
section .service-card-home p,
section .benefit-item p {
  text-align: left;
}

/* Left-aligned content blocks (when needed) */
.content-left,
.content-left h2,
.content-left h3,
.content-left p {
  text-align: left;
}

.content-left h2::after {
  margin: 1rem 0 0;
}

/* === SCROLL ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1, .hero-subtitle, .hero-prices, .hero-cta {
  animation: fadeInUp 0.6s ease backwards;
}
.hero h1 { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-prices { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }

/* === TESTIMONIALS === */
/* Clean, professional testimonial cards without decorative clutter */

/* === PROCESS STEPS === */
.process-section {
  background: var(--bg-light);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.75rem;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-number {
  width: 72px;
  height: 72px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  transition: all 0.3s ease;
}
.process-step:hover .process-number {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
}
.process-step h3 {
  color: var(--text);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.process-step p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === CONTACT FORM === */
.contact-form {
  max-width: 580px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.25s ease;
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 134, 247, 0.1);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* === PILLAR NAVIGATION === */
.pillar-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.pillar-nav-list {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
}

.pillar-nav-list::-webkit-scrollbar {
  display: none;
}

.pillar-nav-list li {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pillar-nav-list li::before,
.pillar-nav-list li::after {
  content: none;
  display: none;
}

.pillar-nav-list li a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.pillar-nav-list li a:hover {
  color: var(--primary);
  text-decoration: none;
}

.pillar-nav-list li a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* === PILLAR SECTIONS === */
.pillar-section {
  padding: 5rem 0;
}

.pillar-section:nth-child(odd) {
  background: white;
}

.pillar-section:nth-child(even) {
  background: var(--bg-light);
}

.pillar-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 1rem;
}

.pillar-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
  border-radius: 2px;
}

/* Section intro paragraphs - centered (after the h2 decorative underline) */
section h2 + p,
.section-intro {
  text-align: center;
  max-width: 700px;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.pillar-section .content-section {
  max-width: 800px;
}

.pillar-section .content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.pillar-section .content-section h3 {
  font-size: 1.35rem;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* Info Card in Pillar Sections */
.pillar-section .info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.pillar-section:nth-child(even) .info-card {
  background: white;
}

/* Info cards - always left aligned */
.pillar-section .info-card {
  text-align: left;
}

.pillar-section .info-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}

.pillar-section .info-card p,
.pillar-section .info-card ul,
.pillar-section .info-card ol {
  text-align: left;
}

/* Comparison Grid in Pillar Sections */
.pillar-section .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Comparison grid responsive - consistent widths */
@media (max-width: 992px) {
  .pillar-section .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pillar-section .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-section .comparison-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.pillar-section .comparison-item:nth-child(2) {
  border-left-color: var(--primary-mid);
}

.pillar-section .comparison-item h4 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.pillar-section .comparison-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-section .comparison-item li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
}

.pillar-section .comparison-item li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Capacity List */
.capacity-list {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  list-style: none;
  margin: 1.5rem 0;
}

.capacity-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 1rem;
}

.capacity-list li:last-child {
  border-bottom: none;
}

.capacity-list li strong {
  font-weight: 600;
}

/* === ICON WRAPPERS (replacing emojis) === */
.icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-wrap svg {
  width: 24px;
  height: 24px;
  color: white;
  fill: white;
}
.icon-wrap-light {
  background: var(--bg-light);
}
.icon-wrap-light svg {
  color: var(--primary);
  fill: var(--primary);
}

/* === TOP BAR (Reviews + Secondary Nav) === */
.top-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 0.5rem 0;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Review link (left side) */
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
}

.review-link:hover {
  opacity: 0.75;
  text-decoration: none;
}

.review-rating {
  font-weight: 700;
  color: var(--text);
}

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

.review-stars .star {
  font-size: 14px;
  line-height: 1;
}

.review-stars .star-full {
  color: #F4B400;
}

.review-stars .star-half {
  color: #F4B400;
  opacity: 0.6;
}

.review-stars .star-empty {
  color: #F4B400;
  opacity: 0.25;
}

.review-count {
  color: var(--text-light);
}

/* Secondary nav (right side) */
.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.top-bar-nav a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Mobile: hide secondary nav, keep reviews */
@media (max-width: 768px) {
  .top-bar-nav {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .review-link {
    font-size: 12px;
    gap: 0.3rem;
  }

  .review-stars .star {
    font-size: 12px;
  }

  .review-count {
    display: none;
  }
}

/* ============================================
   DESIGN SYSTEM ENHANCEMENTS
   Uniforme styling voor alle pagina's
   ============================================ */

/* === ENHANCED CARD SYSTEM === */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 134, 247, 0.12),
              0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(13, 134, 247, 0.15);
}

.card:hover::before {
  opacity: 1;
}

/* === IMPROVED GRID LAYOUTS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* === ENHANCED BUTTONS === */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Focus states for accessibility */
.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* === TYPOGRAPHY ENHANCEMENTS === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--primary-mid); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-light); }

.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* === IMPROVED SHADOWS === */
.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shadow-md {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* === DIVIDERS === */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}

.divider-thick {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
  border-radius: 2px;
  width: 80px;
  margin: 2rem auto;
}

/* === BADGE SYSTEM === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--bg-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.badge-primary {
  background: var(--primary);
  color: white;
}

.badge-secondary {
  background: var(--primary-mid);
  color: white;
}

.badge-accent {
  background: var(--accent);
  color: white;
}

/* === ENHANCED HOVER ANIMATIONS === */
@keyframes pulse-subtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hover-pulse:hover {
  animation: pulse-subtle 0.6s ease-in-out;
}

/* === SPACING UTILITIES === */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* === PILLAR PAGE SPECIFIC ENHANCEMENTS === */
/* === PILLAR HERO === */
.pillar-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-deepest) 100%);
  color: white;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.pillar-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}


.pillar-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pillar-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  color: white;
  text-align: center;
}

.pillar-hero h1::after {
  display: none;
}

.pillar-hero .hero-lead {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: center;
}

.pillar-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: center;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Hero CTA layout - consistent with homepage (horizontal on desktop) */
.pillar-hero .hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.pillar-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.pillar-hero .hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.hero-price-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  text-align: center;
}

.hero-price-badge .price-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.hero-price-badge .price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
}

.hero-price-badge .price-note {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-buttons .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.hero-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.trust-item span[aria-hidden] {
  color: var(--accent);
  font-weight: bold;
}

.pillar-section {
  padding: 4.5rem 0;
}

/* Pillar h2::after margin adjustment */
.pillar-section h2::after {
  margin: 1rem auto 0;
}

/* Pillar section intro paragraphs - centered */
.pillar-section > .container > p:first-of-type,
.pillar-section .section-intro {
  text-align: center;
  max-width: 700px;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* Pillar section body content - left aligned for long-form reading */
.pillar-section .content-wrapper,
.pillar-section .info-card,
.pillar-section .comparison-grid {
  text-align: left;
}

.pillar-section-alt {
  background: var(--bg-light);
}

/* Hero price badge for pillar pages */
.hero-price-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  text-align: center;
  display: inline-block;
}

.hero-price-badge .price-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.hero-price-badge .price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-price-badge .price-note {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.35rem;
}

.hero-cta-group {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.9;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item span {
  color: var(--primary);
}

/* Hero lead text */
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* === INFO CARDS === */
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  text-align: left;
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 1.25rem;
  text-align: left; /* Cards keep left alignment */
}

/* Info card content - always left for readability */
.info-card p,
.info-card ul,
.info-card ol {
  text-align: left;
}

/* === COMPARISON GRID === */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.comparison-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}

.comparison-item h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  text-align: left; /* Card headings stay left-aligned */
}

.comparison-item ul {
  margin: 0;
  padding-left: 1.25rem;
}

.comparison-item li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* === STATS COMPARISON === */
.stats-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  min-width: 180px;
}

.stat-good {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
  border: 2px solid var(--primary);
}

.stat-bad {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 2px solid #ef4444;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.stat-good .stat-value {
  color: var(--primary);
}

.stat-bad .stat-value {
  color: #ef4444;
}

.stat-arrow {
  font-size: 2rem;
  color: var(--text-light);
  opacity: 0.5;
}

/* === SAVINGS BOX === */
.savings-box {
  background: linear-gradient(135deg, rgba(13, 134, 247, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.savings-box h4 {
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.savings-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.savings-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.savings-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

.savings-table .total-row td {
  border-bottom: none;
  padding-top: 1rem;
  font-size: 1.1rem;
}

.savings-table .total-row td:last-child {
  color: var(--primary);
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.highlight-box p {
  margin: 0;
}

.highlight-box strong {
  color: white;
}

/* === SHADOW LARGE === */
.shadow-lg {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* === WTW DIAGRAM === */
.wtw-diagram {
  margin: 1.5rem 0;
}

.wtw-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.flow-item {
  text-align: center;
  padding: 1.25rem;
  border-radius: 12px;
  min-width: 160px;
  flex: 1;
  max-width: 220px;
}

.flow-cold {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border: 2px solid #0ea5e9;
}

.flow-exchange {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid var(--accent);
}

.flow-warm {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  border: 2px solid #ec4899;
}

.flow-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.flow-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.flow-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .wtw-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-item {
    max-width: 100%;
    width: 100%;
  }

  .pillar-hero {
    padding: 3.5rem 0 5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-price-badge {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stats-comparison {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-arrow {
    transform: rotate(90deg);
  }
}

/* ============================================
   TRUST BADGES COMPONENT
   Vertrouwensbadges onder hero/boven content
   ============================================ */
.trust-badges {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.trust-badge:hover .trust-badge-icon {
  border-color: var(--primary);
  background: rgba(13, 134, 247, 0.05);
}

.trust-badge-google .trust-badge-icon {
  background: white;
  border-color: #E8EAED;
}

.trust-badge-content {
  display: flex;
  flex-direction: column;
}

.trust-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-badge-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}

.trust-badge-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.trust-badge-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.trust-badge-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* Trust badge variations */
.trust-badge-certified .trust-badge-icon {
  color: var(--primary);
}

.trust-badge-insured .trust-badge-icon {
  color: #7c3aed;
}

.trust-badge-price .trust-badge-icon {
  color: var(--accent);
}

@media (max-width: 768px) {
  .trust-badges {
    padding: 0.75rem 0;
  }

  .trust-badges-grid {
    gap: 1rem 1.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0.25rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .trust-badges-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-badge {
    flex-shrink: 0;
  }

  .trust-badge-icon {
    width: 36px;
    height: 36px;
  }

  .trust-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-badge-title {
    font-size: 0.85rem;
  }

  .trust-badge-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .trust-badge-content {
    display: none;
  }

  .trust-badges-grid {
    justify-content: center;
  }

  .trust-badge-icon {
    width: 44px;
    height: 44px;
  }

  .trust-badge-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================
   FLOATING CTA COMPONENT
   Mobile-only sticky CTA bar with safe area support
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.875rem 1rem;
  /* Add safe area padding for notched devices (iPhone X+) */
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.is-visible,
.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  /* WCAG touch target: 44px minimum */
  min-height: 44px;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  background: var(--bg-light);
  transition: all 0.2s ease;
  text-decoration: none;
  flex: 1;
  justify-content: center;
}

.floating-cta-phone:hover,
.floating-cta-phone:active {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

.floating-cta-phone svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.floating-cta-phone:hover svg,
.floating-cta-phone:active svg {
  color: white;
}

.floating-cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.floating-cta-whatsapp:hover,
.floating-cta-whatsapp:active {
  background: #1ea952;
  color: white;
  text-decoration: none;
}

.floating-cta-whatsapp svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.floating-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13, 134, 247, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex: 1;
}

.floating-cta-button:hover,
.floating-cta-button:active {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(13, 134, 247, 0.35);
}

.floating-cta-button svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Hide on desktop */
@media (min-width: 769px) {
  .floating-cta {
    display: none !important;
  }
}

/* Show on mobile/tablet */
@media (max-width: 768px) {
  .floating-cta {
    display: flex;
  }

  /* Add padding to body to account for floating CTA + safe area */
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
}

/* Small mobile: show only icons */
@media (max-width: 400px) {
  .floating-cta {
    padding: 0.75rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .floating-cta-phone span,
  .floating-cta-whatsapp span,
  .floating-cta-button span {
    display: none;
  }

  .floating-cta-phone,
  .floating-cta-whatsapp,
  .floating-cta-button {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .floating-cta-phone svg,
  .floating-cta-whatsapp svg,
  .floating-cta-button svg {
    width: 24px;
    height: 24px;
  }

  /* Center the buttons */
  .floating-cta {
    justify-content: center;
    gap: 1.5rem;
  }
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ============================================
   EXIT POPUP COMPONENT
   Exit intent popup met lead form
   ============================================ */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
}

.exit-popup.is-visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.3s ease;
}

.exit-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.exit-popup-container {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.exit-popup.is-visible .exit-popup-container {
  transform: translateY(0) scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.2s ease;
  z-index: 1;
}

.exit-popup-close:hover {
  background: var(--primary);
  color: white;
}

.exit-popup-content {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.exit-popup-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.exit-popup-content h2 {
  color: var(--text);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.exit-popup-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.exit-popup-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.75rem;
}

.exit-popup-benefit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.exit-popup-benefit svg {
  color: var(--primary);
  flex-shrink: 0;
}

.exit-popup-form {
  margin-bottom: 1.5rem;
}

.exit-popup-input-group {
  display: flex;
  gap: 0.5rem;
}

.exit-popup-input-wrapper {
  position: relative;
  flex: 1;
}

.exit-popup-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.exit-popup-input-wrapper input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.exit-popup-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 134, 247, 0.1);
}

.exit-popup-input-wrapper input::placeholder {
  color: var(--text-light);
}

.exit-popup-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(13, 134, 247, 0.25);
}

.exit-popup-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 134, 247, 0.35);
}

.exit-popup-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.exit-popup-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.exit-popup-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.exit-popup-success {
  text-align: center;
  padding: 1rem 0;
}

.exit-popup-success-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.exit-popup-success h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.exit-popup-success p {
  color: var(--text-light);
  margin: 0;
}

.exit-popup-alternative {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.exit-popup-alternative a {
  color: var(--primary);
  font-weight: 600;
}

/* Honeypot hiding */
.exit-popup-form .honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Visually hidden for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 540px) {
  .exit-popup-container {
    max-width: 100%;
    margin: 0.5rem;
    border-radius: 16px;
  }

  .exit-popup-content {
    padding: 2rem 1.5rem 1.5rem;
  }

  .exit-popup-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .exit-popup-icon svg {
    width: 36px;
    height: 36px;
  }

  .exit-popup-content h2 {
    font-size: 1.5rem;
  }

  .exit-popup-subtitle {
    font-size: 0.95rem;
  }

  .exit-popup-benefits {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .exit-popup-input-group {
    flex-direction: column;
  }

  .exit-popup-submit {
    width: 100%;
  }
}

/* ============================================
   CONTACT PAGE
   Verbeterde layout met hero en kaarten
   ============================================ */

/* === CONTACT HERO === */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}


.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: white;
}

.contact-hero h1::after {
  display: none;
}

.contact-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* === CONTACT CARDS SECTION === */
.contact-cards-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: white;
}

.contact-card:nth-child(2) .contact-card-icon {
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary-deepest) 100%);
}

.contact-card:nth-child(3) .contact-card-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.contact-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 0.75rem auto 0;
}

.contact-card a {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 1rem 0 0.5rem;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* === CONTACT CTA BANNER === */
.contact-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.contact-cta-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: white;
}

.contact-cta-banner h2::after {
  display: none;
}

.contact-cta-banner p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-cta-banner .btn {
  background: white;
  color: var(--primary);
  position: relative;
}

.contact-cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ============================================
   FRONTEND IMPROVEMENTS - PHASE 2
   Based on Task Agent Analysis (24 jan 2026)
   ============================================ */

/* === HERO ENHANCEMENTS === */
/* Improved hero text contrast and readability */
.hero h1,
.pillar-hero h1,
.hero-location h1,
.hero-service h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-subtitle,
.pillar-hero .hero-lead,
.pillar-hero p {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced price badges in hero */
.price-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.price-badge:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Price badges - pillar hero only (homepage has inline styles) */
.pillar-hero .hero-price-badge .price-amount {
  color: white;
}

/* === IMPROVED STICKY NAVIGATION === */
/* Better visual feedback for pillar nav */
.pillar-nav {
  transition: all 0.3s ease;
}

.pillar-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pillar-nav-list li a {
  position: relative;
}

.pillar-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.pillar-nav-list li a:hover::after,
.pillar-nav-list li a.active::after {
  width: 100%;
}

/* === ENHANCED CTA SECTIONS === */
/* CTA button improvements */
.cta-section .btn-primary {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Secondary button in CTA - subtle glass effect */
.cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* === IMPROVED CARD INTERACTIONS === */
/* Service card enhancements */
.service-card-home,
.service-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}

.service-card-home:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 134, 247, 0.15),
              0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Testimonial card improvements */
.testimonial-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13, 148, 136, 0.12),
              0 10px 20px rgba(0, 0, 0, 0.06);
}

/* === FAQ IMPROVEMENTS === */
/* FAQ accordion enhancements */
.faq-item {
  overflow: hidden;
}

.faq-item summary {
  background: white;
}

.faq-item[open] summary {
  background: var(--bg-light);
}

.faq-answer {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === LOCATION PAGE IMPROVEMENTS === */
/* Breadcrumb enhancements */
.breadcrumbs {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.breadcrumbs li:last-child span {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
}

/* USP badges improvements for location pages */
.usps-grid {
  position: relative;
}

.usp-item {
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.usp-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: var(--primary);
}

/* === MOBILE RESPONSIVENESS IMPROVEMENTS === */
@media (max-width: 768px) {
  /* Better hero spacing on mobile */
  .hero {
    padding: 4rem 0 5rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

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

  /* Price badges stacking */
  .hero-prices {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .price-badge {
    padding: 1rem 1.5rem;
  }

  /* CTA buttons full width */
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

  /* Section headers */
  section h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  /* Cards grid improvements */
  .services-grid,
  .testimonials-grid,
  .benefits-grid {
    gap: 1rem;
  }

  /* Pillar nav on mobile */
  .pillar-nav-list {
    gap: 0;
    padding: 0 1rem;
  }

  .pillar-nav-list li a {
    padding: 0.875rem 1rem;
    font-size: 0.85rem;
  }

  /* Process steps */
  .process-grid {
    gap: 1.25rem;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero {
    padding: 3rem 0 4rem;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  /* Trust badges */
  .trust-badges-grid {
    gap: 0.75rem;
  }

  /* Cards padding */
  .service-card-home,
  .service-card,
  .testimonial-card,
  .benefit-item {
    padding: 1.25rem;
  }

  /* CTA section */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-section h2 {
    font-size: clamp(1.3rem, 5vw, 1.75rem);
  }
}

/* === PRINT STYLES === */
@media print {
  .floating-cta,
  .exit-popup,
  .pillar-nav {
    display: none !important;
  }

  .hero,
  .pillar-hero,
  .cta-section {
    background: #f5f5f5 !important;
    color: #333 !important;
  }
}

/* === REDUCED MOTION ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .air-particle {
    animation: none !important;
  }
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid white;
  }

  .hero h1,
  .pillar-hero h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .breadcrumbs li:last-child span {
    border: 1px solid var(--primary-dark);
  }
}

/* ============================================
   FRONTEND IMPROVEMENTS - PHASE 3
   Based on 4 Task Agent Analysis (24 jan 2026)
   ============================================ */

/* === HOMEPAGE ENHANCEMENTS === */

/* Hero price badge shimmer effect */
.hero-price-badge {
  position: relative;
  overflow: hidden;
}

.hero-price-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Problem cards with icon emphasis */
.problem-card {
  position: relative;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.problem-card .icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.problem-card:hover .icon {
  transform: scale(1.1);
}

/* Before/After image container */
.before-after-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.before-after-container img {
  transition: transform 0.5s ease;
}

.before-after-container:hover img {
  transform: scale(1.02);
}

/* Stats section counter animation support */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Process timeline connector */
.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.5rem;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }
}

/* === PILLAR PAGE ENHANCEMENTS === */

/* Sticky nav scroll progress indicator */
/* Note: .pillar-nav uses position: sticky (defined earlier), no override needed */

.pillar-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
  transition: width 0.1s ease-out;
}

/* Pillar content section - scroll offset for sticky nav */
.pillar-section {
  scroll-margin-top: 120px;
}

/* Info cards with left border accent */
.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Signal cards (warning style) */
.signal-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.signal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 146, 60, 0.15);
}

.signal-card .icon {
  color: #f97316;
}

/* Stats comparison cards */
.stats-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-comparison-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.stat-comparison-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(13, 134, 247, 0.1);
}

.stat-comparison-card .value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-comparison-card .label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* === LOCATION PAGE ENHANCEMENTS === */

/* Breadcrumb location badge enhancement */
.breadcrumbs {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs li:last-child span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumbs li:last-child span::before {
  content: '📍';
  font-size: 0.875rem;
}

/* Local hero identity */
.hero-location {
  position: relative;
}

.hero-location .city-name {
  color: white;
  font-weight: 600;
}

/* Local trust signals */
.local-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.local-trust-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: center;
  color: white;
  font-size: 0.875rem;
}

/* Neighborhood pills */
.neighborhood-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.neighborhood-pill {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.375rem 0.875rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.neighborhood-pill:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Building type cards */
.building-type-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.building-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.building-type-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* === CONTACT PAGE ENHANCEMENTS === */

/* Contact card hierarchy */
.contact-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.contact-card.primary {
  border: 2px solid var(--primary);
  position: relative;
}

.contact-card.primary::before {
  content: 'Aanbevolen';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Form field enhancements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 134, 247, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Urgency badge */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  animation: pulse-urgency 2s infinite;
}

@keyframes pulse-urgency {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

/* Opening hours styling */
.opening-hours {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.25rem;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border);
}

.opening-hours-row:last-child {
  border-bottom: none;
}

.opening-hours-row .day {
  font-weight: 500;
}

.opening-hours-row .time {
  color: var(--text-muted);
}

.opening-hours-row.today {
  background: rgba(13, 134, 247, 0.1);
  margin: 0 -0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border-bottom: none;
}

.opening-hours-row.today .day,
.opening-hours-row.today .time {
  color: var(--primary);
  font-weight: 600;
}

/* === GLOBAL COMPONENT REFINEMENTS === */

/* Enhanced button states */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Loading state for buttons */
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Enhanced link hover - only for text links in content areas */
.content-link,
.pillar-section p a,
.pillar-section li a:not(.btn) {
  position: relative;
  text-decoration: none;
  color: var(--primary);
}

.content-link::after,
.pillar-section p a::after,
.pillar-section li a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.content-link:hover::after,
.pillar-section p a:hover::after,
.pillar-section li a:not(.btn):hover::after {
  width: 100%;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border) 20%,
    var(--border) 80%,
    transparent
  );
  margin: 3rem 0;
}

/* Quote block styling */
blockquote {
  position: relative;
  padding: 1.5rem 2rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  margin: 1.5rem 0;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

/* List enhancements */
.content ul:not(.nav-list):not(.footer-links) {
  list-style: none;
  padding-left: 0;
}

.content ul:not(.nav-list):not(.footer-links) li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.content ul:not(.nav-list):not(.footer-links) li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Table styling */
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content table th {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.content table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}

.content table tr:last-child td {
  border-bottom: none;
}

.content table tr:nth-child(even) {
  background: var(--bg-light);
}

/* === MOBILE PHASE 3 IMPROVEMENTS === */
@media (max-width: 768px) {
  /* Stat items mobile */
  .stat-item {
    padding: 1rem;
  }

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

  /* Contact cards mobile */
  .contact-card {
    padding: 1.5rem;
  }

  .contact-card.primary::before {
    font-size: 0.7rem;
    padding: 0.2rem 0.75rem;
  }

  /* Form groups mobile */
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Local trust grid mobile */
  .local-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .local-trust-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  /* Neighborhood pills mobile */
  .neighborhood-pill {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
  }

  /* Stats comparison mobile */
  .stats-comparison {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-comparison-card .value {
    font-size: 1.5rem;
  }
}

/* ============================================
   FRONTEND IMPROVEMENTS - PHASE 4
   Scroll Animations, Micro-interactions & Polish
   (24 jan 2026)
   ============================================ */

/* === SCROLL-TRIGGERED FADE-IN ANIMATIONS === */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from sides */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up animation */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* === ENHANCED HERO VIDEO === */
.hero.has-video {
  position: relative;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 134, 247, 0.85) 0%,
    rgba(13, 148, 136, 0.85) 100%
  );
}

/* Video overlay variaties */
.hero-video-overlay.overlay-dark {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(15, 23, 42, 0.92) 100%
  );
}

.hero-video-overlay.overlay-light {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(248, 250, 252, 0.80) 100%
  );
}

.hero-video-overlay.overlay-none {
  background: transparent;
}

/* Hero met lichte overlay heeft donkere tekst */
.hero.has-video.video-light-overlay h1,
.hero.has-video.video-light-overlay h2,
.hero.has-video.video-light-overlay p {
  color: var(--text);
}

/* Video loading state */
.hero-video-wrapper.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-video-wrapper.loaded::after {
  display: none;
}

/* Air particles floating animation */
.air-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.air-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
}

.air-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.air-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.air-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 11s; }
.air-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.air-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }
.air-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 15s; }
.air-particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 12s; }
.air-particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 14s; }

@keyframes float-particle {
  0%, 100% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: translateY(80vh) scale(1);
  }
  90% {
    opacity: 0.6;
    transform: translateY(10vh) scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

/* === SKELETON LOADING STATES === */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-light) 25%,
    #e8e8e8 50%,
    var(--bg-light) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
}

.skeleton-text:last-child {
  width: 70%;
}

.skeleton-card {
  height: 200px;
  border-radius: var(--radius);
}

.skeleton-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Note: Floating CTA styles are defined earlier in this file (around line 2875) */

/* === ENHANCED FORM INTERACTIONS === */
/* Floating labels */
.form-group.floating-label {
  position: relative;
}

.form-group.floating-label label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
  background: white;
  padding: 0 0.25rem;
}

.form-group.floating-label input:focus ~ label,
.form-group.floating-label input:not(:placeholder-shown) ~ label,
.form-group.floating-label textarea:focus ~ label,
.form-group.floating-label textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
  color: var(--primary);
}

/* Input validation states */
.form-group input.valid,
.form-group textarea.valid {
  border-color: var(--primary);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #dc2626;
}

.form-group .validation-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

.form-group .validation-icon.valid {
  color: var(--primary);
}

.form-group .validation-icon.invalid {
  color: #dc2626;
}

/* Error message styling */
.form-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-error::before {
  content: '!';
  width: 16px;
  height: 16px;
  background: #dc2626;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* === TOOLTIP SYSTEM === */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::before,
[data-tooltip]::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0.75rem;
  background: var(--text);
  color: white;
  font-size: 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  max-width: 200px;
  text-align: center;
}

[data-tooltip]::after {
  content: '';
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--text);
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
}

/* === NOTIFICATION TOAST === */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  transform: translateX(calc(100% + 2rem));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
}

.toast.visible {
  transform: translateX(0);
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  background: var(--primary);
  color: white;
}

.toast.error .toast-icon {
  background: #dc2626;
  color: white;
}

.toast.info .toast-icon {
  background: var(--primary);
  color: white;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.toast-close:hover {
  color: var(--text);
}

/* === BACK TO TOP BUTTON === */
/* Note: Main .back-to-top styles are defined earlier in this file (around line 1459) */
/* This section only contains additional responsive overrides */

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .toast {
    bottom: 5rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

/* === PROGRESS INDICATOR FOR PILLAR PAGES === */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
}

.reading-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-deepest));
  transition: width 0.1s ease-out;
}

/* === ENHANCED ACCORDION ANIMATIONS === */
details.faq-item {
  overflow: hidden;
}

details.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

details.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

details.faq-item .faq-answer {
  animation: accordion-open 0.3s ease-out;
}

@keyframes accordion-open {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

/* === SCROLL SNAP FOR GALLERY === */
.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll-item {
  flex: 0 0 280px;
  scroll-snap-align: center;
}

/* === IMAGE LAZY LOAD FADE === */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-src]) {
  opacity: 1;
}

/* Image placeholder */
.img-placeholder {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

/* === HOVER CARD TILT EFFECT === */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HIGHLIGHTED STAT COUNTER === */
.counter-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* === BADGE VARIANTS === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(13, 134, 247, 0.1);
  color: var(--primary);
}

.badge-secondary {
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.badge-warning {
  background: rgba(251, 146, 60, 0.1);
  color: #ea580c;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* === DIVIDER WITH TEXT === */
.divider-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === KEYBOARD FOCUS IMPROVEMENTS === */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* === MOBILE PHASE 4 IMPROVEMENTS === */
@media (max-width: 768px) {
  /* Disable tilt effect on touch devices */
  .tilt-card:hover {
    transform: none;
  }

  /* Simpler animations on mobile */
  .fade-in-section {
    transform: translateY(20px);
  }

  /* Toast positioning */
  .toast {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 6rem;
  }

  /* Gallery scroll hint */
  .gallery-scroll::after {
    content: '';
    flex: 0 0 1rem;
  }
}

/* === DARK MODE PREPARATION === */
/* DISABLED: Incomplete dark mode was causing light text on light backgrounds
   when user has system dark mode enabled. Uncomment entire block when full
   dark mode support is implemented.

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --bg-light: #1e293b;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --border: #334155;
  }

  body {
    background: var(--bg);
    color: var(--text);
  }
}
*/

/* ============================================
   FRONTEND IMPROVEMENTS - PHASE 5
   Final Polish, Navigation UX & Performance
   (24 jan 2026)
   ============================================ */

/* === ENHANCED DROPDOWN MENU === */
.has-dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.has-dropdown:hover > a::after {
  transform: translateY(1px) rotate(-135deg);
  opacity: 1;
}

.dropdown {
  pointer-events: none;
}

.has-dropdown:hover .dropdown {
  pointer-events: auto;
}

/* Dropdown item hover indicator */
.dropdown li a {
  position: relative;
  padding-left: 1.25rem;
}

.dropdown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--primary);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.dropdown li a:hover::before {
  height: 60%;
}

/* === MOBILE MENU ENHANCEMENTS === */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    /* Safe area support for notched devices */
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    padding-bottom: env(safe-area-inset-bottom, 2rem);
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0 1.5rem;
  }

  .nav-list > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .nav-list > li:last-child {
    border-bottom: none;
  }

  .nav-list > li > a {
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1.25rem 1rem;
    color: var(--text);
    /* WCAG touch target */
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .nav-list > li > a:hover,
  .nav-list > li > a:focus {
    background: var(--bg-light);
    color: var(--primary);
  }

  /* Dropdown arrow indicator - chevron style */
  .nav-list > li.has-dropdown > a {
    position: relative;
    padding-right: 2rem;
  }

  .nav-list > li.has-dropdown > a::after {
    content: '' !important;
    position: absolute !important;
    right: 0.75rem !important;
    top: 50% !important;
    width: 8px !important;
    height: 8px !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    border-left: none !important;
    border-top: none !important;
    background: transparent !important;
    transform: translateY(-60%) rotate(45deg) !important;
    opacity: 0.5;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-list > li.has-dropdown.open > a::after {
    transform: translateY(-40%) rotate(-135deg) !important;
    opacity: 0.7;
  }

  .nav-list > li.has-dropdown .dropdown {
    position: static;
    display: none;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin: 0.5rem 1rem;
    width: calc(100% - 2rem);
    padding: 0.5rem 0;
    list-style: none;
  }

  .nav-list > li.has-dropdown .dropdown li {
    border-bottom: none;
    width: 100%;
  }

  .nav-list > li.has-dropdown .dropdown li a {
    display: block !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-align: center !important;
    width: 100%;
  }

  .nav-list > li.has-dropdown .dropdown li a:hover {
    color: var(--primary);
    background: rgba(13, 134, 247, 0.06);
  }

  .nav-list > li.has-dropdown.open .dropdown {
    display: block;
    opacity: 1;
  }

  .header-cta {
    display: none;
  }

  /* Mobile menu CTA - show inside nav on mobile */
  .site-header .mobile-menu-cta {
    display: block !important;
    width: calc(100% - 3rem);
    margin: 2rem 1.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(13, 134, 247, 0.3);
    transition: all 0.2s ease;
  }

  .site-header .mobile-menu-cta:hover {
    background: var(--primary-dark, #0a6ed0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 134, 247, 0.4);
    color: white;
    text-decoration: none;
  }
}

/* === LINK HOVER INDICATOR === */
.nav-list > li > a {
  position: relative;
}

.nav-list > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.25s ease;
  border-radius: 1px;
}

.nav-list > li > a:hover::before {
  width: calc(100% - 2rem);
}

/* === SMOOTH PAGE TRANSITIONS === */
.page-transition-enter {
  opacity: 0;
  transform: translateY(10px);
}

.page-transition-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* === CONTENT HIGHLIGHT BOX === */
.highlight-box {
  background: linear-gradient(135deg, rgba(13, 134, 247, 0.08) 0%, rgba(13, 148, 136, 0.08) 100%);
  border: 1px solid rgba(13, 134, 247, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin: 0;
}

.highlight-box strong {
  color: var(--primary);
}

/* === COMPARISON GRID === */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.comparison-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.comparison-item h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.comparison-item ul {
  margin: 0;
  padding-left: 1.25rem;
}

.comparison-item li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* === CAPACITY LIST === */
.capacity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.capacity-list li {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  color: var(--text-light);
}

.capacity-list li strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

/* === STATS BOX (Before/After comparison) === */
.stats-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-box {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 150px;
}

.stat-box.stat-bad {
  border: 2px solid #ef4444;
}

.stat-box.stat-good {
  border: 2px solid var(--primary);
}

.stat-box .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-box.stat-bad .stat-value {
  color: #ef4444;
}

.stat-box.stat-good .stat-value {
  color: var(--primary);
}

.stat-box .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.stat-arrow {
  font-size: 2rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .stats-comparison {
    flex-direction: column;
  }

  .stat-arrow {
    transform: rotate(90deg);
  }
}

/* === SIGNAL GRID (Pillar page signals section) === */
.signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.signal-card .signal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* === SCROLL INDICATOR (Hero) === */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  opacity: 0.7;
  animation: bounce-scroll 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce-scroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* === TEXT UTILITIES === */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--primary-mid); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
/* Note: .text-center, .text-left, .text-right defined in Typography section above */

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

/* === SPACING UTILITIES === */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

/* === DISPLAY UTILITIES === */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* === VISIBILITY UTILITIES === */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
  .show-mobile-only { display: none !important; }
}

/* === SEMANTIC COLOR BACKGROUNDS === */
.bg-success-light { background: rgba(34, 197, 94, 0.1); }
.bg-warning-light { background: rgba(251, 146, 60, 0.1); }
.bg-danger-light { background: rgba(239, 68, 68, 0.1); }
.bg-info-light { background: rgba(13, 134, 247, 0.1); }

/* === BORDER UTILITIES === */
.rounded { border-radius: var(--radius); }
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }

.border { border: 1px solid var(--border); }
.border-primary { border-color: var(--primary); }
.border-secondary { border-color: var(--primary); }

/* === SHADOW UTILITIES === */
.shadow-sm { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); }
.shadow-none { box-shadow: none; }

/* === TRUNCATE TEXT === */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === ASPECT RATIO === */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-4-3 { aspect-ratio: 4 / 3; }

/* === OBJECT FIT === */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }

/* === SR ONLY (Screen reader only) === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HOMEPAGE SPECIFIC STYLES
   Extracted from index.njk for cacheability
   ============================================ */

/* Hero enhancements */
.hero-home {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}


.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-home h1 {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

/* StoryBrand empathy hook */
.hero-empathy {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  font-style: italic;
}

/* Korte tagline onder H1 */
.hero-tagline {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 600px;
  opacity: 0.95;
}

/* Prominente USP badges */
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.hero-usp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.hero-usp .usp-check {
  color: #c4b5fd;
  font-weight: 700;
  font-size: 1.1rem;
}

/* 3 stappen onder CTAs */
.hero-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  opacity: 0.9;
  font-size: 0.95rem;
}

.hero-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-step-arrow {
  opacity: 0.6;
  font-size: 0.85rem;
}

.step-num {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-prices {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.price-badge {
  background: white;
  color: var(--text);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  min-width: 140px;
}

.price-badge-accent {
  background: var(--accent);
  color: white;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
}

.price-suffix {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background: white;
  color: var(--primary);
}

.hero-cta .btn-primary:hover {
  background: var(--bg-light);
}

.hero-cta .btn-outline {
  border-color: white;
  color: white;
}

.hero-cta .btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* Problem section */
.problem-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.problem-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Problem icons - SVG based, centered */
.problem-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deepest) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.problem-icon-svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke: white;
}

.problem-item h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.problem-item p {
  margin: 0;
  color: var(--text-light);
}

.problem-stats {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  margin-top: 2rem;
}

.problem-stats p {
  margin: 0;
}

/* Section intro - extends base .section-intro from components.css */
.section-intro {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1.5rem auto 2rem;
}

/* Why section */
.why-section {
  padding: 4rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.why-content h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-content p {
  margin: 0;
  color: var(--text-light);
}

/* Risk reversals */
.risk-reversals {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
}

.risk-reversals h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reversals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.reversal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

/* Risk reversal badge icons */
.reversal-icon-badge {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.reversal-icon-badge svg {
  width: 20px;
  height: 20px;
}

/* Stats section */
.stats-section {
  padding: 4rem 0;
  background: var(--primary);
  color: white;
}

.stats-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item-large {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* FAQ home section */
.faq-section-home {
  padding: 4rem 0;
  background: var(--bg-light);
}

.faq-section-home .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-more {
  text-align: center;
  margin-top: 2rem;
}

/* Cities section */
.cities-home {
  padding: 4rem 0;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.city-link {
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.city-link:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

.cities-more {
  text-align: center;
}

/* Service benefits mini */
.service-benefits-mini {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.service-benefits-mini li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--text-light);
}

.service-benefits-mini li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Button enhancements */
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* === EDUCATIEVE SECTIE === */
.education-section {
  background: white;
}

.education-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.education-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.education-block {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.education-block h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.education-block p {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.education-block ul {
  margin: 0;
  padding-left: 1.25rem;
}

.education-block li {
  margin-bottom: 0.35rem;
}

.education-cta {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.education-cta p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.education-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Education CTA Section standalone */
.education-cta-section {
  padding: 3rem 0;
  background: var(--bg-light);
}

/* === GALLERY SECTION === */
.gallery-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.gallery-item-after {
  border: 3px solid var(--primary);
}

.gallery-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-image-wrap img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-label-voor {
  background: #ef4444;
  color: white;
}

.gallery-label-na {
  background: var(--primary);
  color: white;
}

.gallery-caption {
  padding: 1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

.gallery-cta {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-cta p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  text-align: center;
}

/* === SIGNALS SECTION === */
.signals-section {
  padding: 4rem 0;
  background: white;
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.signal-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.signal-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.signal-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.signal-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.signal-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.signals-stat {
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
}

.signals-stat p {
  margin: 0;
  font-size: 1.05rem;
}

/* === BENEFITS SECTION === */
.benefits-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.benefits-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-column {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-light);
}

.benefit-header svg {
  color: var(--primary);
}

.benefit-header h3 {
  margin: 0;
  color: var(--primary);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 0.95rem;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

/* === DIY SECTION === */
.diy-section {
  padding: 4rem 0;
  background: white;
}

.diy-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.diy-column {
  padding: 2rem;
  border-radius: var(--radius);
}

.diy-self {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
}

.diy-pro {
  background: linear-gradient(135deg, rgba(13,134,247,0.05) 0%, rgba(124,58,237,0.05) 100%);
  border-left: 4px solid var(--primary);
}

.diy-column h3 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.diy-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diy-column li {
  margin-bottom: 1.25rem;
}

.diy-column li strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.diy-column li span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.diy-conclusion {
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
}

.diy-conclusion p {
  margin: 0;
}

/* === PROCESS DETAIL SECTION === */
.process-detail-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.process-video-wrapper {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.process-video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: #000;
}

.process-video-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.process-steps-detailed {
  max-width: 700px;
  margin: 0 auto;
}

.process-step-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-step-detail:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  bottom: -16px;
  width: 2px;
  background: var(--primary);
  opacity: 0.3;
}

.process-step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-display);
}

.process-step-content h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
}

.process-step-content p {
  margin: 0;
  color: var(--text-light);
}

/* === FREQUENCY SECTION === */
.frequency-section {
  padding: 4rem 0;
  background: white;
}

.frequency-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.frequency-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.frequency-table th,
.frequency-table td {
  padding: 1rem 1.25rem;
  text-align: left;
}

.frequency-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.frequency-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.frequency-table tbody tr:hover {
  background: rgba(13,134,247,0.05);
}

.frequency-note {
  background: var(--bg-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.frequency-note p {
  margin: 0;
}

/* === GENERAL TABLE STYLING === */
.pillar-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pillar-section table thead {
  background: var(--primary);
  color: white;
}

.pillar-section table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.pillar-section table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.pillar-section table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.pillar-section table tbody tr:last-child td {
  border-bottom: none;
}

.pillar-section table tbody tr:hover {
  background: rgba(13,134,247,0.05);
}

/* Highlight row for own company in comparison tables */
.pillar-section table .highlight-row {
  background: linear-gradient(90deg, rgba(13, 134, 247, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
}

.pillar-section table .highlight-row td {
  font-weight: 600;
  color: var(--primary);
}

/* Table responsive */
@media (max-width: 600px) {
  .pillar-section table {
    font-size: 0.9rem;
  }

  .pillar-section table th,
  .pillar-section table td {
    padding: 0.75rem 0.875rem;
  }
}

/* === HOMEPAGE RESPONSIVE === */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .benefits-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-home {
    padding: 3rem 0 4rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-usps {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-usp {
    font-size: 0.9rem;
  }

  .hero-steps {
    justify-content: center;
    gap: 0.5rem;
  }

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

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

  .price-badge {
    width: 100%;
  }

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

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

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

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

  .education-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .signals-grid {
    grid-template-columns: 1fr;
  }

  .diy-comparison {
    grid-template-columns: 1fr;
  }

  .process-step-detail {
    flex-direction: column;
    text-align: center;
  }

  .process-step-num {
    margin: 0 auto;
  }

  .process-step-detail::after {
    display: none;
  }
}

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

/* ============================================
   PROCESS STEPS COMPONENT
   Extracted from process-steps.njk
   ============================================ */

.process-section {
  padding: 4rem 0;
  background: white;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.process-section .section-intro {
  text-align: center;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--text);
}

.step-content p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.5;
}

.step-connector {
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: calc(100% - 48px);
  background: linear-gradient(to bottom, var(--primary), var(--border));
  z-index: 1;
}

.process-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Alternative horizontal layout for larger screens */
@media (min-width: 1024px) {
  .process-steps.horizontal {
    flex-direction: row;
    gap: 0;
    max-width: 100%;
  }

  .process-steps.horizontal .process-step {
    flex-direction: column;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    padding-bottom: 0;
  }

  .process-steps.horizontal .step-number {
    margin: 0 auto 1rem auto;
  }

  .process-steps.horizontal .step-content {
    padding-top: 0;
  }

  .process-steps.horizontal .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 3rem 0;
  }

  .process-step {
    gap: 1rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.1rem;
  }

  .step-connector {
    left: 19px;
    top: 40px;
    height: calc(100% - 40px);
  }

  .process-cta {
    flex-direction: column;
    align-items: center;
  }

  .process-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   CONTACT FORM COMPONENT
   Extracted from contact-form.njk
   ============================================ */

.contact-form-section {
  padding: 4rem 0;
  background: white;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-content h2 {
  margin-bottom: 1rem;
}

.contact-form-content > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-phone {
  background: rgba(13, 134, 247, 0.1);
  color: var(--text);
}

.contact-phone:hover {
  background: var(--primary);
  color: white;
}

.contact-whatsapp {
  background: #e8f8e8;
  color: var(--text);
}

.contact-whatsapp:hover {
  background: #25D366;
  color: white;
}

.contact-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  text-align: center;
}

.contact-label {
  font-weight: 600;
}

.contact-value {
  margin-left: auto;
  font-weight: 500;
}

/* Contact Form Styles */
.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.required {
  color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 134, 247, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.form-checkbox a {
  color: var(--primary);
}

.contact-form .btn-large {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn-large:hover .btn-arrow {
  transform: translateX(4px);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Tablet breakpoint - switch to single column earlier for better UX */
@media (max-width: 992px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .contact-form-section {
    padding: 3rem 0;
  }
}

/* ============================================
   TESTIMONIALS COMPONENT
   Clean, professional design - no decorative clutter
   ============================================ */

.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.testimonials-section .section-intro {
  text-align: center;
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Header with rating */
.testimonial-header {
  margin-bottom: 1rem;
}

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

.testimonial-rating .star {
  color: #f59e0b;
  width: 18px;
  height: 18px;
}

/* Quote text - clean, no extra styling */
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
}

/* Footer with author info */
.testimonial-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.testimonial-location {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonial-location::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--border);
}

.testimonial-service {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .testimonials-section {
    padding: 3.5rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* === TESTIMONIAL FEATURED VARIANT ===
   Large, centered single testimonial for emphasis
   ============================================ */

.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-featured .testimonial-header {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.testimonial-featured .testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.testimonial-featured .testimonial-footer {
  justify-content: center;
  border-top: none;
  padding-top: 0;
}

.testimonial-featured .testimonial-location::before {
  display: none;
}

.testimonial-featured .testimonial-location {
  display: block;
  margin-top: 0.25rem;
}

/* === TESTIMONIAL INLINE VARIANT ===
   Inline block quote style for within content
   ============================================ */

.testimonial-inline {
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.testimonial-inline .testimonial-quote {
  font-style: italic;
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-inline .testimonial-footer {
  border-top: none;
  padding-top: 0;
}

.testimonial-inline .testimonial-author {
  color: var(--text-muted);
  font-weight: 500;
}

.testimonial-inline .testimonial-location::before {
  display: none;
}

.testimonial-inline .testimonial-location {
  color: var(--text-muted);
  font-size: 0.85rem;
}
