/* =============================================
   Leuk Nederland – Voorpagina (pag 1)
   Eigen ontwerp 2025
   ============================================= */

:root {
  --navy:        #071320;
  --navy-mid:    #0e2d5e;
  --blue:        #1d4ed8;
  --blue-mid:    #2563eb;
  --sky:         #eff6ff;
  --sky-mid:     #dbeafe;
  --red:         #b91c1c;
  --red-mid:     #dc2626;
  --red-soft:    #fef2f2;
  --green:       #15803d;
  --green-mid:   #16a34a;
  --green-soft:  #f0fdf4;
  --amber:       #92400e;
  --amber-soft:  #fffbeb;
  --text:        #0f172a;
  --muted:       #475569;
  --light:       #94a3b8;
  --border:      #e2e8f0;
  --card:        #ffffff;
  --bg:          #f8fafc;
  --r:           12px;
  --r-lg:        20px;
  --sh:          0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --sh-md:       0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --sh-lg:       0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --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; overflow-x: hidden; }
body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ───── 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; }
.brand .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #fff;
}
.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-mid); 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); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 16px;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    z-index: 200;
  }
  .nav.nav-open { display: flex; }
  .nav a { color: var(--text); border-radius: var(--r); padding: 10px 14px; }
  .nav a:hover { background: var(--bg); color: var(--navy); }
  .nav a.active { background: var(--red-mid); color: #fff; }
  .nav a.nav-login { background: var(--navy); color: #fff; border: none; }
  .topbar-inner { position: relative; }
}

/* ───── HERO ───── */
.lp-hero {
  background: linear-gradient(135deg, #040c15 0%, var(--navy) 45%, #0e2d5e 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(37,99,235,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(185,28,28,.12) 0%, transparent 60%);
  pointer-events: none;
}
.lp-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.lp-hero__text { padding-bottom: 64px; }
.lp-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 24px;
}
.lp-hero__h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}
.lp-hero__em {
  color: #93c5fd; /* light blue */
}
.lp-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 48ch;
}
.lp-hero__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-form-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-form-row input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: var(--r);
  border: 2px solid transparent;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  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,.45); }
.lp-form-row input[type="email"]:focus {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.15);
}
.lp-form-row button {
  padding: 14px 24px;
  border-radius: var(--r);
  border: none;
  background: var(--red-mid);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .1s;
}
.lp-form-row button:hover  { background: var(--red); transform: translateY(-1px); }
.lp-form-row button:active { transform: translateY(0); }
.lp-hero__note {
  font-size: 13px;
  color: rgba(255,255,255,.50);
  letter-spacing: .01em;
}
.lp-hero__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.lp-hero__image img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,.30);
  object-fit: cover;
}

/* Hero stats bar */
.lp-hero__stats {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.10);
  position: relative;
  z-index: 1;
}
.lp-hero__stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.lp-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,.10);
  padding-right: 28px;
  padding-left: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.lp-stat:first-child { padding-left: 0; }
.lp-stat:last-child  { border-right: none; }
.lp-stat__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
}
.lp-stat__icon svg { width: 16px; height: 16px; }

