/* ============================================================
   VICI SANITAIR — Main Stylesheet
   ============================================================ */

/* ============================================================
   EMERGENCY BUTTON — Loodgieter Noodgeval
   ============================================================ */
.emergency-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #dc2626;
  color: white;
  text-decoration: none;
  border-radius: 60px;
  padding: 14px 22px 14px 16px;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.55);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}
.emergency-btn:hover {
  background: #b91c1c;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 44px rgba(220, 38, 38, 0.7);
}

/* Pulsing ring around the button */
.emergency-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 70px;
  border: 3px solid rgba(220, 38, 38, 0.45);
  animation: emergencyRing 1.8s ease-in-out infinite;
  pointer-events: none;
}
.emergency-btn::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 80px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  animation: emergencyRing 1.8s ease-in-out 0.4s infinite;
  pointer-events: none;
}

/* Icon wrapper with shake animation */
.emg-icon-wrap {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  animation: emergencyShake 2.5s ease-in-out infinite;
}

.emg-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.emg-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}
.emg-value {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* Blinking "LIVE" dot */
.emg-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #fbbf24;
  border-radius: 50%;
  border: 2.5px solid white;
  animation: emergencyBlink 1.1s ease-in-out infinite;
}

@keyframes emergencyRing {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes emergencyShake {
  0%, 100%       { transform: rotate(0deg); }
  10%, 30%, 50%  { transform: rotate(-18deg); }
  20%, 40%       { transform: rotate(18deg); }
  60%            { transform: rotate(0deg); }
}
@keyframes emergencyBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(0.85); }
}

/* Collapsed on very small screens into icon-only */
@media (max-width: 480px) {
  .emergency-btn {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .emg-texts { display: none; }
  .emg-icon-wrap { width: 32px; height: 32px; font-size: 16px; }
}

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

:root {
  --primary:       #0d2137;
  --primary-mid:   #1a3a5c;
  --primary-dark:  #060f1c;
  --accent:        #e8621a;
  --accent-hover:  #d4561a;
  --accent-light:  rgba(232, 98, 26, 0.12);
  --white:         #ffffff;
  --off-white:     #f7f8fc;
  --light:         #eef2f7;
  --text:          #1e293b;
  --text-mid:      #475569;
  --text-light:    #94a3b8;
  --border:        #e2e8f0;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.20);
  --radius:        12px;
  --radius-lg:     24px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6, 15, 28, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow 0.3s var(--ease);
}
header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }

.header-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 1.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 78px; gap: 2rem;
}
.logo { justify-self: start; }
.header-contact { justify-self: end; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-box {
  width: 44px; height: 44px; background: var(--accent); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: white;
  transition: transform 0.35s var(--ease); flex-shrink: 0;
}
.logo:hover .logo-box { transform: rotate(10deg) scale(1.1); }
/* Logo image (replaces logo-box) */
.logo-img { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; transition: transform 0.35s var(--ease); display: block; }
.logo-img-sm { width: 38px; height: 38px; border-radius: 8px; display: block; }
.logo:hover .logo-img { transform: rotate(6deg) scale(1.08); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: white; letter-spacing: -0.5px; }
.logo-tag  { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }

/* Nav */
nav { display: flex; align-items: center; justify-content: center; gap: 2px; }
.nav-link {
  font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.78); text-decoration: none;
  padding: 7px 13px; border-radius: 8px;
  transition: all 0.2s var(--ease); white-space: nowrap; position: relative;
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.09); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-btn {
  font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.78); text-decoration: none;
  padding: 7px 13px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
  transition: all 0.2s var(--ease); cursor: default; user-select: none;
}
.dropdown-btn .chevron { font-size: 9px; transition: transform 0.2s var(--ease); }
.has-dropdown:hover .dropdown-btn { color: white; background: rgba(255,255,255,0.09); }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white; border-radius: 18px; box-shadow: var(--shadow-lg);
  min-width: 215px; padding: 8px;
  opacity: 0; visibility: hidden; transition: all 0.25s var(--ease);
  border: 1px solid var(--border); pointer-events: none;
}
.has-dropdown:hover .dropdown-panel {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0); pointer-events: all;
}
.dropdown-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 10px;
  color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 500;
  transition: all 0.2s var(--ease); gap: 8px;
}
.dropdown-item i.arrow-icon { font-size: 10px; color: var(--text-light); }
.dropdown-item:hover { background: var(--off-white); color: var(--primary); }
.dropdown-item .item-icon { font-size: 14px; width: 18px; text-align: center; }

/* Sub-dropdown */
.has-sub { position: relative; cursor: default; }
.sub-panel {
  position: absolute; top: -8px; left: calc(100% + 8px);
  background: white; border-radius: 18px; box-shadow: var(--shadow-lg);
  min-width: 205px; padding: 8px;
  opacity: 0; visibility: hidden; transition: all 0.2s var(--ease);
  border: 1px solid var(--border);
}
.has-sub:hover .sub-panel { opacity: 1; visibility: visible; }

