/* ============================================
   [BEDRIJFSNAAM] Badkamers — stylesheet
   ============================================ */

:root {
  /* Deep sapphire navy — used prominently, not just as a dark neutral */
  --navy-900: #0d213f;
  --navy-800: #14315f;
  --navy-700: #1d4478;
  --navy-600: #2a5796;
  /* Cool ivory/ice-blue neutrals — the light, airy base */
  --cream-50: #f6f8fc;
  --cream-100: #e9eef7;
  /* Vivid sapphire/azure accent — the "luxe blauw" pop */
  --accent-500: #3d6fd0;
  --accent-600: #2c56ab;
  --accent-100: #dce6fa;
  --accent-glow: rgba(61, 111, 208, 0.32);
  --teal-glow: rgba(13, 33, 63, 0.08);
  --success-500: #2f7a5c;
  --danger-500: #b3452f;
  --text-900: #131f35;
  --text-600: #56607a;
  --text-400: #8b93a8;
  --white: #ffffff;
  --border: #dde4f0;
  --shadow-sm: 0 2px 10px rgba(13, 33, 63, 0.07);
  --shadow-md: 0 12px 32px rgba(13, 33, 63, 0.12);
  --shadow-lg: 0 28px 68px rgba(13, 33, 63, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-head: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background:
    radial-gradient(ellipse 900px 500px at 8% -8%, rgba(61,111,208,.07), transparent 60%),
    var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); font-weight: 700; letter-spacing: -.03em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; letter-spacing: -.02em; }
h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; color: var(--text-600); }
em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(100deg, var(--accent-500), var(--accent-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--white); }
.section-navy { background: var(--navy-900); color: var(--cream-50); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: #b7c3dc; }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-600);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-navy .eyebrow { color: var(--accent-500); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  color: var(--navy-900);
  box-shadow: 0 10px 24px -6px var(--accent-glow);
}
.btn-accent:hover { box-shadow: 0 16px 34px -6px var(--accent-glow); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn-outline-navy { background: transparent; border-color: var(--navy-700); color: var(--navy-900); }
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; line-height: 1; }
.logo-icon-img { height: 46px; width: auto; display: block; flex-shrink: 0; }
.logo-type { display: flex; flex-direction: column; line-height: 1; }
.logo-type .logo-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.75rem; letter-spacing: -.01em; color: var(--navy-900);
}
.logo-type .logo-tld { color: var(--accent-600); }
.logo-type small {
  font-family: var(--font-body); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-600); font-weight: 700; margin-top: 4px;
}
.footer-brand .logo-type .logo-name { color: var(--white); }
.footer-brand .logo-type .logo-tld { color: var(--accent-500); }
.footer-brand .logo-type small { color: var(--accent-500); }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-size: .95rem; font-weight: 500; color: var(--text-600); transition: color .15s; }
.main-nav a:hover { color: var(--navy-900); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; color: var(--navy-900);
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 10px;
}
.nav-toggle:hover { background: var(--cream-100); }
.nav-toggle { position: relative; z-index: 270; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-burger { display: none; }
.nav-toggle.open .icon-close { display: block; }
.nav-mobile-extra { display: none; }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13, 33, 63, .45);
  z-index: 250;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-overlay.open { display: block; opacity: 1; }

/* Hero */
.hero { padding: 76px 0 60px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(183,147,94,.16), transparent 70%);
  top: -260px; right: -160px;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero-content .eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  display: inline-block;
}
.hero p.lead { font-size: 1.16rem; max-width: 46ch; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 30px; }
.hero .btn-outline { border-color: var(--navy-700); color: var(--navy-900); }
.hero .btn-outline:hover { background: var(--navy-900); color: var(--white); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.trust-badges li { font-size: .88rem; font-weight: 600; color: var(--navy-800); display: flex; align-items: center; gap: 6px; }
.trust-badges li::before { content: "✓"; color: var(--success-500); font-weight: 800; }

.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-100) inset;
  padding: 14px;
  transform: rotate(1.2deg);
}
.hero-card img, .hero-card svg { border-radius: 16px; display: block; width: 100%; height: 340px; object-fit: cover; }
.hero-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 16px 34px -8px var(--accent-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-float .num { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy-900); font-weight: 700; }
.hero-float small { display: block; font-size: .72rem; color: var(--navy-800); font-weight: 600; }

