/* DirectFix Klusservice – Stylesheet (Donker Thema) */

/* =============================================
   GOOGLE FONTS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Donker thema palet */
  --bg-main:     #0d1117;
  --bg-section:  #141c2b;
  --bg-card:     #1a2235;

  /* Core palette aliases */
  --blauw:      #f47920;
  --blauw-dark: #d4640f;
  --oranje:     #f47920;
  --oranje-dark:#d4640f;
  --babyblauw:  #141c2b;
  --wit:        #ffffff;
  --grijs:      #141c2b;
  --tekst:      #ffffff;
  --rand:       rgba(255, 255, 255, 0.10);

  /* Legacy aliases (bijgewerkt voor donker thema) */
  --color-primary:    #ffffff;
  --color-accent:     #f47920;
  --color-bg-light:   #141c2b;
  --color-white:      #ffffff;
  --color-text:       #ffffff;
  --color-text-muted: #b0b8c8;
  --color-border:     rgba(255, 255, 255, 0.10);
  --shadow-card:      0 4px 16px rgba(0, 0, 0, 0.40);
  --shadow-hover:     0 8px 28px rgba(0, 0, 0, 0.60);
  --radius-btn:       6px;
  --radius-card:      10px;
  --transition:       0.25s ease;
  --font-heading:     'Montserrat', sans-serif;
  --font-body:        'Open Sans', sans-serif;
  --max-width:        1100px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #0d1117;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
p { margin-bottom: 1rem; }
.accent { color: var(--color-accent); }

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: 5rem; }
.section--light { background-color: #141c2b; }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header p {
  max-width: 600px;
  margin-inline: auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}
.divider {
  width: 56px; height: 4px;
  background-color: var(--color-accent);
  border-radius: 2px;
  margin: 0.75rem auto 1.25rem;
}

/* =============================================
   LOADING SPINNER
   ============================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #0d1117;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.spinner {
  width: 44px; height: 44px;
  border: 4px solid rgba(255, 255, 255, 0.10);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #d9640a;
  border-color: #d9640a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244, 121, 32, 0.40);
  animation: pulsate 1.2s ease-out;
}
.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-white);
  color: #0d1117;
  transform: translateY(-2px);
}
.btn--ghost {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.20);
  color: var(--color-text-muted);
}
.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Ripple */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }
@keyframes pulsate {
  0%   { box-shadow: 0 0 0 0 rgba(244, 121, 32, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(244, 121, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 121, 32, 0); }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0d1117;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s ease;
}
.navbar--scrolled {
  background-color: #141c2b;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.40);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: height 0.3s ease;
}
.navbar--scrolled .navbar__inner { height: 60px; }
.navbar__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.navbar__logo span {
  color: #f47920;
  font-weight: 800;
}
.navbar__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar__nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--color-white); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }
.navbar__nav a.active { color: var(--color-accent); }

.navbar__cta {
  background-color: #f47920;
  color: #ffffff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color var(--transition), transform 0.15s ease;
  white-space: nowrap;
}
.navbar__cta:hover {
  background-color: #d96510;
  transform: translateY(-1px);
}
.navbar__cta::after { display: none !important; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
}
.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Navbar overlay (mobile) */
.navbar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 98;
}
.navbar-overlay.visible { display: block; }

/* =============================================
   URGENCY BANNER
   ============================================= */
.urgency-banner {
  background-color: #141c2b;
  border-bottom: 1px solid rgba(244, 121, 32, 0.25);
  padding: 0.6rem 0;
  text-align: center;
}
.urgency-banner p {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #b0b8c8;
  margin-bottom: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, #0d1117 0%, #141c2b 100%);
  color: var(--color-white);
  padding-block: 6rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.05;
  animation: floatIcon linear infinite;
}
@keyframes floatIcon {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.04; }
  50%  { opacity: 0.09; }
  100% { transform: translateY(-50px) rotate(25deg); opacity: 0.04; }
}
.hero__inner { position: relative; max-width: 680px; }
.hero__badge {
  display: inline-block;
  background-color: rgba(244, 121, 32, 0.2);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--color-white); margin-bottom: 1.25rem; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* =============================================
   USP BAR (Trust badges)
   ============================================= */
