/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --accent:       #bbed2f;
  --accent-dark:  #a3d429;
  --accent-light: rgba(187,237,47,.12);
  --black:        #000000;
  --dark:         #111111;
  --dark-gray:    #4b4b4b;
  --mid-gray:     #7a7a7a;
  --light-gray:   #eaeaea;
  --off-white:    #f5f5f5;
  --white:        #ffffff;

  /* Semantic tokens */
  --text:         #000000;
  --text-muted:   #4b4b4b;
  --bg:           #ffffff;
  --bg-gray:      #f5f5f5;
  --border:       #eaeaea;

  /* Misc */
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.13);
  --shadow-green: 0 8px 28px rgba(187,237,47,.25);
  --transition:  .25s ease;
  --font:        'Inter', system-ui, sans-serif;
  --max-w:       1200px;
  --section-py:  96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== UTILITIES ===== */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--section-py); }
.section--gray { background: var(--bg-gray); }
.section--blue { background: linear-gradient(160deg, var(--black) 0%, #1a1a1a 100%); color: #fff; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(187,237,47,.18);
  border: 1px solid rgba(187,237,47,.4);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-label--light {
  color: var(--accent);
  background: rgba(187,237,47,.1);
  border-color: rgba(187,237,47,.25);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-intro { margin-inline: auto; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-intro { color: rgba(255,255,255,.7); }

.text-accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius);
  padding: 10px 20px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

/* Primary: green bg, black text */
.btn--primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

/* Ghost: used on dark backgrounds */
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.7);
}

/* Nav button */
.btn--nav {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  padding: 8px 18px;
  font-size: .88rem;
}
.btn--nav:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Outline: on light backgrounds */
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-1px);
}

.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
/* "Mate" gets the green accent */
.nav__logo strong { color: var(--accent); }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--black); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO (dark) ===== */
/* ===== HERO (dark premium) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 48px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* Subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Soft lime glow behind text */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -15%;
  width: 75%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(187,237,47,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

/* Fade-in stagger for content */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .eyebrow    { animation: heroFadeUp 0.65s ease 0.1s  both; }
.hero-content h1.headline { animation: heroFadeUp 0.65s ease 0.25s both; }
.hero-content .subheadline{ animation: heroFadeUp 0.65s ease 0.4s  both; }
.hero-content .cta-group  { animation: heroFadeUp 0.65s ease 0.55s both; }
.hero-content .usps        { animation: heroFadeUp 0.65s ease 0.7s  both; }

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.eyebrow-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: eyebrowPulse 2s infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.4); opacity: 0; }
}

/* Headline */
h1.headline {
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 24px;
}
h1.headline .accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
h1.headline .accent::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 4px;
  height: 14px;
  background: var(--accent);
  z-index: -1;
  transform: skewX(-8deg);
  opacity: 0.9;
}

.subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 36px;
  max-width: 520px;
}

/* CTA group */
.cta-group {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font);
}
.hero-btn .btn-arrow { width: 18px; height: 18px; transition: transform 0.25s; }
.hero-btn:hover .btn-arrow { transform: translateX(3px); }

.hero-btn--primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.hero-btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(187,237,47,0.45), 0 8px 20px -8px rgba(187,237,47,0.4);
}

.hero-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.hero-btn--secondary:hover {
  border-color: var(--accent);
  background: rgba(187,237,47,0.08);
  box-shadow: 0 0 18px rgba(187,237,47,0.2);
  transform: translateY(-2px);
}

/* USPs */
.usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  max-width: 480px;
}
.usp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.usp-check {
  width: 20px; height: 20px;
  background: rgba(187,237,47,0.15);
  border: 1px solid rgba(187,237,47,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.usp-check svg { width: 10px; height: 10px; stroke: var(--accent); stroke-width: 3; fill: none; }

/* Hero visual (photo frame) */
.hero-visual {
  position: relative;
  z-index: 1;
  height: 600px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 60px -10px rgba(187,237,47,0.12),
    0 40px 80px -30px rgba(0,0,0,0.9),
    0 12px 30px -12px rgba(0,0,0,0.5);
  isolation: isolate;
  animation: heroVisualIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: scale(0.97) translateX(12px); }
  to   { opacity: 1; transform: scale(1) translateX(0); }
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("images/movingmate-bus-foto.png");
  background-size: 180% auto;
  background-repeat: no-repeat;
  background-position: var(--bg-x, -40%) 60%;
  will-change: background-position;
  animation: heroPhotoIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  filter: saturate(1.05) contrast(1.05) brightness(0.92);
  transition: background-position 0.05s linear;
}
@keyframes heroPhotoIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Gradient: strong left-fade into black + top/bottom vignette */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.45) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.hero-photo.driving { filter: saturate(1.05) contrast(1.05) brightness(0.92) blur(0.4px); }

