/* ==========================================================================
   JVL Zonweringen - design system
   ========================================================================== */
:root {
  --ink: #14202c;
  --ink-2: #1d2e3f;
  --ink-3: #2a3f55;
  --body: #3d4a58;
  --muted: #6b7885;
  --line: #e4e9ee;
  --bg: #ffffff;
  --bg-soft: #f4f7fa;
  --bg-warm: #fdf8ef;
  --accent: #f2a01c;
  --accent-dark: #d88a0a;
  --accent-ink: #7a4c02;
  --whatsapp: #22c15e;
  --whatsapp-dark: #1aa64f;
  --star: #f6b21b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 2px 8px rgba(20, 32, 44, .06), 0 12px 32px rgba(20, 32, 44, .08);
  --shadow-sm: 0 1px 3px rgba(20, 32, 44, .08);
  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.2rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--ink); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #b9c6d2; }

.eyebrow {
  display: block;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: 10px;
}
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 12px; font-size: 1.06rem; }
.lead { font-size: 1.12rem; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }
.btn-primary { background: var(--accent); color: var(--ink); box-shadow: 0 6px 18px rgba(242, 160, 28, .35); }
.btn-primary:hover { background: #ffb02e; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--ink); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 18px rgba(34, 193, 94, .3); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.07rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 32, 44, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }
/* Volledige menu + telefoon + knop is ~1275px breed; de header mag daarom
   breder lopen dan het 1200px page-grid, anders valt de offerte-knop erbuiten. */
.site-header .container { max-width: 1340px; }
.header-inner {
  display: flex; align-items: center; gap: 18px;
  height: 76px;
}
.logo { flex: none; display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav a {
  display: block; padding: 9px 10px; white-space: nowrap;
  color: #dbe4ec; text-decoration: none; font-weight: 600; font-size: .93rem;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav a[aria-current="page"] { color: var(--accent); }
.nav-cta-mobile { display: none; }
.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone {
  color: #fff; text-decoration: none; font-weight: 700; font-size: .97rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.header-phone:hover { color: var(--accent); }
.header-cta .btn { padding: 11px 22px; font-size: .95rem; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 10px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; margin: 5px 0;
  transition: transform .25s, opacity .2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: center;
  background: var(--ink);
  padding: 90px 0;
  overflow: hidden;
}
.hero.hero-sub { min-height: 0; padding: 76px 0 64px; }
.hero > .container { width: 100%; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(78deg, rgba(13, 22, 31, .93) 0%, rgba(13, 22, 31, .78) 38%, rgba(13, 22, 31, .28) 75%, rgba(13, 22, 31, .15) 100%);
}
.hero-content { position: relative; max-width: 640px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .hero-sub-text { color: #cfdae4; font-size: 1.16rem; margin-bottom: 30px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-usps { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; }
.hero-usps li { color: #e6edf3; font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.hero-usps svg { color: var(--accent); flex: none; }

.review-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
  color: #fff; font-weight: 600; font-size: .92rem;
  text-decoration: none;
}
.review-pill:hover { background: rgba(255,255,255,.16); }
.stars { color: var(--star); letter-spacing: 2px; font-size: .95rem; }

/* Breadcrumbs */
.breadcrumbs { position: relative; font-size: .87rem; margin-bottom: 22px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; }
.breadcrumbs li { color: #9fb0bf; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: #7286a0; }
.breadcrumbs a { color: #cfdae4; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { background: var(--ink-2); padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; }
.trust-bar span { color: #dfe8ef; font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: 9px; }
.trust-bar svg { color: var(--accent); flex: none; }

/* ==========================================================================
   Product cards
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card .card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .card-img img { transform: scale(1.05); }
.product-card .card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { margin-bottom: 8px; font-size: 1.28rem; }
.product-card p { font-size: .97rem; flex: 1; }
.card-link {
  margin-top: 16px; font-weight: 700; color: var(--accent-dark);
  display: inline-flex; align-items: center; gap: 7px; font-size: .97rem;
}
.product-card:hover .card-link { text-decoration: underline; }

/* ==========================================================================
   USP / feature blocks
   ========================================================================== */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.usp {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.usp-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg-warm); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.usp h3 { font-size: 1.08rem; margin-bottom: 8px; }
.usp p { font-size: .94rem; }

.check-list { list-style: none; padding: 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list svg { color: var(--accent-dark); flex: none; margin-top: 4px; }
.check-list strong { color: var(--ink); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px; box-shadow: var(--shadow-sm); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { font-size: .93rem; }

/* ==========================================================================
   Split section (text + image)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-body h2 { margin-bottom: 16px; }
.split-body p { margin-bottom: 16px; }
.split-body .btn { margin-top: 12px; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-summary {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 44px;
}
.score-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 30px; text-align: center; min-width: 200px;
}
.score-card .score { font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.score-card .stars { font-size: 1.05rem; }
.score-card .src { font-size: .87rem; color: var(--muted); margin-top: 4px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { font-size: 1.05rem; }
.review-card blockquote { font-size: .98rem; color: var(--body); flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--ink); color: var(--accent); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.review-meta .name { font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.3; }
.review-meta .src { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; display: block; }
.gallery img {
  width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform .35s ease;
}
.gallery a:hover img { transform: scale(1.06); }
.gallery .wide { grid-column: span 2; }
.gallery .wide img { aspect-ratio: 2.05; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink);
  padding: 19px 52px 19px 24px; list-style: none; position: relative; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--accent-dark); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 24px 20px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; background: var(--ink); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,160,28,.28), transparent 70%);
}
.cta-band .container { position: relative; text-align: center; max-width: 760px; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #b9c6d2; margin-bottom: 30px; font-size: 1.08rem; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }
.cta-note { margin-top: 22px !important; font-size: .9rem !important; color: #8fa2b3 !important; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 38px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; color: var(--ink); font-size: .93rem; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; 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 3px rgba(242,160,28,.18);
}
.checkbox-row { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-row label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 16px;
  cursor: pointer; font-weight: 600; font-size: .93rem; color: var(--body);
  transition: border-color .15s, background .15s;
}
.checkbox-row label:has(input:checked) { border-color: var(--accent); background: var(--bg-warm); color: var(--ink); }
.checkbox-row input { accent-color: var(--accent-dark); width: 16px; height: 16px; }
.form-note { font-size: .87rem; color: var(--muted); margin-top: 14px; }
.form-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.form-trust span { font-size: .88rem; color: var(--muted); display: inline-flex; gap: 7px; align-items: center; }
.form-trust svg { color: var(--accent-dark); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-list { list-style: none; padding: 0; display: grid; gap: 20px; margin: 26px 0; }
.contact-info-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-info-list .usp-icon { width: 46px; height: 46px; margin: 0; flex: none; }
.contact-info-list strong { display: block; color: var(--ink); }
.contact-info-list a { color: var(--body); text-decoration: none; }
.contact-info-list a:hover { color: var(--accent-dark); text-decoration: underline; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 30px; }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #a7b6c4; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: #a7b6c4; text-decoration: none; font-size: .95rem; }
.site-footer a:hover { color: var(--accent); }
.footer-logo img { height: 48px; width: auto; margin-bottom: 18px; }
.footer-about p { font-size: .94rem; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .15s;
}
.footer-socials a:hover { background: var(--accent); color: var(--ink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0;
  font-size: .87rem;
}
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; }
.footer-review-line { display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   Floating / sticky conversie-elementen
   ========================================================================== */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 193, 94, .45);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(20,32,44,.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 8px; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: .92rem;
}
.mobile-cta-bar .m-call { background: var(--ink); color: #fff; }
.mobile-cta-bar .m-wa { background: var(--whatsapp); color: #fff; }
.mobile-cta-bar .m-offerte { background: var(--accent); color: var(--ink); }

/* ==========================================================================
   Reveal animaties
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .product-card, .gallery img { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1319px) {
  .main-nav a { padding: 9px 8px; font-size: .89rem; }
  .header-phone span { display: none; }
  .header-cta .btn { padding: 10px 18px; font-size: .9rem; }
}
@media (max-width: 1099px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--ink); border-top: 1px solid rgba(255,255,255,.08);
    padding: 14px 24px 22px;
    max-height: calc(100dvh - 76px); overflow: auto;
  }
  .nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 10px; font-size: 1.05rem; }
  .header-cta { display: none; }
  .nav-cta-mobile { margin-top: 16px; display: grid; gap: 10px; }
}
@media (max-width: 960px) {
  section { padding: 56px 0; }
  .grid-3, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .review-grid, .usp-grid, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 0; padding: 64px 0; }
  .hero-ctas .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 68px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
