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

:root {
  --wa-green:   #25D366;
  --wa-dark:    #075E54;
  --wa-teal:    #128C7E;
  --wa-light:   #DCF8C6;
  --text:       #1a1a1a;
  --muted:      #555;
  --border:     #e8e8e8;
  --bg-light:   #fafafa;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff; color: var(--text);
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky; top: 0; background: #fff; z-index: 100;
  box-shadow: 0 1px 0 #f0f0f0;
}
.logo { font-size: 17px; font-weight: 600; color: var(--text); text-decoration: none; }
.logo span { color: var(--wa-green); }
nav ul { list-style: none; display: flex; gap: 32px; }
nav a { text-decoration: none; color: var(--muted); font-size: 14px; transition: color 0.15s; }
nav a:hover { color: var(--text); }
.nav-btn {
  background: var(--wa-green); color: #fff !important;
  padding: 8px 18px; border-radius: 6px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.15s;
}
.nav-btn:hover { background: #1ebe5a; }

/* HERO */
.hero {
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; padding: 80px 40px;
  max-width: 1100px; margin: 0 auto;
}
.hero-left { flex: 1; max-width: 520px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  color: #16a34a; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 500; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--wa-green);
  border-radius: 50%; animation: blink 2.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
h1 {
  font-size: 40px; font-weight: 600; line-height: 1.2;
  letter-spacing: -0.5px; margin-bottom: 18px; color: #111;
}
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 16px; }
.btn-green {
  display: inline-block; background: var(--wa-green); color: #fff;
  padding: 12px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s;
}
.btn-green:hover { background: #1ebe5a; }
.btn-ghost {
  color: var(--muted); font-size: 14px; text-decoration: none;
  border-bottom: 1px solid #ddd; padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: #111; border-color: #999; }

/* PHONE MOCKUP */
.hero-right { flex-shrink: 0; }
.phone {
  width: 260px; background: #111; border-radius: 36px;
  padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.screen { background: #ECE5DD; border-radius: 26px; overflow: hidden; min-height: 480px; }
.wa-bar {
  background: var(--wa-dark); color: #fff; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.wa-avi {
  width: 34px; height: 34px; background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.wa-info .wn { font-size: 13px; font-weight: 600; }
.wa-info .ws { font-size: 10px; opacity: .75; }
.chat { padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.msg {
  max-width: 82%; padding: 7px 10px; border-radius: 10px;
  font-size: 11px; line-height: 1.5;
}
.min { background: #fff; align-self: flex-start; border-top-left-radius: 2px; color: #222; }
.mout { background: var(--wa-light); align-self: flex-end; border-top-right-radius: 2px; color: #222; }
.mt { font-size: 9px; color: #999; margin-top: 3px; text-align: right; }
.wa-cta-btn {
  background: #fff; border: none; width: calc(100% - 0px);
  padding: 8px; border-radius: 8px; color: var(--wa-teal);
  font-size: 11px; font-weight: 600; text-align: center; cursor: pointer;
  border: 1px solid #e5e5e5;
}
.menu-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #e8e8e8; }
.menu-head { background: #f8f8f8; padding: 8px 12px; font-size: 11px; font-weight: 600; color: #333; border-bottom: 1px solid #eee; }
.menu-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 12px; border-bottom: 1px solid #f5f5f5; font-size: 10px;
}
.menu-row:last-child { border: none; }
.mpr { color: #16a34a; font-weight: 600; }
.madd {
  width: 18px; height: 18px; background: var(--wa-green); color: #fff;
  border: none; border-radius: 50%; font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.order-card { background: #fff; border-radius: 10px; padding: 10px 12px; border: 1px solid #e8e8e8; font-size: 10px; }
.oc-title { font-weight: 600; margin-bottom: 8px; color: #333; }
.oc-row { display: flex; justify-content: space-between; padding: 3px 0; }
.oc-total { display: flex; justify-content: space-between; font-weight: 600; padding-top: 6px; margin-top: 4px; border-top: 1px solid #eee; }
.pay-btn {
  background: var(--wa-green); color: #fff; border: none; width: 100%;
  padding: 7px; border-radius: 6px; font-size: 10px; font-weight: 600; margin-top: 8px; cursor: pointer;
}

/* SECTIONS */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.label { font-size: 12px; font-weight: 600; color: var(--wa-green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
h2 { font-size: 28px; font-weight: 600; letter-spacing: -.3px; margin-bottom: 14px; color: #111; line-height: 1.3; }
.sub { font-size: 16px; color: #666; line-height: 1.7; max-width: 500px; }

/* FEATURES */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #f0f0f0;
  border: 1px solid #f0f0f0; border-radius: 12px; overflow: hidden;
  margin-top: 48px;
}
.feat { background: #fff; padding: 32px 28px; transition: background 0.15s; }
.feat:hover { background: var(--bg-light); }
.feat-icon { font-size: 24px; margin-bottom: 14px; }
.feat-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #111; }
.feat-body { font-size: 14px; color: #666; line-height: 1.65; }

/* HOW IT WORKS */
.how-section { background: var(--bg-light); padding: 80px 40px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  height: 200px; padding: 16px; overflow: hidden;
}
.step-num { font-size: 12px; font-weight: 600; color: var(--wa-green); }
.step-title { font-size: 15px; font-weight: 600; color: #111; }
.step-body { font-size: 13px; color: #666; line-height: 1.6; }

/* QR CODE STAP 1 */
.step-card-qr {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; height: 200px;
}
.qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.qr-img { width: 112px; height: 112px; border-radius: 8px; }
.qr-label-scan {
  font-size: 10px; color: #888;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 20px; padding: 3px 10px;
}
.qr-open-btn {
  font-size: 11px; font-weight: 600; color: var(--wa-teal);
  text-decoration: none; padding: 5px 14px;
  border: 1px solid #d1fae5; border-radius: 6px;
  background: #f0fdf4; transition: background 0.15s;
}
.qr-open-btn:hover { background: #dcfce7; }

/* COMPARE */
.compare-wrap { margin-top: 48px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
thead th { background: var(--bg-light); padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 600; color: #555; border-bottom: 1px solid var(--border); }
thead th:first-child { color: #111; }
tbody td { padding: 13px 20px; font-size: 13px; border-bottom: 1px solid #f5f5f5; color: #444; }
tbody tr:last-child td { border-bottom: none; }
tbody td:first-child { font-weight: 500; color: #222; }
.hl { color: var(--wa-green); font-weight: 600; }
.yn { font-size: 15px; }
.y { color: var(--wa-green); }
.n { color: #ccc; }

/* PRICING */
.pricing-wrap { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; max-width: 740px; }
.plan { border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; display: flex; flex-direction: column; }
.plan.pop { border-color: var(--wa-green); border-width: 2px; }
.plan-tag { display: inline-block; background: var(--wa-green); color: #fff; font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: 100px; margin-bottom: 16px; align-self: flex-start; }
.plan-name { font-size: 14px; font-weight: 500; color: #888; margin-bottom: 8px; }
.plan-price { font-size: 36px; font-weight: 600; color: #111; letter-spacing: -0.5px; }
.plan-price span { font-size: 14px; font-weight: 400; color: #888; }
.plan-desc { font-size: 13px; color: #888; margin: 8px 0 24px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.plan-feats li { font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 8px; }
.plan-feats li::before { content: '✓'; color: var(--wa-green); font-weight: 600; flex-shrink: 0; }
.plan-btn {
  display: block; text-align: center; padding: 11px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1.5px solid #e0e0e0;
  color: #333; background: #fff; cursor: pointer; transition: all 0.15s;
}
.plan-btn:hover { border-color: #999; }
.plan-btn.primary { background: var(--wa-green); color: #fff; border-color: var(--wa-green); }
.plan-btn.primary:hover { background: #1ebe5a; border-color: #1ebe5a; }

/* CTA + AANMELDEN */
.cta-bottom { background: #111; color: #fff; text-align: center; padding: 80px 40px; }
.cta-bottom h2 { color: #fff; font-size: 30px; margin-bottom: 14px; }
.cta-bottom p { color: rgba(255,255,255,.55); font-size: 15px; margin-bottom: 32px; }
.cta-inner { max-width: 680px; margin: 0 auto; }

.aanmeld-form-wrap {
  background: #fff; border-radius: 16px; padding: 32px;
  text-align: left; margin-top: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.af-field { display: flex; flex-direction: column; margin-bottom: 0; }
.af-field:not(.af-row .af-field) { margin-bottom: 16px; }
label {
  font-size: 12px; font-weight: 600; color: #555;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.af-opt { font-weight: 400; color: #aaa; text-transform: none; letter-spacing: 0; }
input, textarea, select,
.form-input {
  width: 100%; background: #f8f8f8;
  border: 1.5px solid var(--border); color: var(--text);
  padding: 10px 12px; font-family: 'Inter', sans-serif;
  font-size: 14px; border-radius: 8px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus,
.form-input:focus {
  border-color: var(--wa-green); box-shadow: 0 0 0 3px rgba(37,211,102,0.12);
  background: #fff;
}
textarea { resize: vertical; min-height: 90px; }
.af-submit { width: 100%; padding: 14px; font-size: 15px; font-weight: 600; border-radius: 10px; margin-top: 4px; }
.af-error { color: #dc2626; font-size: 12px; margin-top: 4px; font-weight: 500; }
.af-disclaimer { margin-top: 12px; font-size: 12px; color: #aaa; text-align: center; }

.form-success-banner {
  margin-top: 32px; background: rgba(37,211,102,0.12);
  border: 1.5px solid rgba(37,211,102,0.35);
  border-radius: 12px; padding: 20px 28px;
  color: #fff; font-size: 15px; font-weight: 500;
  line-height: 1.6;
}

/* FOOTER */
footer {
  border-top: 1px solid #f0f0f0; padding: 28px 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #999;
}
.footer-logo { font-size: 15px; font-weight: 600; color: var(--text); }
.footer-logo span { color: var(--wa-green); }
.footer-links { display: flex; gap: 24px; }
footer a { color: #999; text-decoration: none; transition: color 0.15s; }
footer a:hover { color: #555; }

/* MOBILE */
@media (max-width: 860px) {
  nav ul { display: none; }
  .hero { flex-direction: column; padding: 48px 24px; gap: 40px; }
  .hero-right { align-self: center; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .section { padding: 60px 24px; }
  .how-section { padding: 60px 24px; }
  .af-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .aanmeld-form-wrap { padding: 24px 16px; }
  .cta-bottom { padding: 60px 20px; }
}
