/* ============================================================
 * WASSERIJ BUIS, style.css
 * "Stoom & Beweging" Design System
 * Palette: Deep navy #0e1f3b, Electric aqua #2fa8cc, Cream #f7f4ef
 * Fonts: Syne (display) + DM Sans (body) + Playfair Display (italic accent)
 * ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #f7f4ef;
  color: #0e1f3b;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CSS Variables ── */
:root {
  --navy: #0e1f3b;
  --navy-mid: #162d52;
  --electric: #2fa8cc;
  --electric-bright: #4dc4e6;
  --cream: #f7f4ef;
  --white: #ffffff;
  --slate: #5a6e8a;
  --border: #dde3ec;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ── Reveal Animations ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}

/* ── Float animation ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float { animation: float 4s ease-in-out infinite; }

/* ── Spin slow ── */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin-slow { animation: spin-slow 20s linear infinite; }

/* ── Marquee ── */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Tag / Badge ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 168, 204, 0.4);
  color: var(--electric);
  background: rgba(47, 168, 204, 0.08);
  margin-bottom: 1.25rem;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric);
  display: inline-block;
}
.tag-dark {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

/* ── Buttons ── */
.btn-electric {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--electric);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.2s var(--ease-out);
  box-shadow: 0 8px 30px rgba(47,168,204,0.35);
  cursor: pointer;
}
.btn-electric:hover { background: #4dc4e6; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(47,168,204,0.5); }
.btn-electric:active { transform: scale(0.97); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--navy);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
}
.btn-primary:hover { background: var(--electric); transform: translateY(-2px); }
.btn-primary:active { transform: scale(0.97); }
.btn-full { width: 100%; justify-content: center; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(255,255,255,0.35);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-white:active { transform: scale(0.97); }

/* ── Typography helpers ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--navy);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
}
.section-title-white {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
}
.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--electric);
}
.italic-accent-electric {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--electric);
}

/* ── Bedrijfsvideo sectie ───────────────────── */
.video-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: var(--navy);
  overflow: hidden;
}

.video-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.video-intro {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}
.video-frame {
  position: relative;
  border: 1px solid rgba(47,168,204,0.25);
  background: #0b1c30;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.video-frame::after {
  content: '';
  position: absolute;
  top: 14px; right: -14px; bottom: -14px; left: 14px;
  border: 1px solid rgba(47,168,204,0.18);
  pointer-events: none;
  z-index: -1;
}
.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0b1c30;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--electric);
  color: #fff;
  transition: transform 0.18s var(--ease-out), background 0.18s;
  z-index: 2;
}
.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(47,168,204,0.5);
  animation: video-pulse 2.2s ease-out infinite;
}
@keyframes video-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.07); background: var(--electric-bright); }
.video-play-btn:active { transform: translate(-50%, -50%) scale(0.97); }
.video-play-btn svg { margin-left: 5px; }
.video-frame.is-playing .video-play-btn { display: none; }
@media (prefers-reduced-motion: reduce) {
  .video-play-btn::before { animation: none; }
}
@media (max-width: 640px) {
  .video-play-btn { width: 68px; height: 68px; }
  .video-frame::after { display: none; }
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 3rem;
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-family: var(--font-body);
}
@media (min-width: 768px) { .topbar { display: flex; } }
.topbar-left { display: flex; align-items: center; gap: 1.25rem; }
.topbar-sep { color: rgba(47,168,204,0.5); }
.topbar a:hover { color: white; transition: color 0.2s; }
.topbar-phone { display: flex; align-items: center; gap: 0.375rem; font-weight: 600; letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  transition: box-shadow 0.4s var(--ease-out), background 0.4s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(14,31,59,0.12); background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); }
.navbar-accent-line {
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--electric) 50%, var(--navy) 100%);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 64px;
  max-width: 1320px;
  margin: 0 auto;
}
@media (min-width: 640px) { .navbar-inner { padding: 0 2rem; } }
@media (min-width: 1024px) { .navbar-inner { padding: 0 3rem; height: 80px; } }
.navbar-logo img { height: 44px; width: auto; }
@media (min-width: 1024px) { .navbar-logo img { height: 52px; } }
.navbar-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .navbar-nav { display: flex; } }
.navbar-nav a {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3d4f6e;
  transition: color 0.2s;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.navbar-nav a:hover { color: var(--navy); }
.navbar-nav a:hover::after { transform: scaleX(1); }
.navbar-cta { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .navbar-cta { display: flex; } }
.navbar-tel {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--slate);
}
.navbar-tel svg { color: var(--electric); }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; cursor: pointer;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: white;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d4f6e;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-link:hover { background: var(--cream); }
.mobile-cta { margin-top: 0.75rem; text-align: center; justify-content: center; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  background: var(--navy);
  overflow: hidden;
}
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-left { width: 52%; padding: 4rem 3rem 5rem 4rem; }
}
@media (min-width: 1280px) { .hero-left { padding: 4rem 4rem 5rem 5rem; } }

