:root {
  --bg: #c9cfcc;
  --surface: #efefee;
  --white: #ffffff;
  --text: #244a56;
  --muted: #56717b;
  --border: rgba(36, 74, 86, 0.25);
  --btn: #2e5563;
  --btnText: #ffffff;
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  --header-offset: 50px;
}
* {
  box-sizing: border-box;
}
.lang-link {
  font-weight: 800;
  padding: 8px 10px;  border-radius:10px;
  display:inline-block;text-decoration:none;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a {
  color: inherit;
}
.container {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.skip-link:focus {
  left: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 239, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}
.header-right{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  gap: 16px;
  align-items: center;margin-left:auto;
}
.site-nav .lang-link{
  margin-left: auto;
  border: 1px solid rgba(36, 74, 86, 0.25);
  border-radius: 10px;
  padding: 8px 10px;
}
.site-nav a {
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 10px;
}
.site-nav a:hover,
.lang-link:hover {
  background: rgba(46, 85, 99, 0.10);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle-icon {
  font-size: 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section {
  padding: 40px 0;
}
.section-white {
  background: transparent;
}
.section-muted {
  background: transparent;
}
section[id] {
  scroll-margin-top: var(--header-offset);
}
/* HERO (nieuw) */
.hero {
  padding: 40px 0 0;
  background: transparent;
}
.hero-box {
  background: #ececea; /* ← HIER hoort die kleur */
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: center;
}
.hero-logo-col, .hero-photo-col {
  display: block;
}
.hero-logo {
  width: 100%;
  max-width: 520px; /* WAS 650px */
  height: auto;
  display: block;
}
.hero-photo {
  width: 234px;
  height: 327px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-left: auto;
}
/* Intro tekst onder hero */
.hero-text {
  text-align: center;
  padding: 25px 0 24px;
}
.hero-text h2 {
  margin: 10px 0 15px;
  font-size: 32px;
}
.hero-text p {
  margin: 0 auto 15px;
  max-width: 900px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
}
.center {
  text-align: center;
}
.value-box {
  background: #ececea;
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(36, 74, 86, 0.12);
  max-width: 1000px;
  margin: auto;
}
.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary {
  background: var(--btn);
  color: var(--btnText);
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.divider {
  border: 0;
  border-top: 3px solid rgba(36, 74, 86, 0.75);
  margin-top: 12px; /* minder ruimte boven = dichter bij knop */
  margin-bottom: 68px; /* meer ruimte onder = lucht naar tekst */
}
.divider-bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}
.lead {
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 1050px;
  color: var(--text);
}
.lead-small {
  margin: 10px auto 0;
  max-width: 900px;
  font-size: 20px;
  line-height: 1.65;
}
.two-col {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  align-items: start;
}
.logo-panel {
  background: var(--surface);
  border-radius: 10px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel-logo {
  width: 100%;
  height: auto;
  display: block;
}
h2 {
  margin: 0 0 16px;
  font-size: 32px;
}
h3 {
  margin: 0 0 12px;
  font-size: 22px;
}
.bullets {
  margin: 0;
  padding-left: 22px;
  font-size: 20px;
  line-height: 1.65;
}
.note {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.65;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.img-shadow {
  width: 100%;
  height: auto;
  display: block;
  background: #ececea; /* WAS var(--white) */
  border-radius: 16px; /* iets ronder = Canva feel */
  box-shadow: var(--shadow);
  padding: 14px; /* iets meer lucht */
}
.split-text .big {
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.services-box {
  background: #ececea;
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(36, 74, 86, 0.12);
  max-width: 1000px;
  margin: auto;
}
.accordion details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.accordion summary {
  font-weight: 800;
  cursor: pointer;
  font-size: 20px;
}
.accordion p {
  margin: 12px 0 0;
  line-height: 1.65;
  color: var(--text);
  font-size: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.card p {
  font-size: 20px;
  line-height: 1.65;
  margin: 0 0 12px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}
label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
input, textarea {
  width: 100%;
  margin-top: 8px;
  border: 2px solid rgba(36, 74, 86, 0.55);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 16px;
  font-family: inherit;
}
textarea {
  resize: vertical;
}
.card .form-note {
  font-size: 15px !important;
  line-height: 1.5;
  color: var(--muted);
  padding-top: 10px;
}
.card:not(.contact-card) p {
  font-size: 20px;
  line-height: 1.65;
  margin: 0 0 12px;
}
.contact-card a {
  text-decoration: none;
  font-weight: 700;
}
.contact-item {
  margin-bottom: 14px;
}
.contact-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 2px;
  margin-top: 14px;
}
.footer {
  text-align: center;
  padding-bottom: 10px;
}
.footer-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text);
  font-weight: 700;
}
.footer-row.small {
  margin-top: 10px;
  font-weight: 600;
  color: var(--muted);
}
.footer-row a {
  color: inherit;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.terms h2 {
  font-size: 22px;
  margin: 18px 0 8px;
}
.small {
  font-size: 14px;
  color: var(--muted);
}
/* Responsive */
@media (max-width: 900px) {
  .hero-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-photo {
    margin: 0 auto;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .site-nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 58px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    width: 100%;
  }
  .value-box {
    padding: 28px 22px;
  }
  .services-box {
    padding: 28px 22px;
  }
}