/* Header Contact (right side) */
.header-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 6px 6px 6px 14px;
}
.hc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 6px 10px 6px 6px;
  border-radius: 10px;
  transition: background 0.2s;
}
.hc-item:hover { background: rgba(255,255,255,0.07); }
.hc-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.hc-icon {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,98,26,0.35);
}
.hc-icon.hc-icon-mail { background: rgba(232,98,26,0.15); border: 1px solid rgba(232,98,26,0.3); color: var(--accent); box-shadow: none; }
.hc-texts { display: flex; flex-direction: column; gap: 1px; }
.hc-label { font-size: 9px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; line-height: 1; }
.hc-value { font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 700; color: white; letter-spacing: -0.3px; white-space: nowrap; line-height: 1.3; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s var(--ease); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--primary-dark); padding: 90px 2rem 2rem;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 500; padding: 12px 16px; border-radius: 10px; }
.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: white; }
.mobile-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,0.08); border: none; color: white; font-size: 20px; cursor: pointer; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.mobile-contact-links { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 8px; }
.mobile-contact-links a { font-size: 15px; color: var(--accent) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--primary-dark);
}
#hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,28,0.93) 0%, rgba(13,33,55,0.75) 55%, rgba(232,98,26,0.12) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 0 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,98,26,0.15); border: 1px solid rgba(232,98,26,0.35);
  padding: 6px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
  animation: fadeInDown 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800; color: white;
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 22px;
  animation: fadeInUp 1s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title span { color: var(--accent); /* overridden by gradient below */ }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.75;
  animation: fadeInUp 1s 0.45s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 1s 0.62s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1.2s 1.4s both;
}
.hero-scroll-label { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 2.5px; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); animation: scrollLine 2s ease-in-out infinite; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 1s 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-stat { text-align: center; }
.hero-stat strong { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; color: white; display: block; }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip { background: var(--accent); padding: 14px 0; overflow: hidden; }
.usp-track { display: flex; gap: 60px; animation: marquee 28s linear infinite; width: max-content; }
.usp-item { display: flex; align-items: center; gap: 10px; color: white; white-space: nowrap; font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 500; }
.usp-item i { font-size: 14px; opacity: 0.85; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white;
  padding: 14px 28px; border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s var(--ease); box-shadow: 0 8px 24px rgba(232,98,26,0.35);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,98,26,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: white;
  padding: 14px 28px; border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.3s var(--ease); cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent);
  padding: 13px 28px; border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border: 2px solid var(--accent);
  transition: all 0.3s var(--ease); cursor: pointer;
}
.btn-outline:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 9px; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 100px 0; overflow: hidden; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); color: var(--accent);
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -1px; line-height: 1.15;
}
.section-title span { color: var(--accent); /* overridden by gradient below */ }
.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin-top: 14px; line-height: 1.75; }
.section-title-white { color: white; }
.section-sub-white { color: rgba(255,255,255,0.6); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--primary); padding: 140px 0 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-accent {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: white; letter-spacing: -1.5px;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.58); max-width: 480px; margin: 16px auto 0; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { font-size: 10px; }

