@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
}

:root {
  --blue: #16598e;
  --blue-dark: #0f4270;
  --red: #be202f;
  --ink: #1a1f28;
  --steel: #5b6472;
  --paper: #f4f6f8;
  --paper-2: #eaeef2;
  --white: #ffffff;
  --border: rgba(20, 30, 45, 0.12);
  --radius: 14px;
  --shadow: 0 14px 34px -18px rgba(20, 30, 45, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 108px;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; margin: 0 0 16px; }
p { margin: 0 0 16px; color: var(--steel); }
address { font-style: normal; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--paper); }
.eyebrow { color: var(--blue); font-weight: 700; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.06em; margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--ink); }
.section-sub { max-width: 640px; font-size: 1.05rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 48px; }

.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 0.92rem; border: 2px solid transparent; cursor: pointer; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 30px -16px rgba(22, 89, 142, 0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(22, 89, 142, 0.7); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* Concept badge */
.concept-badge { position: fixed; top: 0; left: 0; right: 0; z-index: 101; background: var(--red); color: #fff; text-align: center; font-size: 0.78rem; font-weight: 700; padding: 7px 16px; }

/* Header */
.site-header { position: fixed; top: 34px; left: 0; right: 0; z-index: 100; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.logo img { height: 44px; width: auto; border-radius: 4px; }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 600; font-size: 0.92rem; position: relative; padding-bottom: 4px; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.header-phone .icon { color: var(--blue); width: 18px; height: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }
.nav-cta-mobile { display: none; }

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 108px; left: 16px; right: 16px; background: #fff; border-radius: var(--radius); flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow); display: none; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .header-phone .phone-text { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 8px; }
}

/* Home hero */
.hero { padding: 64px 0 80px; background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-title { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.hero-title .accent { color: var(--blue); }
.hero-sub { font-size: 1.1rem; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; margin: 28px 0; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 24px; list-style: none; padding: 0; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; color: var(--steel); }
.hero-badge .icon { color: var(--blue); width: 18px; height: 18px; }
.hero-photo { position: relative; }
.hero-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.hero-photo-tag { position: absolute; bottom: -18px; left: -18px; background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
.hero-photo-tag .icon { color: var(--red); }

/* Page hero (interior pages) */
.page-hero { padding: 56px 0; background: var(--blue); color: #fff; }
.page-hero .eyebrow { color: #bcd4ea; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0; }

/* USP strip */
.usp-strip { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; padding: 0; margin: 0; }
.usp-item { display: flex; align-items: center; gap: 14px; }
.usp-item .icon { width: 30px; height: 30px; color: var(--blue); flex-shrink: 0; }
.usp-item strong { display: block; font-size: 0.95rem; }
.usp-item span { font-size: 0.82rem; color: var(--steel); }

/* Diensten */
#diensten { scroll-margin-top: 128px; }
.diensten-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.dienst-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); transition: transform 0.25s var(--ease); }
.dienst-card:hover { transform: translateY(-4px); }
.dienst-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.dienst-icon .icon { color: #fff; width: 28px; height: 28px; }
.dienst-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.dienst-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); margin-top: 12px; }
.dienst-link .icon { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.dienst-card:hover .dienst-link .icon { transform: translateX(4px); }

/* Werkgebied / netwerk */
.netwerk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.regio-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
.regio-tile { background: var(--paper); border-radius: 12px; padding: 16px; text-align: center; font-weight: 700; font-size: 0.88rem; color: var(--blue); border: 1px solid var(--border); }
.netwerk-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
.netwerk-list li { display: flex; gap: 14px; align-items: flex-start; }
.netwerk-list .check { width: 28px; height: 28px; border-radius: 8px; background: rgba(22, 89, 142, 0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.netwerk-list .check .icon { width: 16px; height: 16px; color: var(--blue); }
.netwerk-list span { color: var(--steel); font-size: 0.92rem; }
.netwerk-list strong { display: block; margin-bottom: 2px; color: var(--ink); }

/* Stappenplan */
.stappen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stap-card { position: relative; padding-top: 12px; }
.stap-nummer { font-size: 2.6rem; font-weight: 800; color: rgba(22, 89, 142, 0.15); display: block; margin-bottom: 6px; }
.stap-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

/* Keurmerken / reviews */
.keurmerken { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; list-style: none; padding: 0; }
.keurmerk-badge { display: flex; align-items: center; gap: 10px; padding: 12px 22px; border: 1px solid var(--border); border-radius: 999px; font-weight: 700; font-size: 0.88rem; }
.keurmerk-badge .icon { color: var(--blue); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.review-stars { display: flex; gap: 3px; color: var(--red); margin-bottom: 14px; }
.review-stars .icon { width: 16px; height: 16px; fill: currentColor; }
.review-quote { font-style: italic; margin-bottom: 16px; color: var(--ink); }
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.review-note { display: block; font-size: 0.78rem; color: var(--steel); margin-top: 24px; text-align: center; }

/* CTA banner */
.cta-banner { background: var(--blue); color: #fff; padding: 72px 0; text-align: center; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 28px; }
.cta-banner .btn-primary { background: #fff; color: var(--blue); }
.cta-banner .btn-primary:hover { box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.3); }

/* Footer */
.site-footer { background: #12202e; color: rgba(255, 255, 255, 0.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .footer-logo { height: 40px; margin-bottom: 14px; border-radius: 6px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col a, .footer-col address { display: block; color: rgba(255, 255, 255, 0.68); font-size: 0.88rem; margin-bottom: 10px; line-height: 1.7; }
.footer-col a:hover { color: #fff; }
.footer-col a.active { color: #fff; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 24px; text-align: center; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; max-width: 640px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row-3 { display: grid; grid-template-columns: 1.4fr 1fr 0.8fr; gap: 12px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.86rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.field input[readonly] { background: var(--paper); color: var(--steel); }
.field-status { font-size: 0.82rem; color: var(--blue); margin: -10px 0 16px; min-height: 1.2em; }
.form-confirm { background: rgba(22, 89, 142, 0.08); border: 1px solid rgba(22, 89, 142, 0.25); border-radius: var(--radius); padding: 32px; text-align: center; max-width: 640px; }
.form-confirm .icon { width: 40px; height: 40px; color: var(--blue); margin: 0 auto 14px; }
.form-confirm small { display: block; margin-top: 10px; color: var(--steel); }

/* Bevindingen-galerij */
.bevindingen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bevinding-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: #fff; }
.bevinding-card img { height: 220px; width: 100%; object-fit: cover; }
.bevinding-tekst { padding: 18px 20px; }
.bevinding-tekst p { margin: 0; font-size: 0.9rem; color: var(--ink); }

/* Content-met-afbeelding sectie (over ons / werkgebied) */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.content-grid img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-item .icon { color: var(--blue); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 24px; }
.contact-map iframe { width: 100%; height: 260px; border: 0; display: block; }

/* Downloads */
.downloads-list { display: flex; flex-direction: column; gap: 16px; }
.download-item { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; }
.download-item .icon { color: var(--blue); width: 30px; height: 30px; flex-shrink: 0; }
.download-item h3 { font-size: 1rem; margin: 0 0 4px; }
.download-item p { margin: 0; font-size: 0.88rem; }
.download-badge { margin-left: auto; background: var(--paper); color: var(--steel); font-size: 0.78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .netwerk-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-photo, .content-grid img { order: -1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-grid { grid-template-columns: 1fr; }
  .stappen-grid, .reviews-grid, .bevindingen-grid { grid-template-columns: 1fr; }
  .regio-tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .usp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; gap: 12px; }
  .form-card { padding: 26px; }
  .section { padding: 64px 0; }
  .download-item { flex-wrap: wrap; }
  .download-badge { margin-left: 0; }
}
@media (max-width: 640px) {
  .site-header { top: 54px; }
  body { padding-top: 128px; }
  .main-nav { top: 128px; }
}