/* ───── PILLARS ───── */
.lp-pillars {
  background: #fff;
  padding: 64px 32px;
  border-bottom: 1px solid var(--border);
}
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
}
.lp-pillar:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  border-color: #c7d2fe;
}
.lp-pillar--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.lp-pillar--featured:hover { border-color: var(--navy-mid); }
.lp-pillar__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-mid);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.lp-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-pillar__icon svg { width: 26px; height: 26px; }
.lp-pillar__icon--blue  { background: var(--sky-mid); color: var(--blue-mid); }
.lp-pillar__icon--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.90); }
.lp-pillar__icon--warm  { background: #fef3c7; color: #d97706; }
.lp-pillar h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.lp-pillar--featured h3 { color: #fff; }
.lp-pillar p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.lp-pillar--featured p { color: rgba(255,255,255,.70); }
.lp-pillar__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-mid);
  background: var(--sky);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 4px;
}
.lp-pillar--featured .lp-pillar__price {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.90);
}
.lp-pillar__link {
  font-size: 13px;
  color: var(--blue-mid);
  font-weight: 600;
  margin-top: 4px;
}
.lp-pillar__link:hover { text-decoration: underline; }
.lp-pillar--featured .lp-pillar__link { color: #93c5fd; }

/* ───── SECTION HEADERS ───── */
.lp-section { padding: 80px 32px; }
.lp-section--alt { background: var(--sky); }
.lp-section--dark { background: var(--navy); color: #fff; }

.lp-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.lp-section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.lp-section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.7;
}
.lp-section--dark .lp-section-header p { color: rgba(255,255,255,.65); }
.lp-section--dark .lp-section-header h2 { color: #fff; }

.lp-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: var(--sky-mid);
  color: var(--blue-mid);
}
.lp-tag--navy  { background: #dde5f0; color: var(--navy); }
.lp-tag--green { background: #bbf7d0; color: var(--green); }
.lp-tag--warm  { background: #fed7aa; color: #92400e; }
.lp-tag--red   { background: #fecaca; color: var(--red); }
.lp-tag--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.90); }

/* ───── FEATURE CARDS ───── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.lp-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.lp-feature-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.lp-section--alt .lp-feature-card { background: #fff; }

.lp-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.lp-feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.lp-link { color: var(--blue-mid); font-weight: 600; }
.lp-link:hover { text-decoration: underline; }

.lp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-icon svg { width: 22px; height: 22px; }
.lp-icon--blue  { background: var(--sky-mid); color: var(--blue-mid); }
.lp-icon--navy  { background: #dde5f0;        color: var(--navy); }
.lp-icon--green { background: #bbf7d0;        color: var(--green); }
.lp-icon--amber { background: #fde68a;        color: var(--amber); }
.lp-icon--red   { background: #fecaca;        color: var(--red); }

.lp-badge-soon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #fde68a;
  color: var(--amber);
  padding: 2px 8px;
  border-radius: 999px;
}
.lp-includes-banner {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,.90);
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: .01em;
}
.lp-includes-banner::before {
  content: '✓ ';
  color: #86efac;
}

/* ───── THUIS OF UIT ───── */
.lp-tou {
  background: linear-gradient(135deg, #052e16 0%, #15803d 50%, #166534 100%);
  color: #fff;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.lp-tou::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(34,197,94,.15) 0%, transparent 70%);
  pointer-events: none;
}
.lp-tou__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-tou__text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #fff;
}
.lp-tou__lead {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 50ch;
}
.lp-tou__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.lp-tou__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.lp-tou__benefits li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2386efac'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
  border: none;
}
.lp-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.lp-btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.70);
}
.lp-tou__visual {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.lp-tou__visual-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
}
.lp-tou__visual-icon svg { width: 36px; height: 36px; }
.lp-tou__visual h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.lp-tou__visual p  { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.5; }
.lp-tou__visual-url {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #86efac;
  background: rgba(255,255,255,.08);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(134,239,172,.30);
}

/* ───── FAMILLE CARD ───── */
.lp-familie-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
}
.lp-familie-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #fde68a;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400e;
}
.lp-familie-card__icon svg { width: 32px; height: 32px; }
.lp-familie-card__text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.lp-familie-card__text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ───── PRICING ───── */
.lp-pricing {
  background: var(--navy);
  color: #fff;
  padding: 80px 32px;
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.lp-price-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-lg);
}
.lp-price-card--featured { border: 3px solid #93c5fd; }

.lp-price-card__header {
  padding: 36px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.lp-price-card__header h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.lp-price-card__header p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.lp-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.lp-price__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
}
.lp-price__period { font-size: 16px; color: var(--muted); }

.lp-price-card__features {
  list-style: none;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lp-price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.lp-price-card__features li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2316a34a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}
.lp-price-card__cta {
  padding: 20px 32px 28px;
}
.lp-price-card__cta .lp-form-row input[type="email"] {
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--border);
}
.lp-price-card__cta .lp-form-row input[type="email"]::placeholder { color: var(--light); }
.lp-price-card__cta .lp-form-row input[type="email"]:focus {
  border-color: var(--blue-mid);
  background: #fff;
}