/* ============================================================
   HOME: WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image-wrap { position: relative; }
.why-image {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.why-image-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.why-image-placeholder i { font-size: 80px; color: rgba(255,255,255,0.15); }
.why-float-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); color: white;
  border-radius: 16px; padding: 20px 24px; text-align: center;
  box-shadow: 0 16px 48px rgba(232,98,26,0.4);
}
.why-float-card strong { font-family: 'Poppins', sans-serif; font-size: 38px; font-weight: 800; display: block; line-height: 1; }
.why-float-card span { font-size: 12px; font-weight: 600; opacity: 0.9; }
.why-float-card2 {
  position: absolute; top: -20px; left: -20px;
  background: white; border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.why-float-card2 i { font-size: 22px; color: var(--accent); }
.why-float-card2 strong { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.why-float-card2 span { font-size: 11px; color: var(--text-light); }
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-check {
  width: 28px; height: 28px; background: var(--accent-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 12px; flex-shrink: 0; margin-top: 2px;
}
.why-item-text strong { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); display: block; margin-bottom: 2px; }
.why-item-text p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.4s var(--ease); cursor: pointer; position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); border-color: transparent; background: white; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; background: var(--accent-light);
  border: 1.5px solid rgba(232,98,26,0.25); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 22px; margin-bottom: 20px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon { background: var(--accent); color: white; transform: rotate(-8deg) scale(1.1); border-color: var(--accent); }
.service-title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--accent); }
.service-card:hover .service-link i { transform: translateX(4px); }
.service-link i { transition: transform 0.2s; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--primary); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: white; line-height: 1; }
.stat-plus { color: var(--accent); }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 110px 0; position: relative; overflow: hidden;
}
.cta-blob1 { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: rgba(232,98,26,0.07); top: -280px; right: -200px; }
.cta-blob2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(232,98,26,0.05); bottom: -150px; left: -100px; }
.cta-inner { max-width: 780px; margin: 0 auto; padding: 0 2rem; text-align: center; position: relative; z-index: 1; }
.cta-question {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800; color: white; letter-spacing: -2.5px; line-height: 1; margin-bottom: 18px;
}
.cta-question span { color: var(--accent); }
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: 90px 0; background: var(--off-white); }
.reviews-header { text-align: center; margin-bottom: 52px; }
.reviews-slider-wrap { position: relative; }
.reviews-slider {
  display: flex; gap: 22px; overflow-x: auto; padding: 8px 0 24px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-slider::-webkit-scrollbar { display: none; }
.review-card {
  min-width: 320px; max-width: 360px; background: white; border-radius: 20px;
  padding: 28px; scroll-snap-align: start; box-shadow: var(--shadow-sm); flex-shrink: 0;
  border: 1px solid var(--border); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; display: flex; gap: 3px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar.av-orange { background: var(--accent); }
.review-avatar.av-teal { background: #0d9488; }
.review-avatar.av-purple { background: #7c3aed; }
.review-name { font-weight: 700; font-size: 14px; color: var(--text); }
.review-location { font-size: 12px; color: var(--text-light); margin-top: 1px; }
.reviews-nav { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.reviews-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.2s; }
.reviews-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #060f1c; color: rgba(255,255,255,0.55); padding: 70px 0 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 290px; margin-top: 16px; }
.footer-logo-name { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: white; }
.footer-logo-tag { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-top: 2px; margin-bottom: 12px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: white; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; }
.footer-contact-row i { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-row span { font-size: 13px; line-height: 1.5; }
.footer-contact-row a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-row a:hover { color: var(--accent); }
.footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.made-by { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; }
.made-by a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.made-by a:hover { color: var(--accent); }

/* ============================================================
   DIENSTEN PAGE
   ============================================================ */
.service-full-card {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px; margin-bottom: 28px;
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: flex-start;
  scroll-margin-top: 100px; transition: box-shadow 0.3s;
}
.service-full-card:hover { box-shadow: var(--shadow-md); }
.service-full-icon {
  width: 72px; height: 72px; background: var(--accent-light);
  border: 2px solid rgba(232,98,26,0.2); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 28px; flex-shrink: 0;
}
.service-full-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.service-full-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.service-features { display: flex; flex-wrap: wrap; gap: 10px; }
.service-feature { display: flex; align-items: center; gap: 7px; background: white; border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; font-size: 13px; font-weight: 500; color: var(--text); }
.service-feature i { color: var(--accent); font-size: 11px; }