.usp-bar {
  background-color: var(--color-accent);
  padding-block: 1rem;
}
.usp-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.usp-bar__item {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap;
}
.usp-bar__item:last-child { border-right: none; }
.usp-bar__item .fas {
  color: #ffffff;
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .usp-bar__item { border-right: none; padding: 0.4rem 1rem; }
}

/* =============================================
   STATS COUNTER BAR
   ============================================= */
.stats-bar {
  background-color: #141c2b;
  padding-block: 3rem;
  border-top: 3px solid #f47920;
  border-bottom: 3px solid #f47920;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-counter {
  position: relative;
  padding-top: 1.75rem;
}
.stat-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #f47920;
  border-radius: 2px;
}
.stat-counter__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #f47920;
  line-height: 1;
}
.stat-counter__suffix { font-size: 2rem; }
.stat-counter__label {
  font-size: 0.82rem;
  color: #b0b8c8;
  margin-top: 0.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   DIENSTEN GRID
   ============================================= */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.dienst-card {
  background-color: #1a2235;
  border: none;
  border-top: 3px solid #f47920;
  border-radius: 6px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
  transition: all 0.25s ease;
  position: relative;
}
.dienst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.50);
}
.dienst-card__icon {
  color: #f47920;
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}
.dienst-card h3 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 0.6rem;
}
.dienst-card p {
  color: #b0b8c8;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}
.dienst-card::after {
  content: 'Meer info \2192';
  display: block;
  opacity: 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #f47920;
  margin-top: 0.75rem;
  transition: opacity 0.2s ease;
}
.dienst-card:hover::after { opacity: 1; }

/* Knop binnen dienst-card (diensten.html) */
.dienst-card .btn {
  margin-top: 1.5rem;
  display: inline-block;
}

/* =============================================
   BTN-GROUP (knoppenrij in secties)
   ============================================= */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* =============================================
   FEATURE LIST (over-mij checklist)
   ============================================= */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #ffffff;
}
.feature-list li .feature-check {
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* =============================================
   REVIEW CARDS
   ============================================= */
.review-card {
  background: #1a2235;
  border-top: 3px solid #f47920;
  border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
  display: flex;
  flex-direction: column;
}
.review-card__quote {
  display: block;
  font-size: 64px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.review-card__text {
  font-size: 15px;
  color: #b0b8c8;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1rem;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: #f47920;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: #ffffff; }
.review-card__meta { font-size: 0.78rem; color: #b0b8c8; margin-top: 2px; }

/* =============================================
   REVIEWS HOME SLIDER
   ============================================= */
.reviews-home-section {
  background-color: #141c2b;
  padding-block: 5rem;
}
.reviews-home-section .section__header h2 { color: #ffffff; }
.reviews-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.reviews-track-outer {
  flex: 1;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}
.reviews-slider-prev,
.reviews-slider-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.30);
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.reviews-slider-prev:hover,
.reviews-slider-next:hover {
  background: #f47920;
  border-color: #f47920;
  color: #ffffff;
}
.reviews-home-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.reviews-home-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.reviews-home-dot.active {
  background: #f47920;
  transform: scale(1.35);
}
@media (max-width: 768px) {
  .reviews-slider-wrapper { gap: 0.6rem; }
  .reviews-slider-prev, .reviews-slider-next { width: 38px; height: 38px; font-size: 0.8rem; }
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background-color: #1a2235;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.97rem;
  color: #ffffff;
  text-align: left;
  gap: 1rem;
  transition: background-color var(--transition);
}
.faq-question:hover { background-color: rgba(244, 121, 32, 0.06); }
.faq-question.open { background-color: rgba(244, 121, 32, 0.08); color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: transform var(--transition);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-answer.open { max-height: 200px; padding: 0 1.5rem 1.1rem; }
.faq-answer p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info__item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-info__icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.contact-info__label { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: #ffffff; margin-bottom: 0.15rem; }
.contact-info__value { font-size: 0.95rem; color: #b0b8c8; margin-bottom: 0; }

.contact-form {
  background-color: #1a2235;
  border-radius: var(--radius-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(244, 121, 32, 0.20);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  background-color: #141c2b;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder { color: rgba(176, 184, 200, 0.60); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f47920;
  box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.15);
}
.form-group select option { background-color: #141c2b; color: #ffffff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; gap: 1rem; }

/* Multi-step form */
.step-indicator-wrapper { padding-bottom: 2rem; }
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-color: #141c2b;
  border: 2px solid rgba(255, 255, 255, 0.20);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
  position: relative;
}
.step-dot.active { background-color: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.step-dot.done { background-color: rgba(244, 121, 32, 0.25); color: #f47920; border-color: #f47920; }
.step-dot .step-label {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.step-dot.active .step-label { color: var(--color-accent); }
.step-line {
  flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.12);
  max-width: 80px;
  transition: background-color var(--transition);
}
.step-line.done { background-color: var(--color-accent); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step > h3 { margin-bottom: 0.5rem; }
.form-step > p { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 1.25rem; }

/* Klus type cards */
.klus-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.klus-type-card {
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  -webkit-user-select: none;
  user-select: none;
  background-color: #141c2b;
  color: #ffffff;
}
.klus-type-card:hover { border-color: var(--color-accent); background-color: rgba(244, 121, 32, 0.08); transform: translateY(-2px); }
.klus-type-card.selected { border-color: var(--color-accent); background-color: rgba(244, 121, 32, 0.12); color: #f47920; }
.klus-type-card__icon { font-size: 1.6rem; }
.klus-type-card__label { font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; color: inherit; }

/* Photo upload */
.photo-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition);
  margin-bottom: 1rem;
  background-color: #141c2b;
}
.photo-upload-area:hover { border-color: var(--color-accent); background-color: rgba(244, 121, 32, 0.05); }
.photo-upload-area input[type="file"] { display: none; }
.photo-upload-area p { color: var(--color-text-muted); font-size: 0.88rem; margin-bottom: 0; }
.upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }

/* Form success */
#formSuccess { text-align: center; padding: 2rem; }

/* Opeenvolgende form-row krijgt vanzelf marge */
.form-row + .form-row { margin-top: 1rem; }

/* =============================================
   REVIEW SLIDER
   ============================================= */
.reviews-slider-section {
  background-color: #141c2b;
  padding-block: 5rem;
}
.reviews-slider-section .section__header h2 {
  color: #ffffff;
}
.slider-stars {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  color: #f0a500;
  letter-spacing: 5px;
}
.review-slider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.slider-track {
  flex: 1;
  min-width: 0;
}
.slider-slide { display: none; }
.slider-slide.active {
  display: block;
  animation: sliderFadeIn 0.45s ease;
}
@keyframes sliderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-slide-card {
  background: #1a2235;
  border-top: 3px solid #f47920;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.50);
}
.review-slide-card__quote {
  display: block;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 0.75rem;
}
.review-slide-card__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #b0b8c8;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 2rem;
}
.review-slide-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.25rem;
}
.review-slide-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f47920;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.review-slide-card__name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.975rem;
}
.review-slide-card__date {
  color: #b0b8c8;
  font-size: 0.85rem;
  margin-top: 2px;
}
.slider-arrow {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.slider-arrow:hover {
  border-color: #f47920;
  color: #f47920;
  background: rgba(244,121,32,0.1);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.slider-dot.active {
  background: #f47920;
  transform: scale(1.35);
}
.reviews-slider-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.50);
  font-size: 0.9rem;
}
.reviews-slider-footer strong { color: rgba(255,255,255,0.85); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.lightbox--open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 6px; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  background: none; border: none;
  color: var(--color-white);
  cursor: pointer; padding: 0.5rem;
  line-height: 1;
  transition: color var(--transition);
  -webkit-user-select: none;
  user-select: none;
}
.lightbox__close { position: absolute; top: 1rem; right: 1.5rem; font-size: 2rem; }
.lightbox__prev,
.lightbox__next { font-size: 3rem; }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--color-accent); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.floating-call,
.floating-whatsapp {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.40);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-call:hover,
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-call {
  background-color: #f47920;
  color: #ffffff;
}
.floating-call i { color: #ffffff; font-size: 18px; }
.floating-whatsapp { background-color: #25d366; color: #ffffff; }
.floating-whatsapp svg { width: 20px; height: 20px; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, #0d1117 0%, #141c2b 100%);
  border-top: 2px solid rgba(244, 121, 32, 0.30);
  padding-block: 6rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(244,121,32,0.03) 0px,
    rgba(244,121,32,0.03) 1px,
    transparent 1px,
    transparent 10px
  );
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-banner p { color: rgba(255,255,255,0.70); margin-bottom: 2rem; max-width: 520px; margin-inline: auto; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineIn {
  from { width: 0; opacity: 0; }
  to   { width: 40px; opacity: 1; }
}
/* ── Scroll 3D entrance ── */
.fade-in {
  opacity: 0;
  transform: perspective(1000px) rotateX(7deg) translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in--visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0);
}

/* ── Cinematic hero reveal ── */
.reveal-wrapper { overflow: hidden; display: block; }
.reveal-line {
  display: block;
  transform: translateY(110%);
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}
@keyframes revealUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

/* ── Floating hero icons ── */
.hero-float-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-float-icon {
  position: absolute;
  color: rgba(255,255,255,0.04);
  animation: float3D ease-in-out infinite;
  will-change: transform;
}
@keyframes float3D {
  0%   { transform: translateY(0px) rotate(0deg); }
  33%  { transform: translateY(-20px) rotate(5deg); }
  66%  { transform: translateY(-10px) rotate(-3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ── Card glare ── */
.card-glare {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  pointer-events: none;
  z-index: 1;
  transition: background 0.1s ease;
}

/* ── Flip counter ── */
@keyframes flipIn {
  from { transform: perspective(400px) rotateX(90deg); opacity: 0; }
  to   { transform: perspective(400px) rotateX(0deg); opacity: 1; }
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: #0d1117;
  border-top: 2px solid #f47920;
  color: rgba(255, 255, 255, 0.70);
  padding-block: 3.5rem 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__logo { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--color-white); margin-bottom: 0.75rem; }
.footer__logo span { color: var(--color-accent); }
.footer__tagline { font-size: 0.9rem; margin-bottom: 0; }
.footer__heading { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--color-white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.55); transition: color 0.2s; }
.footer__links a:hover { color: #ffffff; }
.footer__links span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.55); }
.footer__social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer__social a:hover { background: #f47920; color: #ffffff; }
/* Werkgebied + kaart sectie boven footer */
.footer__area {
  background-color: #141c2b;
  padding-block: 2.5rem 0;
}
.footer__area-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.area-badge {
  border: 1px solid rgba(244, 121, 32, 0.35);
  border-radius: 20px;
  padding: 0.375rem 1rem;
  color: #b0b8c8;
  font-family: var(--font-heading);
  font-size: 0.81rem;
  font-weight: 500;
}
/* Footer iconen (contact kolom) */
.footer-icon {
  color: #f47920;
  margin-right: 0.45rem;
  width: 14px;
  text-align: center;
}
.footer__business-info {
  text-align: center;
  padding: 1rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.40);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.5rem;
}
/* Copyright balk */
.footer__bar {
  background-color: #080d14;
  padding-block: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.35);
}
.footer__bar-inner a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__bar-inner a:hover { color: var(--color-accent); }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { color: rgba(255, 255, 255, 0.90); }

/* =============================================
   OFFERTE PAGINA
   ============================================= */
.offerte-header {
  background-color: #0d1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.40);
}
.offerte-trust {
  background-color: #141c2b;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #b0b8c8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offerte-section {
  background-color: #0d1117;
  min-height: calc(100vh - 120px);
  padding-block: 3rem 5rem;
}
.offerte-section h1 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.offerte-subtitle {
  text-align: center;
  color: #b0b8c8;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.offerte-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}
.offerte-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.offerte-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.20);
  background-color: #141c2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #b0b8c8;
  transition: all var(--transition);
  flex-shrink: 0;
}
.offerte-step-dot.active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: #fff;
}
.offerte-step-dot.done {
  border-color: #f47920;
  background-color: rgba(244, 121, 32, 0.20);
  color: #f47920;
}
.offerte-step-line {
  height: 2px;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.12);
  max-width: 80px;
  transition: background-color var(--transition);
}
.offerte-step-line.done { background-color: var(--color-accent); }
.offerte-card {
  background-color: #1a2235;
  border-radius: 12px;
  border-top: 3px solid #f47920;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.40);
}
.offerte-card h2 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.klus-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.offerte-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
.offerte-success {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #1a2235;
  border-radius: 12px;
  border-top: 3px solid #f47920;
  box-shadow: 0 4px 16px rgba(0,0,0,0.40);
  max-width: 500px;
  margin: 0 auto;
}
.offerte-success__checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(244, 121, 32, 0.15);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: successPop 0.5s ease;
}
@keyframes successPop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* =============================================
   OVER MIJ PAGINA
   ============================================= */
.about-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: center; }
.about-image { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4/5; background-color: #141c2b; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-item { text-align: center; background-color: #1a2235; border-top: 3px solid #f47920; border-radius: var(--radius-card); padding: 1.25rem 1rem; }
.stat-item__number { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--color-accent); line-height: 1; margin-bottom: 0.3rem; }
.stat-item__label { font-size: 0.82rem; color: #b0b8c8; font-weight: 600; }

/* =============================================
   PAGE HERO (subpagina's)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #0d1117 0%, #141c2b 100%);
  border-bottom: 3px solid #f47920;
  color: var(--color-white);
  padding-block: 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255, 255, 255, 0.70); max-width: 520px; margin-inline: auto; margin-bottom: 0; }

/* =============================================
   RESPONSIVE – TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .contact-wrapper,
  .about-wrapper { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .about-image { max-width: 420px; margin-inline: auto; }
}

/* =============================================
   RESPONSIVE – TABLET (max 768px)
   ============================================= */
@media (max-width: 768px) {
  /* Secties minder ruim */
  .section                  { padding-block: 4rem; }
  .cta-banner               { padding-block: 4rem; }
  .stats-bar                { padding-block: 2.25rem; }
  .page-hero                { padding-block: 2.75rem; }
  .reviews-home-section     { padding-block: 4rem; }
  .reviews-slider-section   { padding-block: 4rem; }

  /* Statistieken afstand */
  .stats-bar__grid          { gap: 1.5rem 1rem; }

  /* Footer iets compacter */
  .footer                   { padding-block: 2.5rem 1.25rem; }
  .footer__grid             { gap: 2rem; }

  /* CTA padding inline */
  .cta-banner h2            { font-size: clamp(1.5rem, 4vw, 2rem); }

  /* Gallery 2 kolommen houden tot 500px */
  .gallery-grid             { gap: 0.875rem; }

  /* Feature list tablet */
  .feature-list             { gap: 0.875rem; }
}

/* =============================================
   RESPONSIVE – MOBIEL (max 640px)
   ============================================= */
@media (max-width: 640px) {
  /* Review slider */
  .review-slider { gap: 0.6rem; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.9rem; }
  .review-slide-card { padding: 1.75rem 1.375rem; }
  .review-slide-card__text { font-size: 15px; }
  .review-slide-card__quote { font-size: 56px; }

  .section { padding-block: 3.25rem; }
  .section__header { margin-bottom: 2.25rem; }

  /* Navbar */
  .navbar { position: relative; }
  .navbar__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background-color: #0d1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.40);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease;
  }
  .navbar__nav.open { max-height: 360px; opacity: 1; }
  .navbar__nav a { padding: 0.875rem 1.5rem; width: 100%; color: rgba(255,255,255,0.85); }
  .navbar__nav a::after { display: none; }
  .navbar__cta { background-color: #f47920; color: #fff !important; margin: 0.5rem 1rem 0.875rem; border-radius: 6px; text-align: center; }
  .navbar__cta:hover { background-color: #d96510; transform: none; }
  .navbar--scrolled .navbar__nav { background-color: #141c2b; }
  .navbar--scrolled .navbar__nav a { color: rgba(255,255,255,0.85); }
  .navbar__toggle { display: flex; }

  /* Hero */
  .hero { padding-block: 3.75rem 3rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; text-align: center; }

  /* Floating buttons */
  .floating-buttons { bottom: 16px; right: 16px; gap: 8px; }
  .floating-call, .floating-whatsapp { width: 46px; height: 46px; }

  /* Grids */
  .diensten-grid,
  .reviews-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .klus-types-grid { grid-template-columns: repeat(2, 1fr); }
  .klus-type-grid  { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  /* Card padding mobiel */
  .dienst-card { padding: 1.75rem 1.5rem; }
  .review-card { padding: 1.75rem 1.5rem; }
  .offerte-card { padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }

  /* CTA banner */
  .cta-banner { padding-block: 3rem; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  /* Page hero kleiner */
  .page-hero { padding-block: 2.25rem; }

  /* Stats bar */
  .stats-bar { padding-block: 2rem; }
  .stat-counter__number { font-size: 2.5rem; }

  /* About stats */
  .about-stats { gap: 0.75rem; }
  .stat-item { padding: 1rem 0.75rem; }
  .stat-item__number { font-size: 1.5rem; }

  /* Step indicator labels verbergen op mobiel (voorkomen overflow) */
  .step-dot .step-label { display: none; }
  .step-indicator-wrapper { padding-bottom: 1rem; }

  /* Form navigatie wrappen */
  .form-nav, .offerte-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .form-nav .btn--ghost, .offerte-nav .btn--outline {
    order: 2;
    flex: 1 1 auto;
    min-width: 120px;
  }
  .form-nav .btn--primary, .offerte-nav .btn--primary {
    order: 1;
    flex: 1 1 auto;
    min-width: 140px;
  }

  /* Btn-group mobiel: stapelen */
  .btn-group { flex-direction: column; align-items: center; gap: 0.75rem; margin-top: 2rem; }
  .btn-group .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Feature list mobiel: 1 kolom */
  .feature-list { grid-template-columns: 1fr; }

  /* Lightbox */
  .lightbox__prev,
  .lightbox__next { font-size: 2rem; }

  /* Offerte trust strip */
  .offerte-trust { gap: 1rem; font-size: 0.8rem; padding: 0.6rem 1rem; }

  /* USP bar */
  .usp-bar__item { padding: 0.35rem 0.875rem; font-size: 0.82rem; }
}

/* =============================================
   RESPONSIVE – iPhone SE / kleine schermen (max 390px)
   ============================================= */
@media (max-width: 390px) {
  :root { font-size: 15px; }

  .hero h1 { font-size: 1.5rem; }
  .hero p  { font-size: 0.95rem; }

  .klus-type-card { min-height: 80px; padding: 0.75rem 0.5rem; }
  .klus-type-card__icon { font-size: 1.35rem; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 0.75rem; }
  .stat-counter__number { font-size: 2rem; }
  .stat-counter__label { font-size: 0.75rem; letter-spacing: 0.5px; }

  .section { padding-block: 2.75rem; }
  .page-hero { padding-block: 1.75rem; }
  .cta-banner { padding-block: 2.5rem; }

  .dienst-card { padding: 1.375rem 1.25rem; }
  .offerte-card { padding: 1.25rem; }

  .step-dot { width: 30px; height: 30px; font-size: 0.78rem; }
  .offerte-step-dot { width: 30px; height: 30px; font-size: 0.78rem; }
  .offerte-step-line { max-width: 50px; }
  .step-line { max-width: 50px; }

  .review-slide-card { padding: 1.25rem 1rem; }
  .review-slide-card__text { font-size: 14px; }
  .review-slide-card__quote { font-size: 48px; }

  .section__header { margin-bottom: 1.75rem; }
  .section__header p { font-size: 0.95rem; }

  .footer__grid { gap: 1.5rem; }
  .footer { padding-block: 2rem 1rem; }
}
