*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D2340; --blue: #1A4A7A; --sky: #2E7FC1;
  --accent: #4AABF0; --light: #E8F4FD; --white: #FFFFFF;
  --grey: #6B7280; --text: #1A2332;
}
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,35,64,0.08);
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.logo { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--navy); letter-spacing: -0.02em; text-decoration: none; }
.logo span { color: var(--sky); }
nav a.cta-nav {
  background: var(--navy); color: var(--white);
  padding: 10px 24px; border-radius: 100px;
  text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
nav a.cta-nav:hover { background: var(--sky); transform: translateY(-1px); }

/* ── NAV LINKS ── */
.nav-link {
  color: var(--navy); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--sky); }

/* ── LANGUAGE LINK ── */
.lang-link {
  background: var(--light); color: var(--navy);
  padding: 6px 14px; border-radius: 100px;
  text-decoration: none; font-size: 0.8rem; font-weight: 600;
  transition: background 0.2s;
}
.lang-link:hover { background: rgba(13,35,64,0.08); }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none; position: relative; z-index: 2;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(46,127,193,0.25) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(74,171,240,0.12) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,171,240,0.15); border: 1px solid rgba(74,171,240,0.3);
  color: var(--accent); padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08; color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 24px; animation: fadeUp 0.6s 0.1s ease both;
}
h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.65); line-height: 1.7;
  max-width: 520px; margin-bottom: 48px; font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--navy);
  padding: 16px 32px; border-radius: 100px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(74,171,240,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(74,171,240,0.5); }
.hero-stats {
  position: absolute; right: 48px; bottom: 60px;
  display: flex; gap: 40px; animation: fadeUp 0.6s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--white); display: block; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── SECTIONS ── */
.section { padding: 100px 48px; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sky); margin-bottom: 16px; }
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 60px; max-width: 560px;
}
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.step {
  background: var(--light); border-radius: 24px; padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,35,64,0.1); }
.step-num { font-family: 'DM Serif Display', serif; font-size: 5rem; color: rgba(46,127,193,0.1); position: absolute; top: 16px; right: 24px; line-height: 1; }
.step-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.4rem; }
.step h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.step p { color: var(--grey); line-height: 1.7; font-size: 0.95rem; }

/* ── SERVICES ── */
.services-section { background: var(--navy); padding: 100px 48px; }
.services-section .section-label { color: var(--accent); }
.services-section h2 { color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.service-card {
  display: block;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 24px; text-align: center;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover { background: rgba(74,171,240,0.12); border-color: rgba(74,171,240,0.3); transform: translateY(-4px); }
.service-card .icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.service-card span:not(.icon) { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }

/* ── CONTACT ── */
.contact-section { padding: 100px 48px; text-align: center; background: var(--white); }
.contact-section h2 { margin: 0 auto 16px; }
.contact-sub { color: var(--grey); font-size: 1.05rem; margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }
.contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 16px 32px; border-radius: 100px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
.contact-phone { display: block; margin-top: 24px; color: var(--grey); font-size: 0.95rem; }
.contact-phone a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-phone a:hover { color: var(--sky); }

/* ── CONTACT FORM ── */
.form-divider {
  display: flex; align-items: center; gap: 16px;
  max-width: 480px; margin: 40px auto 24px; color: var(--grey); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(107,114,128,0.25);
}
.contact-form {
  max-width: 480px; margin: 0 auto; text-align: left;
  display: flex; flex-direction: column; gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid rgba(13,35,64,0.15); border-radius: 12px;
  padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 1rem;
  color: var(--text); background: var(--white); width: 100%;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--sky);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.contact-form button.btn-primary { align-self: center; border: none; cursor: pointer; margin-top: 8px; }
.form-success {
  max-width: 480px; margin: 0 auto 32px; background: var(--light);
  border-radius: 16px; padding: 24px; text-align: center;
}
.form-success h3 { font-family: 'DM Serif Display', serif; color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: var(--grey); margin: 0; }
.form-success[hidden] { display: none; }
.form-error {
  max-width: 480px; margin: 0 auto 16px; color: #B3261E;
  background: #FBEAE9; border-radius: 12px; padding: 14px 18px;
  text-align: center; font-size: 0.9rem;
}
.form-error[hidden] { display: none; }

/* ── SEO SECTION ── */
.seo-section { background: #F8FBFF; padding: 60px 48px; }

/* ── LEGAL / STANDARD PAGES ── */
.legal-section { padding: 160px 48px 100px; max-width: 760px; margin: 0 auto; }
.legal-section h1 { color: var(--navy); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 24px; animation: none; }
.legal-section h2 { font-size: 1.4rem; margin: 40px 0 16px; max-width: none; }
.legal-section p, .legal-section li { color: var(--grey); line-height: 1.8; font-size: 0.98rem; margin-bottom: 16px; }
.legal-section ul, .legal-section ol { margin: 0 0 16px 20px; }
.legal-note {
  background: var(--light); border-radius: 12px; padding: 16px 20px;
  font-size: 0.85rem; color: var(--blue); margin-bottom: 40px;
}

/* Body copy that follows a hero (no h1 of its own) — same column/typography, normal top padding */
.info-section { padding: 100px 48px; max-width: 760px; margin: 0 auto; }
.info-section h2 { color: var(--navy); font-size: 1.4rem; margin: 0 0 16px; max-width: none; }
.info-section h2:not(:first-child) { margin-top: 40px; }
.info-section p, .info-section li { color: var(--grey); line-height: 1.8; font-size: 0.98rem; margin-bottom: 16px; }
.info-section ul, .info-section ol { margin: 0 0 16px 20px; }

/* ── DIENSTEN HUB ── */
.hub-note { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 24px; max-width: 600px; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.45); text-align: center; padding: 32px 48px; font-size: 0.85rem; }
footer strong { color: rgba(255,255,255,0.8); }
.footer-links { margin-top: 12px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }

  .nav-toggle { display: flex; }
  .nav-right {
    position: fixed; top: 0; right: 0; z-index: 99;
    height: 100vh; width: min(280px, 80vw);
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 20px;
    box-shadow: -8px 0 32px rgba(13,35,64,0.15);
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .nav-right.open { transform: translateX(0); }
  .nav-right .cta-nav { width: 100%; text-align: center; padding: 14px 24px; }

  .hero { flex-direction: column; align-items: flex-start; padding: 100px 24px 60px; }
  .hero-stats { position: static; right: auto; bottom: auto; margin-top: 48px; gap: 24px; flex-wrap: wrap; }
  .section { padding: 72px 24px; }
  .services-section, .contact-section, .seo-section { padding: 72px 24px; }
  .legal-section { padding: 120px 24px 72px; }
  .info-section { padding: 72px 24px; }
  footer { padding: 32px 24px; }
  h1 { font-size: 2.6rem; }
}