/* Boiler sub-types */
.boiler-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.boiler-type-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center; transition: all 0.3s var(--ease); scroll-margin-top: 100px;
  text-decoration: none; display: block; color: inherit;
}
.boiler-type-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.boiler-type-icon { font-size: 32px; margin-bottom: 12px; }
.boiler-type-name { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.boiler-type-desc { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   ONDERHOUD PAGE
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; position: relative; }
.process-line { position: absolute; top: 36px; left: calc(12.5% + 12px); right: calc(12.5% + 12px); height: 2px; background: var(--border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--border);
  background: white; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--text-light); transition: all 0.4s var(--ease);
}
.process-step.highlighted .step-circle { background: var(--accent); border-color: var(--accent); color: white; box-shadow: 0 8px 28px rgba(232,98,26,0.38); }
.step-title { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-card {
  background: var(--off-white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; text-align: center;
  transition: all 0.4s var(--ease); position: relative;
}
.pricing-card.featured { background: var(--primary); border-color: var(--primary); transform: translateY(-10px); }
.pricing-card:hover:not(.featured) { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.pricing-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 10px; font-weight: 700; padding: 4px 14px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.pricing-name { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: white; }
.pricing-price-info { font-size: 13px; color: var(--text-mid); margin-bottom: 28px; }
.pricing-card.featured .pricing-price-info { color: rgba(255,255,255,0.55); }
.pricing-items { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-items li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-mid); }
.pricing-card.featured .pricing-items li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
.pricing-items li i { color: var(--accent); font-size: 12px; flex-shrink: 0; }

/* ============================================================
   REALISATIES PAGE
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  position: relative; cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: var(--primary-dark);
}
.gallery-item.hidden { display: none !important; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
/* Real photo image */
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,15,28,0.92) 0%, rgba(6,15,28,0.3) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag { display: inline-block; background: var(--accent); color: white; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; width: fit-content; }
.gallery-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.gallery-sub { font-size: 12.5px; color: rgba(255,255,255,0.65); }
/* Filter buttons */
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white; color: var(--text-mid);
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-light);
}
.filter-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: white;
}
.filter-btn.active .filter-count { opacity: 0.85; }
/* Filter count badge */
.filter-count { font-size: 11px; font-weight: 500; opacity: 0.7; }
/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 99998;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative; display: flex; align-items: center; gap: 12px;
  max-width: 94vw; max-height: 85vh;
}
.lightbox-inner img {
  max-width: 88vw; max-height: 82vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 44px; height: 44px; color: white; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev, .lightbox-next {
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 48px; height: 48px; color: white; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-caption {
  color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 12px;
  text-align: center; max-width: 500px;
}

/* Gallery always-visible info (mobile fallback) */
.gallery-info-always { padding: 14px 16px 0; display: none; }
.gallery-info-always .gallery-tag { display: inline-block; }
.gallery-info-always h3 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; margin: 6px 0 2px; }
.gallery-info-always p { font-size: 12px; color: var(--text-mid); }

/* ============================================================
   OVER MIJ PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 50%, #1a2744 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  overflow: hidden; position: relative;
}
.about-image i { font-size: 100px; color: rgba(255,255,255,0.08); }
.about-image-icon { font-size: 80px; color: rgba(255,255,255,0.06); position: absolute; bottom: -10px; right: -10px; }
.about-initials { font-family: 'Poppins', sans-serif; font-size: 96px; font-weight: 800; color: rgba(255,255,255,0.08); line-height: 1; }
.about-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: white; border-radius: 16px; padding: 18px 22px;
  text-align: center; box-shadow: 0 16px 48px rgba(232,98,26,0.4);
}
.about-float strong { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; display: block; line-height: 1; }
.about-float span { font-size: 11px; font-weight: 600; opacity: 0.9; }
.about-top { position: absolute; top: -16px; left: -16px; background: white; border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px; }
.about-top i { font-size: 18px; color: var(--accent); }
.about-top span { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); }
.skills-wrap { margin-top: 32px; }
.skill-row { margin-bottom: 18px; }
.skill-header-row { display: flex; justify-content: space-between; margin-bottom: 7px; font-size: 13px; font-weight: 600; color: var(--text); }
.skill-bar { background: var(--light); border-radius: 100px; height: 7px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #ff8c42); border-radius: 100px; width: 0; transition: width 1.3s var(--ease) 0.2s; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.value-card { background: var(--off-white); border-radius: var(--radius); padding: 24px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-name { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.value-desc { font-size: 12.5px; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--primary); border-radius: var(--radius-lg); padding: 48px; position: sticky; top: 100px; }
.contact-info-card h3 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: white; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 36px; line-height: 1.7; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
.ci-icon { width: 42px; height: 42px; background: rgba(232,98,26,0.18); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 15px; flex-shrink: 0; }
.ci-label { font-size: 10px; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; margin-bottom: 3px; }
.ci-value { font-size: 15px; color: white; font-weight: 600; }
.ci-value a { color: white; text-decoration: none; }
.ci-value a:hover { color: var(--accent); }

.quote-form-wrap { background: var(--off-white); border-radius: var(--radius-lg); padding: 48px; }
.form-heading { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-subheading { font-size: 14px; color: var(--text-mid); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: white; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,98,26,0.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { background: #dcfce7; border: 1.5px solid #16a34a; color: #15803d; border-radius: 10px; padding: 14px 20px; font-size: 14px; font-weight: 500; display: none; margin-bottom: 20px; }
.form-success.show { display: block; }
.custom-checkbox-label,
.form-group .custom-checkbox-label { display:flex !important; flex-direction:row !important; align-items:flex-start; gap:10px; cursor:pointer; user-select:none; margin-bottom:0; }
.custom-checkbox-label input[type="checkbox"] { position:absolute; opacity:0; width:0; height:0; pointer-events:none; }
.custom-checkbox { flex-shrink:0; width:20px; height:20px; min-width:20px; border:2px solid #cbd5e1; border-radius:5px; background:#fff; margin-top:1px; display:flex; align-items:center; justify-content:center; transition:all 0.2s ease; }
.custom-checkbox-label input:checked ~ .custom-checkbox { background:var(--accent); border-color:var(--accent); }
.custom-checkbox-label input:checked ~ .custom-checkbox::after { content:''; display:block; width:5px; height:9px; border:2px solid white; border-top:none; border-left:none; transform:rotate(45deg) translateY(-1px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal         { opacity: 0; transform: translateY(40px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-left    { opacity: 0; transform: translateX(-45px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-right   { opacity: 0; transform: translateX(45px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-scale   { opacity: 0; transform: scale(0.9); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn       { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp     { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown   { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse        { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.85); opacity: 0.5; } }
@keyframes scrollLine   { 0% { opacity: 1; transform-origin: top; transform: scaleY(1); } 100% { opacity: 0; transform-origin: bottom; transform: scaleY(0); } }
@keyframes marquee      { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatBubble  { 0% { transform: translateY(0) scale(1); opacity: 0.8; } 100% { transform: translateY(-110vh) scale(0.3); opacity: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .why-grid        { gap: 48px; }
  .about-grid      { gap: 48px; }
  .boiler-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .process-steps   { grid-template-columns: repeat(2, 1fr); }
  .process-line    { display: none; }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .contact-grid    { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .about-grid      { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
  .service-full-card { grid-template-columns: 1fr; }
  .boiler-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* On mobile, lateral slide animations cause horizontal overflow — use vertical instead */
  .reveal-left  { transform: translateY(30px); }
  .reveal-right { transform: translateY(30px); }
  /* Tap feedback on touch devices (replaces hover effect) */
  .service-card:active { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
  .service-card:active .service-icon { background: var(--accent); color: white; transform: rotate(-8deg) scale(1.1); border-color: var(--accent); }
  .service-card:active::after { transform: scaleX(1); }
  nav, .header-contact { display: none; }
  .hamburger       { display: flex; }
  .header-inner    { grid-template-columns: 1fr auto; }
  .section         { padding: 60px 0; }
  .section-inner   { padding: 0 1.25rem; }
  .services-grid   { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .form-row        { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr; }
  .gallery-overlay { opacity: 1; }
  .gallery-info-always { display: block; }
  .hero-actions    { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
  .hero-stats      { flex-wrap: nowrap; gap: 0; margin-top: 36px; padding-top: 28px; justify-content: space-around; }
  .hero-stat-sep   { display: none; }
  .hero-stat strong { font-size: 20px; }
  .hero-stat span  { font-size: 9px; }
  .about-float     { right: 0; bottom: -16px; }
  .about-top       { left: 0; top: -12px; }
  .values-grid     { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links    { justify-content: center; }
  .cta-question    { letter-spacing: -1.5px; }
  .boiler-grid     { grid-template-columns: 1fr; }
  .cta-section     { padding: 72px 0; }
  .reviews-section { padding: 60px 0; }
  .page-hero       { padding: 120px 0 60px; }
  .contact-grid    { gap: 32px; }
  .quote-form-wrap { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .service-full-card { padding: 24px; gap: 20px; }
  .why-float-card  { right: 8px; }
  .why-float-card2 { left: 8px; }
  .speed-grid      { grid-template-columns: 1fr !important; gap: 40px !important; }
  .speed-ring-wrap { max-width: 240px; margin: 0 auto; }
  .speed-ring-inner { width: 180px !important; height: 180px !important; }
  .speed-ring-inner .speed-time { font-size: 36px !important; }

  /* Mobile bottom bar — show, hide desktop emergency btn */
  .mobile-bottom-bar { display: grid; }
  .emergency-btn   { display: none; }
  /* Reserve space for bottom bar */
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom, 0)); }
}

/* ============================================================
   MOBILE BOTTOM NAV BAR
   ============================================================ */
.mobile-bottom-bar {
  display: none; /* shown only on mobile via media query above */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: white;
  border-top: 1.5px solid var(--border);
  box-shadow: 0 -6px 28px rgba(0,0,0,0.14);
  padding-bottom: env(safe-area-inset-bottom, 0);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
}
.mbb-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 4px 12px;
  text-decoration: none; border: none; background: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700;
  color: var(--text-mid); transition: all 0.2s; min-height: 66px;
  letter-spacing: 0.3px; text-transform: uppercase; -webkit-tap-highlight-color: transparent;
}
.mbb-item i { font-size: 20px; margin-bottom: 1px; }
.mbb-item:hover, .mbb-item:active { opacity: 0.8; }
.mbb-call {
  background: var(--accent); color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.mbb-call i { animation: emergencyShake 3s ease-in-out infinite; }
.mbb-emergency {
  background: #dc2626; color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.mbb-emergency i { font-size: 18px; }
.mbb-menu { color: var(--text); }
.mbb-offerte { color: var(--primary); }
.mbb-offerte i { color: var(--accent); }

/* ============================================================
   SPEED & RELIABILITY SECTION
   ============================================================ */
.speed-section { background: var(--off-white); overflow: hidden; }
.speed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.speed-ring-wrap { position: relative; display: flex; justify-content: center; }
.speed-ring-inner {
  width: 240px; height: 240px; border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(232,98,26,0.1), inset 0 0 40px rgba(232,98,26,0.04);
}
.speed-ring-pulse1 {
  position: absolute; inset: -18px; border-radius: 50%;
  border: 2px solid rgba(232,98,26,0.25);
  animation: emergencyRing 3s ease-in-out infinite;
}
.speed-ring-pulse2 {
  position: absolute; inset: -38px; border-radius: 50%;
  border: 1px solid rgba(232,98,26,0.12);
  animation: emergencyRing 3s ease-in-out 0.8s infinite;
}
.speed-time { font-family: 'Poppins', sans-serif; font-size: 46px; font-weight: 800; color: var(--primary); line-height: 1; }
.speed-time-label { font-size: 12px; color: var(--text-mid); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 6px; text-align: center; }
.speed-badge-float {
  position: absolute; background: white; border-radius: 12px;
  padding: 10px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 12px; font-weight: 700; color: var(--text);
}
.speed-badge-float i { color: var(--accent); font-size: 14px; }
.speed-badge-top  { top: -10px; right: -20px; }
.speed-badge-bot  { bottom: -10px; left: -20px; }
.speed-guarantee-row {
  display: flex; align-items: flex-start; gap: 14px;
  background: white; border-radius: 12px; padding: 14px 18px;
  border: 1px solid var(--border); transition: border-color 0.2s;
}
.speed-guarantee-row:hover { border-color: var(--accent); }
.speed-guarantee-icon {
  width: 42px; height: 42px; background: var(--accent); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; flex-shrink: 0;
}
.speed-guarantee-row strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 2px; }
.speed-guarantee-row p { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin: 0; }

/* Mobile speed hero badge */
.hero-speed-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px; margin-top: 20px;
  animation: fadeInUp 1s 0.62s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-speed-badge i { color: var(--accent); }

/* ============================================================
   TARIEVEN SECTION
   ============================================================ */
.tarieven-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.tarief-card {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  transition: all 0.3s var(--ease); position: relative;
}
.tarief-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tarief-card.featured { background: var(--primary); border-color: var(--primary); }
.tarief-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-light); display: flex; align-items: center;
  justify-content: center; color: var(--accent); font-size: 20px;
  margin: 0 auto 16px;
}
.tarief-card.featured .tarief-icon { background: rgba(232,98,26,0.2); color: var(--accent); }
.tarief-label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.tarief-card.featured .tarief-label { color: rgba(255,255,255,0.5); }
.tarief-name { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.tarief-card.featured .tarief-name { color: white; }
.tarief-price { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 800; color: var(--primary); line-height: 1; }
.tarief-card.featured .tarief-price { color: white; }
.tarief-price sub { font-size: 14px; font-weight: 500; }
.tarief-note { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.tarief-card.featured .tarief-note { color: rgba(255,255,255,0.5); }
.tarief-features { list-style: none; margin-top: 18px; text-align: left; }
.tarief-features li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-mid); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.tarief-card.featured .tarief-features li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.tarief-features li i { color: var(--accent); font-size: 11px; flex-shrink: 0; }
.tarief-disclaimer {
  background: var(--accent-light); border: 1px solid rgba(232,98,26,0.2);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: flex-start; gap: 12px; margin-top: 24px;
}
.tarief-disclaimer i { color: var(--accent); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.tarief-disclaimer p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.tarief-disclaimer strong { color: var(--text); }

/* ============================================================
   WERKGEBIED SECTION
   ============================================================ */
.werkgebied-section { background: var(--primary); padding: 90px 0; overflow: hidden; }
.werkgebied-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.werkgebied-visual { position: relative; }
.werkgebied-circle {
  width: 260px; height: 260px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto; position: relative;
  background: rgba(255,255,255,0.03);
}
.werkgebied-circle::before {
  content: ''; position: absolute; inset: -24px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
}
.werkgebied-circle::after {
  content: ''; position: absolute; inset: -50px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.05);
}
.wg-center { text-align: center; position: relative; z-index: 1; }
.wg-center i { font-size: 32px; color: var(--accent); margin-bottom: 8px; display: block; }
.wg-center strong { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 800; color: white; display: block; }
.wg-center span { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; }
/* City dots around the circle */
.wg-city {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 5px 12px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); white-space: nowrap;
}
.wg-city.fast { background: rgba(232,98,26,0.2); border-color: rgba(232,98,26,0.4); color: rgba(255,255,255,0.9); }