/* Stats strip */
.stats-strip {
  background: var(--cream-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-head); font-weight: 700; font-size: 2.1rem;
  color: var(--navy-900);
  display: block;
  position: relative;
}
.stat-item .stat-label { font-size: .82rem; color: var(--text-600); font-weight: 600; margin-top: 6px; }
.stat-item { position: relative; padding: 0 12px; }
.stat-item:not(:last-child)::after {
  content: ""; position: absolute; top: 4px; right: -4px; width: 1px; height: 34px; background: var(--border);
}

/* USP grid */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: box-shadow .2s, transform .2s;
}
.usp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.usp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-100);
  border: 1px solid var(--accent-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--navy-900);
}
.usp-card h3 { margin-bottom: 8px; }
.usp-card p { margin: 0; font-size: .93rem; }

/* Included services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: .92rem;
}
.service-chip { transition: box-shadow .2s, transform .2s; }
.service-chip:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.service-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(120deg, var(--accent-500), var(--accent-600)); flex-shrink: 0; }

/* Process timeline */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.timeline-step { position: relative; padding-top: 16px; }
.timeline-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent-500);
  color: var(--navy-900);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.timeline-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-step p { font-size: .88rem; margin: 0; }
.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px; left: 40px;
  width: calc(100% - 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px);
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow .2s, transform .2s;
}
.price-card .btn { white-space: normal; text-align: center; }
.price-card:not(.featured):hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(165deg, var(--white), var(--accent-100));
  border-color: var(--accent-500);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  position: relative;
}
.price-card.featured li::before { color: var(--success-500); }
.price-card.featured::before {
  content: "Meest gekozen";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600)); color: var(--navy-900);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 8px 18px -4px var(--accent-glow);
}
.price-card h3 { margin-bottom: 4px; }
.price-tag { font-family: var(--font-head); font-size: 2.1rem; color: var(--navy-900); margin: 10px 0 4px; }
.price-tag small { font-size: .95rem; font-family: var(--font-body); color: var(--text-400); font-weight: 400; }
.price-card ul { margin: 20px 0 16px; flex-grow: 1; }
.price-card li { font-size: .9rem; padding: 6px 0; display: flex; gap: 8px; color: var(--text-600); }
.price-card li::before { content: "✓"; color: var(--success-500); font-weight: 800; }
.price-fineprint { font-size: .78rem; line-height: 1.5; color: var(--text-400); margin: 0 0 20px; }
.price-note { text-align: center; margin-top: 28px; font-size: .85rem; color: var(--text-400); }
.reviews-link { text-align: center; margin-top: 32px; }
.reviews-link a { color: var(--accent-600); font-weight: 700; font-size: .92rem; }
.reviews-link a:hover { text-decoration: underline; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
}
.review-card { transition: box-shadow .2s, transform .2s; }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--accent-500); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.review-card p { font-style: italic; color: var(--text-900); }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-100), var(--accent-500) 160%); color: var(--accent-600);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head);
}
.review-author strong { display: block; font-size: .9rem; }
.review-author span { font-size: .78rem; color: var(--text-400); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(36,31,27,.75), transparent);
  color: var(--white);
  font-size: .82rem; font-weight: 600;
}

/* Before/after comparison slider */
.ba-slider {
  --pos: 50%;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  touch-action: pan-y;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img {
  width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; -webkit-user-drag: none;
}
.ba-align-nudge { object-position: 50% 58%; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: var(--white); transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  pointer-events: none; z-index: 3;
}
.ba-handle {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900); box-shadow: var(--shadow-md);
  pointer-events: none; z-index: 3;
}
.ba-label {
  position: absolute; top: 16px; z-index: 2;
  padding: 7px 16px; border-radius: 999px;
  font-weight: 700; font-size: .8rem; letter-spacing: .03em;
  box-shadow: var(--shadow-sm); pointer-events: none;
}
.ba-label-voor { left: 16px; background: var(--navy-900); color: var(--white); }
.ba-label-na { right: 16px; background: linear-gradient(120deg, var(--accent-500), var(--accent-600)); color: var(--navy-900); }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; background: transparent;
  cursor: ew-resize; z-index: 4; touch-action: pan-y;
}
.ba-caption { text-align: center; font-size: .82rem; color: var(--text-400); margin-top: 16px; }

