/* over ons */
:root {
  --navy:       #071320;
  --navy-mid:   #0e2d5e;
  --red:        #d62828;
  --bg:         #f7f9fc;
  --text:       #0f172a;
  --muted:      #475569;
  --card:       #ffffff;
  --line:       #e2e8f0;
  --font:       ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #fff;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.nav { display: flex; align-items: center; gap: 4px; font-size: 14px; }
.nav a {
  color: rgba(255,255,255,.80);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav a:hover  { background: rgba(255,255,255,.12); color: #fff; }
.nav a.active { background: var(--red); color: #fff; }
.nav a.nav-login {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.25);
}
.nav a.nav-login:hover { background: rgba(255,255,255,.22); }

/* ── LAYOUT ── */
.wrap {
  max-width: 1100px;
  margin: 48px auto 24px;
  padding: 0 24px;
}

h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--navy);
}

.rule {
  height: 3px;
  width: 84px;
  background: var(--red);
  border-radius: 999px;
  margin-bottom: 24px;
}

.intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 72ch;
  margin-bottom: 32px;
}

.content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.content p {
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--text);
}
.content p:last-child { margin-bottom: 0; }

.closing {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--muted);
}

/* ── BOTTOM CTA (gedeeld met ln1) ── */
.lp-bottom-cta {
  background: linear-gradient(135deg, var(--red) 0%, #7f1d1d 100%);
  color: #fff;
  padding: 80px 32px;
  text-align: center;
  margin-top: 64px;
}
.lp-bottom-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.lp-bottom-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}
.lp-container { max-width: 1100px; margin: 0 auto; }
.lp-bottom-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lp-form-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 540px;
  width: 100%;
}
.lp-form-row input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s, background .2s;
}
.lp-form-row input[type="email"]::placeholder { color: rgba(255,255,255,.50); }
.lp-form-row input[type="email"]:focus {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.20);
}
.lp-form-row button {
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.lp-form-row button:hover { background: #fef2f2; }

/* ── FOOTER ── */
footer {
  background: #040c15;
  color: rgba(255,255,255,.55);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
}

/* ── LINKS ── */
.lp-link { color: #2563eb; font-weight: 600; }
.lp-link:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .wrap { margin-top: 32px; padding: 0 16px; }
  .content { padding: 24px 20px; }
  .lp-bottom-cta { padding: 56px 20px; }
}