.werkgebied-cities { display: block; }
.wg-zone { margin-bottom: 24px; }
.wg-zone-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.wg-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wg-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); border-radius: 100px;
  padding: 5px 14px; font-size: 12.5px; font-weight: 500;
  transition: all 0.2s;
}
.wg-tag:hover { background: rgba(255,255,255,0.12); color: white; }
.wg-tag.home { background: rgba(232,98,26,0.25); border-color: rgba(232,98,26,0.5); color: white; font-weight: 700; }
.wg-tag i { font-size: 10px; }
.wg-radius-note { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 16px; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.55); }
.wg-radius-note i { color: var(--accent); }

/* Quick nav: not sticky on mobile, single scrollable row */
@media (max-width: 768px) {
  .diensten-quicknav { position: static !important; }
  .diensten-quicknav-inner { flex-wrap: nowrap !important; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; gap: 8px !important; }
  .diensten-quicknav-inner::-webkit-scrollbar { display: none; }
  .diensten-quicknav-inner a { padding: 6px 11px !important; font-size: 11px !important; gap: 4px !important; }
  .diensten-quicknav-inner a i { font-size: 11px !important; }
  /* Contact quick cards: 1 column on mobile */
  .contact-quick-cards { grid-template-columns: 1fr !important; }
}

/* Responsive */
@media (max-width: 768px) {
  .tarieven-grid { grid-template-columns: 1fr; }
  .werkgebied-grid { grid-template-columns: 1fr; gap: 40px; }
  .werkgebied-circle { width: 200px; height: 200px; }
  .wg-city { display: none; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section-wrap { background: var(--off-white); }
.faq-list {
  max-width: 840px;
  margin: 52px auto 0;
}
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 16px rgba(13,33,55,0.06);
  border: 1px solid #e8edf2;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.faq-item.open {
  box-shadow: 0 6px 32px rgba(13,33,55,0.12);
  border-color: rgba(232,98,26,0.25);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  gap: 18px;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s;
  font-size: 13px;
  color: var(--primary);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 26px 24px;
  border-top: 1px solid #f1f5f9;
}
.faq-item.open .faq-answer-inner { border-top-color: rgba(232,98,26,0.12); }
.faq-answer-inner p {
  color: var(--text-mid);
  line-height: 1.85;
  font-size: 15px;
  margin: 16px 0 0;
}
.faq-answer-inner strong { color: var(--primary); }
@media (max-width: 640px) {
  .faq-question { padding: 18px 18px; font-size: 0.93rem; }
  .faq-answer-inner { padding: 0 18px 18px; }
}

/* ============================================================
   OVER MIJ — USP CARDS + SAMENWERKEN BLOCK
   ============================================================ */
.usp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.usp-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 2px 20px rgba(13,33,55,0.07);
  border: 1px solid #e8edf2;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,33,55,0.12);
}
.usp-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.usp-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.usp-tip {
  font-size: 11px;
  font-weight: 700;
  background: #fef9c3;
  color: #92400e;
  border-radius: 100px;
  padding: 2px 9px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.usp-card-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
}
/* Samenwerken block */
.samenwerken-block {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--primary);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.sw-icon {
  width: 58px;
  height: 58px;
  background: rgba(232,98,26,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}
.sw-body { flex: 1; min-width: 200px; }
.sw-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin: 0 0 6px;
}
.sw-body p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.sw-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .usp-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .samenwerken-block { flex-direction: column; padding: 24px 20px; gap: 18px; }
  .sw-actions { width: 100%; }
  .sw-actions .btn-primary, .sw-actions .btn-secondary { width: 100%; justify-content: center; text-align: center; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9996;
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}
.cookie-banner.visible { display: flex; }
.cookie-banner-inner {
  position: relative;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(13,33,55,0.28);
  max-width: 520px;
  width: 100%;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookiePopIn 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes cookiePopIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text strong {
  display: block;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-banner-text strong i { color: var(--accent); margin-right: 8px; }
.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
}
.cookie-banner-text a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}
.cookie-btn-primary {
  background: var(--accent);
  color: white;
}
.cookie-btn-primary:hover { background: #d4561a; transform: translateY(-1px); }
.cookie-btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid #cbd5e1;
}
.cookie-btn-secondary:hover { border-color: var(--primary); background: #f1f5f9; }
@media (max-width: 768px) {
  .cookie-banner-inner { padding: 28px 20px 22px; border-radius: 14px; }
  .cookie-banner-text strong { font-size: 16px; }
  .cookie-banner-text p { font-size: 13px; }
  .cookie-btn { padding: 11px 16px; font-size: 13px; }
}

/* ============================================================
   LEGAL PAGES (Privacybeleid / Cookiebeleid)
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-intro {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-bottom: 48px;
}
.legal-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid #e2e8f0;
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.legal-section p {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 15px;
}
.legal-section ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-section ul li {
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.75;
  font-size: 15px;
}
.legal-info-box {
  background: var(--primary);
  color: white;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 16px 0;
}
.legal-info-box p { color: rgba(255,255,255,0.85); margin: 0; font-size: 14.5px; line-height: 1.8; }
.legal-info-box strong { color: white; }
.legal-link { color: var(--accent); text-decoration: underline; }
.legal-link:hover { color: #d4561a; }
.legal-link-accent { color: #f59e0b; text-decoration: underline; }
.legal-link-accent:hover { color: #d97706; }
.legal-subh {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 10px;
}
/* Cookie table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 6px;
  font-size: 14px;
}
.legal-table th {
  background: var(--primary);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.legal-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: var(--text);
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: #f8fafc; }
.legal-table code {
  background: #e2e8f0;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12.5px;
  color: var(--primary);
  font-family: monospace;
}
/* Cookie category badges */
.cookie-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cookie-badge.essential { background: #dcfce7; color: #166534; }
.cookie-badge.analytical { background: #dbeafe; color: #1e40af; }
/* Cookie category cards */
.cookie-category-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cookie-category-header i { font-size: 20px; }
.cookie-category-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  flex: 1;
}
.cookie-status {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cookie-status.always-on { background: #dcfce7; color: #166534; }
.cookie-status.opt-in { background: #dbeafe; color: #1e40af; }
.cookie-status.not-used { background: #f1f5f9; color: #64748b; }
.essential-header i { color: #22c55e; }
.analytical-header i { color: #3b82f6; }
.marketing-header i { color: #94a3b8; }
/* Active footer link */
.active-footer-link { color: var(--accent) !important; }
@media (max-width: 640px) {
  .legal-table th, .legal-table td { padding: 9px 11px; font-size: 13px; }
  .cookie-category-card { padding: 16px; }
}

/* ============================================================
   ANIMATIONS & MOTION DESIGN
   ============================================================ */

/* ── Page entrance ─────────────────────────────────────── */
@keyframes pageEntrance {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body { animation: pageEntrance 0.45s cubic-bezier(0.22,1,0.36,1) both; }

/* ── Animated gradient on accent spans ─────────────────── */
@keyframes gradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-title span,
.section-title span,
.cta-question span {
  background: linear-gradient(120deg, var(--accent) 0%, #f59e0b 45%, #e8621a 80%, #f59e0b 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s linear infinite;
  display: inline;
}

/* ── Scroll progress bar ───────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f59e0b, var(--accent));
  background-size: 200% auto;
  animation: gradientFlow 2.5s linear infinite;
  z-index: 10001;
  box-shadow: 0 0 10px rgba(232,98,26,0.55);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Button ripple ─────────────────────────────────────── */
@keyframes btnRipple {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(1);  opacity: 0; }
}

/* ── CTA blob float ────────────────────────────────────── */
@keyframes blobFloat {
  0%,100% { transform: translate(0, 0)    scale(1); }
  33%     { transform: translate(28px,-18px) scale(1.06); }
  66%     { transform: translate(-18px, 14px) scale(0.95); }
}
.cta-blob1 { animation: blobFloat  9s ease-in-out infinite; }
.cta-blob2 { animation: blobFloat 11s ease-in-out infinite reverse; }

/* ── Section badge pop ─────────────────────────────────── */
@keyframes badgePop {
  0%   { transform: scale(0.6) translateY(10px); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.section-badge.visible { animation: badgePop 0.55s cubic-bezier(0.34,1.56,0.64,1) both; }

/* ── Enhanced card hover glow ──────────────────────────── */
.service-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}
.service-card:hover {
  box-shadow: 0 20px 60px rgba(232,98,26,0.18), 0 4px 20px rgba(13,33,55,0.10);
}
.usp-card { will-change: transform; }
.value-card { will-change: transform; }
.tarief-card { will-change: transform; }

/* ── About image float ─────────────────────────────────── */
@keyframes gentleFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.about-image { animation: gentleFloat 5s ease-in-out infinite; }
.about-float { animation: gentleFloat 5s ease-in-out 0.8s infinite; }
.about-top   { animation: gentleFloat 5s ease-in-out 1.6s infinite; }

/* ── Speed ring pulse enhancement ──────────────────────── */
@keyframes speedRingPop {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,98,26,0); }
  50%     { box-shadow: 0 0 0 18px rgba(232,98,26,0.12); }
}
.speed-ring-inner { animation: speedRingPop 2.4s ease-in-out infinite; }

/* ── Hero badge shimmer ─────────────────────────────────── */
@keyframes badgeShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.hero-badge {
  background: linear-gradient(120deg,
    rgba(232,98,26,0.18) 0%,
    rgba(232,98,26,0.32) 40%,
    rgba(232,98,26,0.18) 80%);
  background-size: 200% auto;
  animation: fadeInDown 1s cubic-bezier(0.16,1,0.3,1) both, badgeShimmer 5s 1.2s linear infinite;
}

/* ── Nav link animated underline ───────────────────────── */
.nav-link, .dropdown-btn {
  position: relative;
}
.nav-link::after, .dropdown-btn::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after, .dropdown-btn:hover::after,
.nav-link.active::after { width: 100%; }

/* ── Reveal with blur variant ───────────────────────────── */
.reveal-blur {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), filter 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ── Stats counter bounce finish ──────────────────────────*/
@keyframes counterBounce {
  0%,100% { transform: scale(1); }
  40%     { transform: scale(1.15); }
  70%     { transform: scale(0.95); }
}
.stat-number.counted { animation: counterBounce 0.5s cubic-bezier(0.34,1.56,0.64,1); }

/* ── Floating orbs in hero background ──────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat var(--dur, 12s) ease-in-out var(--delay, 0s) infinite alternate;
  opacity: 0.06;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(var(--tx, 40px), var(--ty, -30px)) scale(1.08); }
}
