/* ═══════════════════════════════════════════════════════
   WOLTO — gedeelde stylesheet
   Eén bron voor alle pagina's. Pas kleuren hier centraal aan.
═══════════════════════════════════════════════════════ */

:root {
  --black:        #0d0d0d;
  --dark:         #111827;
  --dark2:        #1f2937;
  --dark3:        #374151;
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --orange-dim:   rgba(249,115,22,.1);
  --white:        #f9fafb;
  --grey:         #6b7280;
  --grey-light:   #9ca3af;
  --green:        #22c55e;
  --green-dim:    rgba(34,197,94,.12);
  --whatsapp:     #25d366;
  --whatsapp-dk:  #1da851;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.02; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 14px;
}
.sec-sub {
  font-size: 1rem; font-weight: 300;
  color: rgba(249,250,251,.55); line-height: 1.75; max-width: 560px;
}
.divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 24px 0; }

.btn-primary {
  display: inline-block;
  background: var(--orange); color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); color: #000; }
.btn-secondary {
  display: inline-block;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 14px 24px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.badge-green {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-dim); color: var(--green);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 68px;
  background: rgba(13,13,13,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,115,22,.12);
  display: flex; align-items: center;
}
nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem; font-weight: 900;
  letter-spacing: -.02em; color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(249,250,251,.65); text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .nav-cta {
  background: var(--orange); color: #000 !important;
  padding: 9px 22px; border-radius: 4px; font-weight: 800; transition: background .2s;
}
.nav-links .nav-cta:hover { background: var(--orange-dark); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 28px; z-index: 299;
}
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem;
  font-weight: 800; text-transform: uppercase; color: var(--white); text-decoration: none;
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .nav-cta-m {
  background: var(--orange); color: #000;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem;
  font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 4px; text-decoration: none;
}

/* ─── PAGE HERO (sub-pagina's) ─── */
.page-hero { padding-top: 68px; background: var(--black); border-bottom: 1px solid rgba(255,255,255,.06); }
.page-hero-inner { padding: 64px 0 56px; }
.page-hero-inner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 900; line-height: .96;
  letter-spacing: -.025em; text-transform: uppercase;
  margin-bottom: 20px; color: var(--white);
}
.page-hero-inner h1 em { font-style: normal; color: var(--orange); }
.page-hero-inner p { font-size: 1rem; font-weight: 300; color: rgba(249,250,251,.58); line-height: 1.75; max-width: 520px; }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.06); padding: 48px 0; }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--white); text-decoration: none; }
.footer-logo span { color: var(--orange); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: .82rem; color: var(--grey); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
footer p { font-size: .78rem; color: var(--grey); }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE
═══════════════════════════════════════════════════════ */
.home-hero { padding-top: 68px; min-height: 88vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; background: var(--black); }
.home-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,.08) 0%, transparent 60%); pointer-events: none; z-index: 1; }
.home-hero-left { display: flex; flex-direction: column; justify-content: center; padding: 70px 60px; position: relative; z-index: 2; }
.home-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.3); color: var(--orange); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; margin-bottom: 28px; width: fit-content; }
.home-badge::before { content: '●'; font-size: .5rem; }
.home-hero-left h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 900; line-height: .95; letter-spacing: -.02em; text-transform: uppercase; margin-bottom: 24px; }
.home-hero-left h1 em { font-style: normal; color: var(--orange); display: block; }
.home-hero-desc { font-size: 1.05rem; font-weight: 300; color: rgba(249,250,251,.65); line-height: 1.7; max-width: 420px; margin-bottom: 36px; }
.home-acts { display: flex; gap: 14px; flex-wrap: wrap; }
.home-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.08); }
.home-stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.home-stat-n span { font-size: 1.2rem; }
.home-stat-l { font-size: .75rem; color: var(--grey); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.home-hero-right { position: relative; overflow: hidden; }
.home-hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.home-hero-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--black) 0%, transparent 30%), linear-gradient(to top, var(--black) 0%, transparent 20%); }

