/* ================================================================
   KOPPENS VENTILATIETECHNIEK — STYLE.CSS
   ================================================================ */

:root {
  /* Brand */
  --primary: #1A1916;
  --primary-dark: #0A0A09;
  --primary-light: #2E2D29;
  --accent: #AAC80B;
  --accent-light: #C5DC4D;
  --accent-dark: #88A006;
  --emergency: #DC2626;
  --emergency-dark: #B91C1C;

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-alt: #F7F8F4;
  --bg-dark: #1A1916;
  --text: #1A1916;
  --text-soft: #4A4A45;
  --text-muted: #8A8A82;
  --border: #E5E7DD;
  --border-soft: #F0F1EA;
  --white: #FFFFFF;

  /* Layout */
  --container: 1280px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  /* Animation */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --duration: 1400ms;
  --stagger: 220ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 25, 22, 0.06);
  --shadow: 0 8px 30px rgba(26, 25, 22, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 25, 22, 0.15);

  /* Fonts */
  --font-head: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; color: var(--primary); letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(28px, 3.6vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin-bottom: 1em; color: var(--text-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.78); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head p { font-size: 18px; }

/* ----------- BUTTONS ----------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  min-height: 48px;
  text-align: center;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--primary); font-weight: 800; box-shadow: 0 6px 18px rgba(170, 200, 11, 0.28); }
.btn--primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(170, 200, 11, 0.4); }
.btn--secondary { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.btn--secondary:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--accent); padding: 10px 0; }
.btn--ghost:hover { color: var(--accent-dark); gap: 14px; }
.btn--emergency { background: var(--emergency); color: var(--white); box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3); animation: pulse-btn 2.5s ease-in-out infinite; }
.btn--emergency:hover { background: var(--emergency-dark); color: var(--white); transform: translateY(-2px); }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3); }
  50% { box-shadow: 0 6px 28px rgba(220, 38, 38, 0.55); }
}
.btn--lg { padding: 20px 40px; font-size: 17px; min-height: 56px; }
.btn .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------- NAVIGATIE ----------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s var(--ease);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 14px rgba(26, 25, 22, 0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo img { height: 52px; width: auto; transition: height 0.35s var(--ease); }
.nav.scrolled .nav__logo img { height: 44px; }
.nav__menu {
  display: flex; gap: 4px;
  align-items: center;
}
.nav__menu a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav__menu a:hover, .nav__menu a.active { color: var(--accent); background: rgba(170, 200, 11, 0.07); }
.nav__cta {
  display: flex; gap: 10px; align-items: center;
}
.nav__cta .btn { padding: 12px 22px; min-height: 44px; font-size: 14px; }
.nav__phone {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--accent); }
.nav__phone svg { width: 16px; height: 16px; }

.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border-radius: 6px;
}
.nav__hamburger span {
  width: 24px; height: 2px; background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------- HERO SLIDER ----------- */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__slide.active { opacity: 1; z-index: 2; }
.hero__slide-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: kenburns 12s ease-out forwards;
  clip-path: inset(0 100% 0 0);
}
.hero__slide.active .hero__slide-img {
  animation: kenburns 12s ease-out forwards, hero-reveal 1.4s var(--ease) forwards;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
@keyframes hero-reveal {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 25, 22, 0.78) 0%, rgba(26, 25, 22, 0.55) 50%, rgba(26, 25, 22, 0.7) 100%);
  z-index: 3;
}
.hero__content {
  position: relative;
  z-index: 4;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-80px);
  animation: slide-in 1.4s var(--ease) 0.2s forwards;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--accent);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 76px);
  max-width: 900px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-80px);
  animation: slide-in 1.4s var(--ease) 0.4s forwards;
}
.hero__subtitle {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-80px);
  animation: slide-in 1.4s var(--ease) 0.6s forwards;
}
.hero__ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  transform: translateX(-80px);
  animation: slide-in 1.4s var(--ease) 0.8s forwards;
}
@keyframes slide-in {
  to { opacity: 1; transform: translateX(0); }
}
.hero__nav {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 12px;
}
.hero__nav button {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s, width 0.3s;
}
.hero__nav button.active { background: var(--accent); width: 56px; }

/* ----------- INTRO / OVER ONS ----------- */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__text h2 { margin-bottom: 24px; }
.intro__text p { font-size: 17px; margin-bottom: 20px; }
.usp-list { display: flex; flex-direction: column; gap: 18px; }
.usp-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px;
  color: var(--text);
}
.usp-list li svg {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--accent);
  margin-top: 2px;
}
.usp-list li strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ----------- WAAROM (6-grid) ----------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.why-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(170,200,11,0.12), rgba(170,200,11,0.04));
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 22px;
}
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 15px; margin: 0; }

/* ----------- TICKER ----------- */
.ticker {
  background: var(--primary);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex; gap: 56px;
  animation: ticker 60s linear infinite;
  width: max-content;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 56px;
}
.ticker__item::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------- DIENSTEN CARDS ----------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body {
  padding: 28px;
  display: flex; flex-direction: column;
  flex: 1;
  gap: 10px;
}
.service-card__body h3 { font-size: 22px; margin: 0; }
.service-card__body p {
  flex: 1;
  font-size: 15px;
  margin: 0;
}
.service-card__link {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ----------- WERKWIJZE ----------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 50%, var(--border) 50%, var(--border) 100%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.process__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}
.process__step h4 { margin-bottom: 8px; }
.process__step p { font-size: 14px; margin: 0; }

