:root{
  --ink:#0e0f12;
  --muted:#565b67;
  --bg:#ffffff;
  --panel:#f7f7f9;
  --gold:#f4c542;
  --border:#e9e9ee;
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink); background:var(--bg); line-height:1.55;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
.container{max-width:1100px;margin:0 auto;padding:18px}
.center{text-align:center}

/* Nav */
.nav{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:10}
.nav-row{display:flex;justify-content:space-between;align-items:center;gap:12px}
.brand-wrap{display:flex;align-items:center;gap:10px}
.logo{
  width:100%;          /* full width binnen container op mobiel */
  max-width:110px;     /* begrensd op desktop */
  height:auto;
  object-fit:contain;
}
.brand{font-weight:700;letter-spacing:.2px}

/* Generic buttons */
.btn{
  display:inline-block;border:1px solid var(--ink);background:#fff;color:var(--ink);
  padding:12px 18px;border-radius:12px;text-decoration:none;font-weight:700;
}
.btn.small{padding:8px 12px;font-size:14px}
.btn.primary{background:var(--gold);border-color:var(--gold)}
.btn.ghost{background:#fff}
.btn.big{font-size:18px;padding:14px 22px}

/* CTA */
.cta-btn{
  display:block;
  width:100%;
  max-width:420px;
  margin:20px auto;
  background-color:#FF007F;
  color:#fff;
  font-weight:700;
  font-size:20px;
  text-align:center;
  text-decoration:none;
  padding:18px 28px;
  border-radius:50px;
  line-height:1.4;
  transition:background .2s ease-in-out;
}
.cta-btn .sub{display:block;font-size:16px;font-weight:400;margin-top:4px}
.cta-btn:hover{background-color:#e60072}

/* Layout */
.hero{padding:40px 0}
.grid-2{display:grid;gap:24px;grid-template-columns:1fr}
.grid-3{display:grid;gap:16px;grid-template-columns:1fr}
.hero-copy .lead,.lead{font-size:18px;color:#333;max-width:620px}
.gold{color:var(--gold)}
.ticks{list-style:none;margin:16px 0;padding:0;display:grid;gap:8px}
.ticks li::before{content:"✓ ";font-weight:800}
.cta{display:flex;gap:12px;margin:18px 0 10px}
.trust img{max-width:100%;height:auto}

.hero-media{display:flex;align-items:center;justify-content:center}
.hero-img{width:100%;height:auto;border-radius:18px;box-shadow:0 10px 30px rgba(0,0,0,.08)}

.section{padding:28px 0}
.grid-2 .card-img,.grid-3 .card-img{
  width:100%;height:auto;border-radius:16px;background:#fff;box-shadow:0 6px 20px rgba(0,0,0,.06)
}
.pad{padding:10px}

.bullets{margin:12px 0 0 0}
.bullets li{margin:8px 0}

.offer{background:var(--panel);padding:36px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.badges{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin:14px 0 6px}
.badge{background:#fff;border:1px solid var(--border);border-radius:999px;padding:8px 12px;font-size:14px}
.promo{margin:10px 0 18px;font-weight:700}

.lead .lead-form{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.lead input[type=email]{padding:12px 14px;border:1px solid var(--border);border-radius:10px;min-width:260px}

/* Footer */
.footer{padding:18px 0;background:#fff;border-top:1px solid var(--border)}
.footer-row{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.foot-links{display:flex;gap:14px;flex-wrap:wrap}
.foot-links a{color:#333;text-decoration:none}
.foot-links a:hover{text-decoration:underline}

/* Trust / USP / Quote */
.trustpilot-top{
  display:block;
  width:100%;          /* full width op mobiel */
  max-width:500px;     /* begrensd op desktop */
  height:auto;
  margin:0 0 16px;
}

.quote{margin:10px 0 18px}
.quote blockquote{
  margin:0;padding:10px 14px;border-left:4px solid #eee;background:#fafafa;border-radius:6px;
  font-style:italic;color:#333
}
.quote figcaption{margin-top:6px;font-size:14px;color:#666}

.badges-img{
  display:block;
  width:100%;          /* full width op mobiel */
  max-width:650px;     /* begrensd op desktop */
  height:auto;
  margin:16px 0;
}

/* Hero video */
.video-wrap{
  width:100%;
  max-width:520px;
  aspect-ratio:9 / 16;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.video{width:100%;height:100%;object-fit:cover}

/* Desktop tweaks */
@media (min-width:780px){
  .grid-2{grid-template-columns:1.1fr .9fr}
  .grid-3{grid-template-columns:repeat(3,1fr)}
  .hero h1{font-size:48px}
  .usp li{font-size:17px}
}

/* USP-lijst met groene vinkjes */
.usp-safe{
  list-style:none;
  margin:12px 0 10px 0;
  padding:0;
  display:grid;
  gap:8px;
}
.usp-safe li{
  font-size:16px;
  line-height:1.5;
  padding-left:26px;
  position:relative;
}
.usp-safe li::before{
  content:"✔";
  color:#2ecc71;
  position:absolute;
  left:0;
  font-weight:700;
}
