:root {
  --navy-dark: #0c2340;
  --navy: #12365e;
  --navy-light: #1c4a7a;
  --blue-accent: #7ecbef;
  --cream: #f1e7d2;
  --yellow: #f4d478;
  --ink: #16233a;
  --ink-soft: #4a5a72;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --border: #e4e9f0;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(12, 35, 64, 0.25);
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--navy-dark); }
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { margin: 0; padding: 0; list-style: none; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--navy-dark); }
.btn-primary:hover { background: #f7dd91; box-shadow: 0 8px 20px -6px rgba(244, 212, 120, .6); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 35, 64, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.logo-wrap { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; }
.no-logo .logo-img { display: none; }
.logo-text-fallback { display: none; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.no-logo .logo-text-fallback { display: inline; }
.logo-text-main { font-weight: 700; font-size: 1.05rem; color: #fff; }

.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a { font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.85); padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { border-color: var(--yellow); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call { color: #fff; border-color: rgba(255,255,255,.3); }
.header-call:hover { background: rgba(255,255,255,.08); }
.header-call span { display: inline; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(12,35,64,.94) 0%, rgba(12,35,64,.86) 40%, rgba(12,35,64,.55) 75%, rgba(12,35,64,.35) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; padding-top: 60px; padding-bottom: 60px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-accent);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: .35em;
}
.hero-sub { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 9px 20px;
  border-radius: 999px;
  transform: rotate(-3deg);
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.45);
  margin-bottom: 18px;
  border: 2px solid rgba(12,35,64,.15);
}
.price-badge-label { font-family: var(--font-head); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
.price-badge-amount { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1; letter-spacing: .04em; }

/* USP strip */
.usp-strip { background: var(--navy-dark); padding: 22px 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: .92rem;
  font-weight: 500;
}
.usp-item svg { color: var(--yellow); flex-shrink: 0; }

/* Sections */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy-light);
  background: #eaf2fb;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-tag-light { background: rgba(255,255,255,.12); color: var(--cream); }
.section h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); max-width: 700px; }
.section-intro { max-width: 560px; font-size: 1.05rem; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card h3, .card p { padding-left: 22px; padding-right: 22px; }
.card h3 { margin-top: 20px; font-size: 1.15rem; }
.card p { margin-bottom: 22px; font-size: .95rem; }

/* Waarom wij */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.why-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  color: var(--ink);
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--yellow);
}
.why-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--navy-dark);
  border-bottom: 2px solid var(--navy-dark);
  transform: rotate(-45deg);
}
.why-strong { font-weight: 700; color: var(--navy-dark); font-size: 1.1rem; margin-top: 6px; }

.why-highlight { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.badge-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-light), var(--navy-dark));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  outline: 2px dashed rgba(126,203,239,.5);
  outline-offset: 6px;
}
.promo-box {
  background: var(--navy-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
  width: 100%;
  box-shadow: var(--shadow);
}
.promo-box h3 { color: var(--yellow); margin-bottom: 8px; font-size: 1.05rem; }
.promo-box p { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }

/* Werkwijze */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 44px;
}
.step { padding: 8px; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: .95rem; }

/* Contact */
.section-contact { background: var(--navy-dark); color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { color: #fff; }
.contact-info p { color: rgba(255,255,255,.78); }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.contact-details li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact-details svg { color: var(--yellow); flex-shrink: 0; }
.contact-details a:hover { color: var(--blue-accent); }
.contact-person {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 18px;
  margin-top: 8px;
}
.contact-person-name { font-family: var(--font-head); font-weight: 700; color: #fff; margin-bottom: 2px; }
.contact-person-role { color: rgba(255,255,255,.6); font-size: .88rem; margin: 0; }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 6px; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color .15s ease, background .15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  background: #fff;
}
.form-row input[type="file"] { padding: 10px; background: var(--bg-alt); cursor: pointer; }
.form-note { text-align: center; font-size: .8rem; color: var(--ink-soft); margin: 14px 0 0; }

/* Footer */
.site-footer { background: #08192e; color: rgba(255,255,255,.65); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); }
.footer-logo-img { height: 26px; width: auto; }
.footer-brand .logo-text-main { color: #fff; font-weight: 700; font-size: 1rem; }
.footer-brand .logo-text-sub { color: var(--blue-accent); font-size: .78rem; font-weight: 600; background: rgba(255,255,255,.08); padding: 2px 7px; border-radius: 4px; }
.footer-inner p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-legal-link { font-size: .78rem; color: rgba(255,255,255,.4); margin-left: 8px; text-decoration: underline; text-underline-offset: 2px; }
.footer-legal-link:hover { color: rgba(255,255,255,.7); }
.footer-contact { display: flex; align-items: center; gap: 18px; font-size: .88rem; }
.social-icon { display: flex; align-items: center; color: rgba(255,255,255,.65); }
.social-icon:hover { color: var(--blue-accent); }
.footer-contact a:hover { color: var(--blue-accent); }

/* Responsive */
@media (max-width: 980px) {
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-highlight { order: -1; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 18px 24px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .2s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--ink); }
  .main-nav a:hover { color: var(--navy-dark); }
  .nav-toggle { display: flex; }
  .header-call span { display: none; }
  .header-actions .btn-primary { display: none; }
  .cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .section { padding: 64px 0; }
  .hero { min-height: 100vh; }
}
