:root {
  --yellow: #FFCC00;
  --yellow-dark: #E6B800;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --line: #ececec;
  --wa: #25D366;
  --wa-dark: #1da851;
  --star: #FFB400;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .14);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
section[id], article[id] { scroll-margin-top: 92px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 18px 30px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn--wa:hover { background: var(--wa-dark); }
.btn--call { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 20px rgba(255, 204, 0, .4); }
.btn--call:hover { background: var(--yellow-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.wa-icon { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.phone-icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* Topbar */
.topbar { background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 500; }
.topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding: 9px 24px; flex-wrap: wrap; }
.topbar__item { opacity: .92; }
.topbar a { font-weight: 700; }
.topbar a:hover { color: var(--yellow); }

/* Header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 20px; padding: 14px 24px; }
.header__logo img, .header__logo svg { height: 48px; width: auto; display: block; }
.nav { display: flex; gap: 26px; margin-left: auto; font-weight: 600; }
.nav a { color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header__cta { padding: 11px 18px; font-size: 15px; }
.header__cta--wa { padding: 11px 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .2s; }

/* Hero */
.hero { background: linear-gradient(160deg, #fffdf2 0%, #fff 55%); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.25fr .9fr; gap: 56px; align-items: center; padding: 72px 24px 80px; }
.badge { display: inline-block; background: var(--yellow); color: var(--ink); font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.07; font-weight: 900; letter-spacing: -1.5px; margin: 0 0 20px; }
.hl { background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%); padding: 0 6px; }
.hero__lead { font-size: 19px; color: var(--ink-soft); max-width: 600px; margin: 0 0 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__usps { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; font-weight: 600; color: var(--ink); }

.hero__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 26px; }
.hero__card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.hero__card-top strong { display: block; font-size: 18px; }
.hero__card-top span { color: var(--muted); font-size: 14px; }
.hero__phone { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: clamp(24px, 4.4vw, 30px); font-weight: 900; letter-spacing: -.5px; color: var(--ink); padding: 14px 0; border: 2px dashed var(--yellow); border-radius: 12px; margin-bottom: 14px; }
.hero__phone .phone-icon { width: 24px; height: 24px; fill: var(--yellow-dark); }
.hero__card-note { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }

/* Sections */
.section { padding: 84px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; color: var(--yellow-dark); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.section__head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -1px; margin: 0 0 14px; }
.section__head p { font-size: 18px; color: var(--ink-soft); margin: 0; }

/* Grid + cards */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--yellow); }
.card__icon { font-size: 32px; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--yellow); border-radius: 14px; margin-bottom: 16px; }
.card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 800; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-size: clamp(30px, 4vw, 40px); font-weight: 900; color: var(--ink); letter-spacing: -1px; }
.stat__num span { color: var(--yellow-dark); }
.stat__label { color: var(--muted); font-size: 14px; font-weight: 600; }

/* Steps / werkwijze */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; }
.step__num { width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 900; font-size: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Band */
.band { background: var(--ink); color: #fff; padding: 76px 0; }
.band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.band__col h2 { font-size: 28px; font-weight: 900; letter-spacing: -.5px; margin: 0 0 14px; }
.band__col h2::after { content: ""; display: block; width: 56px; height: 5px; background: var(--yellow); border-radius: 3px; margin-top: 14px; }
.band__col p { color: #cfcfcf; margin: 0 0 22px; font-size: 17px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 8px 15px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.chips li:last-child { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.region { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.region li { display: flex; align-items: center; gap: 14px; font-size: 19px; font-weight: 700; background: rgba(255,255,255,.06); padding: 14px 18px; border-radius: 12px; border-left: 4px solid var(--yellow); }
.region .flag { font-size: 24px; }

/* Features */
.feature { text-align: center; padding: 20px; }
.feature__num { font-size: 30px; font-weight: 900; color: var(--ink); width: 84px; height: 84px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: var(--yellow); border-radius: 50%; }
.feature h3 { font-size: 20px; font-weight: 800; margin: 0 0 10px; }
.feature p { color: var(--ink-soft); margin: 0; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--yellow); }
.price--featured { border-color: var(--yellow); box-shadow: var(--shadow); position: relative; }
.price__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: .5px; white-space: nowrap; }
.price h3 { margin: 0 0 6px; font-size: 20px; font-weight: 800; }
.price__desc { color: var(--muted); font-size: 14px; margin: 0 0 18px; min-height: 40px; }
.price__from { display: block; font-size: 12px; font-weight: 800; color: var(--yellow-dark); text-transform: uppercase; letter-spacing: 1px; }
.price__amount { font-size: 42px; font-weight: 900; letter-spacing: -1px; line-height: 1.1; }
.price__amount sup { font-size: 20px; top: -.6em; }
.price ul { list-style: none; padding: 0; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 11px; }
.price li { font-size: 14.5px; color: var(--ink-soft); padding-left: 26px; position: relative; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--wa-dark); font-weight: 900; }
.price .btn { margin-top: auto; }
.pricing__note { text-align: center; color: var(--muted); font-size: 14px; margin: 28px auto 0; max-width: 680px; }

/* FAQ */
.section--alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; transition: border-color .15s, box-shadow .15s; }
.faq__item[open] { border-color: var(--yellow); box-shadow: var(--shadow); }
.faq__item summary { cursor: pointer; font-weight: 700; font-size: 17.5px; padding: 16px 28px 16px 0; list-style: none; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 400; color: var(--yellow-dark); transition: transform .2s; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 0 0 18px; color: var(--ink-soft); }
.faq__item a { color: var(--yellow-dark); font-weight: 600; text-decoration: underline; }

/* CTA */
.cta { background: var(--yellow); padding: 78px 0; }
.cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -1px; margin: 0 0 14px; }
.cta p { font-size: 18px; color: var(--ink-soft); margin: 0 0 30px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Footer */
.footer { background: #0d0d0d; color: #cfcfcf; padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand img, .footer__brand svg { height: 44px; width: auto; display: block; margin-bottom: 16px; }
.footer__brand p { max-width: 360px; font-size: 15px; }
.footer__links h3 { color: #fff; font-size: 16px; margin: 0 0 14px; font-weight: 700; }
.footer__links a { display: block; color: #bdbdbd; padding: 5px 0; font-size: 15px; transition: color .15s; }
.footer__links a:hover { color: var(--yellow); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13.5px; color: #8d8d8d; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__bar-inner a { color: #8d8d8d; transition: color .15s; }
.footer__bar-inner a:hover { color: var(--yellow); }
.footer__legal-info { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__legal-info p { font-size: 13px; color: #8d8d8d; margin: 0 0 6px; line-height: 1.6; }

/* Floating buttons */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .5); transition: transform .15s;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .wa-icon { width: 32px; height: 32px; fill: #fff; }
.call-float {
  position: fixed; right: 22px; bottom: 92px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(255, 204, 0, .5); transition: transform .15s;
}
.call-float:hover { transform: scale(1.08); }
.call-float .phone-icon { width: 28px; height: 28px; fill: var(--ink); }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsive */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header.open .nav {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 16px;
  }
  .header.open .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 56px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .band__inner, .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing, .reviews { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; }
  .btn--lg { width: 100%; }
  .hero__actions { width: 100%; }
}
