:root{
  --bg: #ffffff;
  --ink: #0b0b0b;
  --muted: #5c5c5c;
  --soft: #eeeeee;
  --card: #ffffff;
  --green: #95c121;
  --green-2: #9eea52;
  --soft-green: rgba(149,193,33,.10);
  --soft-green-2: rgba(149,193,33,.18);
  --dark: #111111;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --shadow-soft: 0 14px 30px rgba(0,0,0,.06);
  --container: 1280px;
  --font-sans: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
  --step--1: clamp(.88rem, .82rem + .2vw, .95rem);
  --step-0: clamp(1rem, .95rem + .25vw, 1.08rem);
  --step-1: clamp(1.15rem, 1.05rem + .5vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.2rem + 1vw, 2.05rem);
  --step-3: clamp(1.85rem, 1.55rem + 1.8vw, 3rem);
  --space-1: clamp(.6rem, .5rem + .3vw, .8rem);
  --space-2: clamp(.9rem, .75rem + .6vw, 1.25rem);
  --space-3: clamp(1.15rem, .95rem + 1vw, 1.9rem);
  --space-4: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  --space-5: clamp(2.2rem, 1.7rem + 2.2vw, 3.6rem);
  --space-6: clamp(2.8rem, 2.1rem + 3vw, 5rem);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  text-rendering:optimizeLegibility;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0 0 var(--space-2); font-size:var(--step-0); }
h1,h2,h3{ margin:0 0 var(--space-2); line-height:1.15; letter-spacing:-0.02em; }
h1{ font-size:var(--step-3); }
h2{ font-size:var(--step-2); }
h3{ font-size:var(--step-1); }

.container{
  width:min(var(--container), 100% - 2*var(--space-3));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:.6rem;
  padding:.7rem 1rem;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  z-index:9999;
}
.skip-link:focus{ left:.8rem; }

.section{
  padding: var(--space-6) 0;
  background:#fff;
}

.section-lead{
  font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem);
  color: var(--muted);
  max-width:60ch;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  font-size:var(--step--1);
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
  margin-bottom:var(--space-1);
}
.kicker::before{
  content:"";
  width:10px;
  height:10px;
  margin-right:10px;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(149,193,33,.20);
}

.accent{
  color:var(--ink);
  position:relative;
  z-index:1;
}
.accent::after{
  content:"";
  position:absolute;
  left:-0.12em;
  right:-0.12em;
  bottom:-0.03em;
  height:.60em;
  z-index:-1;
  transform:rotate(-1deg);
  background-image:url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 80' preserveAspectRatio='none'>\
    <path d='M10 45 C35 25, 75 58, 115 42 C150 28, 190 24, 225 38 C255 50, 285 47, 310 38 L306 63 C274 70, 238 67, 198 68 C148 70, 100 71, 58 66 C32 63, 18 59, 10 57 Z' fill='%2395c121' fill-opacity='0.36'/>\
    <path d='M22 36 C55 30, 88 46, 122 38 C155 31, 190 27, 232 34 C261 39, 286 40, 300 36' fill='none' stroke='%2395c121' stroke-opacity='0.22' stroke-width='4' stroke-linecap='round'/>\
  </svg>");
  background-repeat:no-repeat;
  background-size:100% 100%;
  background-position:center;
}

.muted{ color:var(--muted); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  padding:.9rem 1.15rem;
  border-radius:999px;
  font-weight:600;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
  line-height:1.1;
}
.btn-primary{
  background:var(--green);
  color:#fff;
  padding:.95rem 1.35rem !important;
}
.btn-primary:hover{
  background:#7faa1b;
  box-shadow:var(--shadow-soft);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.site-header.is-elevated{
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:.55rem;
  min-width: 0;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.brand-logo{
  width: clamp(160px, 14vw, 210px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  margin: 0 !important;
  display: block;
}

.brand-logo--footer{
  width: clamp(170px, 15vw, 220px);
  height: auto;
  object-fit: contain;
  margin: 0 !important;
  display: block;
}

.brand--footer{
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.nav{ display:flex; align-items:center; position:relative; }
.nav-menu{
  display:flex;
  align-items:center;
  gap:1.2rem;
}
.nav-menu a{
  font-weight:600;
  color:rgba(0,0,0,.78);
}
.nav-menu a:hover{ color:rgba(0,0,0,1); }

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.9);
  cursor:pointer;
  padding:0;
}
.nav-toggle-lines{
  position:relative;
  display:block;
  width:18px;
  height:2px;
  background:var(--ink);
  border-radius:999px;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:var(--ink);
  border-radius:999px;
}
.nav-toggle-lines::before{ top:-6px; }
.nav-toggle-lines::after{ top:6px; }

.sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.legal-hero{
  position:relative;
  padding:var(--space-6) 0 var(--space-5);
  overflow:hidden;
}
.legal-hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 520px at 70% -10%, rgba(149,193,33,.35), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.62) 55%, #ffffff 100%),
    linear-gradient(90deg, rgba(149,193,33,.12), rgba(0,0,0,.02));
}
.legal-hero-inner{
  position:relative;
  z-index:1;
}