/* ----------- PROJECTEN GRID ----------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary);
  transition: transform 0.4s var(--ease);
}
.project-card:hover { transform: translateY(-4px); }
.project-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.project-card:hover .project-card__media img { transform: scale(1.08); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 25, 22, 0.92) 0%, rgba(26, 25, 22, 0.4) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}
.project-card__overlay h3 { color: var(--white); font-size: 21px; margin-bottom: 4px; }
.project-card__overlay p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin: 0;
  display: flex; align-items: center; gap: 6px;
}
.project-card__overlay svg { width: 14px; height: 14px; }

/* ----------- TIPS CARDS ----------- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.tip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tip-card__media { aspect-ratio: 16/10; overflow: hidden; }
.tip-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tip-card:hover .tip-card__media img { transform: scale(1.05); }
.tip-card__body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tip-card__meta {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.2px;
  display: flex; gap: 16px;
}
.tip-card__meta span { display: flex; align-items: center; gap: 6px; }
.tip-card__body h3 { font-size: 20px; margin: 0; line-height: 1.3; }
.tip-card__body p { font-size: 15px; flex: 1; margin: 0; }
.tip-card__link {
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ----------- REVIEWS ----------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  position: relative;
  display: flex; flex-direction: column;
}
.review-card__stars {
  display: flex; gap: 2px; margin-bottom: 18px;
  color: #FBBF24;
}
.review-card__stars svg { width: 20px; height: 20px; }
.review-card__quote {
  font-size: 16px;
  color: var(--text);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.65;
}
.review-card__author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-head); font-weight: 700;
  font-size: 18px;
}
.review-card__info strong { display: block; color: var(--primary); font-size: 15px; }
.review-card__info span { font-size: 13px; color: var(--text-muted); }

/* ----------- OFFERTE FORM ----------- */
.quote {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.quote__usp h2 { margin-bottom: 16px; }
.quote__usp p { font-size: 16px; margin-bottom: 28px; }
.quote__usp .usp-list li { font-size: 15px; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.3px;
}
.form__field input, .form__field select, .form__field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(170, 200, 11, 0.12);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field--radio-group { gap: 10px; }
.form__radios { display: flex; gap: 8px; flex-wrap: wrap; }
.form__radio {
  flex: 1; min-width: 120px;
  position: relative;
}
.form__radio input { position: absolute; opacity: 0; }
.form__radio label {
  display: block;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}
.form__radio input:checked + label {
  border-color: var(--accent);
  background: rgba(170, 200, 11, 0.08);
  color: var(--accent);
}
.form__upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.form__upload:hover { border-color: var(--accent); background: var(--bg-alt); }
.form__upload svg { width: 32px; height: 32px; margin-bottom: 10px; color: var(--accent); }
.form__submit { margin-top: 8px; }

/* ----------- FAQ ----------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq__item.open { box-shadow: var(--shadow); }
.faq__q {
  width: 100%; text-align: left;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(170, 200, 11, 0.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease);
}
.faq__item.open .faq__plus { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq__plus svg { width: 14px; height: 14px; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ----------- FOOTER ----------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 0;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__logo img { height: 60px; width: auto; margin-bottom: 22px; }
.footer__col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  transition: color 0.2s, padding 0.2s;
}
.footer__col a:hover { color: var(--accent-light); padding-left: 4px; }
.footer__col p, .footer__col li { font-size: 14px; }
.footer__col strong { color: var(--white); font-weight: 600; }
.footer__contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px;
}
.footer__contact-item svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--accent-light);
  margin-top: 2px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.7); }

/* ----------- WHATSAPP WIDGET ----------- */
.wa-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9998;
}
.wa-widget__button {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-widget__button:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
.wa-widget__button svg { width: 32px; height: 32px; }
.wa-widget__button::before, .wa-widget__button::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
}
.wa-widget__button::after { animation-delay: 1s; }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-widget__tooltip {
  position: absolute;
  right: 75px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease);
  box-shadow: var(--shadow);
}
.wa-widget__tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--primary);
}
.wa-widget:hover .wa-widget__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ----------- LANGUAGE SWITCHER ----------- */
.lang-switch {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9999;
  font-family: var(--font-head);
}
.lang-switch__current {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lang-switch__current:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.lang-switch__flag {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: var(--bg-alt);
}
.lang-switch__menu {
  position: absolute;
  bottom: calc(100% + 10px); left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border-soft);
}
.lang-switch.open .lang-switch__menu { display: flex; }
.lang-switch__option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.lang-switch__option:hover { background: var(--bg-alt); }
.lang-switch__option.active { background: rgba(170, 200, 11, 0.08); color: var(--accent); font-weight: 700; }
.lang-switch__option strong { font-weight: 700; }
.lang-switch__chevron { transition: transform 0.2s; }
.lang-switch.open .lang-switch__chevron { transform: rotate(180deg); }

/* ----------- SUBPAGE HERO BANNER (50vh) ----------- */
.subhero {
  position: relative;
  height: 50vh; min-height: 380px;
  margin-top: 0;
  overflow: hidden;
}
.subhero__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 14s ease-out forwards;
}
.subhero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 25, 22, 0.85) 0%, rgba(26, 25, 22, 0.55) 100%);
}
.subhero__content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px 0;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.78); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }
.subhero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 16px;
  max-width: 880px;
}
.subhero__subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

/* ----------- CONTENT 2-KOLOMS ----------- */
.content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-cols--reverse .content-cols__img { order: -1; }
.content-cols__text h2 { margin-bottom: 20px; }
.content-cols__text p { font-size: 16px; }
.content-cols__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.content-cols__img img { width: 100%; height: 100%; object-fit: cover; }
.content-cols + .content-cols { margin-top: 80px; }

/* ----------- CTA BAND ----------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(170, 200, 11, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(170, 200, 11, 0.15) 0%, transparent 60%);
}
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(28px, 3.4vw, 44px); }
.cta-band p { color: rgba(255, 255, 255, 0.88); font-size: 18px; margin-bottom: 32px; }
.cta-band__buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ----------- CONTACT PAGE ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info-block {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-block:last-child { border-bottom: 0; }
.contact-info-block__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(170, 200, 11, 0.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-block__icon svg { width: 20px; height: 20px; }
.contact-info-block strong { display: block; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.contact-info-block p, .contact-info-block a { font-size: 15px; color: var(--text-soft); }
.contact-info-block a:hover { color: var(--accent); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ----------- ABOUT TIMELINE ----------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--accent);
}
.timeline__item {
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -41px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline__year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline__item h4 { margin-bottom: 6px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.value__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--white);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.value__icon svg { width: 28px; height: 28px; }

/* ----------- PROJECT GALLERY ----------- */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.project-gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.project-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.project-gallery__item:hover img { transform: scale(1.05); }
.project-gallery__item--lg { grid-column: span 2; grid-row: span 2; aspect-ratio: 4/3; }

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius);
  margin: 40px 0;
}
.project-meta__item strong {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.project-meta__item span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}