/* Floating info chips */
.scene-chip {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  opacity: 0;
  animation: chipIn 0.6s cubic-bezier(0.22,1,0.36,1) 1.4s forwards;
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scene-chip-1 { top: 24px; left: 24px; }
.scene-chip-2 { bottom: 24px; right: 24px; animation-delay: 1.7s; }
.chip-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.chip-text { font-size: 12px; line-height: 1.3; }
.chip-text strong { display: block; font-size: 13px; color: #000; font-weight: 700; }
.chip-text span { color: #4b4b4b; }

/* Route chip */
.route-chip {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6);
  opacity: 0;
  animation: chipIn 0.6s cubic-bezier(0.22,1,0.36,1) 2s forwards;
}
.route-pin {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(187,237,47,0.25);
  flex-shrink: 0;
}
.route-track {
  width: 90px; height: 2px;
  background: rgba(255,255,255,0.15);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.route-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0.35);
  transition: transform 0.4s ease;
}
.route-text {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.route-text strong { color: var(--accent); font-weight: 600; }

/* Trust strip */
.trust-strip {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.trust-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.trust-stars { display: flex; align-items: center; gap: 12px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--accent); }
.trust-text { font-size: 14px; color: rgba(255,255,255,0.5); }
.trust-text strong { color: #fff; }

/* Hero responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    gap: 36px;
  }
  .hero-visual { height: 420px; order: -1; }
  .hero-content { max-width: 100%; }
  .usps { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .trust-strip { justify-content: flex-start; margin-top: 36px; }
  .scene-chip-1 { transform: scale(0.85); transform-origin: top left; }
  .scene-chip-2 { transform: scale(0.85); transform-origin: bottom right; }
  .route-chip   { transform: scale(0.85); transform-origin: bottom left; }
}
@media (max-width: 560px) {
  h1.headline { font-size: 38px; }
  .subheadline { font-size: 16px; }
  .hero-btn { padding: 14px 20px; font-size: 14px; justify-content: center; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .hero-visual { height: 300px; border-radius: 20px; }
  .usps { grid-template-columns: 1fr; }
  .hero-photo {
    background-position: 30% 60% !important;
    animation: heroPhotoIn 0.8s ease both !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content .eyebrow,
  .hero-content h1.headline,
  .hero-content .subheadline,
  .hero-content .cta-group,
  .hero-content .usps,
  .hero-visual { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===== OVER ONS ===== */
.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.over-ons__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.over-ons__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  transition: transform var(--transition), box-shadow var(--transition);
}

.over-ons__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.over-ons__photo:hover img {
  transform: scale(1.04);
}

.visual-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.visual-card--main {
  grid-column: 1 / -1;
  background: var(--black);
  color: #fff;
  flex-direction: row;
  align-items: center;
}
/* Accent green card */
.visual-card--accent { background: var(--accent); color: var(--black); }
/* Neutral light card */
.visual-card--secondary { background: var(--off-white); color: var(--black); }
.visual-icon { font-size: 2rem; }

.over-ons__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.check-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: .95rem;
}
/* Green circle, black checkmark */
.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== DIENSTEN ===== */
.diensten__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.dienst-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  cursor: default;
}
.dienst-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(187,237,47,.12);
  transform: translateY(-4px);
}
.dienst-card__icon {
  font-size: 2.4rem;
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: background var(--transition);
}
.dienst-card:hover .dienst-card__icon { background: rgba(187,237,47,.15); }
.dienst-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.dienst-card p {
  color: var(--text-muted);
  font-size: .93rem;
  flex: 1;
  line-height: 1.65;
}

.link-arrow {
  color: var(--black);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}
.link-arrow:hover { gap: 8px; color: var(--dark-gray); }

/* ===== WERKWIJZE ===== */
.stappen {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.stap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.stap:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(187,237,47,.12);
  transform: translateY(-4px);
}

/* Green circle, black number */
.stap__nummer {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(187,237,47,.4);
  flex-shrink: 0;
}

.stap__content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.stap__content p { color: var(--text-muted); font-size: .93rem; line-height: 1.65; }

