/* ZOLVI, funnel website
   Merk: Ervaar de rust. Kleuren en typografie volgen de brandkit v1.1 */

:root {
  --bg:      #17140F; /* diep zwartbruin */
  --surface: #211C16; /* warm donker */
  --terra:   #AE6A47; /* terracotta accent */
  --bone:    #EDE6D8; /* bot, tekst */
  --muted:   #9A9286; /* gedempt, secundair */
  --line:    #2E2A24; /* lijn / rand */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Intro-video overlay, eenmaal per bezoek */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: #17140F;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.6s ease;
}
.intro--hidden { opacity: 0; pointer-events: none; }
.intro__video { width: 100%; height: 100%; object-fit: cover; }
.intro__skip {
  position: absolute; top: 22px; right: 22px; z-index: 1;
  background: transparent; border: 1px solid rgba(237, 230, 216, 0.28);
  color: #EDE6D8; font-family: 'Montserrat', sans-serif; font-size: 12px;
  letter-spacing: 1px; padding: 9px 18px; border-radius: 6px; cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.intro__skip:hover { color: #AE6A47; border-color: #AE6A47; }
html.intro-active, html.intro-active body { overflow: hidden; }
/* Terugkerende bezoekers en minder-beweging-voorkeur: geen intro */
html.intro-seen .intro { display: none; }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 28px; }

a { color: inherit; text-decoration: none; }

/* Typografie ritme uit de kit */
.kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(38px, 7vw, 52px);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.15;
}

h2 { font-size: clamp(26px, 4.5vw, 32px); font-weight: 300; }
h3 { font-size: 16px; font-weight: 400; }

.section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.section--surface { background: var(--surface); }

.lede { color: var(--muted); line-height: 1.7; }

/* Knoppen, nooit schreeuwend */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--terra);
  transition: opacity .2s ease, background .2s ease;
}
.btn--solid { background: var(--terra); color: var(--bg); }
.btn--ghost { background: transparent; color: var(--bone); }
.btn:hover { opacity: .88; }

/* Navigatie */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bg); z-index: 20;
}
.nav__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.nav__logo svg { height: 40px; width: auto; display: block; }
.nav__tagline {
  display: block; width: 118px; margin-left: 9px;
  font-size: 12px; color: var(--muted); letter-spacing: 1.5px; font-weight: 300;
  text-align: justify; text-align-last: justify;
}
.nav__menu { display: flex; gap: 28px; }
.nav__menu a { font-size: 14px; color: var(--muted); transition: color .2s ease; }
.nav__menu a:hover { color: var(--terra); }
.nav__cta { font-size: 13px; padding: 9px 18px; }

/* Hero */
.hero {
  text-align: center; padding: 104px 0; border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero.jpg') center / cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 26s ease-in-out infinite alternate;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(23,20,15,0.74), rgba(23,20,15,0.88));
}
.hero .wrap { position: relative; z-index: 2; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }

/* Hero, twee kolommen met de review-belofte links en de Google-score rechts */
.hero__grid {
  display: flex; gap: 44px; align-items: center; flex-wrap: wrap; text-align: left;
}
.hero__text { flex: 1.35; min-width: 300px; }
.hero__text h1 { font-size: clamp(30px, 4.4vw, 44px); line-height: 1.2; margin-bottom: 20px; }
.hero__text .lede { max-width: 400px; margin: 0 0 26px; font-size: 16px; }
.hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero .fineprint { margin-top: 22px; }
.btn-link { font-size: 14px; color: var(--bone); font-weight: 400; }
.btn-link:hover { color: var(--terra); }

.hero__aside { flex: 1; min-width: 260px; display: flex; justify-content: center; perspective: 1100px; }