.uar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.uar-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  border-top: 4px solid var(--accent);
}
.uar-card h4 { margin-bottom: 10px; font-size: 16px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.uar-card p { font-size: 15px; margin: 0; }

/* ----------- ARTICLE / TIP DETAIL ----------- */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article__lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}
.article h2 { margin: 40px 0 18px; font-size: 28px; }
.article h3 { margin: 32px 0 12px; font-size: 22px; }
.article p { font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.article ul { margin-bottom: 20px; padding-left: 24px; }
.article ul li { list-style: disc; margin-bottom: 8px; color: var(--text-soft); }
.article__img { margin: 36px 0; border-radius: var(--radius); overflow: hidden; }
.article__img img { width: 100%; }
.article__quote {
  border-left: 4px solid var(--accent);
  padding: 12px 0 12px 24px;
  font-size: 19px;
  font-style: italic;
  color: var(--primary);
  margin: 32px 0;
}

/* ----------- ANIMATIES (IntersectionObserver) ----------- */
.fade-x-left { opacity: 0; transform: translateX(-80px); transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease); }
.fade-x-right { opacity: 0; transform: translateX(80px); transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease); }
.fade-up { opacity: 0; transform: translateY(40px) scale(0.96); transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease); }
.fade-x-left.in-view, .fade-x-right.in-view, .fade-up.in-view { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
.stagger > * { transition-delay: 0ms; }
.stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in-view > *:nth-child(2) { transition-delay: 220ms; }
.stagger.in-view > *:nth-child(3) { transition-delay: 440ms; }
.stagger.in-view > *:nth-child(4) { transition-delay: 660ms; }
.stagger.in-view > *:nth-child(5) { transition-delay: 880ms; }
.stagger.in-view > *:nth-child(6) { transition-delay: 1100ms; }

/* ============ TABLET ============ */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta .btn { padding: 10px 18px; font-size: 13px; }
  .nav__phone { display: none; }
  .why-grid, .services-grid, .projects-grid, .tips-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .process__num { width: 60px; height: 60px; font-size: 22px; }
  .process::before { top: 30px; }
  .intro__grid, .quote, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .quote { padding: 40px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .content-cols { grid-template-columns: 1fr; gap: 32px; }
  .content-cols--reverse .content-cols__img { order: 0; }
  .values-grid, .project-gallery, .project-meta, .uar-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
}

/* ============ MOBIEL ============ */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }
  .nav__logo img { height: 38px; }
  .nav.scrolled .nav__logo img { height: 36px; }
  .nav__cta .btn { display: none; }

  .hero { min-height: 560px; }
  .hero h1 { font-size: 36px; }
  .hero__subtitle { font-size: 16px; margin-bottom: 28px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  .why-grid, .services-grid, .projects-grid, .tips-grid, .reviews-grid,
  .values-grid, .project-gallery, .project-meta, .uar-grid {
    grid-template-columns: 1fr;
  }

  .process { grid-template-columns: 1fr; gap: 28px; }
  .process::before { display: none; }
  .process__step { display: flex; gap: 18px; text-align: left; align-items: flex-start; }
  .process__num { margin: 0; width: 56px; height: 56px; font-size: 20px; flex-shrink: 0; }

  .quote { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 56px 0 0; }

  .ticker__item { font-size: 18px; gap: 36px; }
  .ticker__track { gap: 36px; }

  .subhero { min-height: 320px; }
  .subhero h1 { font-size: 32px; }

  .cta-band { padding: 56px 0; }
  .cta-band__buttons { flex-direction: column; align-items: stretch; width: 100%; }

  .lang-switch { bottom: 18px; left: 16px; }
  .lang-switch__current { padding: 8px 12px; font-size: 12px; }
  .lang-switch__flag { width: 20px; height: 20px; font-size: 13px; }
  .wa-widget { bottom: 18px; right: 16px; }
  .wa-widget__button { width: 56px; height: 56px; }
  .wa-widget__button svg { width: 28px; height: 28px; }
  .wa-widget__tooltip { display: none; }

  /* Mobile menu */
  .nav__menu {
    display: flex; flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 16px;
    border-top: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
    align-items: stretch;
    gap: 4px;
    height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
  }
  .nav__menu .btn {
    margin-top: 16px;
    width: 100%;
  }
}

/* RTL */
[dir="rtl"] .hero__eyebrow { transform: translateX(80px); }
[dir="rtl"] .hero h1, [dir="rtl"] .hero__subtitle, [dir="rtl"] .hero__ctas { transform: translateX(80px); }
[dir="rtl"] .hero__eyebrow.animated, [dir="rtl"] .hero h1.animated, [dir="rtl"] .hero__subtitle.animated, [dir="rtl"] .hero__ctas.animated { transform: translateX(0); }
[dir="rtl"] .timeline { padding-left: 0; padding-right: 32px; border-left: 0; border-right: 2px solid var(--accent); }
[dir="rtl"] .timeline__item::before { left: auto; right: -41px; }
[dir="rtl"] .lang-switch { left: auto; right: 24px; }
[dir="rtl"] .wa-widget { right: auto; left: 24px; }
[dir="rtl"] .wa-widget__tooltip { right: auto; left: 75px; }
[dir="rtl"] .wa-widget__tooltip::after { right: auto; left: -6px; border-left-color: transparent; border-right-color: var(--primary); }