.legal-layout{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap:var(--space-4);
  align-items:start;
}

.legal-card{
  background:#fff;
  border-radius:calc(var(--radius) + 6px);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-soft);
  padding:1.25rem;
}

.legal-aside{
  position:sticky;
  top:110px;
}

.legal-aside .legal-card{
  display:flex;
  flex-direction:column;
  gap:.55rem;
}
.legal-aside a{
  color:rgba(0,0,0,.72);
  font-weight:500;
}
.legal-aside a:hover{
  color:rgba(0,0,0,1);
}

.legal-prose h2{
  margin-top:1.8rem;
}
.legal-prose h2:first-of-type{
  margin-top:0;
}
.legal-prose p{
  color:rgba(0,0,0,.82);
}
.legal-prose ul{
  padding-left:1.2rem;
}

.footer{
  background:#ffffff;
  color:#000000;
  padding:var(--space-5) 0 var(--space-3);
  border-top:1px solid rgba(0,0,0,.08);
}
.footer-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .7fr) minmax(0, .9fr) minmax(0, .9fr);
  gap: var(--space-4);
  align-items: start;
  width: min(var(--container), 100% - 2*var(--space-3));
  margin-inline: auto;
}

.footer-grid > div{
  min-width: 0;
}
.footer-col a,
.footer-col p{
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-col h3{ margin-bottom:10px; }
.footer-col p{ margin:2px 0 !important; }

.social{
  display:flex;
  gap:.6rem;
  margin-top:1rem;
}
.social-pill{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(149,193,33,.10);
}
.social-pill:hover{
  background:rgba(149,193,33,.18);
}

.footer-bottom{
  margin-top:var(--space-4);
  padding-top:1rem;
  border-top:1px solid rgba(0,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:.6rem;
}

.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .legal-layout{
    grid-template-columns:1fr;
  }
  .legal-aside{
    position:static;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; }

  .header-inner{ position:relative; }
  .nav{ position:static; }

  .nav-menu{
    position:absolute;
    top:calc(100% + 10px);
    left:50%;
    transform:translateX(-50%);
    right:auto;
    width:min(var(--container), 100vw - 2*var(--space-3));
    max-width:520px;
    display:none;
    flex-direction:column;
    gap:.35rem;
    padding:1rem;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(0,0,0,.10);
    border-radius:calc(var(--radius) + 14px);
    box-shadow:var(--shadow);
  }
  .nav-menu.is-open{ display:flex; }

  .nav-menu a{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    padding:.65rem .75rem;
    border-radius:12px;
  }

  .nav-menu .btn{
    width:100%;
    justify-content:center;
    margin-top:.35rem;
  }

  .brand-logo{
    width:clamp(140px, 55vw, 210px);
    height:48px;
    margin-left:0 !important;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; transform:none; }
  .btn{ transition:none; }
}

.btn-primary{
  background: var(--green);
  color: #ffffff;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 999px !important;
  padding: .95rem 1.35rem !important;
  font-size: 1rem !important;
}
.btn-primary:hover{
  background: #7faa1b;
  box-shadow: var(--shadow-soft);
}

.site-header .btn-primary{ color:#fff !important; }

.footer-col a{
    display: block;
    margin-bottom: 6px;
}

/* Mobiele correcties voor het logo */
@media (max-width: 760px) {
  /* Header logo uitlijning */
  .brand-logo {
    width: 160px; /* Vaste breedte voor stabiliteit op mobiel */
    height: auto;
    margin-left: 0 !important; /* Verwijder de negatieve marge */
    padding-left: 0;
    object-position: left;
  }

  /* Footer logo uitlijning */
  .brand-logo--footer {
    width: 180px;
    margin-left: 0 !important;
    margin-bottom: var(--space-2);
  }

  /* Zorg dat de container in de footer geen onnodige padding heeft */
  .footer-grid > div:first-child {
    align-items: flex-start;
    padding-left: 0;
  }

  .brand--footer {
    margin-left: 0;
    display: flex;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .big-cta {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .form,
  .big-cta-copy,
  .field,
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    max-width: 100%;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