/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring-1 {
  width: 380px; height: 380px;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; right: -80px;
  transform: translateY(-50%);
  display: none;
}
.hero-ring-2 {
  width: 260px; height: 260px;
  border: 1px solid rgba(47,168,204,0.12);
  top: 50%; right: -10px;
  transform: translateY(-50%);
  display: none;
}


.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero-word {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.hero-word.visible { opacity: 1; transform: translateY(0); }
.hero-word-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--electric);
}
.hero-word:first-child {
  font-size: 1em;
}
.hero-word-italic {
  font-size: 0.85em;
  letter-spacing: -0.01em;
}
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 2.5rem;
}
.hero-desc strong { color: white; }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  margin-top: 0.25rem;
}

/* Hero right image */
.hero-right {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-right {
    position: relative;
    width: 48%;
    flex-shrink: 0;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(1.05) saturate(1.05);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,31,59,0.55);
}
@media (min-width: 1024px) {
  .hero-img-overlay {
    background: linear-gradient(to right, var(--navy) 0%, rgba(14,31,59,0.3) 38%, rgba(14,31,59,0.05) 60%);
  }
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem; right: 2rem;
  background: white;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  display: none;
}
@media (min-width: 1024px) { .hero-badge { display: block; } }
.hero-badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  margin-top: 0.25rem;
}
.hero-badge-sub {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-bar {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--electric);
  border-top: 1px solid #4dc4e6;
  border-bottom: 1px solid #1e8aaa;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.mq-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}
.mq-dot {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-section {
  padding: 6rem 0 7rem;
  background: var(--cream);
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section-intro {
  max-width: 20rem;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .section-intro { text-align: right; } }

/* Service card */
.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .service-card { flex-direction: row; } }
.service-card-flip { }
@media (min-width: 768px) { .service-card-flip { flex-direction: row-reverse; } }
.service-img-wrap {
  position: relative;
  flex-shrink: 0;
  height: 260px;
}
@media (min-width: 768px) { .service-img-wrap { width: 45%; height: auto; } }
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-img-overlay {
  position: absolute;
  inset: 0;
}
.service-img-overlay-right {
  background: linear-gradient(to right, rgba(14,31,59,0.5), transparent 60%);
}
.service-img-overlay-left {
  background: linear-gradient(to left, rgba(14,31,59,0.5), transparent 60%);
}
.service-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  user-select: none;
}
.service-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.375rem 0.75rem;
  background: var(--electric);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.service-content {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .service-content { padding: 3rem; } }
.service-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-num-small {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--electric);
  letter-spacing: 0.12em;
}
.service-line {
  width: 2rem; height: 1px;
  background: rgba(47,168,204,0.4);
}
.service-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
}
.service-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.service-desc {
  color: #4a5e7a;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #3d4f6e;
}
.service-features li::before {
  content: '';
  width: 1.25rem; height: 1.25rem;
  background: rgba(47,168,204,0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232fa8cc' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.75rem; color: var(--electric); }

/* ═══════════════════════════════════════════
   STATS + USP
═══════════════════════════════════════════ */
.stats-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: var(--navy);
  overflow: hidden;
}
/* Machine decoration */
.machine-deco {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  opacity: 0.07;
  display: none;
}

.machine-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid white;
}
.machine-ring-mid {
  position: absolute;
  inset: 2rem;
  border-radius: 50%;
  border: 2px solid var(--electric);
}
.machine-ring-inner {
  position: absolute;
  inset: 5rem;
  border-radius: 50%;
  border: 1px solid white;
}
.machine-ring-core {
  position: absolute;
  inset: 9rem;
  border-radius: 50%;
  background: rgba(47,168,204,0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  margin-top: 0.5rem;
}
.stat-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.25rem;
}

/* USP block */
.usp-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .usp-block { flex-direction: row; align-items: flex-start; gap: 5rem; }
}
.usp-left { flex: 0 0 38%; }
.usp-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.5rem;
}
.usp-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.usp-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.usp-card {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.usp-line {
  width: 2rem; height: 2px;
  background: var(--electric);
  margin-bottom: 0.75rem;
}
.usp-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 0.5rem;
}
.usp-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section {
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
}
@media (min-width: 1024px) { .about-section { flex-direction: row; min-height: 600px; } }
.about-img-wrap {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) { .about-img-wrap { width: 45%; min-height: 0; } }
.about-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.85); }
.about-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 80%, white 100%);
  display: none;
}
@media (min-width: 1024px) { .about-img-fade { display: block; } }
.about-year-badge {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  background: var(--navy);
  padding: 1.25rem 1.5rem;
}
.about-year-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: white;
  line-height: 1;
}
.about-year-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  margin-top: 0.25rem;
}
.about-content {
  flex: 1;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .about-content { padding: 4rem 4rem 4rem 5rem; } }