/* ----------- INTRO SPLIT (Over Koppens) — clean ----------- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.intro-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.intro-split__text .eyebrow { margin-bottom: 16px; }
.intro-split__text h2 { margin-bottom: 24px; }
.intro-split__text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text-soft);
}
.intro-split__text p:last-of-type { margin-bottom: 32px; }

@media (max-width: 1024px) {
  .intro-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .intro-split { gap: 28px; }
}

/* ============================================================
   KEUKEN HEALTH CHECK
   ============================================================ */

/* Health Check banner — clean, single-line layout */
.healthcheck-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
  padding: 36px 0;
}
.healthcheck-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(170, 200, 11, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 100% 50%, rgba(170, 200, 11, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.healthcheck-banner__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.healthcheck-banner__icon {
  width: 56px; height: 56px;
  background: rgba(170, 200, 11, 0.15);
  border: 1px solid rgba(170, 200, 11, 0.3);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.healthcheck-banner__icon svg {
  width: 26px; height: 26px;
  color: var(--accent);
}
.healthcheck-banner__text { color: var(--white); }
.healthcheck-banner__text h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.healthcheck-banner__text p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.healthcheck-banner__text strong {
  color: var(--accent);
  font-weight: 700;
}
.healthcheck-banner__btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(170, 200, 11, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.healthcheck-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(170, 200, 11, 0.45);
  color: var(--primary);
}
.healthcheck-banner__btn svg {
  width: 14px; height: 14px;
  transition: transform 0.25s var(--ease);
}
.healthcheck-banner__btn:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
  .healthcheck-banner { padding: 28px 0; }
  .healthcheck-banner__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 16px 16px;
  }
  .healthcheck-banner__icon { width: 44px; height: 44px; }
  .healthcheck-banner__icon svg { width: 22px; height: 22px; }
  .healthcheck-banner__text h3 { font-size: 17px; }
  .healthcheck-banner__text p { font-size: 13px; }
  .healthcheck-banner__btn {
    grid-column: 1 / -1;
    width: 100%;
    padding: 13px 22px;
  }
}

/* === Health Check tool pagina === */
.hc-stage {
  min-height: calc(100vh - 200px);
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 0% 0%, rgba(170,200,11,0.06) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(26,25,22,0.04) 0%, transparent 50%),
    var(--bg-alt);
}
.hc-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.hc-progress {
  background: var(--white);
  border-radius: 100px;
  padding: 6px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hc-progress__bar {
  flex: 1;
  height: 8px;
  background: var(--border-soft);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.hc-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 100px;
  width: 0%;
  transition: width 0.5s var(--ease);
}
.hc-progress__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-soft);
  padding: 0 12px;
  white-space: nowrap;
}

.hc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: hc-card-in 0.6s var(--ease) forwards;
}
@keyframes hc-card-in {
  to { opacity: 1; transform: translateY(0); }
}

.hc-intro__icon {
  font-size: 56px; margin-bottom: 18px; display: block;
}
.hc-intro h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hc-intro p {
  font-size: 17px;
  margin-bottom: 24px;
  color: var(--text-soft);
}
.hc-intro__usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.hc-intro__usp {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.hc-intro__usp-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.hc-intro__usp-text {
  font-size: 13px; font-weight: 600;
  color: var(--text-soft);
}
.hc-intro__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 36px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(170, 200, 11, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer; border: 0;
}
.hc-intro__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(170, 200, 11, 0.45);
}

.hc-question__icon { font-size: 40px; margin-bottom: 16px; }
.hc-question__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-dark);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.hc-question h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  margin-bottom: 16px;
}
.hc-question__sub {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 32px;
}
.hc-options { display: flex; flex-direction: column; gap: 12px; }
.hc-option {
  position: relative;
  padding: 22px 24px;
  background: var(--bg-alt);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex; align-items: center; gap: 16px;
  text-align: left;
  font-family: var(--font-body);
}
.hc-option:hover {
  background: var(--white);
  border-color: var(--accent-light);
  transform: translateX(4px);
}
.hc-option__dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.25s;
  position: relative;
}
.hc-option:hover .hc-option__dot { border-color: var(--accent); }
.hc-option__dot::after {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.2s var(--ease);
}
.hc-option--selected .hc-option__dot { border-color: var(--accent); }
.hc-option--selected .hc-option__dot::after { transform: scale(1); }
.hc-option--selected {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(170, 200, 11, 0.18);
}
.hc-option__content { flex: 1; }
.hc-option__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 2px;
}
.hc-option__desc {
  font-size: 13px;
  color: var(--text-muted);
}
.hc-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; gap: 16px;
}
.hc-nav__back {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  background: none; border: 0; cursor: pointer;
  padding: 12px 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.hc-nav__back:hover { color: var(--primary); }
.hc-nav__back:disabled { opacity: 0.3; cursor: not-allowed; }
.hc-nav__next {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 0; cursor: pointer;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.hc-nav__next:hover { background: var(--accent-dark); color: var(--white); transform: translateX(4px); }
.hc-nav__next:disabled { background: var(--border); color: var(--text-muted); cursor: not-allowed; transform: none; }

/* === Result === */
.hc-result__head { text-align: center; margin-bottom: 40px; }
.hc-result__head h1 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 12px;
}
.hc-result__overall {
  display: inline-block;
  padding: 8px 24px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  border-radius: 100px;
  margin-top: 8px;
}
.hc-result__overall--good { background: var(--accent); }
.hc-result__overall--ok { background: #FBBF24; color: var(--primary); }
.hc-result__overall--bad { background: var(--emergency); color: var(--white); }

.hc-radar-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  display: flex; justify-content: center;
  margin-bottom: 32px;
}
.hc-radar { width: 100%; max-width: 520px; height: auto; }
.hc-radar__grid { fill: none; stroke: var(--border); stroke-width: 1; }
.hc-radar__axis { stroke: var(--border); stroke-width: 1; }
.hc-radar__data {
  fill: rgba(170, 200, 11, 0.25);
  stroke: var(--accent-dark);
  stroke-width: 2.5;
  stroke-linejoin: round;
  transform-origin: center;
  animation: hc-radar-grow 1.4s var(--ease) forwards;
}
@keyframes hc-radar-grow {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.hc-radar__point {
  fill: var(--accent-dark);
  stroke: var(--white); stroke-width: 2;
  opacity: 0;
  animation: hc-radar-point 0.4s var(--ease) forwards;
}
.hc-radar__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  fill: var(--primary);
}
.hc-radar__score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  fill: var(--accent-dark);
}
@keyframes hc-radar-point {
  to { opacity: 1; }
}

