/* ---- Basis ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blauw: #0b4f8a;
  --blauw-donker: #073a66;
  --oranje: #f08000;
  --grijs: #f4f6f8;
  --tekst: #2b2f33;
  --rand: #e2e6ea;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--tekst);
  line-height: 1.6;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; text-decoration: none; }

/* ---- Topbar ---- */
.topbar {
  background: var(--blauw-donker);
  color: #fff;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  gap: 24px;
  padding: 8px 20px;
  flex-wrap: wrap;
}
.topbar-spoed { margin-left: auto; color: #ffd9a8; }

/* ---- Header ---- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--rand);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blauw);
}
.logo strong { color: var(--oranje); }
.logo-icon { font-size: 1.4rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a { font-weight: 500; }
.nav a:hover { color: var(--blauw); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--oranje);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn:hover { background: #d97200; }
.btn-small { padding: 9px 16px; font-size: 0.9rem; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--blauw), var(--blauw-donker));
  color: #fff;
  padding: 70px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero-text h1 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 16px; }
.hero-text p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: #fff;
  color: var(--tekst);
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.hero-card h3 { color: var(--blauw); margin-bottom: 8px; }
.hero-card p { margin-bottom: 18px; }

/* ---- Secties ---- */
.section { padding: 64px 0; }
.section-alt { background: var(--grijs); }
.section-title { font-size: 2rem; color: var(--blauw); text-align: center; }
.section-sub { text-align: center; color: #5a6470; margin: 8px 0 36px; }

/* ---- Grids ---- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.card-icon { font-size: 2.4rem; margin-bottom: 12px; }
.card h3 { color: var(--blauw); margin-bottom: 8px; }

/* ---- Prijskaarten ---- */
.price-card {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
}
.price-card-featured {
  border: 2px solid var(--oranje);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--oranje);
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
}
.price-card h3 { color: var(--blauw); margin-bottom: 6px; }
.price { font-size: 1.8rem; font-weight: 700; color: var(--oranje); margin-bottom: 18px; }
.price small { display: block; font-size: 0.8rem; color: #7a838d; font-weight: 400; }
.price-card ul { list-style: none; margin-bottom: 22px; text-align: left; }
.price-card li { padding: 7px 0; border-bottom: 1px solid var(--rand); }
.price-card li::before { content: "✓ "; color: var(--oranje); font-weight: 700; }

/* ---- Features ---- */
.feature { text-align: center; }
.feature-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--oranje);
}
.feature p { color: #5a6470; }

/* ---- Contact ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-list { list-style: none; margin-top: 20px; }
.contact-list li { padding: 8px 0; font-size: 1.05rem; }

.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--rand);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label { font-weight: 600; font-size: 0.9rem; display: flex; flex-direction: column; gap: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--rand);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blauw);
}

/* ---- Footer ---- */
.footer {
  background: var(--blauw-donker);
  color: #cdd8e3;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-light { color: #fff; font-size: 1.1rem; }
.footer p { margin-top: 8px; font-size: 0.9rem; }
.footer-meta { text-align: right; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .hero-text h1 { font-size: 2rem; }
  .footer-inner, .footer-meta { text-align: left; }
}
