/* ===========================================================
 * Bezoekregistratie.nl – marketing site (modern SaaS)
 * =========================================================== */

:root {
  --primary:        #0e1f3a;     /* deep navy */
  --primary-soft:   #1a3361;
  --accent:         #00d4a3;     /* vibrant teal-green */
  --accent-dark:    #00b890;
  --highlight:      #7c5dfa;     /* electric purple */
  --text:           #0c1424;
  --text-muted:     #5e6b85;
  --bg:             #ffffff;
  --bg-soft:        #f6f8fc;
  --bg-dark:        #060d1a;
  --border:         #e3e8f1;
  --shadow-sm:      0 2px 8px rgba(14, 31, 58, 0.06);
  --shadow-md:      0 12px 32px rgba(14, 31, 58, 0.10);
  --shadow-lg:      0 30px 80px rgba(14, 31, 58, 0.18);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      24px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ----- Container ----- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Header / nav ----- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 800; color: var(--primary);
  letter-spacing: -0.01em;
}
.nav__brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 212, 163, 0.18);
}
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  color: var(--text-muted); font-weight: 500; font-size: 15px;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--primary); }
.nav__cta {
  background: var(--primary); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; border: 0;
  transition: background .15s ease;
}
.nav__cta:hover { background: var(--primary-soft); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer;
  transition: transform .1s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #062a23; box-shadow: 0 8px 24px rgba(0, 212, 163, 0.30); }
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 12px 32px rgba(0, 212, 163, 0.40); }
.btn--ghost-light { background: rgba(255, 255, 255, 0.10); color: #fff; border: 1px solid rgba(255, 255, 255, 0.30); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.18); }
.btn--ghost { background: transparent; color: var(--primary); border: 1px solid var(--border); }
.btn--ghost:hover { background: var(--bg-soft); }
.btn--lg { padding: 18px 30px; font-size: 16px; }

/* ----- HERO ----- */
.hero {
  position: relative; overflow: hidden;
  background: #ffffff;
  color: #0e1f3a;
  padding: 100px 0 60px 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(0,212,163,0.10) 0%, transparent 70%),
    radial-gradient(50% 40% at 0% 90%, rgba(31,93,168,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
}
.hero__top {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(0, 212, 163, 0.12); color: #06624f;
  font-weight: 600; font-size: 13px; letter-spacing: 0.02em;
  border: 1px solid rgba(0, 212, 163, 0.40);
}
.hero__pill .ping {
  width: 8px; height: 8px; border-radius: 50%; background: #00d4a3;
  box-shadow: 0 0 0 4px rgba(0, 212, 163, 0.30);
}
.hero h1 {
  font-size: 60px; font-weight: 800; line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 24px 0 20px 0;
  padding-bottom: 0.12em;
  background: linear-gradient(135deg, #0e1f3a 30%, #00b48a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 19px; line-height: 1.6;
  color: #5e6b85;
  max-width: 560px;
  margin: 0 0 32px 0;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero__stats {
  display: flex; gap: 36px; margin-top: 56px;
  padding-top: 28px; border-top: 1px solid rgba(14, 31, 58, 0.10);
}
.hero__stat .num {
  font-size: 28px; font-weight: 800; color: #0e1f3a;
  letter-spacing: -0.01em;
}
.hero__stat .lbl {
  font-size: 13px; color: #8895ad;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* Hero visual = tablet-mockup (PNG of SVG) */
.hero__visual {
  position: relative;
  display: flex; justify-content: center;
}
.hero__visual svg,
.hero__visual img.hero__img {
  width: 110%; max-width: 680px; height: auto;
  filter: drop-shadow(0 30px 60px rgba(14, 31, 58, 0.18));
}

/* ----- Section utilities ----- */
section { padding: 100px 0; }
.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 60px auto;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: 42px; font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; margin: 0 0 16px 0;
  color: var(--primary);
}
.section-head p {
  font-size: 18px; color: var(--text-muted); margin: 0;
}

/* ----- Why (waarom is dit nodig) ----- */
.why {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.why-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 32px 32px 96px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-card__num {
  position: absolute;
  top: 28px; left: 28px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: var(--accent);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.02em;
}
.why-card h3 {
  font-size: 19px; font-weight: 700; margin: 0 0 8px 0;
  color: var(--primary);
}
.why-card p {
  font-size: 15px; color: var(--text-muted); margin: 0;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px 24px 24px; }
  .why-card__num { position: relative; top: auto; left: auto; margin-bottom: 14px; }
}

/* ----- Features (USPs) ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.feature {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 212, 163, 0.30);
}
.feature__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0, 212, 163, 0.15), rgba(124, 93, 250, 0.15));
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 19px; font-weight: 700; margin: 0 0 8px 0;
  color: var(--primary);
}
.feature p {
  font-size: 15px; color: var(--text-muted); margin: 0;
  line-height: 1.6;
}

/* ----- Showcase (tablet mockups) ----- */
.showcase {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.showcase-grid--alt { direction: rtl; }
.showcase-grid--alt > * { direction: ltr; }
.showcase__copy h3 {
  font-size: 32px; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.015em; margin: 0 0 16px 0;
  color: var(--primary);
}
.showcase__copy p {
  font-size: 17px; color: var(--text-muted); margin: 0 0 24px 0;
}
.showcase__copy ul {
  list-style: none; padding: 0; margin: 0 0 28px 0;
}
.showcase__copy ul li {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text);
}
.showcase__copy ul li::before {
  content: '✓'; color: var(--accent-dark); font-weight: 700;
  flex-shrink: 0;
}
.showcase__visual {
  display: flex; justify-content: center; align-items: center;
  min-height: 460px;
  position: relative;
}
.showcase__visual svg {
  width: 100%; max-width: 460px; height: auto;
  filter: drop-shadow(0 24px 48px rgba(14, 31, 58, 0.18));
}
.showcase__visual::after {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(closest-side, rgba(0, 212, 163, 0.12), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ----- Pricing ----- */
.pricing { background: var(--bg-soft); }

.pricing-perks {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin: -28px auto 50px auto;
  max-width: 920px;
}
.pricing-perks .perk {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}

.pricing-note {
  margin: 32px auto 0 auto;
  max-width: 820px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-muted);
}
.pricing-note strong { color: var(--primary); }

.vh-mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.95em; }
.plan {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.plan--featured {
  background: linear-gradient(180deg, #0e1f3a 0%, #1a3361 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.plan__tag {
  position: absolute; top: -14px; right: 24px;
  background: var(--accent); color: #062a23;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
}
.plan__name {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark);
}
.plan--featured .plan__name { color: #6df7d2; }
.plan__price {
  display: flex; align-items: baseline; gap: 6px;
}
.plan__price .amount { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; }
.plan__price .unit { color: var(--text-muted); font-size: 15px; }
.plan--featured .plan__price .unit { color: rgba(255,255,255,0.6); }
.plan__desc { color: var(--text-muted); font-size: 14px; }
.plan--featured .plan__desc { color: rgba(255,255,255,0.7); }
.plan__features {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px;
}
.plan__features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px;
}
.plan__features li::before {
  content: '✓'; color: var(--accent-dark); font-weight: 700;
}
.plan--featured .plan__features li::before { color: var(--accent); }
.plan .btn { margin-top: auto; justify-content: center; }
.plan--featured .btn--ghost {
  background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.30);
}
.plan--featured .btn--ghost:hover { background: rgba(255,255,255,0.20); }

/* ----- Contact ----- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px;
  align-items: start;
}
.contact__info h3 {
  font-size: 28px; font-weight: 800; margin: 0 0 14px 0; color: var(--primary);
  letter-spacing: -0.015em;
}
.contact__info p {
  color: var(--text-muted); font-size: 16px; margin: 0 0 24px 0;
}
.contact__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.contact__list .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(0, 212, 163, 0.12); color: var(--accent-dark);
  display: grid; place-items: center; font-size: 18px;
}
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--text);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 212, 163, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-success {
  display: none; padding: 14px 18px;
  background: rgba(0, 212, 163, 0.10); color: #06624f;
  border: 1px solid rgba(0, 212, 163, 0.40);
  border-radius: 10px; font-weight: 600; margin-bottom: 16px;
}
.form-success.is-visible { display: block; }

/* ----- Footer ----- */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.65);
  padding: 60px 0 30px 0;
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__top h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; margin: 0 0 14px 0; }
.footer__top a { color: rgba(255,255,255,0.65); display: block; margin-bottom: 8px; font-size: 14px; }
.footer__top a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .hero { padding: 60px 0 90px 0; }
  .hero__top { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { justify-content: center; }
  .hero__visual img.hero__img { max-width: 480px; width: 100%; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .features-grid { grid-template-columns: 1fr; }
  .showcase-grid, .showcase-grid--alt { grid-template-columns: 1fr; direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .section-head h2 { font-size: 32px; }
}