.hc-dimensions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.hc-dim {
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--accent);
}
.hc-dim--bad { border-left-color: var(--emergency); }
.hc-dim--ok { border-left-color: #FBBF24; }
.hc-dim--good { border-left-color: var(--accent); }
.hc-dim__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.hc-dim__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}
.hc-dim__score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
}
.hc-dim__score-max {
  font-size: 13px; color: var(--text-muted);
  font-weight: 500;
}
.hc-dim__advice { font-size: 14px; color: var(--text-soft); margin: 0; }

.hc-result__cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hc-result__cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(170,200,11,0.18), transparent 60%);
}
.hc-result__cta-inner { position: relative; z-index: 1; }
.hc-result__cta h3 {
  color: var(--white); font-size: 26px; margin-bottom: 12px;
}
.hc-result__cta p {
  color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 16px;
}
.hc-result__cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(170, 200, 11, 0.4);
}
.hc-result__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(170, 200, 11, 0.6);
  color: var(--primary);
}
.hc-result__restart {
  margin-top: 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  background: none; border: 0; cursor: pointer;
  display: block; margin-left: auto; margin-right: auto;
  padding: 8px 16px;
}
.hc-result__restart:hover { color: var(--primary); }

@media (max-width: 768px) {
  .hc-stage { padding: 90px 0 60px; }
  .hc-card { padding: 32px 24px; }
  .hc-intro__usps { grid-template-columns: 1fr; gap: 12px; }
  .hc-dimensions { grid-template-columns: 1fr; }
  .hc-result__cta { padding: 36px 24px; }
}

/* === Health Check formulier (in result card) === */
.hc-result__formbox {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-top: 8px;
  animation: hc-card-in 0.5s var(--ease) forwards;
}
.hc-result__formbox h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.hc-result__formbox > p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.hc-result__formbox form { display: flex; flex-direction: column; gap: 16px; }
.hc-form__actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; margin-top: 12px;
}
.hc-form__cancel {
  background: none; border: 0;
  font-family: var(--font-head);
  font-weight: 600; font-size: 14px;
  color: var(--text-muted);
  cursor: pointer; padding: 12px 8px;
  transition: color 0.2s;
}
.hc-form__cancel:hover { color: var(--primary); }
.hc-form__error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--emergency);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin: 0;
}

/* Bedankt-scherm */
.hc-result__thanks {
  background: linear-gradient(135deg, rgba(170,200,11,0.08) 0%, rgba(170,200,11,0.03) 100%);
  border: 1px solid rgba(170,200,11,0.25);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  animation: hc-card-in 0.6s var(--ease) forwards;
}
.hc-result__thanks-icon {
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  animation: hc-thanks-pop 0.6s var(--ease) 0.2s both;
}
.hc-result__thanks-icon svg {
  width: 36px; height: 36px; color: var(--primary);
}
@keyframes hc-thanks-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.hc-result__thanks h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
}
.hc-result__thanks p {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 12px;
}
.hc-result__thanks-call {
  margin-top: 18px !important;
  font-size: 14px !important;
  color: var(--text-muted) !important;
}
.hc-result__thanks-call a { color: var(--accent-dark); }

@media (max-width: 768px) {
  .hc-result__formbox { padding: 24px 20px; }
  .hc-form__actions { flex-direction: column-reverse; gap: 12px; }
  .hc-form__actions .hc-result__cta-btn { width: 100%; justify-content: center; }
  .hc-result__thanks { padding: 36px 20px; }
}

/* === Form feedback (offerte, contact) === */
.form__feedback {
  padding: 24px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  margin-bottom: 16px;
  animation: hc-card-in 0.5s var(--ease) forwards;
}
.form__feedback--success {
  background: linear-gradient(135deg, rgba(170,200,11,0.08) 0%, rgba(170,200,11,0.03) 100%);
  border: 1px solid rgba(170,200,11,0.25);
  text-align: center;
  padding: 36px 28px;
}
.form__feedback--success h3 {
  color: var(--primary); font-size: 22px; margin: 12px 0 8px;
}
.form__feedback--success p {
  color: var(--text-soft); margin: 0; font-size: 15px;
}
.form__feedback-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto;
  animation: hc-thanks-pop 0.6s var(--ease) 0.2s both;
}
.form__feedback-icon svg {
  width: 28px; height: 28px; color: var(--primary);
}
.form__feedback--error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: var(--emergency);
  font-weight: 600;
}

/* ============================================================
   PRODUCT CARDS — voor diensten met type-grids
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__body p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   USP CARDS — voor onderhoud / filterkast-voordelen grid
   ============================================================ */