@media (max-width: 720px) {
  .ba-label { top: 10px; padding: 5px 12px; font-size: .72rem; }
  .ba-handle { width: 38px; height: 38px; }
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent-600); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; margin: 0; font-size: .93rem; }

/* CTA banner */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(36,31,27,.88), rgba(36,31,27,.55));
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; position: relative; z-index: 2; }
.cta-banner p { color: #cdd8ec; margin: 0; position: relative; z-index: 2; }
.cta-banner > div:first-child { position: relative; z-index: 2; }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 2; }

/* Footer */
.site-footer { background: var(--navy-900); color: #b7c3dc; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo { color: var(--white); }
.footer-brand p { max-width: 32ch; font-size: .9rem; margin-top: 14px; }
.footer-legal { font-size: .78rem; opacity: .7; margin-top: 8px; }
.footer-col h4 { color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: .9rem; display: flex; align-items: center; gap: 9px; }
.footer-col ul li svg { flex-shrink: 0; color: var(--accent-500); }
.footer-col a:hover { color: var(--accent-500); }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; font-size: .8rem; color: #7c88a3; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #7c88a3; }
.footer-bottom a:hover { color: var(--white); }

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
}
.mobile-cta a { flex: 1; text-align: center; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 190;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
}
.back-to-top:hover { background: var(--navy-800); }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ============ Offerte form ============ */
.form-page-hero { background: var(--cream-100); border-bottom: 1px solid var(--border); padding: 56px 0 40px; text-align: center; }
.form-page-hero .eyebrow { color: var(--accent-600); }
.form-page-hero p { color: var(--text-600); max-width: 560px; margin: 0 auto; }

.form-wrap { max-width: 760px; margin: -30px auto 80px; padding: 0 24px; }
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 44px; }

.progress-track { display: flex; align-items: center; margin-bottom: 40px; }
.progress-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.progress-step .circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-100); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: var(--text-400);
  transition: all .2s; z-index: 1; background-clip: padding-box;
}
.progress-step .label { font-size: .68rem; margin-top: 8px; color: var(--text-400); text-align: center; font-weight: 600; }
.progress-step::before {
  content: ""; position: absolute; top: 17px; left: -50%; width: 100%; height: 2px;
  background: var(--border); z-index: 0;
}
.progress-step:first-child::before { display: none; }
.progress-step.active .circle { background: var(--navy-900); border-color: var(--navy-900); color: var(--accent-500); }
.progress-step.active .label { color: var(--navy-900); }
.progress-step.done .circle { background: var(--success-500); border-color: var(--success-500); color: var(--white); }
.progress-step.done::before { background: var(--success-500); }

.form-step { display: none; animation: fadeIn .35s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.form-step h2 { font-size: 1.5rem; margin-bottom: 4px; }
.step-sub { margin-bottom: 26px; font-size: .92rem; }

.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--navy-900); }
.field .hint { font-weight: 400; color: var(--text-400); font-size: .78rem; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream-50);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-500); background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.option-card { position: relative; }
.option-card input { position: absolute; opacity: 0; }
.option-card label {
  display: flex; flex-direction: column; gap: 4px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; cursor: pointer; font-size: .9rem; font-weight: 600;
  color: var(--text-600); transition: all .15s; margin: 0;
}
.option-card label small { font-weight: 400; color: var(--text-400); font-size: .76rem; }
.option-card input:checked + label {
  border-color: var(--accent-500); background: var(--accent-100); color: var(--navy-900);
}
.option-card input:focus-visible + label { outline: 2px solid var(--accent-500); outline-offset: 2px; }

.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; }
.chip label {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: 9px 16px; cursor: pointer; font-size: .86rem; font-weight: 600;
  color: var(--text-600); transition: all .15s; margin: 0;
}
.chip input:checked + label { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }

.form-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 14px; }
.form-nav .btn-outline-navy { border-color: var(--border); }

.consent-field { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--text-600); background: var(--cream-50); padding: 16px; border-radius: var(--radius-sm); }
.consent-field input { margin-top: 3px; }