/* Google Reviews-tegel, licht met terracotta omkadering en een zwevende 3D-beweging */
.score-tile {
  background: var(--bone); border: 2px solid var(--bg);
  border-radius: 16px; padding: 26px 28px; text-align: center; min-width: 230px; max-width: 300px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
  animation: tileFloat 6s ease-in-out infinite;
}
@keyframes tileFloat {
  0%   { transform: translateY(0)     rotateY(-5deg) rotateX(1.5deg); }
  50%  { transform: translateY(-12px) rotateY(5deg)  rotateX(-1.5deg); }
  100% { transform: translateY(0)     rotateY(-5deg) rotateX(1.5deg); }
}
.score-tile__brand {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding-bottom: 16px; margin-bottom: 6px; border-bottom: 1px solid rgba(23, 20, 15, 0.14);
}
.score-tile__brand .g-logo { width: 20px; height: 20px; }
.score-tile__brand .google-word { font-size: 16px; font-weight: 600; }
.score-tile__reviews-label { font-size: 16px; color: #4f4a42; font-weight: 500; }
.score-tile__score { font-size: 60px; font-weight: 600; color: #17140F; line-height: 1; margin-top: 14px; }
.score-tile__stars { color: #F0A500; font-size: 22px; letter-spacing: 3px; margin: 12px 0 8px; }
.score-tile__count { font-size: 13px; color: #4f4a42; font-weight: 500; }
.score-tile__ticker {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(23, 20, 15, 0.14);
  font-size: 11px; color: #6f685c; font-weight: 500;
}
.score-tile__ticker .g-logo { width: 14px; height: 14px; }

@media (max-width: 640px) {
  .hero__grid { gap: 32px; }
  .score-tile { max-width: 100%; width: 100%; }
}
.hero p.lede { max-width: 440px; margin: 20px auto 32px; font-size: 17px; }
.hero .fineprint { font-size: 12px; color: var(--muted); margin-top: 18px; }

/* Groot statement */
.statement { font-size: clamp(22px, 4vw, 27px); font-weight: 300; line-height: 1.5; max-width: 540px; }

/* Calculator */
.field { margin-bottom: 22px; }
.field__row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.field__row span.val { color: var(--bone); }
input[type="range"] { width: 100%; accent-color: var(--terra); }

.result {
  text-align: center; padding: 28px; margin-top: 8px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg);
}
.result__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.result__value { font-size: clamp(34px, 7vw, 44px); font-weight: 300; color: var(--terra); }
.result__note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.capture { margin-top: 26px; display: flex; gap: 10px; flex-wrap: wrap; }
.capture input {
  flex: 1; min-width: 200px; background: var(--bg); border: 1px solid var(--line);
  color: var(--bone); border-radius: 6px; padding: 13px 14px; font-size: 14px; font-family: inherit;
}
.capture input::placeholder { color: var(--muted); }
.capture .btn { white-space: nowrap; }
.capture__done { font-size: 14px; color: var(--terra); margin-top: 14px; display: none; }

/* Stappen */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.step__num { font-size: 13px; color: var(--terra); margin-bottom: 8px; }
.step p { font-size: 16px; }

/* Reviews */
.reviews__head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.reviews__score { font-size: 34px; font-weight: 300; color: var(--bone); line-height: 1; }
.stars { color: var(--terra); font-size: 18px; letter-spacing: 2px; }
.reviews__meta { font-size: 13px; color: var(--muted); }
.reviews__google { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.review-card {
  position: relative;
  border: 1px solid var(--line); border-radius: 10px; padding: 20px; background: var(--bg);
}
.review-card__g { position: absolute; top: 16px; right: 16px; }
.review-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--terra); font-weight: 500; flex-shrink: 0;
}
.review-card__name { font-size: 14px; color: var(--bone); }
.review-card__date { font-size: 12px; color: var(--muted); }
.review-card__stars { color: #FBBC05; font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.review-card__text { font-size: 14px; color: var(--muted); line-height: 1.6; }
.reviews__cta { margin-top: 24px; }

/* Google-branding: herkenbaar trust-signaal in de echte Google-kleuren */
.stars--google { color: #FBBC05; }
.g-logo { width: 16px; height: 16px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.google-badge { display: inline-flex; align-items: center; gap: 5px; }
.google-word { font-weight: 500; letter-spacing: 0.2px; }
.google-word .gb { color: #4285F4; }
.google-word .gr { color: #EA4335; }
.google-word .gy { color: #FBBC05; }
.google-word .gg { color: #34A853; }
.btn--google { display: inline-flex; align-items: center; gap: 9px; }

/* Jouw scherm, de tool-uitleg */
.tool-grid { display: flex; gap: 18px; flex-wrap: wrap; }
.tool-card { flex: 1; min-width: 260px; border: 1px solid var(--line); border-radius: 12px; padding: 22px; background: var(--bg); }
.tool-card__title { font-size: 15px; color: var(--bone); margin-bottom: 18px; }
.tool-field { display: block; margin-bottom: 14px; }
.tool-field__label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.tool-field__label em { color: #6f685e; font-style: normal; }
.tool-field__box { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px; font-size: 14px; color: var(--bone); }
.tool-card__btn { text-align: center; font-size: 14px; color: var(--bg); background: var(--terra); padding: 12px; border-radius: 6px; font-weight: 500; margin-top: 6px; }
.tool-msg { flex: 1; min-width: 220px; }
.tool-msg__label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--terra); font-weight: 500; margin-bottom: 12px; }
.tool-bubble { background: var(--bg); border: 1px solid var(--line); border-radius: 12px 12px 12px 3px; padding: 16px; font-size: 14px; line-height: 1.6; color: var(--bone); max-width: 320px; }
.tool-bubble__link { display: block; margin-top: 10px; color: #7ea6e8; word-break: break-all; }
.tool-msg__via { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* Prijzen (klantopvolging) */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.price-card { position: relative; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 10px; padding: 32px 28px; background: var(--bg); }
.price-card--featured { border-color: var(--terra); background: rgba(174, 106, 71, 0.05); }
.price-card__badge { position: absolute; top: -11px; left: 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--bg); background: var(--terra); padding: 5px 12px; border-radius: 4px; }
.price-card__tier { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.price-card__desc { font-size: 14px; color: var(--muted); margin: 12px 0 24px; line-height: 1.6; }
.price-card__list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card__list li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.5; color: var(--bone); }
.price-card__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--terra); }
.price-card__price { margin-bottom: 22px; }
.price-card__from { display: block; font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.price-card__amount { font-size: 38px; font-weight: 300; color: var(--bone); }
.price-card__per { font-size: 13px; color: var(--muted); }
.price-card .btn { text-align: center; }

/* FAQ */
.faq { margin-top: 8px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-size: 16px; color: var(--bone);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--terra); font-size: 22px; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin: 0; padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 600px; }

/* Testimonial enkel */
.quote { font-size: clamp(18px, 3.5vw, 22px); font-weight: 300; line-height: 1.6; max-width: 500px; }
.quote__author { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* Merkgedachte */
.brandthought { text-align: center; padding: 64px 0; }
.brandthought h2 { margin-bottom: 14px; }
.brandthought p { font-size: 15px; color: var(--muted); margin-bottom: 30px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 26px; }
.contact-item__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.contact-item a, .contact-item p { font-size: 15px; color: var(--bone); }
.contact-item a:hover { color: var(--terra); }

/* Footer */
.footer { padding: 40px 0; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.footer__logo { display: flex; align-items: center; gap: 16px; }
.footer__logo svg { height: 26px; width: auto; }
.footer__tag { font-size: 12px; color: var(--muted); margin: 0; padding-left: 16px; border-left: 1px solid var(--line); }
.footer__links { display: flex; flex-flow: row wrap; gap: 10px 24px; align-items: center; margin-bottom: 28px; }
.footer__links a { font-size: 13px; color: var(--muted); }
.footer__links a:hover { color: var(--bone); }
.footer__bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: var(--muted);
}

/* Juridische pagina's */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: clamp(30px, 5vw, 40px); margin-bottom: 8px; }
.legal .legal__date { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal h2 { font-size: 19px; font-weight: 500; margin: 36px 0 12px; color: var(--bone); }
.legal p, .legal li { font-size: 15px; color: var(--muted); line-height: 1.8; }
.legal ul { margin: 12px 0 12px 20px; }
.legal a { color: var(--terra); }
.back-link { font-size: 13px; color: var(--muted); display: inline-block; margin-top: 8px; }
.back-link:hover { color: var(--bone); }

/* Pop-ups / modals */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(8, 6, 4, 0.7);
  display: none; align-items: flex-start; justify-content: center;
  overflow-y: auto; padding: 48px 20px;
}
.modal-overlay.open { display: flex; }
body.modal-open { overflow: hidden; }

.modal {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 640px; width: 100%;
  padding: 44px 40px 40px;
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 6px; color: var(--muted);
  font-size: 20px; line-height: 1; cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.modal__close:hover { color: var(--bone); border-color: var(--terra); }

.modal h2 { font-size: clamp(24px, 4vw, 30px); margin-bottom: 6px; }
.modal .modal__date { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.modal h3 { font-size: 17px; font-weight: 500; color: var(--bone); margin: 26px 0 10px; }
.modal p, .modal li { font-size: 15px; color: var(--muted); line-height: 1.8; }
.modal ul { margin: 10px 0 10px 20px; }
.modal a { color: var(--terra); cursor: pointer; }

/* Contact binnen modal */
.modal .contact-grid { margin-top: 24px; }

@media (max-width: 700px) {
  .nav__menu { display: none; }
}
@media (max-width: 520px) {
  .nav__cta { display: none; }
  .footer__top { flex-direction: column; }
  .modal { padding: 44px 24px 28px; }
  .modal-overlay { padding: 24px 12px; }
}