.usp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--accent);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.usp-card__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.usp-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.usp-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1024px) {
  .usp-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .usp-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BENEFITS LIST — voor onderhoud-pagina 11 voordelen
   ============================================================ */
.benefits-block {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}
.benefits-block h3 {
  font-size: 22px;
  color: var(--primary);
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.benefits-list li svg {
  flex-shrink: 0;
  color: var(--accent-dark);
  margin-top: 2px;
}
@media (max-width: 720px) {
  .benefits-block { padding: 28px 24px; }
  .benefits-list { grid-template-columns: 1fr; gap: 12px; }
}

/* ════════════════════════════════════════════════════════════
   ENHANCED HOVER & MICRO-INTERACTIES (hele site)
   Dynamische effecten bij muis-over — subtiel maar duidelijk merkbaar
   ════════════════════════════════════════════════════════════ */

/* ---- NAV MENU: onderstreping die uitgroeit + kleur ---- */
.nav__menu a {
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__menu a:hover { color: var(--accent-dark); }
.nav__menu a:hover::after,
.nav__menu a.active::after { transform: scaleX(1); }

/* ---- LOGO: subtiele zoom ---- */
.nav__logo img, .footer__logo img {
  transition: transform 0.35s var(--ease);
}
.nav__logo:hover img { transform: scale(1.05); }

/* ---- BUTTONS: lift + glans-sweep ---- */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(26,25,22,0.18); }
.btn:hover::before { left: 130%; }
.btn:active { transform: translateY(-1px); }

/* ---- SERVICE CARDS: sterkere lift + accent rand + titel kleurt ---- */
.service-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(26,25,22,0.16);
  border-bottom-color: var(--accent);
}
.service-card:hover h3 { color: var(--accent-dark); }
.service-card h3 { transition: color 0.3s var(--ease); }
.service-card__media img { transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__link svg { transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(6px); }

/* ---- PRODUCT CARDS: lift + zoom + titel kleurt ---- */
.product-card { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(26,25,22,0.16);
}
.product-card h3 { transition: color 0.3s var(--ease); }
.product-card:hover h3 { color: var(--accent-dark); }
.product-card__media img { transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.07); }

/* ---- WHY CARDS: lift + icoon draait/schaalt + glow ---- */
.why-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(26,25,22,0.14);
}
.why-card__icon {
  transition: transform 0.45s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.why-card:hover .why-card__icon {
  transform: scale(1.12) rotate(-6deg);
  color: var(--accent-dark);
}

/* ---- USP CARDS: lift + bovenrand groeit ---- */
.usp-card { position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.usp-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(26,25,22,0.13); }
.usp-card__num { transition: transform 0.35s var(--ease); }
.usp-card:hover .usp-card__num { transform: scale(1.1); }

/* ---- TIP CARDS: lift + zoom + titel ---- */
.tip-card { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.tip-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(26,25,22,0.16); }
.tip-card img { transition: transform 0.6s var(--ease); }
.tip-card:hover img { transform: scale(1.07); }
.tip-card h3 { transition: color 0.3s var(--ease); }
.tip-card:hover h3 { color: var(--accent-dark); }

/* ---- PROJECT CARDS: zoom + overlay omhoog ---- */
.project-card { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26,25,22,0.18); }
.project-card__media img { transition: transform 0.7s var(--ease); }
.project-card:hover .project-card__media img { transform: scale(1.08); }
.project-card__overlay { transition: transform 0.4s var(--ease), background 0.4s var(--ease); }

/* ---- BENEFITS LIST: item schuift + checkmark pulseert ---- */
.benefits-list li {
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
  padding: 4px 8px;
  border-radius: 6px;
}
.benefits-list li:hover {
  transform: translateX(6px);
  color: var(--primary);
  background: rgba(170,200,11,0.08);
}
.benefits-list li svg { transition: transform 0.25s var(--ease); }
.benefits-list li:hover svg { transform: scale(1.25); }

/* ---- USP LIST (content-cols): zelfde slide ---- */
.usp-list li { transition: transform 0.25s var(--ease); }
.usp-list li:hover { transform: translateX(5px); }

/* ---- FAQ: vraag krijgt accent achtergrond + plus draait ---- */
.faq__q { transition: background 0.3s var(--ease), color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.faq__q:hover {
  color: var(--accent-dark);
  padding-left: 8px;
}
.faq__plus { transition: transform 0.35s var(--ease), color 0.3s var(--ease); }
.faq__q:hover .faq__plus { transform: rotate(90deg); color: var(--accent-dark); }

/* ---- FOOTER LINKS: schuiven naar rechts + accent ---- */
.footer__col ul a {
  position: relative;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.footer__col ul a::before {
  content: "›";
  position: absolute;
  left: -14px;
  opacity: 0;
  color: var(--accent);
  transition: opacity 0.25s var(--ease), left 0.25s var(--ease);
}
.footer__col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer__col ul a:hover::before { opacity: 1; left: -10px; }

/* ---- FOOTER CONTACT ITEMS: icoon licht op ---- */
.footer__contact-item { transition: transform 0.25s var(--ease); }
.footer__contact-item:hover { transform: translateX(4px); }
.footer__contact-item a { transition: color 0.25s var(--ease); }
.footer__contact-item a:hover { color: var(--accent); }

/* ---- INLINE TEKST-LINKS: onderstreping groeit ---- */
.content-cols__text p a, .faq__a-inner a {
  position: relative;
  color: var(--accent-dark);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s var(--ease);
}
.content-cols__text p a:hover, .faq__a-inner a:hover {
  background-size: 100% 2px;
}

/* ---- HEALTHCHECK BANNER KNOP: pijl beweegt ---- */
.healthcheck-banner__btn svg { transition: transform 0.3s var(--ease); }
.healthcheck-banner__btn:hover svg { transform: translateX(5px); }

/* ---- ALGEMENE CONTENT-COLS AFBEELDINGEN: zoom in kader ---- */
.content-cols__img {
  overflow: hidden;
  border-radius: var(--radius);
}
.content-cols__img img {
  transition: transform 0.6s var(--ease);
  display: block;
  width: 100%;
}
.content-cols__img:hover img { transform: scale(1.05); }

/* Respecteer gebruikers die minder beweging willen */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   SVG-PRODUCTILLUSTRATIES — nette weergave in foto-kaders
   ============================================================ */
/* Illustraties zijn 4:3 met tekst; 'contain' voorkomt afsnijden */
img[src$=".svg"].ill,
.product-card__media img[src$=".svg"],
.service-card__media img[src$=".svg"],
.content-cols__img img[src$=".svg"] {
  object-fit: contain !important;
  background: #F7F8F4;
}

/* ════════════════════════════════════════════════════════════
   MEDTRADING-STIJL HOMEPAGE-ONDERDELEN
   Lime CTA-balk, urgent banner, 4 USP-grid, clients, footer-top
   ════════════════════════════════════════════════════════════ */

/* ─── Lime CTA-balk direct onder hero ─── */
.lime-cta {
  background: var(--accent);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.lime-cta__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--primary);
}
.lime-cta__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lime-cta__text { flex: 1; min-width: 0; }
.lime-cta__text strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary);
}
.lime-cta__text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--primary);
  opacity: 0.8;
}
.lime-cta__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn--dark {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}
.btn--dark:hover { background: var(--primary-dark); color: white; }
@media (max-width: 860px) {
  .lime-cta__inner { flex-direction: column; text-align: center; gap: 18px; }
  .lime-cta__buttons { flex-wrap: wrap; justify-content: center; }
}

