:root {
  --blue: #079cdd;
  --blue-dark: #067bb1;
  --ink: #303238;
  --muted: #626b75;
  --line: #dbe8ef;
  --soft: #eef8fc;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(20, 62, 83, .12);
  --radius: 24px;
  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 9999;
  transform: translateY(-150%); padding: 10px 14px; border-radius: 8px;
  background: var(--ink); color: white; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,232,239,.8);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 48px; height: 48px; }
.brand-text { font-size: 2rem; font-weight: 850; letter-spacing: -.05em; }
.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a { text-decoration: none; font-weight: 700; font-size: .98rem; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--blue-dark); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 22px; border: 0; border-radius: 14px;
  background: var(--blue); color: white; text-decoration: none; font-weight: 800;
  box-shadow: 0 10px 24px rgba(7,156,221,.22); transition: transform .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { background: var(--blue-dark); transform: translateY(-1px); }
.button-small { min-height: 44px; padding-inline: 17px; border-radius: 12px; }
.button-call svg { width: 18px; height: 18px; fill: currentColor; }

.hero { position: relative; overflow: hidden; padding: 92px 0 86px; background: linear-gradient(135deg, #fff 0%, #f7fcfe 58%, #eef8fc 100%); }
.hero::before { content: ""; position: absolute; inset: auto auto -150px -180px; width: 420px; height: 420px; border: 64px solid rgba(7,156,221,.08); border-radius: 50%; }
.hero-decoration { position: absolute; right: -85px; top: -90px; width: 420px; opacity: .055; transform: rotate(14deg); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: 78px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--blue-dark); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1, .section h2, .contact-section h2 { letter-spacing: -.045em; line-height: 1.04; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.25rem, 7vw, 6.3rem); font-weight: 900; }
.hero h1 span { color: var(--blue); }
.lead { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.text-link { font-weight: 800; text-decoration: none; }
.text-link:hover, .text-link:focus-visible { color: var(--blue-dark); }
.trust-list { display: flex; gap: 22px; flex-wrap: wrap; margin: 36px 0 0; padding: 0; list-style: none; color: #4b5963; font-weight: 700; font-size: .94rem; }
.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--blue); font-weight: 900; }

.hero-card { position: relative; padding: 34px; border: 1px solid rgba(219,232,239,.9); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.card-icon { width: 76px; height: 76px; margin-bottom: 22px; }
.hero-card h2 { margin: 0; font-size: 1.75rem; line-height: 1.15; letter-spacing: -.03em; }
.hero-card > p { margin: 14px 0 24px; color: var(--muted); }
.contact-stack { display: grid; gap: 10px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 13px; border-radius: 14px; background: var(--soft); text-decoration: none; }
.contact-row:hover, .contact-row:focus-visible { background: #e3f4fb; }
.contact-symbol { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: white; color: var(--blue-dark); font-weight: 900; }
.contact-row small, .contact-row strong { display: block; }
.contact-row small { color: var(--muted); font-size: .75rem; }
.contact-row strong { font-size: .98rem; }

.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 3.75rem); }
.section-heading > p:last-child, .lead-small { margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; overflow: hidden; min-height: 410px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 36px rgba(20,62,83,.055); }
.service-card.featured { border-color: rgba(7,156,221,.35); background: linear-gradient(180deg, #fff, #f3fbfe); }
.service-number { position: absolute; right: 25px; top: 18px; color: rgba(7,156,221,.13); font-size: 4rem; font-weight: 900; letter-spacing: -.06em; }
.service-card h3 { position: relative; margin: 54px 0 10px; font-size: 1.65rem; letter-spacing: -.025em; }
.service-card p { color: var(--muted); }
.service-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.service-card li { position: relative; margin-top: 10px; padding-left: 23px; font-weight: 650; }
.service-card li::before { content: "•"; position: absolute; left: 3px; color: var(--blue); font-size: 1.35rem; line-height: 1; top: .2em; }

.section-soft { background: var(--soft); }
.split-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: start; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px; border: 1px solid rgba(7,156,221,.14); border-radius: 18px; background: white; }
.steps li > span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: var(--blue); color: white; font-weight: 900; }
.steps h3 { margin: 2px 0 4px; font-size: 1.18rem; }
.steps p { margin: 0; color: var(--muted); }

.contact-section { padding: 86px 0; background: var(--ink); color: white; }
.contact-panel { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.eyebrow.light { color: #77d5ff; }
.contact-section h2 { margin: 0; max-width: 720px; font-size: clamp(2.5rem, 5vw, 4.7rem); }
.contact-section p { max-width: 760px; margin: 20px 0 0; color: #d7dce0; font-size: 1.08rem; }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button-light { background: white; color: var(--ink); box-shadow: none; }
.button-light:hover, .button-light:focus-visible { background: #eef8fc; color: var(--ink); }
.button-outline { background: transparent; border: 1px solid rgba(255,255,255,.35); box-shadow: none; }
.button-outline:hover, .button-outline:focus-visible { background: rgba(255,255,255,.08); }
.address-card { display: grid; gap: 3px; padding: 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.05); font-style: normal; color: #d7dce0; }
.address-card strong { margin-bottom: 6px; color: white; font-size: 1.25rem; }

.site-footer { padding: 28px 0 92px; border-top: 1px solid #e7eef2; background: white; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; color: var(--muted); font-size: .9rem; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand .brand-text { color: var(--ink); font-size: 1.45rem; }

.mobile-actions { display: none; }

:focus-visible { outline: 3px solid rgba(7,156,221,.38); outline-offset: 3px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .button-call { margin-left: auto; }
  .hero { padding: 68px 0 64px; }
  .hero-grid, .split-grid, .contact-panel { grid-template-columns: 1fr; gap: 46px; }
  .hero-card { max-width: 620px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .contact-panel { align-items: start; }
  .address-card { max-width: 440px; }
  .footer-inner { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .site-header .header-inner { min-height: 70px; }
  .brand img { width: 42px; height: 42px; }
  .brand-text { font-size: 1.7rem; }
  .button-call { display: none; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-card { padding: 24px; border-radius: 22px; }
  .section { padding: 76px 0; }
  .service-card { padding: 26px; }
  .steps li { grid-template-columns: 44px 1fr; gap: 15px; padding: 19px; }
  .steps li > span { width: 44px; height: 44px; border-radius: 12px; }
  .contact-section { padding: 72px 0; }
  .contact-buttons { display: grid; grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 96px; }
  .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; position: fixed; z-index: 120; left: 12px; right: 12px; bottom: 12px; overflow: hidden; border: 1px solid rgba(219,232,239,.95); border-radius: 16px; background: white; box-shadow: 0 16px 44px rgba(20,62,83,.2); }
  .mobile-actions a { display: flex; justify-content: center; align-items: center; gap: 8px; min-height: 54px; text-decoration: none; font-weight: 850; }
  .mobile-call { background: var(--blue); color: white; }
  .mobile-mail { color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Footer & juridische pagina's */
.footer-meta, .footer-legal { display: grid; gap: 4px; }
.footer-meta p, .footer-legal p { margin: 0; }
.footer-legal { justify-items: end; grid-template-columns: auto auto; column-gap: 16px; align-items: center; }
.footer-legal p { grid-column: 1 / -1; }
.footer-legal a { color: var(--muted); text-decoration: none; font-weight: 700; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--blue); }
.address-card .kvk { margin-top: 8px; color: white; font-weight: 700; }
.legal-main { padding: 76px 0 100px; }
.legal-copy { max-width: 820px; }
.legal-copy h1 { margin: 0 0 20px; font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: -.05em; }
.legal-copy h2 { margin: 42px 0 10px; font-size: 1.45rem; }
.legal-copy p, .legal-copy li { color: var(--muted); line-height: 1.75; }
.legal-copy ul { padding-left: 20px; }
.legal-copy a { color: var(--blue); font-weight: 700; }
.legal-back { display: inline-flex; margin-bottom: 28px; text-decoration: none; font-weight: 800; }
@media (max-width: 900px) {
  .footer-legal { justify-items: start; }
}