.summary-box { background: var(--cream-50); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 24px; font-size: .88rem; }
.summary-box dt { font-weight: 700; color: var(--navy-900); margin-top: 12px; }
.summary-box dt:first-child { margin-top: 0; }
.summary-box dd { margin: 2px 0 0; color: var(--text-600); }

.form-error { color: var(--danger-500); font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--danger-500); }
.field.invalid .form-error { display: block; }

.success-panel { text-align: center; padding: 20px 0; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--success-500);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  color: var(--white); font-size: 2rem;
}
.ref-number-box {
  display: inline-block; background: var(--accent-100); border: 1px solid var(--accent-500);
  border-radius: var(--radius-md); padding: 10px 20px; margin: 16px 0; font-size: 1rem;
}
.ref-number-box strong { color: var(--navy-900); letter-spacing: .02em; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .timeline-step::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .header-inner { padding: 12px 16px; gap: 10px; }
  .logo-icon-img { height: 32px; }
  .logo-type .logo-name { font-size: 1.2rem; }
  .logo-type small { font-size: .52rem; letter-spacing: .12em; }
  .header-actions .btn { padding: 10px 16px; font-size: .85rem; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; position: fixed; top: 73px; left: 0; right: 0;
    max-height: calc(100vh - 73px); overflow-y: auto;
    background: var(--white); padding: 8px 24px 24px; gap: 4px; box-shadow: var(--shadow-lg);
    z-index: 260;
    animation: navSlideDown .22s ease;
  }
  .main-nav.open a {
    padding: 14px 4px; font-size: 1.02rem; font-weight: 600; color: var(--navy-900);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-extra {
    display: flex; flex-direction: column; gap: 12px; margin-top: 16px;
  }
  .nav-mobile-phone {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 700; color: var(--navy-900); padding: 13px; border-radius: 999px;
    border: 2px solid var(--border);
  }
  body.nav-open { overflow: hidden; }
  .usp-grid, .services-grid, .timeline, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .field-row, .option-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; }
  .form-card { padding: 28px 20px; }
  .progress-step .label { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .section { padding: 60px 0; }
  .back-to-top { bottom: 86px; right: 14px; width: 42px; height: 42px; }

  /* Stats strip: 2x2 grid so long labels ("reactie op je offerte")
     never force the page wider than the screen. */
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat-item::after { display: none; }

  /* Hero: use the photo as a soft, light backdrop behind the text
     instead of a separate card pushing the copy below the fold. */
  .hero { padding: 40px 0 32px; }
  .hero::before { display: none; }
  .hero-inner { display: block; position: static; }
  .hero-content { position: relative; z-index: 2; }
  .hero-visual { position: absolute; inset: 0; z-index: 0; }
  .hero-card {
    background: none; box-shadow: none; border-radius: 0; padding: 0; transform: none;
    width: 100%; height: 100%;
  }
  .hero-card img, .hero-card svg { height: 100%; border-radius: 0; }
  .hero::after {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(246,248,252,.5) 0%, rgba(246,248,252,.94) 58%, var(--cream-50) 80%);
  }
  .hero-float { display: none; }
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Scroll trowel effect ============ */
.stuc-trowel-fx {
  position: fixed;
  top: 0;
  right: 6px;
  width: 128px;
  height: 76px;
  z-index: 400;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-60px) rotate(-22deg);
  transition: opacity .35s ease;
  will-change: transform, opacity;
}
.stuc-trowel-fx.is-visible { opacity: 1; }
.stuc-trowel-fx img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  filter: drop-shadow(0 6px 12px rgba(13,33,63,.32));
}

.stuc-smear {
  position: fixed;
  right: 2px;
  width: 110px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(100deg, rgba(255,255,255,.97), rgba(255,255,255,.35) 65%, transparent);
  box-shadow: 0 3px 16px rgba(13,33,63,.22), 0 0 0 1px rgba(13,33,63,.04);
  filter: blur(5px);
  transform: rotate(-16deg);
  opacity: .9;
  pointer-events: none;
  z-index: 399;
  transition: opacity .9s ease, transform .9s ease;
}
.stuc-smear.is-fading { opacity: 0; transform: rotate(-16deg) translateX(-30px); }

@media (max-width: 480px) {
  .stuc-trowel-fx, .stuc-smear { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .stuc-trowel-fx, .stuc-smear { display: none; }
}