/* Group pricing table */
.lp-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 0;
}
.lp-price-table th, .lp-price-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.lp-price-table th {
  background: var(--bg);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}
.lp-price-table th small { font-size: 10px; font-weight: 500; text-transform: none; display: block; }
.lp-price-table tr:last-child td { border-bottom: none; }
.lp-price-table td:not(:first-child) { font-weight: 600; color: var(--navy); }
.lp-price-table tbody tr:hover { background: var(--bg); }
.lp-price-table-wrap { overflow-x: auto; }

.lp-price-card__body { flex: 1; }
.lp-price-card__note {
  padding: 16px 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
}
.lp-price-card__note a { color: var(--blue-mid); font-weight: 600; }

.lp-pricing-familie {
  margin-top: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-pricing-familie h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.lp-pricing-familie p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.lp-pricing-familie p a { color: #93c5fd; font-weight: 600; }
.lp-btn--white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--r);
  font-size: 14px;
  white-space: nowrap;
  transition: background .15s;
  text-decoration: none;
  display: inline-block;
}
.lp-btn--white:hover { background: #e0f2fe; }

/* ───── BOTTOM CTA ───── */
.lp-bottom-cta {
  background: linear-gradient(135deg, var(--red) 0%, #7f1d1d 100%);
  color: #fff;
  padding: 80px 32px;
  text-align: center;
}
.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-bottom-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lp-bottom-form .lp-form-row {
  max-width: 540px;
  width: 100%;
}
.lp-bottom-form .lp-form-row button {
  background: #fff;
  color: var(--red);
}
.lp-bottom-form .lp-form-row button:hover { background: #fef2f2; transform: translateY(-1px); }

/* ───── FOOTER ───── */
.lp-footer {
  background: #040c15;
  color: rgba(255,255,255,.65);
  padding: 48px 32px;
  font-size: 14px;
}
.lp-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}
.lp-footer__brand { line-height: 1.8; }
.lp-footer__brand strong { color: #fff; font-size: 16px; }
.lp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer__links a { color: rgba(255,255,255,.65); transition: color .15s; }
.lp-footer__links a:hover { color: #fff; }
.lp-footer__address { line-height: 1.8; }

/* ───── MSG OVERLAY ───── */
#msgOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#msgBox {
  background: #fff;
  padding: 32px 40px;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.30);
  max-width: 440px;
  width: 90%;
  text-align: center;
  font-size: 17px;
  color: var(--text);
}
#msgBox button {
  margin-top: 20px;
  padding: 10px 22px;
  font-size: 15px;
  border-radius: var(--r);
  border: none;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
}
#msgBox button:hover { background: var(--navy-mid); }

/* ───── LNX: HERO (app-versie bovenkant) ───── */
:root{
  --lnx-navy:#081630;
  --lnx-navy-2:#102d58;
  --lnx-red:#d62828;
  --lnx-warm:#e07a3f;
  --lnx-cool:#4a7fb0;
  --lnx-ink:#1d2733;
  --lnx-muted:#5b6b7a;
  --lnx-line:#e4e9ef;
  --lnx-bg-soft:#f6f8fb;
}
.lnx-hero{
  position:relative;
  background:
    radial-gradient(1200px 500px at 78% -10%, rgba(74,127,176,.20), transparent 60%),
    radial-gradient(900px 500px at 8% 120%, rgba(224,122,63,.16), transparent 55%),
    linear-gradient(160deg, var(--lnx-navy) 0%, var(--lnx-navy-2) 100%);
  color:#fff;
  overflow:hidden;
}
.lnx-hero__inner{
  max-width:1140px;
  margin:0 auto;
  padding:64px 24px 52px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.lnx-kicker{
  display:inline-block;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#bcd3e8;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:20px;
}
.lnx-h1{
  font-size:clamp(2rem, 4.2vw, 3.15rem);
  line-height:1.1;
  font-weight:800;
  margin:0 0 18px;
  letter-spacing:-.01em;
}
.lnx-h1 em{
  font-style:normal;
  background:linear-gradient(90deg, var(--lnx-warm), #f2a96b);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lnx-sub{
  font-size:1.12rem;
  line-height:1.6;
  color:#d7e2ee;
  max-width:34em;
  margin:0 0 26px;
}
.lnx-hero__form .lnx-row{
  display:flex;
  gap:10px;
  max-width:440px;
  background:#fff;
  padding:7px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}
.lnx-hero__form input{
  flex:1;
  border:0;
  outline:0;
  font-size:1rem;
  padding:12px 14px;
  border-radius:9px;
  color:var(--lnx-ink);
  min-width:0;
  font-family:var(--font);
}
.lnx-hero__form button{
  border:0;
  cursor:pointer;
  background:var(--lnx-red);
  color:#fff;
  font-weight:700;
  font-size:1rem;
  padding:12px 22px;
  border-radius:9px;
  white-space:nowrap;
  transition:filter .15s ease;
  font-family:var(--font);
}
.lnx-hero__form button:hover{ filter:brightness(1.08); }
.lnx-note{ margin:12px 2px 0; font-size:.9rem; color:#9fb6cc; }
.lnx-note strong{ color:#cfe0f0; font-weight:600; }

.lnx-hero__visual{ display:flex; justify-content:center; align-items:center; overflow:hidden; }
.lnx-hero__visual img{ width:100%; max-width:420px; height:auto; display:block; border-radius:12px; }
.lnx-orbits{ width:100%; max-width:420px; height:auto; }
.lnx-orbits .ring{ fill:none; stroke:rgba(255,255,255,.16); stroke-width:1.5; }
.lnx-orbits .node{ stroke:#fff; stroke-width:2; }
.lnx-orbits .node--warm{ fill:var(--lnx-warm); }
.lnx-orbits .node--cool{ fill:var(--lnx-cool); }
.lnx-orbits .node--group{ fill:#7da9cf; }
.lnx-orbits .me{ fill:var(--lnx-red); stroke:#fff; stroke-width:3; }
.lnx-orbits .link{ stroke:rgba(255,255,255,.45); stroke-width:1.5; stroke-dasharray:3 4; }
.lnx-orbits .lbl{ fill:#dce8f3; font-size:11px; font-family:inherit; }

.lnx-trust{ background:rgba(255,255,255,.06); border-top:1px solid rgba(255,255,255,.10); }
.lnx-trust__inner{
  max-width:1140px; margin:0 auto; padding:16px 24px;
  display:flex; flex-wrap:wrap; gap:10px 28px;
  justify-content:center; align-items:center;
  color:#cfe0f0; font-size:.95rem;
}
.lnx-trust__item{ display:flex; align-items:center; gap:9px; }
.lnx-trust__item svg{ width:18px; height:18px; stroke:#9ec5e6; flex:none; }

/* Zo werkt het */
.lnx-concept{ background:#fff; }
.lnx-concept__inner{
  max-width:1040px; margin:0 auto;
  padding:64px 24px 56px; text-align:center;
}
.lnx-concept h2{
  font-size:clamp(1.6rem,3vw,2.2rem); color:var(--lnx-navy);
  margin:0 0 14px; letter-spacing:-.01em;
}
.lnx-concept__lead{
  font-size:1.12rem; line-height:1.6; color:var(--lnx-muted);
  max-width:40em; margin:0 auto 44px;
}
.lnx-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; text-align:left; }
.lnx-step{
  border:1px solid var(--lnx-line); border-radius:16px;
  padding:26px 22px; background:var(--lnx-bg-soft);
}
.lnx-step__num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  background:var(--lnx-navy); color:#fff;
  font-weight:700; margin-bottom:14px;
}
.lnx-step h3{ margin:0 0 8px; color:var(--lnx-ink); font-size:1.15rem; }
.lnx-step p{ margin:0; color:var(--lnx-muted); line-height:1.55; }
.lnx-step--warm .lnx-step__num{ background:var(--lnx-warm); }
.lnx-concept__closing{
  margin-top: 44px;
  padding: 32px 40px;
  background: var(--lnx-navy);
  border-radius: 16px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,.90);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lnx-concept__closing strong{
  color: #fff;
  font-weight: 700;
}

/* ───── NETWERK TWOCOL ───── */
.lp-netwerk-twocol {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}
.lp-netwerk-text h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.lp-netwerk-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.lp-netwerk-text em { font-style: normal; font-weight: 700; color: var(--navy); }
.lp-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.lp-check-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231d4ed8'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 1px;
}
.lp-check-list--light li { color: rgba(255,255,255,.80); }
.lp-check-list--light li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2393c5fd'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Netwerk nodes visual */
.lp-netwerk-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-netwerk-nodes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.lp-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s;
}
.lp-node:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.lp-node svg { width: 24px; height: 24px; }
.lp-node--center {
  grid-column: 1 / -1;
  background: var(--navy);
  color: rgba(255,255,255,.90);
  border-color: var(--navy);
  flex-direction: row;
  justify-content: center;
}
.lp-node--center svg { color: #93c5fd; }
.lp-node--warm  { color: #92400e; border-color: #fde68a; background: #fffbeb; }
.lp-node--warm svg { color: #d97706; }
.lp-node--blue  { color: var(--blue-mid); border-color: var(--sky-mid); background: var(--sky); }
.lp-node--navy  { color: var(--navy); border-color: #dde5f0; background: #f0f4f8; }
.lp-node--green { color: var(--green); border-color: #bbf7d0; background: var(--green-soft); }

/* ───── FAMILIE TWEELUIK ───── */
.lp-familie-tweeluik {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 28px;
}
.lp-familie-kant {
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-familie-kant--warm {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}
.lp-familie-kant--cool {
  background: var(--sky);
  border: 1px solid var(--sky-mid);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.lp-familie-kant__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-familie-kant--warm .lp-familie-kant__icon { background: #fde68a; color: #92400e; }
.lp-familie-kant--cool .lp-familie-kant__icon { background: var(--sky-mid); color: var(--blue-mid); }
.lp-familie-kant__icon svg { width: 26px; height: 26px; }
.lp-familie-kant h3 { font-size: 20px; font-weight: 700; }
.lp-familie-kant__sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: -8px;
}
.lp-familie-kant p:last-child { font-size: 14px; color: var(--muted); line-height: 1.7; }
.lp-familie-verbinding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  position: relative;
}
.lp-familie-verbinding__lijn {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, #fde68a, var(--sky-mid));
  min-height: 30px;
}
.lp-familie-verbinding__kern {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  box-shadow: var(--sh);
}
.lp-familie-verbinding__kern svg { width: 22px; height: 22px; }
.lp-familie-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  padding: 0 20px;
}

/* ───── EUROPA SECTIE ───── */
.lp-europa {
  background: linear-gradient(135deg, #001a3a 0%, #003DA5 50%, #001a3a 100%);
  color: #fff;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.lp-europa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(147,197,253,.10) 0%, transparent 70%);
  pointer-events: none;
}
.lp-europa__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-europa__text h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #fff;
}
.lp-europa__lead {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 50ch;
}
.lp-europa__sub {
  font-size: 15px;
  color: rgba(255,255,255,.60);
  margin-bottom: 28px;
  font-style: italic;
}
.lp-europa__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lp-europa__plates {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.lp-plate-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-plate-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.50);
}

/* Kenteken — groot (naar voorbeeld berichten-template) */
.lp-kenteken {
  border: 3px solid #222;
  border-radius: 6px;
  overflow: hidden;
  display: inline-table;
  box-shadow: 0 4px 16px rgba(0,0,0,.40);
}
.lp-kp-blauw {
  background: #003DA5;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  padding: 4px 8px;
  vertical-align: middle;
  width: 34px;
  line-height: 14px;
}
.lp-kp-land {
  font-size: 16px;
  font-weight: 900;
  display: block;
  margin: 2px 0;
}
.lp-kp-geel {
  background: #FFD700;
  color: #000;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  padding: 6px 22px;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 3px;
  white-space: nowrap;
}
.lp-europa__plate-note {
  font-size: 12px;
  color: rgba(255,255,255,.40);
  text-align: center;
  font-style: italic;
}

/* ───── ACCESSIBILITY ───── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 880px) {
  .lnx-hero__inner { grid-template-columns:1fr; gap:34px; padding:48px 22px 40px; }
  .lnx-hero__visual { order:-1; }
  .lnx-orbits { max-width:320px; }
  .lnx-steps { grid-template-columns:1fr; }
}
@media (max-width: 480px) {
  .lnx-hero__inner { padding:40px 16px 36px; }
  .lnx-hero__form .lnx-row { flex-direction:column; gap:8px; }
  .lnx-hero__form button { width:100%; }
  .lnx-hero__visual img { border-radius:8px; }
}
@media (max-width: 900px) {
  .lp-hero__inner        { grid-template-columns: 1fr; padding-bottom: 48px; }
  .lp-hero__image        { display: none; }
  .lp-pillars-grid       { grid-template-columns: 1fr; }
  .lp-tou__inner         { grid-template-columns: 1fr; }
  .lp-tou__visual        { max-width: 320px; }
  .lp-pricing-grid       { grid-template-columns: 1fr; }
  .lp-footer__inner      { grid-template-columns: 1fr; gap: 24px; }
  .lp-netwerk-twocol     { grid-template-columns: 1fr; }
  .lp-netwerk-visual     { display: none; }
  .lp-europa__inner      { grid-template-columns: 1fr; }
  .lp-europa__visual     { align-items: flex-start; }
  .lp-europa__plates     { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .lp-section            { padding: 56px 20px; }
  .lp-hero__inner        { padding: 48px 20px 40px; }
  .lp-tou, .lp-pricing, .lp-bottom-cta { padding: 56px 20px; }
  .lp-pillars            { padding: 48px 20px; }
  .lp-europa             { padding: 56px 20px; }
  .lp-hero__stats-inner  { flex-direction: column; align-items: flex-start; gap: 0; }
  .lp-stat               { border-right: none; border-bottom: 1px solid rgba(255,255,255,.10); width: 100%; padding: 12px 0; }
  .lp-stat:last-child    { border-bottom: none; }
  .lp-features-grid      { grid-template-columns: 1fr; }
  .lp-familie-card       { flex-direction: column; padding: 28px; gap: 20px; }
  .lp-familie-tweeluik   { grid-template-columns: 1fr; }
  .lp-familie-verbinding { display: none; }
  .lp-familie-kant--warm { border-radius: var(--r-lg); }
  .lp-familie-kant--cool { border-radius: var(--r-lg); }
  .lp-pricing-familie    { flex-direction: column; gap: 16px; }
  .lp-footer             { padding: 40px 20px; }
  .lp-kp-geel            { font-size: 20px; padding: 4px 14px; letter-spacing: 2px; }
}