/* ─── 24/7 storingen-banner ─── */
.urgent-banner {
  background: var(--primary-dark);
  padding: 14px 0;
  color: white;
}
.urgent-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14.5px;
  flex-wrap: wrap;
}
.urgent-banner__pulse {
  width: 11px; height: 11px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: urgent-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--accent);
}
.urgent-banner strong { color: var(--accent); }
.urgent-banner span { opacity: 0.78; }
.urgent-banner__link {
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(170,200,11,0.18);
  border: 1px solid var(--accent);
  border-radius: 20px;
  transition: background 0.25s var(--ease);
}
.urgent-banner__link:hover { background: var(--accent); color: var(--primary); }
@keyframes urgent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170,200,11,0.7); }
  50% { box-shadow: 0 0 0 12px rgba(170,200,11,0); }
}

/* ─── 4 USP-blokken met centrale illustratie (medtrading layout) ─── */
.usp-medstyle {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px) 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.usp-medstyle__block {
  background: var(--bg-alt);
  padding: 30px 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.usp-medstyle__block:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26,25,22,0.10);
}
.usp-medstyle__block h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.usp-medstyle__block p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}
.usp-medstyle__center {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.usp-medstyle__center img {
  width: 100%;
  height: auto;
  max-height: 580px;
  filter: drop-shadow(0 14px 30px rgba(26,25,22,0.10));
}
@media (max-width: 968px) {
  .usp-medstyle {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }
  .usp-medstyle__center {
    grid-row: 3;
    grid-column: 1;
    max-height: 420px;
    order: 0;
  }
  .usp-medstyle__block--tl { order: 1; }
  .usp-medstyle__block--tr { order: 2; }
  .usp-medstyle__block--bl { order: 4; }
  .usp-medstyle__block--br { order: 5; }
}

/* ─── Section center variant ─── */
.section--center .section-head,
.section-head--narrow {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Clients grid (Onze klanten) ─── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.client-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.client-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(26,25,22,0.10);
}
.client-card svg {
  color: var(--accent-dark);
  margin-bottom: 6px;
  transition: transform 0.35s var(--ease);
}
.client-card:hover svg { transform: scale(1.12); }
.client-card strong {
  display: block;
  font-size: 17px;
  color: var(--primary);
}
.client-card span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ─── Footer top-strip in medtrading-stijl ─── */
.footer__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__top-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer__top-item svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.footer__top-item h4 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}
.footer__top-item p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.55;
}
.footer__top-item a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer__top-item a:hover { color: var(--accent); }
.footer__top-item small { font-size: 13px; }
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
}

/* ════════════════════════════════════════════════════════════
   COMPACTE 4-WIDE DIENSTEN-PREVIEW (homepage)
   ════════════════════════════════════════════════════════════ */
.diensten-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diensten-preview__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
}
.diensten-preview__card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(26,25,22,0.10);
}
.diensten-preview__icon {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease);
}
.diensten-preview__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.diensten-preview__card:hover .diensten-preview__icon { transform: scale(1.03); }
.diensten-preview__card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--primary);
  font-weight: 700;
}
.diensten-preview__card p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  flex: 1;
}
.diensten-preview__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease);
}
.diensten-preview__card:hover .diensten-preview__link {
  transform: translateX(4px);
  color: var(--primary);
}
@media (max-width: 968px) {
  .diensten-preview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .diensten-preview { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   PRODUCT-PHOTOS GRID — 8 ECHTE FOTO'S VOLLEDIG ZICHTBAAR
   (object-fit: contain, geen bijsnijden — Koppens-label blijft zichtbaar)
   ════════════════════════════════════════════════════════════ */
.product-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-photo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.product-photo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(26,25,22,0.12);
}
.product-photo-card__media {
  width: 100%;
  aspect-ratio: 5/4;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.product-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;   /* CRUCIAAL: volledige foto zichtbaar */
  object-position: center;
  transition: transform 0.5s var(--ease);
}
.product-photo-card:hover .product-photo-card__media img {
  transform: scale(1.04);
}
.product-photo-card__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-photo-card__body h3 {
  margin: 0 0 8px;
  font-size: 15.5px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}
.product-photo-card__body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .product-photos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .product-photos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-photos-grid { grid-template-columns: 1fr; }
}

/* ─── Project-illustratie (anonieme weergave i.p.v. fotogallerij) ─── */
.project-illustration {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
  border: 1px solid var(--border);
}
.project-illustration img {
  max-width: 100%;
  max-height: 380px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}
.project-illustration__caption {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
}

/* ─── Werkwijze cirkels — hover vult op met accent (lime) ─── */
.process__num {
  transition: background-color 0.35s var(--ease),
              color 0.35s var(--ease),
              transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.process__step:hover .process__num,
.process__num:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(170, 200, 11, 0.45);
}

/* ─── Google Reviews CTA-blok ─── */
.google-reviews-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 44px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 28px rgba(26,25,22,0.06);
}
.google-reviews-cta__top {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.google-reviews-cta__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.google-reviews-cta__brand strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2px;
}
.google-reviews-cta__stars {
  display: flex;
  gap: 2px;
}
.google-reviews-cta__intro {
  margin: 0 auto 26px;
  max-width: 540px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}