.about-text {
  color: #4a5e7a;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--cream);
}
.about-value-icon {
  width: 1.5rem; height: 1.5rem;
  background: rgba(47,168,204,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--electric);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.about-value strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--navy);
  display: block;
}
.about-value small {
  font-size: 0.75rem;
  color: var(--slate);
}

/* ═══════════════════════════════════════════
   BUSINESS
═══════════════════════════════════════════ */
.business-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: var(--navy);
  overflow: hidden;
}
.business-bg-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  display: none;
}
@media (min-width: 1024px) { .business-bg-img { display: block; } }
.business-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.4);
}
.business-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 50%);
}
.business-grid {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) { .business-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.business-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.business-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .business-right { grid-template-columns: repeat(3, 1fr); } }
.industry-card {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.industry-card:hover {
  border-color: rgba(47,168,204,0.4);
  background: rgba(47,168,204,0.08);
}
.industry-icon { display: none; }
.industry-icon-svg {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 168, 204, 0.15);
  color: var(--electric);
  margin-bottom: 0.875rem;
}
.industry-card strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 0.4rem;
}
.industry-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-section {
  padding: 6rem 0 7rem;
  background: var(--cream);
}
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
.process-line {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0; right: 0;
  height: 1px;
  background: rgba(47,168,204,0.2);
  z-index: 0;
}
@media (min-width: 768px) { .process-line { display: block; } }
.process-step { position: relative; z-index: 1; }
.process-circle {
  width: 5rem; height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(47,168,204,0.3);
  background: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--electric);
  margin-bottom: 1.25rem;
}
.process-circle-active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   PRIJZEN
═══════════════════════════════════════════ */
.pricing-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: var(--navy);
  overflow: hidden;
}


.section-intro-dark {
  max-width: 20rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .section-intro-dark { text-align: right; } }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.pricing-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pricing-card {
  padding: 2rem 2.25rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.pricing-card-accent {
  border-color: rgba(47,168,204,0.5);
  background: rgba(47,168,204,0.1);
}
.pricing-card-header {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--electric);
}
.pricing-card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: white;
  letter-spacing: -0.01em;
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  white-space: nowrap;
}
.price::before {
  content: '\20AC\00A0';
  font-size: 0.75em;
  color: var(--electric);
  font-weight: 600;
}
.pricing-note {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(47,168,204,0.25);
  background: rgba(47,168,204,0.06);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .pricing-note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pricing-note p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 34rem;
}
.pricing-note .btn-electric { flex-shrink: 0; }

.testimonials-section {
  padding: 6rem 0 7rem;
  background: var(--cream);
}
.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .testimonials-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.rating-block { display: flex; align-items: baseline; gap: 0.75rem; }
.rating-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}
.stars { color: var(--electric); font-size: 0.9rem; letter-spacing: 0.1em; }
.rating-sub { font-size: 0.7rem; color: var(--slate); margin-top: 0.2rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial-card {
  background: white;
  padding: 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.testimonial-offset { margin-top: 0; }
@media (min-width: 640px) { .testimonial-offset { margin-top: 1.5rem; } }
.testimonial-stars { color: var(--electric); font-size: 0.8rem; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.85rem;
  color: #4a5e7a;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 2rem; height: 2rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  color: white;
}
.testimonial-author strong {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--navy);
  display: block;
}
.testimonial-author span {
  font-size: 0.7rem;
  color: var(--slate);
}

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--navy);
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  display: none;
}
@media (min-width: 1024px) { .cta-bg-img { display: block; } }
.cta-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.5);
}
.cta-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric), #4dc4e6, var(--electric));
}
.cta-content { position: relative; z-index: 1; max-width: 40rem; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
}
.cta-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section {
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
}
@media (min-width: 1024px) { .contact-section { flex-direction: row; min-height: 700px; } }
.contact-info {
  background: var(--navy);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .contact-info { width: 38%; padding: 5rem 3.5rem; } }
.contact-info-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.contact-intro {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.contact-item:hover { color: rgba(255,255,255,0.8); }
.contact-icon {
  width: 2rem; height: 2rem;
  background: rgba(47,168,204,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--electric);
  margin-top: 0.1rem;
}
.contact-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.contact-item small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.15rem;
}
.contact-logo-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-logo-footer img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

/* Form */
.contact-form-wrap {
  flex: 1;
  padding: 4rem 2rem;
}
@media (min-width: 1024px) { .contact-form-wrap { padding: 5rem 4rem 5rem 5rem; } }
.contact-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d4f6e;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid var(--border);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--electric);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
}
.success-icon {
  width: 4rem; height: 4rem;
  background: var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--slate); line-height: 1.7; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #0a1628;
  color: rgba(255,255,255,0.45);
}
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--electric) 50%, var(--navy));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2rem; height: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--electric); color: var(--electric); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--electric); }
.footer-contact-list li a { word-break: break-word; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.22); }
.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
}
.footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════ */
@media (max-width: 639px) {
  .usp-right { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
}