.stap__connector {
  height: 2px;
  flex: 0 0 32px;
  background: linear-gradient(90deg, var(--border), rgba(187,237,47,.35), var(--border));
  align-self: center;
  margin-top: -20px;
  position: relative;
  z-index: 0;
}

/* ===== WAAROM (dark section) ===== */
.voordelen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.voordeel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.voordeel:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(187,237,47,.3);
  transform: translateY(-4px);
}
.voordeel__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.voordeel h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.voordeel p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* Green stars */
.review__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.review__text { color: rgba(255,255,255,.8); font-size: .93rem; line-height: 1.7; font-style: italic; flex: 1; }
.review__author { display: flex; align-items: center; gap: 12px; }
/* Green avatar, black letter */
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.review__author strong { display: block; font-size: .9rem; color: #fff; }
.review__author span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section-intro {
  color: var(--text-muted);
  max-width: 100%;
  margin-bottom: 32px;
}

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
}
/* Green-tinted icon bg */
.contact__icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: rgba(187,237,47,.12);
  border: 1px solid rgba(187,237,47,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__details a { color: var(--black); font-weight: 600; }
.contact__details a:hover { color: var(--dark-gray); text-decoration: underline; }

.contact__form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
/* Green focus ring */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(187,237,47,.18);
  background: var(--white);
}
.form-group input.error,
.form-group textarea.error { border-color: #EF4444; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }

.form__success {
  text-align: center;
  font-size: .93rem;
  font-weight: 500;
  padding: 12px;
  border-radius: var(--radius);
  transition: all .3s;
}
.form__success.visible {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
  padding-block: 48px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand .nav__logo { color: #fff; margin-bottom: 8px; }
.footer__brand .logo-img { filter: brightness(0) invert(1); }
.footer__brand p { font-size: .85rem; margin-top: 4px; }

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--accent); }

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 8px;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .logo-img { height: 42px; }
  .nav__links {
    position: fixed;
    inset-block: 68px 0;
    inset-inline: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 32px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav__links .btn--nav {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    padding: 14px;
    border-bottom: none;
  }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .over-ons__inner { grid-template-columns: 1fr; gap: 48px; }
  .over-ons__visual { order: -1; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .hero { padding-block: 100px 60px; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero__stats { gap: 20px; }
  .stat strong { font-size: 1.25rem; }

  .stappen { flex-direction: column; gap: 16px; }
  .stap { width: 100%; text-align: left; flex-direction: row; align-items: flex-start; }
  .stap__content { text-align: left; }
  .stap__connector { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__nav { gap: 16px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat__divider { display: none; }
}

/* ===== NAV ACTIVE LINK ===== */
.nav__link--active {
  color: var(--black) !important;
  position: relative;
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--black);
  padding: 132px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Subtle green glow top-right */
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(187,237,47,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(187,237,47,.1);
  border: 1px solid rgba(187,237,47,.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ===== PRICING GRID ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(187,237,47,.12);
  transform: translateY(-5px);
}
.pricing-card--featured {
  border-color: var(--accent);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured:hover { box-shadow: 0 16px 48px rgba(187,237,47,.18); }
.pricing-card--featured .pricing-card__title { color: var(--black); }

/* Green kortingstarief badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(187,237,47,.15);
  color: #2a4800;
  border: 1px solid rgba(187,237,47,.4);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
/* Solid green for featured "Grootste besparing" */
.pricing-badge--featured {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.pricing-card__icon {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.pricing-card:hover .pricing-card__icon { background: rgba(187,237,47,.12); }
/* Dark icon for featured card */
.pricing-card__icon--blue { background: var(--black); }
.pricing-card--featured:hover .pricing-card__icon--blue { background: var(--dark); }

.pricing-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-old {
  font-size: .88rem;
  color: var(--mid-gray);
  text-decoration: line-through;
  text-decoration-color: #EF4444;
  text-decoration-thickness: 2px;
}
.price-current {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
/* Black price — premium feel */
.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.04em;
  line-height: 1;
}
.price-unit {
  font-size: .95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-excl {
  font-size: .78rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

.pricing-card p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.65;
  flex: 1;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-cta { text-align: center; }

/* ===== PRICE FACTORS ===== */
.price-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-factor {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.price-factor:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(187,237,47,.1);
  transform: translateY(-3px);
}
.price-factor__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.price-factor h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-factor p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--bg-gray); }
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* Subtle green glow accent in corner */
.cta-banner__inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(187,237,47,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__text h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.cta-banner__text p { font-size: .95rem; color: rgba(255,255,255,.6); }
.cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }
/* Outline on dark banner: white border */
.cta-banner__actions .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.cta-banner__actions .btn--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  cursor: default;
}
.blog-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(187,237,47,.12);
  transform: translateY(-5px);
}

/* Neutral light bg for image area */
.blog-card__img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--off-white);
  flex-shrink: 0;
  transition: background var(--transition);
}
.blog-card:hover .blog-card__img { background: rgba(187,237,47,.1); }

.blog-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* All categories: unified green-tinted pill */
.blog-category {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  width: fit-content;
  background: rgba(187,237,47,.15);
  color: #2a4800;
  border: 1px solid rgba(187,237,47,.35);
}
.blog-category--tips,
.blog-category--kosten,
.blog-category--inpakken,
.blog-category--planning,
.blog-category--handyman,
.blog-category--studenten {
  background: rgba(187,237,47,.15);
  color: #2a4800;
  border: 1px solid rgba(187,237,47,.35);
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.blog-card__intro {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.blog-card__time { font-size: .8rem; color: var(--mid-gray); }

/* ===== ARTICLE / BLOG DETAIL ===== */
.article-hero {
  background: var(--black);
  padding: 132px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.article-hero .container { position: relative; z-index: 1; }

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article-meta span {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.article-meta .sep { color: rgba(255,255,255,.2); }

.article-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 780px;
  margin-inline: auto;
  line-height: 1.2;
}

.article-intro-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 620px;
  margin-inline: auto;
  margin-top: 20px;
  line-height: 1.75;
}

.article-body {
  max-width: 760px;
  margin-inline: auto;
  padding: 64px 24px;
}
.article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}
.article-body ul {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body ul li {
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}
/* Green checkmark in articles */
.article-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: .85rem;
  top: 2px;
}

/* Article CTA box: subtle green tint */
.article-cta {
  background: rgba(187,237,47,.07);
  border: 1.5px solid rgba(187,237,47,.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  margin-top: 48px;
}
.article-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.article-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.article-nav {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ===== RESPONSIVE: new components ===== */
@media (max-width: 1024px) {
  .cta-banner__inner { padding: 40px 40px; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .price-factors { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }
  .cta-banner__actions { justify-content: center; }
  .article-body { padding: 40px 24px; }
  .article-cta { padding: 28px 20px; }
  .page-hero { padding: 112px 0 56px; }
  .article-hero { padding: 112px 0 56px; }
}

@media (max-width: 480px) {
  .price-factors { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
  .article-body { padding: 32px 0; }
  .pricing-card { padding: 28px 24px; }
}

/* =====================================================
   PREMIUM POLISH — design enhancement layer
   ===================================================== */


/* ── Buttons: micro-interactions ── */
.btn { will-change: transform; }
.btn--primary:hover    { transform: translateY(-2px) scale(1.02); }
.btn--outline:hover    { transform: translateY(-2px); }
.btn--nav              { border-radius: 100px; letter-spacing: .01em; }

/* ── Dienst-card: inset left-border accent ── */
.dienst-card:hover {
  border-color: var(--border);
  box-shadow: inset 3px 0 0 var(--accent), 0 16px 48px rgba(187,237,47,.1);
  transform: translateY(-4px);
}

/* ── Stap cards: inset top-border on hover ── */
.stap:hover {
  border-color: var(--border);
  box-shadow: inset 0 3px 0 var(--accent), 0 16px 48px rgba(187,237,47,.1);
  transform: translateY(-4px);
}
/* Subtle ring around step number on hover */
.stap__nummer { position: relative; }
.stap__nummer::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(187,237,47,.35);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .3s ease, transform .3s ease;
}
.stap:hover .stap__nummer::after { opacity: 1; transform: scale(1); }

/* ── Voordeel: inset left accent via box-shadow ── */
.voordeel { box-shadow: inset 3px 0 0 rgba(187,237,47,.2); }
.voordeel:hover {
  box-shadow: inset 3px 0 0 var(--accent);
  background: rgba(255,255,255,.09);
  border-color: rgba(187,237,47,.25);
  transform: translateY(-4px);
}

/* ── Review cards: editorial quote mark ── */
.review-card { position: relative; overflow: hidden; }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .14;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  user-select: none;
}

/* ── Blog card: image green tint on hover ── */
.blog-card__img { position: relative; overflow: hidden; }
.blog-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(187,237,47,.0);
  transition: background .3s ease;
  pointer-events: none;
}
.blog-card:hover .blog-card__img::after { background: rgba(187,237,47,.08); }

/* ── Featured pricing card: tinted background ── */
.pricing-card--featured {
  background: linear-gradient(170deg, rgba(187,237,47,.06) 0%, #fff 38%);
}
/* Savings tab hanging from top */
.pricing-card__savings {
  position: absolute;
  top: -1.5px;
  right: 22px;
  background: var(--accent);
  color: var(--black);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px 6px;
  border-radius: 0 0 10px 10px;
  line-height: 1;
  z-index: 2;
}

/* ── Section labels: tighter tracking ── */
.section-label { letter-spacing: .12em; font-size: .71rem; }

/* ── Footer: green signature accent ── */
.footer { border-top: 3px solid var(--accent); }

/* ── Link arrows: slide + color transition ── */
.link-arrow {
  transition: gap .2s ease, color .2s ease, transform .2s ease;
}
.link-arrow:hover {
  gap: 8px;
  color: var(--black);
  transform: translateX(2px);
}

/* ── Stap connector: refined gradient ── */
.stap__connector {
  background: linear-gradient(90deg,
    var(--border),
    rgba(187,237,47,.45),
    var(--border)
  );
}

/* ── Section header bottom spacing ── */
.section-header { margin-bottom: 56px; }

/* ── Contact form: cleaner shadow ── */
.contact__form {
  box-shadow: 0 2px 0 var(--border), var(--shadow-md);
}

/* ── Nav: hairline bottom accent when scrolled ── */
.nav.scrolled {
  border-bottom-color: rgba(187,237,47,.25);
}

/* ── Visual cards: stronger hover on main ── */
.visual-card--main:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.visual-card--accent:hover {
  box-shadow: 0 12px 36px rgba(187,237,47,.3);
}

/* ── Page hero: green corner glow ── */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(187,237,47,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* ── CTA banner: accent line on hover ── */
.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Reduce motion: respect user preferences ── */
@media (prefers-reduced-motion: reduce) {
  [data-aos], .hero__badge::before, .scroll-dot::after,
  .stap__nummer::after { animation: none; transition: none; }
}

/* =====================================================
   VERHUISCALCULATOR — scoped under .calc-wrap / #calc-root
   ===================================================== */
#calc-root {
  --cg: #bbed2f;
  --cg-d: #a6d624;
  --ck: #000;
  --cgd: #4b4b4b;
  --cgl: #eaeaea;
  --cbg: #f4f4f4;
  --csm: 0 1px 2px rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.03);
  --cmd: 0 4px 14px rgba(0,0,0,.07);
  --cr: 12px;
  --crlg: 18px;
}
#calc-root * { box-sizing: border-box; }
#calc-root button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
#calc-root input { font: inherit; color: inherit; }

.calc-wrap { padding-top: 4px; }

/* ── Toolbar ── */
.ci-toolbar { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.ci-search {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--cr); padding: 0 14px; height: 48px;
  border: 1.5px solid var(--cgl); transition: border-color .15s;
  box-shadow: var(--csm);
}
.ci-search:focus-within { border-color: var(--ck); }
.ci-search input { flex: 1; border: 0; outline: 0; background: transparent; font-size: 15px; }
.ci-search-icon { color: var(--cgd); display: flex; }
.ci-search-clear { color: var(--cgd); font-size: 13px; padding: 4px 8px; border-radius: 6px; }
.ci-search-clear:hover { background: var(--cgl); }

/* ── Calc buttons ── */
.ci-btn {
  display: inline-flex; align-items: center; gap: 7px; height: 48px; padding: 0 18px;
  border-radius: var(--cr); background: #fff; font-weight: 600; font-size: 14px;
  border: 1.5px solid var(--cgl); transition: background .15s, transform .08s; white-space: nowrap;
  box-shadow: var(--csm);
}
.ci-btn:hover { background: var(--cgl); }
.ci-btn:active { transform: translateY(1px); }
.ci-btn--ghost { background: transparent; border-color: transparent; box-shadow: none; }
.ci-btn--ghost:hover { background: var(--cgl); border-color: transparent; }
.ci-btn--dark { background: var(--ck); color: #fff; border-color: var(--ck); }
.ci-btn--dark:hover { background: #222; }
.ci-btn--primary { background: var(--cg); color: var(--ck); border-color: var(--cg); font-weight: 700; }
.ci-btn--primary:hover { background: var(--cg-d); border-color: var(--cg-d); }
.ci-btn--primary:disabled { background: var(--cgl); color: #999; border-color: var(--cgl); cursor: not-allowed; box-shadow: none; }
.ci-btn--full { width: 100%; justify-content: center; height: 52px; font-size: 15px; }

/* ── Two-column layout ── */
.ci-layout { display: grid; grid-template-columns: 1fr 340px; gap: 22px; align-items: start; }
@media (max-width: 1024px) { .ci-layout { grid-template-columns: 1fr; } }

/* ── Desktop / mobile visibility ── */
.ci-desktop-only { display: block; }
.ci-mobile-only  { display: none; }
@media (max-width: 768px) {
  .ci-desktop-only { display: none; }
  .ci-mobile-only  { display: block; }
}

/* ── Room tabs (desktop) ── */
.ci-room-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  background: #fff; border-radius: var(--cr); padding: 8px;
  margin-bottom: 14px; box-shadow: var(--csm);
}
.ci-tab {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px;
  border-radius: 9px; font-size: 13px; font-weight: 500; color: var(--cgd);
  transition: background .15s, color .15s; white-space: nowrap;
}
.ci-tab:hover { background: var(--cbg); color: var(--ck); }
.ci-tab--active { background: var(--ck); color: #fff; }
.ci-tab-pill {
  font-size: 11px; font-weight: 600; background: var(--cgl); color: var(--cgd);
  border-radius: 99px; padding: 2px 7px;
}
.ci-tab--active .ci-tab-pill { background: var(--cg); color: var(--ck); }
.ci-tab--has:not(.ci-tab--active) .ci-tab-pill { background: var(--cg); color: var(--ck); }
.ci-tab--has:not(.ci-tab--active) { color: var(--ck); }

/* ── Room panel (desktop) ── */
.ci-panel {
  background: #fff; border-radius: var(--crlg); padding: 24px;
  box-shadow: var(--csm); margin-bottom: 14px;
}
.ci-panel-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ci-panel-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--cbg); display: grid; place-items: center; flex-shrink: 0; }
.ci-panel-title { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.ci-panel-sub { font-size: 13px; color: var(--cgd); margin-top: 2px; }
.ci-panel-stat { margin-left: auto; text-align: right; font-size: 13px; color: var(--cgd); }
.ci-panel-stat strong { display: block; font-size: 17px; font-weight: 700; color: var(--ck); }

.ci-empty { text-align: center; padding: 36px 20px; color: var(--cgd); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ci-empty strong { color: var(--ck); font-size: 15px; }

/* ── Items grid ── */
.ci-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 9px; }
@media (max-width: 600px) { .ci-items-grid { grid-template-columns: 1fr; } }

.ci-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 13px; border-radius: 11px; border: 1.5px solid var(--cgl);
  background: #fff; transition: border-color .15s, background .15s; position: relative;
}
.ci-item:hover { border-color: #ccc; }
.ci-selected { border-color: var(--cg) !important; background: linear-gradient(180deg,#fbffe9,#fff) !important; }
.ci-selected::before { content: ""; position: absolute; left: -1.5px; top: -1.5px; bottom: -1.5px; width: 4px; border-radius: 11px 0 0 11px; background: var(--cg); }
.ci-info { min-width: 0; flex: 1; }
.ci-name { font-weight: 600; font-size: 13.5px; color: var(--ck); }
.ci-meta { font-size: 11.5px; color: var(--cgd); margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.ci-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--cgd); opacity: .4; display: inline-block; }

.ci-qty { display: inline-flex; align-items: center; background: var(--cbg); border-radius: 99px; padding: 3px; flex-shrink: 0; }
.ci-selected .ci-qty { background: #fff; box-shadow: inset 0 0 0 1.5px var(--cg); }
.ci-qty button { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--cgd); transition: background .12s, color .12s; }
.ci-qty button:hover:not(:disabled) { background: var(--ck); color: #fff; }
.ci-qty button:disabled { opacity: .3; cursor: not-allowed; }
.ci-qty span { min-width: 26px; text-align: center; font-weight: 700; font-size: 14px; }

/* ── Accordion (mobile) ── */
.ci-accordion { background: #fff; border-radius: var(--cr); margin-bottom: 8px; box-shadow: var(--csm); overflow: hidden; }
.ci-accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 18px; font-size: 15px; font-weight: 600;
  border: 0; background: none; cursor: pointer; transition: background .12s;
}
.ci-accordion-head:hover { background: var(--cbg); }
.ci-accordion--open .ci-accordion-head { background: var(--cbg); }
.ci-acc-left { display: flex; align-items: center; gap: 10px; }
.ci-acc-icon { color: var(--cgd); display: flex; }
.ci-acc-right { display: flex; align-items: center; gap: 8px; }
.ci-acc-badge { font-size: 11px; font-weight: 700; background: var(--cg); color: var(--ck); border-radius: 99px; padding: 2px 9px; }
.ci-acc-chevron { transition: transform .2s; color: var(--cgd); }
.ci-accordion--open .ci-acc-chevron { transform: rotate(180deg); }
.ci-accordion-body { padding: 0 16px 18px; }
.ci-accordion-body .ci-items-grid { margin-top: 12px; }

/* ── Custom item form ── */
.ci-custom-form { margin-top: 18px; padding: 16px; border: 1.5px dashed #d6d6d6; border-radius: 12px; background: #fafafa; }
.ci-custom-title { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.ci-custom-grid { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 8px; align-items: end; }
@media (max-width: 640px) {
  .ci-custom-grid { grid-template-columns: 1fr 1fr; }
  .ci-custom-grid .ci-cfield:first-child { grid-column: 1/-1; }
  .ci-custom-grid .ci-btn { grid-column: 1/-1; justify-content: center; height: 44px; }
}
.ci-cfield { display: flex; flex-direction: column; gap: 4px; }
.ci-cfield label { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--cgd); font-weight: 700; }
.ci-cfield input { height: 38px; border: 1.5px solid var(--cgl); background: #fff; border-radius: 9px; padding: 0 11px; outline: 0; font-size: 13px; transition: border-color .15s; }
.ci-cfield input:focus { border-color: var(--ck); }
.ci-room-pills { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.ci-pills-label { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--cgd); font-weight: 700; }
.ci-pill-room { font-size: 12px; padding: 3px 10px; border-radius: 99px; border: 1px solid var(--cgl); background: #fff; color: var(--cgd); font-weight: 500; transition: background .12s, color .12s, border-color .12s; }
.ci-pill-room.active { background: var(--ck); color: #fff; border-color: var(--ck); }
.ci-pill-room:hover:not(.active) { background: var(--cgl); }

/* ── Custom items list ── */
.ci-custom-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--cgd); font-weight: 700; margin-bottom: 8px; }
.ci-custom-list { display: flex; flex-direction: column; gap: 6px; }
.ci-custom-row { display: flex; align-items: center; gap: 9px; background: #fff; border: 1.5px solid var(--cg); padding: 9px 12px; border-radius: 9px; }
.ci-custom-badge { font-size: 10px; background: var(--cg); border-radius: 4px; padding: 2px 6px; font-weight: 700; flex-shrink: 0; }
.ci-custom-name { font-weight: 600; font-size: 13px; flex: 1; }
.ci-custom-meta { font-size: 12px; color: var(--cgd); }

/* ── Sidebar ── */
.ci-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 1024px) {
  .ci-sidebar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    flex-direction: column; gap: 0;
    background: #fff; border-top-left-radius: 22px; border-top-right-radius: 22px;
    box-shadow: 0 -6px 24px rgba(0,0,0,.1);
    transform: translateY(calc(100% - 80px));
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    max-height: 82vh; overflow-y: auto;
  }
  .ci-sidebar--open { transform: translateY(0); }
  .ci-sidebar--open .ci-sum-card { border-radius: 0; box-shadow: none; }
}

/* ── Mobile peek ── */
.ci-peek { display: none; }
@media (max-width: 1024px) {
  .ci-peek {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; background: var(--ck); color: #fff;
    border-top-left-radius: 22px; border-top-right-radius: 22px;
    cursor: pointer; flex-shrink: 0;
  }
  .ci-sidebar--open .ci-peek { border-radius: 0; }
}
.ci-peek-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 2px; }
.ci-peek-vol { font-size: 22px; font-weight: 700; }
.ci-unit { font-size: 13px; color: var(--cg); margin-left: 3px; font-weight: 500; }
.ci-peek-toggle { height: 36px !important; padding: 0 13px !important; font-size: 13px !important; }

/* ── Summary card ── */
.ci-sum-card { background: var(--ck); color: #fff; border-radius: var(--crlg); padding: 20px; }
@media (max-width: 1024px) { .ci-sum-card { border-radius: 0; } }

.ci-sum-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ci-sum-label { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.ci-size-tag { display: inline-flex; align-items: center; background: var(--cg); color: var(--ck); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .07em; }
.ci-size-tag--empty { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.ci-sum-vol { font-size: 52px; font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-bottom: 4px; }
.ci-sum-vol .ci-unit { font-size: 20px; }
.ci-sum-items { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.ci-sum-items strong { color: #fff; }

.ci-sum-rows { display: flex; flex-direction: column; }
.ci-sum-row { display: grid; grid-template-columns: 26px 1fr; align-items: start; gap: 10px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.08); }
.ci-sum-row:first-child { border-top: 0; }
.ci-sum-icon { width: 26px; height: 26px; border-radius: 7px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--cg); flex-shrink: 0; }
.ci-sum-rlabel { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.45); }
.ci-sum-rval { font-size: 13px; font-weight: 600; color: #fff; }
.ci-sum-rsub { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── Complexity ── */
.ci-complex { background: #fff; border-radius: var(--cr); padding: 16px; box-shadow: var(--csm); }
.ci-complex-title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.ci-complex-sub { font-size: 11px; color: var(--cgd); margin-bottom: 12px; }
.ci-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--cgl); cursor: pointer; font-size: 13px; }
.ci-toggle-row:first-of-type { border-top: 0; padding-top: 0; }
.ci-toggle-ttl { color: var(--ck); font-weight: 500; }
.ci-toggle-meta { font-size: 11px; color: var(--cgd); margin-top: 1px; }
.ci-toggle { width: 36px; height: 21px; background: var(--cgl); border-radius: 99px; position: relative; flex-shrink: 0; transition: background .15s; }
.ci-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 17px; height: 17px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .18s; }
.ci-toggle--on { background: var(--cg); }
.ci-toggle--on::after { transform: translateX(15px); }

/* ── CTA dock ── */
.ci-cta { background: #fff; border-radius: var(--crlg); padding: 16px; box-shadow: var(--csm); display: flex; flex-direction: column; gap: 10px; }
.ci-cta-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ci-cta-from { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--cgd); font-weight: 700; margin-bottom: 2px; }
.ci-cta-price { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.ci-cta-price--muted { font-size: 17px; color: var(--cgd); }
.ci-cta-size { text-align: right; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--cgd); font-weight: 600; }
.ci-cta-size strong { display: block; font-size: 14px; color: var(--ck); text-transform: none; letter-spacing: 0; margin-top: 2px; }
.ci-cta-disclaim { font-size: 11px; color: var(--cgd); line-height: 1.45; }

/* ── Toast ── */
.ci-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--ck); color: #fff; padding: 12px 18px; border-radius: 12px;
  font-size: 14px; font-family: inherit; z-index: 500;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s;
}
.ci-toast--show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ── Mobile spacing ── */
@media (max-width: 768px) {
  .ci-panel { padding: 16px; }
  .ci-panel-title { font-size: 17px; }
  /* Extra bottom padding so sticky bar doesn't cover last content */
  #calc-root { padding-bottom: 90px; }
}

/* ===== SPLASH SCREEN ===== */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 1;
  transition: opacity 0.55s ease;
}

.splash-screen.splash--out {
  opacity: 0;
  pointer-events: none;
}

.splash-screen.splash--hidden {
  display: none;
}

.splash-logo {
  width: clamp(80px, 18vw, 140px);
  height: auto;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.splash-quote {
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 500;
  color: #f0f0f0;
  text-align: center;
  max-width: min(540px, 88vw);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
}

.splash-quote.splash--visible {
  opacity: 1;
  transform: translateY(0);
}

.splash-tagline {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #4b4b4b;
  opacity: 0;
  transition: opacity 0.4s ease 0.65s;
  text-transform: uppercase;
}

.splash-tagline.splash--visible {
  opacity: 1;
}

.splash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #bbed2f;
  transition: width 4.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.splash-skip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4b4b4b;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.2s;
  opacity: 0;
  animation: splash-skip-appear 0.4s ease 0.7s forwards;
}

.splash-skip:hover {
  color: #eaeaea;
}

@keyframes splash-skip-appear {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo,
  .splash-quote,
  .splash-tagline {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .splash-screen {
    transition: opacity 0.3s ease !important;
  }
  .splash-progress {
    transition: width 3s linear !important;
  }
}