.sec { padding: 90px 0; }
.sec-dk { background: var(--black); }
.sec-md { background: var(--dark); }

.product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 56px; }
.product-main-img { width: 100%; border-radius: 8px; display: block; border: 1px solid rgba(255,255,255,.05); aspect-ratio: 4/3; object-fit: cover; }
.product-thumbs { display: flex; gap: 8px; margin-top: 8px; }
.product-thumb { width: calc(25% - 6px); border-radius: 4px; cursor: pointer; opacity: .5; border: 2px solid transparent; object-fit: cover; aspect-ratio: 1; transition: opacity .2s, border-color .2s; }
.product-thumb.active, .product-thumb:hover { opacity: 1; border-color: var(--orange); }
.product-name { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 900; text-transform: uppercase; margin-bottom: 6px; }
.product-tag { color: var(--orange); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 24px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.spec { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; padding: 12px 14px; }
.spec-l { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); margin-bottom: 3px; }
.spec-v { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.step-n { font-family: 'Barlow Condensed', sans-serif; font-size: 4.5rem; font-weight: 900; color: rgba(249,115,22,.12); line-height: 1; margin-bottom: -12px; }
.step-i { width: 42px; height: 42px; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.step h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.step p { font-size: .88rem; color: rgba(249,250,251,.5); line-height: 1.65; }

.cta-band { background: linear-gradient(135deg, rgba(249,115,22,.1), rgba(249,115,22,.02)); border: 1px solid rgba(249,115,22,.22); border-radius: 14px; padding: 48px; text-align: center; margin-top: 0; }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.cta-band p { color: rgba(249,250,251,.6); margin-bottom: 26px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .home-acts { justify-content: center; }

/* ═══════════════════════════════════════════════════════
   TARIEVEN TABEL (gedeeld)
═══════════════════════════════════════════════════════ */
.pricing-box { background: linear-gradient(135deg, rgba(249,115,22,.1), rgba(249,115,22,.03)); border: 1px solid rgba(249,115,22,.25); border-radius: 8px; padding: 22px; margin-bottom: 24px; }
.pricing-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 14px; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.pricing-row:last-of-type { border-bottom: none; }
.pricing-row .p-lbl { font-size: .9rem; color: rgba(249,250,251,.7); }
.pricing-row .p-val { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); }
.pricing-row .p-val span { font-size: .85rem; font-weight: 400; color: var(--grey); }
.pricing-note { font-size: .76rem; color: var(--grey); margin-top: 10px; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   FORMULIEREN (gedeeld: contact + reservering)
═══════════════════════════════════════════════════════ */
.form-card { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 40px; }
.form-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.form-card-sub { font-size: .88rem; color: rgba(249,250,251,.48); line-height: 1.65; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg.full { grid-column: 1 / -1; }
.fg label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 12px 14px; color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: .92rem; outline: none;
  transition: border-color .2s; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--orange); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(249,250,251,.22); }
.fg select option { background: var(--dark2); }
.fg textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit { width: 100%; margin-top: 6px; background: var(--orange); color: #000; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 15px; border: none; border-radius: 6px; cursor: pointer; transition: background .2s, transform .15s; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.form-submit:disabled { background: var(--dark3); color: var(--grey); cursor: not-allowed; transform: none; }
.form-note { font-size: .75rem; color: rgba(249,250,251,.35); text-align: center; margin-top: 10px; line-height: 1.5; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.checkbox-row { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; margin-top: 4px; }
.checkbox-row input { width: 17px; height: 17px; accent-color: var(--orange); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.checkbox-row span { font-size: .82rem; color: rgba(249,250,251,.6); line-height: 1.5; }
.checkbox-row a { color: var(--orange); }

/* live prijs-indicatie */
.price-estimate { background: rgba(249,115,22,.06); border: 1px solid rgba(249,115,22,.22); border-radius: 10px; padding: 18px 20px; margin: 8px 0 18px; }
.price-estimate .pe-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 4px; }
.price-estimate .pe-val { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--white); }
.price-estimate .pe-note { font-size: .76rem; color: rgba(249,250,251,.45); margin-top: 4px; line-height: 1.5; }

/* ─── CONTACT-pagina specifiek ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; margin-top: 56px; }
.wa-stack { display: flex; flex-direction: column; gap: 20px; }
.wa-card { background: rgba(37,211,102,.06); border: 1px solid rgba(37,211,102,.2); border-radius: 14px; padding: 32px; position: relative; overflow: hidden; }
.wa-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--whatsapp), rgba(37,211,102,.2)); }
.wa-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.wa-logo-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-logo-icon svg { width: 28px; height: 28px; fill: #fff; }
.wa-logo-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.wa-logo-text span { font-size: .78rem; color: var(--whatsapp); letter-spacing: .04em; }
.wa-desc { font-size: .88rem; font-weight: 300; color: rgba(249,250,251,.58); line-height: 1.7; margin-bottom: 20px; }
.wa-number { display: flex; align-items: center; gap: 10px; background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.18); border-radius: 8px; padding: 12px 16px; margin-bottom: 18px; }
.wa-number-val { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: .04em; }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--whatsapp); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 14px 24px; border-radius: 6px; text-decoration: none; transition: background .2s, transform .15s; }
.wa-btn:hover { background: var(--whatsapp-dk); transform: translateY(-1px); color: #fff; }
.wa-btn svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.wa-btn-note { font-size: .74rem; color: rgba(249,250,251,.35); text-align: center; margin-top: 8px; line-height: 1.5; }
.info-card { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 28px; }
.info-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--orange); margin-bottom: 16px; }
.info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 34px; height: 34px; flex-shrink: 0; background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.18); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .88rem; }
.info-text span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--grey); margin-bottom: 2px; }
.info-text p, .info-text a { font-size: .88rem; color: var(--white); text-decoration: none; line-height: 1.45; }
.info-text a:hover { color: var(--orange); }

.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.faq-item { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 26px; transition: border-color .3s; }
.faq-item:hover { border-color: rgba(249,115,22,.25); }
.faq-q { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; letter-spacing: .03em; }
.faq-a { font-size: .85rem; color: rgba(249,250,251,.5); line-height: 1.7; }

/* ─── OVER ONS specifiek ─── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.value-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 30px; transition: border-color .3s; }
.value-card:hover { border-color: rgba(249,115,22,.25); }
.value-icon { width: 44px; height: 44px; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.value-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.value-card p { font-size: .88rem; color: rgba(249,250,251,.55); line-height: 1.7; }
.prose { max-width: 680px; }
.prose p { font-size: 1rem; font-weight: 300; color: rgba(249,250,251,.7); line-height: 1.85; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }

/* ─── BEDANKT-pagina ─── */
.thanks-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 80px; text-align: center; }
.thanks-inner { max-width: 480px; }
.thanks-icon { font-size: 3.4rem; margin-bottom: 18px; }
.thanks-inner h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 900; text-transform: uppercase; margin-bottom: 14px; }
.thanks-inner p { font-size: 1rem; color: rgba(249,250,251,.6); line-height: 1.75; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .product-row { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .wa-stack { flex-direction: row; flex-wrap: wrap; }
  .wa-stack > * { flex: 1; min-width: 280px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-left { padding: 56px 24px 40px; }
  .home-hero-right { height: 280px; }
  .sec { padding: 60px 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .faq-grid { grid-template-columns: 1fr; }
  .wa-stack { flex-direction: column; }
  .cta-band { padding: 36px 24px; }
  .footer-links { display: none; }
  footer .container { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .home-stats { gap: 24px; flex-wrap: wrap; }
}
