/* =========================================================
   Matthijs van Meurs — huisstijl
   Kleuren: gebroken wit #F6F4EF, inkt #121826, signaaloranje #FF5A1F, donkerblauw #1E2A44
   Lettertypen: Sora (koppen), Inter (tekst)
   Opbouw: uitsluitend flex-containers, zodat alles 1-op-1 in Elementor te herbouwen is.
   ========================================================= */

:root {
  --bg: #F6F4EF;
  --bg-2: #EDEAE2;
  --white: #FFFFFF;
  --ink: #121826;
  --ink-2: #3A4152;
  --muted: #5B6270;
  --line: #DED9CF;
  --accent: #FF5A1F;
  --accent-dark: #D9430B;
  --navy: #1E2A44;
  --navy-2: #26345A;
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --gap: 24px;
  --font-head: 'Sora', 'Inter', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: 0.4em; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.3; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-2); }

/* ---------- Basiscontainers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-2); }
.section--white { background: var(--white); }
.section--dark { background: var(--navy); color: #E9ECF3; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: #D2D8E6; }
.section--dark a { color: #FFB89A; }
.section--ink { background: var(--ink); color: #E9ECF3; }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: #C9CEDA; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; display: block; width: 28px; height: 3px; background: var(--accent); }
.section--dark .eyebrow, .section--ink .eyebrow { color: #FF8A5B; }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { font-size: 1.1rem; color: var(--muted); }
.section--dark .section-head p { color: #C9D0E0; }

/* ---------- Flex-hulpklassen ---------- */
.flex { display: flex; gap: var(--gap); }
.flex--wrap { flex-wrap: wrap; }
.flex--center { align-items: center; }
.flex--between { justify-content: space-between; }
.flex--col { flex-direction: column; }
.col { flex: 1 1 0; min-width: 0; }
.col--40 { flex: 0 1 40%; }
.col--50 { flex: 0 1 50%; }
.col--60 { flex: 0 1 60%; }
.cards { display: flex; flex-wrap: wrap; gap: var(--gap); }
.cards > * { flex: 1 1 calc(25% - var(--gap)); min-width: 240px; }
.cards--3 > * { flex: 1 1 calc(33.333% - var(--gap)); min-width: 260px; }
.cards--2 > * { flex: 1 1 calc(50% - var(--gap)); min-width: 280px; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--bg); color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { border-color: var(--white); color: var(--white); }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--ink); text-decoration: none;
}
.link-arrow::after { content: "→"; color: var(--accent); transition: transform .15s ease; }
.link-arrow:hover { color: var(--accent-dark); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,239,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.logo:hover { color: var(--ink); }
.logo__dot { display: inline-block; width: 9px; height: 9px; background: var(--accent); margin-top: 6px; }
.logo--light { color: var(--white); }
.logo--light:hover { color: var(--white); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav__list li { margin: 0; position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: var(--ink); text-decoration: none;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--accent-dark); }
.nav__link .chev { width: 12px; height: 12px; }
.has-sub:hover > .sub, .has-sub:focus-within > .sub { display: flex; }
.sub {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0;
  min-width: 260px; padding: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 16px 40px rgba(18,24,38,.10);
  list-style: none; margin: 0;
}
.sub a {
  display: block; padding: 10px 12px; border-radius: 8px;
  color: var(--ink); text-decoration: none; font-size: 0.95rem;
}
.sub a small { display: block; color: var(--muted); font-size: 0.8rem; }
.sub a:hover { background: var(--bg); color: var(--accent-dark); }
.nav__cta { margin-left: 12px; }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: transparent; border: 1px solid var(--line); cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 96px; overflow: hidden; }
.hero .container { display: flex; align-items: center; gap: 56px; }
.hero__text { flex: 1 1 55%; }
.hero__text h1 { margin-bottom: 22px; }
.hero__text h1 em { font-style: normal; color: var(--accent); }
.hero__text .lead { margin-bottom: 32px; max-width: 560px; }
.hero__media { flex: 0 1 40%; position: relative; }
.hero__media img { border-radius: var(--radius); box-shadow: 14px 14px 0 var(--accent); width: 100%; max-width: 460px; margin-left: auto; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 36px; font-size: 0.92rem; color: var(--muted); }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 18px; height: 18px; color: var(--accent); }

.page-hero { padding: 72px 0 64px; }
.page-hero .container { display: flex; align-items: center; gap: 56px; }
.page-hero__text { flex: 1 1 58%; }
.page-hero__media { flex: 0 1 38%; }
.page-hero__media img { border-radius: var(--radius); box-shadow: 12px 12px 0 var(--accent); }
.page-hero--simple { padding: 72px 0 40px; }
.page-hero--simple .page-hero__text { max-width: 820px; }

/* ---------- Toolbalk ---------- */
.toolbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; background: var(--white); }
.toolbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.toolbar__label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.tool-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.tool-pill i { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }

/* ---------- Partnerbalk (losse sectie, eenvoudig te verbergen) ---------- */
.partners { padding: 40px 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 48px; }
.partners__label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.partners a { display: inline-flex; align-items: center; opacity: .85; transition: opacity .15s ease; }
.partners a:hover { opacity: 1; }
.partners img { height: 30px; width: auto; }

/* ---------- Iconboxen en kaarten ---------- */
.icon-box {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 14px;
}
.icon-box__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: #FFEDE4; color: var(--accent);
}
.icon-box__icon svg { width: 26px; height: 26px; }
.icon-box h3 { margin: 4px 0 0; font-size: 1.2rem; }
.icon-box p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.icon-box--dark { background: var(--navy-2); border-color: rgba(255,255,255,.08); }
.icon-box--dark h3 { color: var(--white); }
.icon-box--dark p { color: #C9D0E0; }
.icon-box--dark .icon-box__icon { background: rgba(255,90,31,.16); color: #FF8A5B; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(18,24,38,.08); }
.card__num { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 0.95rem; letter-spacing: .08em; }
.card h3 { margin: 0; }
.card p { margin: 0; color: var(--muted); }
.card .link-arrow { margin-top: auto; padding-top: 8px; }
.card--accent { background: var(--accent); border-color: var(--accent); color: var(--white); }
.card--accent h3, .card--accent p { color: var(--white); }
.card--accent .link-arrow { color: var(--white); }
.card--accent .link-arrow::after { color: var(--white); }
.card--ink { background: var(--ink); border-color: var(--ink); }
.card--ink h3 { color: var(--white); }
.card--ink p { color: #C9CEDA; }
.card--ink .link-arrow { color: var(--white); }

.card-img { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-img__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-img__body h3 { margin: 0; font-size: 1.25rem; }
.card-img__body p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.card-img__body .link-arrow { margin-top: auto; padding-top: 10px; }
.card-img__meta { font-size: 0.82rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-head); font-weight: 600; }

/* ---------- Stappen ---------- */
.steps { display: flex; flex-wrap: wrap; gap: var(--gap); }
.step { flex: 1 1 calc(33.333% - var(--gap)); min-width: 260px; display: flex; flex-direction: column; gap: 14px; padding: 34px 30px; border-radius: var(--radius); background: var(--navy-2); border: 1px solid rgba(255,255,255,.08); }
.step__num { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--accent); }
.step h3 { color: var(--white); margin: 0; }
.step p { margin: 0; color: #C9D0E0; }

/* ---------- Statistieken ---------- */
.stats { display: flex; flex-wrap: wrap; gap: var(--gap); }
.stat { flex: 1 1 calc(33.333% - var(--gap)); min-width: 220px; padding: 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: 3rem; line-height: 1; color: var(--accent); margin-bottom: 10px; }
.stat p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.stat small { display: block; margin-top: 10px; font-size: 0.78rem; color: var(--muted); }

/* ---------- Referenties ---------- */
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; }
.stars { display: flex; gap: 3px; color: var(--accent); }
.stars svg { width: 18px; height: 18px; }
.testimonial blockquote { margin: 0; font-size: 1.05rem; line-height: 1.55; color: var(--ink); }
.testimonial__who { display: flex; flex-direction: column; font-size: 0.9rem; color: var(--muted); }
.testimonial__who strong { color: var(--ink); }
.placeholder-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.placeholder-note { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--accent-dark); background: #FFEDE4; padding: 6px 12px; border-radius: 999px; font-weight: 600; }

/* ---------- Accordeon (native details, mapt op Elementor Accordion) ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 24px; }
.accordion summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); line-height: 1; flex-shrink: 0; }
.accordion details[open] summary::after { content: "–"; }
.accordion details > div { padding: 0 0 22px; color: var(--ink-2); }
.accordion details > div p:last-child { margin-bottom: 0; }

/* ---------- Tekst + beeld ---------- */
.split { display: flex; align-items: center; gap: 64px; }
.split__text { flex: 1 1 55%; }
.split__media { flex: 0 1 42%; }
.split__media img { border-radius: var(--radius); }
.split--reverse { flex-direction: row-reverse; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.5em; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: block; position: relative; padding-left: 36px; margin: 0; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.section--dark .checklist li { color: #E9ECF3; }

.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--gap); }
.info-list li { flex: 1 1 calc(50% - var(--gap)); min-width: 220px; margin: 0; padding: 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.info-list li strong { display: block; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 6px; }

/* ---------- Quote-blok ---------- */
.pullquote { border-left: 4px solid var(--accent); padding: 8px 0 8px 28px; margin: 40px 0; font-family: var(--font-head); font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; }
.pullquote cite { display: block; font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 0.95rem; color: var(--muted); margin-top: 12px; }

/* ---------- CTA ---------- */
.cta { padding: 96px 0; background: var(--ink); color: #E9ECF3; }
.cta .container { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta__text { flex: 1 1 60%; }
.cta__text h2 { color: var(--white); margin-bottom: 14px; }
.cta__text p { color: #C9CEDA; font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; }
.cta__side { flex: 0 1 36%; background: var(--navy-2); border-radius: var(--radius); padding: 30px; }
.cta__side h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.cta__side p { color: #C9D0E0; font-size: 0.95rem; }
.cta__side--contact .contact-list { margin-top: 18px; }
.cta__side--contact .contact-list strong { color: #8F97A8; }
.cta__side--contact .contact-list a { color: var(--white); }
.cta__side--contact .contact-list a:hover { color: #FFB89A; }

/* ---------- Formulieren ---------- */
.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: flex; flex-wrap: wrap; gap: 14px; }
.form__row > * { flex: 1 1 calc(50% - 14px); min-width: 200px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.form input, .form textarea, .form select {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); width: 100%;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.form textarea { min-height: 140px; resize: vertical; }
.form small { color: var(--muted); font-size: 0.82rem; }
.form--inline { flex-direction: row; flex-wrap: wrap; align-items: flex-end; }
.form--inline label { flex: 1 1 260px; }
.form--inline .btn { flex: 0 0 auto; }
.form__success { display: none; padding: 18px 20px; border-radius: var(--radius-sm); background: #E4F5EA; color: #155A2E; font-weight: 500; }
.form.is-sent .form__success { display: block; }
.form.is-sent .form__fields { display: none; }
.section--dark .form input, .section--ink .form input, .cta .form input { border-color: rgba(255,255,255,.15); }
.section--dark .form label, .section--ink .form label, .cta .form label { color: #E9ECF3; }
.section--dark .form small, .section--ink .form small, .cta .form small { color: #AEB6C8; }

/* ---------- Blog ---------- */
.post-hero { padding: 72px 0 40px; }
.post-hero .container--narrow { display: flex; flex-direction: column; gap: 18px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 0.9rem; color: var(--muted); }
.post-body { padding: 0 0 80px; }
.post-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.2em; }
.post-body h3 { margin-top: 1.8em; }
.post-body img { border-radius: var(--radius); margin: 2rem 0; }
.post-body .lead { margin-bottom: 2rem; }
.post-body blockquote { margin: 2rem 0; padding: 20px 26px; border-left: 4px solid var(--accent); background: var(--white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.08rem; }
.post-body blockquote p:last-child { margin: 0; }
.author-box { display: flex; align-items: center; gap: 22px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-top: 56px; }
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.author-box strong { display: block; font-family: var(--font-head); color: var(--ink); margin-bottom: 4px; }

/* ---------- Galerij (Elementor Basic Gallery) ---------- */
.gallery { display: flex; flex-wrap: wrap; gap: 16px; }
.gallery > * { flex: 1 1 calc(33.333% - 16px); min-width: 220px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); }

/* ---------- Contactblok ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; margin: 0; }
.contact-list svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-list strong { display: block; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--accent-dark); }

/* ---------- Regio-tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C9CEDA; padding: 72px 0 32px; }
.site-footer .container { display: flex; flex-direction: column; gap: 48px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col { flex: 1 1 200px; min-width: 180px; display: flex; flex-direction: column; gap: 12px; }
.footer-col--brand { flex: 1.6 1 260px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a { color: #C9CEDA; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col p { margin: 0; font-size: 0.95rem; }
.footer-col address { font-style: normal; font-size: 0.95rem; line-height: 1.6; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 0.85rem; color: #8F97A8; }
.footer-bottom a { color: #8F97A8; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-news { display: flex; flex-direction: column; gap: 10px; }
.footer-news .form input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: var(--white); }
.footer-news .form input::placeholder { color: #8F97A8; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero .container, .page-hero .container { gap: 40px; }
  .split { gap: 40px; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .hero { padding: 48px 0 64px; }
  .hero .container, .page-hero .container { flex-direction: column; align-items: stretch; }
  .hero__media img { max-width: 100%; margin: 0; box-shadow: 10px 10px 0 var(--accent); }
  .hero__media, .page-hero__media { margin-right: 12px; }
  .split, .split--reverse { flex-direction: column; align-items: stretch; }
  .split__media, .split__text { flex: 1 1 auto; }
  .cta .container { flex-direction: column; align-items: stretch; }
  .cta__side { flex: 1 1 auto; }

  /* Mobiel menu */
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-open .nav { display: flex; }
  .nav-open .nav-toggle .icon-menu { display: none; }
  .nav-open .nav-toggle .icon-close { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: flex; width: 100%; padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__link .chev { display: none; }
  .sub { display: flex; position: static; box-shadow: none; border: 0; background: transparent; padding: 4px 0 8px 14px; min-width: 0; }
  .sub a { padding: 9px 4px; }
  .nav__cta { margin: 16px 0 0; width: 100%; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.2rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .cards > *, .cards--3 > *, .cards--2 > *, .step, .stat { min-width: 100%; }
  .author-box { flex-direction: column; align-items: flex-start; }
}