.google-reviews-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .google-reviews-cta { padding: 32px 24px; }
  .google-reviews-cta__brand { flex-direction: column; text-align: center; gap: 10px; }
}

/* ════════════════════════════════════════════════════════════
   GOOGLE REVIEWS CAROUSEL — auto-scroll oneindige loop
   ════════════════════════════════════════════════════════════ */
.reviews-carousel {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  /* Fade-out aan de randen voor smooth visueel */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.reviews-carousel__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
}
.reviews-carousel:hover .reviews-carousel__track {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  /* -50% schuift exact 1 volledige set door (we hebben de set 2x in de DOM) */
  100% { transform: translateX(calc(-50% - 12px)); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track { animation: none; }
}

/* Review-kaartje */
.review-card {
  flex: 0 0 340px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 6px 22px rgba(26, 25, 22, 0.06);
  position: relative;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.review-card--blue   .review-card__avatar { background: #4285F4; }
.review-card--red    .review-card__avatar { background: #EA4335; }
.review-card--green  .review-card__avatar { background: #34A853; }
.review-card--yellow .review-card__avatar { background: #FBBC05; }
.review-card__meta { flex: 1; min-width: 0; }
.review-card__g {
  flex-shrink: 0;
  margin-left: auto;
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review-card__body {
  min-height: 78px;
}

/* Skeleton-bars (placeholder, géén loading-shimmer om geen "echt aan het laden" suggestie te geven) */
.skel {
  background: linear-gradient(90deg, #ECEEE7 0%, #DDE0D5 50%, #ECEEE7 100%);
  border-radius: 4px;
  height: 11px;
}
.skel--name  { width: 75%; margin-bottom: 7px; height: 12px; }
.skel--date  { width: 45%; height: 9px; }
.skel--line  { width: 100%; margin-bottom: 8px; height: 10px; }
.skel--short { width: 62%; }

/* ─── Carousel-kaart: tekst-stijl (vervangt skeleton) ─── */
.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-head);
}
.review-card__name {
  display: block;
  font-size: 14.5px;
  color: var(--primary);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__date {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  font-style: italic;
  opacity: 0.75;
}
.review-card__body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   TIPS & NIEUWS CAROUSEL — auto-scroll oneindige loop
   Zelfde infrastructuur als reviews-carousel
   ════════════════════════════════════════════════════════════ */
.news-carousel {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.news-carousel__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: news-scroll 70s linear infinite;
}
.news-carousel:hover .news-carousel__track {
  animation-play-state: paused;
}
@keyframes news-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
@media (prefers-reduced-motion: reduce) {
  .news-carousel__track { animation: none; }
}

/* News-card — foto bovenaan, tekst eronder, klikbaar */
.news-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 22px rgba(26, 25, 22, 0.06);
  transition: transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 25, 22, 0.12);
}
.news-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.news-card:hover .news-card__media img {
  transform: scale(1.04);
}
.news-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.news-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark, #7a8f08);
}
.news-card__title {
  font-size: 17px;
  line-height: 1.35;
  color: var(--primary);
  margin: 0;
  font-weight: 700;
  font-family: var(--font-head);
}
.news-card__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s var(--ease);
}
.news-card:hover .news-card__link {
  color: var(--accent-dark, #7a8f08);
}

/* /tips/index.html — overzicht-cards (statische grid, niet carousel) */
.tip-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 22px rgba(26, 25, 22, 0.06);
  transition: transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 25, 22, 0.12);
}
.tip-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  overflow: hidden;
}
.tip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.tip-card:hover .tip-card__media img {
  transform: scale(1.04);
}
.tip-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tip-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark, #7a8f08);
}
.tip-card__body h3 {
  font-size: 18px;
  line-height: 1.35;
  color: var(--primary);
  margin: 0;
}
.tip-card__body p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.tip-card__link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.tip-card:hover .tip-card__link {
  color: var(--accent-dark, #7a8f08);
}

/* ════════════════════════════════════════════════════════════
   QUIZ-PROMO — onder de hero/urgent-banner op homepage
   ════════════════════════════════════════════════════════════ */
.quiz-promo {
  padding: 70px 0;
  background: linear-gradient(135deg, #1A1916 0%, #2a2924 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quiz-promo::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(170,200,11,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.quiz-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.quiz-promo__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.quiz-promo__title {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
}
.quiz-promo__subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 26px;
  max-width: 540px;
}
.quiz-promo__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.quiz-promo__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(170,200,11,0.12);
  color: var(--accent);
  border: 1px solid rgba(170,200,11,0.3);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
}
.quiz-promo__btn {
  font-size: 16px;
  padding: 16px 32px;
}

/* Visual: stylized quiz-card */
.quiz-promo__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.quiz-promo__card {
  background: #fff;
  color: var(--primary);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.4);
  transform: rotate(-1.2deg);
  transition: transform 0.4s var(--ease);
}
.quiz-promo__card:hover {
  transform: rotate(0) translateY(-4px);
}
.quiz-promo__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.quiz-promo__step {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.quiz-promo__progress {
  flex: 1;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}
.quiz-promo__progress span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
}
.quiz-promo__q {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--primary);
  font-family: var(--font-head);
}
.quiz-promo__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-promo__opt {
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--bg-alt);
  font-size: 13.5px;
  border: 1.5px solid transparent;
  color: var(--primary);
}
.quiz-promo__opt--active {
  border-color: var(--accent);
  background: rgba(170,200,11,0.1);
  font-weight: 600;
}

@media (max-width: 860px) {
  .quiz-promo { padding: 50px 0; }
  .quiz-promo__inner { grid-template-columns: 1fr; gap: 40px; }
  .quiz-promo__title { font-size: 28px; }
  .quiz-promo__visual { order: -1; }
  .quiz-promo__card { max-width: 360px; }
}
