:root{
  --bg: #d9d6cf;
  --surface: #f6f5f2;
  --ink: #131515;
  --muted: rgba(19,21,21,.68);
  --line: rgba(19,21,21,.10);
  --shadow: 0 30px 60px rgba(0,0,0,.10);
  --radius: 34px;

  --green: #0f6b52;        /* JONDT-achtig groen */
  --lime: #c8ff4d;         /* accent zoals referentie */
  --lilac: #c9c3ff;
  --sand: #efe7da;
  --ice: #d7f5ea;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.page{
  width: 100%;
  padding: clamp(14px, 2vw, 28px);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 10px 18px;
}

.brand{ display:flex; align-items:center; gap: 12px; min-width: 220px; }
.logo{ width: 200px;  object-fit: contain; }
.brandname{ font-weight: 800; letter-spacing: .08em; font-size: 14px; }
.brandsub{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.navpill{
  display:flex;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(10px);
}
.navpill a{
  text-decoration:none;
  color: rgba(19,21,21,.85);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
}
.navpill a.active,
.navpill a:hover{
  background: rgba(255,255,255,.75);
}

.topactions{ display:flex; align-items:center; gap: 10px; }

.iconbtn{
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.6);
  display:none;
  cursor:pointer;
}
.iconbtn span{
  display:block;
  height: 2px;
  width: 18px;
  background: rgba(19,21,21,.70);
  margin: 4px auto;
  border-radius: 2px;
}

.surface{
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.55);
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(22px, 3.2vw, 46px);
  align-items: start;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--muted);
  font-weight: 700;
}
h1{
  margin: 12px 0 14px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.accent{ color: var(--green); }

.lead{
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(19,21,21,.75);
  max-width: 62ch;
}

.heroCtas{ display:flex; gap: 10px; flex-wrap: wrap; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--lime);
  border: 1px solid rgba(0,0,0,.10);
  color: var(--ink);
  text-decoration:none;
  font-weight: 700;
  cursor:pointer;
}
.btn:hover{ filter: brightness(.98); }
.btn-ghost{
  background: rgba(255,255,255,.65);
}

.stats{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.stat{
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  min-width: 250px;
}
.statNum{ font-weight: 800; font-size: 22px; }
.statLbl{ color: var(--muted); font-size: 12px; margin-top: 2px; }

/* Right hero panel */
.heroPanel{
  background: rgba(255,255,255,.60);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 16px;
}

.heroPanelTop{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  margin-bottom: 12px;
}
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 12px;
}
.chip-soft{ color: rgba(19,21,21,.70); font-weight: 600; }

/* Slider */
.cardSlider{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.track{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px;
  -webkit-overflow-scrolling: touch;
}
.track::-webkit-scrollbar{ height: 10px; }
.track::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.10); border-radius: 99px; }
.track::-webkit-scrollbar-track{ background: transparent; }

.programCard{
  width: 260px;
  flex: 0 0 auto;
  border-radius: 22px;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.08);
  scroll-snap-align: start;
  background: white;
}
.programCard h3{
  margin: 10px 0 6px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.programCard p{
  margin: 0 0 12px;
  color: rgba(19,21,21,.70);
  font-size: 13px;
  line-height: 1.55;
}
.cardHead{ display:flex; align-items:center; justify-content: space-between; gap: 8px; }
.pill{
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
}
.miniIcon{
  width: 28px; height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 900;
}

.cardMedia{
  height: 260px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background-size: cover;
  background-position: center;
}

/* Use soft gradients as placeholders; replace later by real photos */
.media-a{ background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.cvwarehouse.com%2FDownloads%2FATSCustomerFiles%2F11392%2Fc668c626-964c-43e2-95cb-5e90e7820278.jpg&f=1&nofb=1&ipt=7f1bc4543ebc372abc50a8f8df92fd10f810870ccca9ebfe4b51cf49a2d9858e');}
.media-b{ background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fsociaalwerknederland.nl%2Fwp-content%2Fuploads%2F2024%2F12%2FDavid-Rosing-1.1.jpg&f=1&nofb=1&ipt=bfe997bb2f48e55b5a42cdacc47835e4cbbb0518ee70a72297ab3a95d03cfb3c'); }
.media-c{ background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.werkenindegehandicaptenzorg.nl%2Ffiles%2F2020-08%2FMarnix%2520Jenga-spelen.jpg&f=1&nofb=1&ipt=7e88bf3c7fe698a02aacae985d47f95e05ec4d2d56941d986f205ae4b7c4b37f'); }
.media-d{ background-image: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.aethon.nl%2Fwp-content%2Fuploads%2F2025%2F07%2FVacature_detail_Onderwijs-1024x1024.jpg&f=1&nofb=1&ipt=a39c602b5ac78d6d7a2b674b37a3cea5b124ae9b8f92cbdb1229422388812b0b'); }

.cardLink{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-top: 10px;
  text-decoration:none;
  font-weight: 800;
  color: rgba(19,21,21,.85);
  font-size: 13px;
}

.c-green{ background: rgba(200,255,77,.45); }
.c-lilac{ background: rgba(201,195,255,.55); }
.c-sand{ background: rgba(239,231,218,.90); }
.c-ice{ background: rgba(215,245,234,.75); }

.slideBtn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.78);
  cursor:pointer;
  font-size: 26px;
  line-height: 1;
  display:grid;
  place-items:center;
}
.slideBtn.prev{ left: 10px; }
.slideBtn.next{ right: 10px; }
.slideBtn:hover{ filter: brightness(.98); }

.heroNote{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(15,107,82,.35);
  background: rgba(255,255,255,.55);
  color: rgba(19,21,21,.76);
  font-size: 13px;
  line-height: 1.5;
}

/* Sections */
.section{
  padding: clamp(18px, 2.8vw, 40px);
  border-top: 1px solid rgba(0,0,0,.06);
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.sectionHead h2{
  margin: 0;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.02em;
}
.sectionHead p{
  margin: 0;
  max-width: 64ch;
  color: rgba(19,21,21,.70);
  line-height: 1.6;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.infoCard, .panel{
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
}
.infoCard h3, .panel h3{ margin: 0 0 8px; }
.infoCard p{ margin: 0; color: rgba(19,21,21,.70); line-height: 1.55; }

.cleanList{ list-style:none; padding: 0; margin: 0; display:grid; gap: 10px; }
.cleanList li{ display:flex; align-items:flex-start; gap: 10px; color: rgba(19,21,21,.74); }
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--lime);
  border: 1px solid rgba(0,0,0,.08);
  margin-top: 4px;
  flex: 0 0 auto;
}

.logos{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.logoCard{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  font-weight: 800;
  color: rgba(19,21,21,.70);
  text-align:center;
}

.contactLine{ margin: 8px 0; }
.contact a{ color: var(--green); font-weight: 700; text-decoration: none; }
.contact a:hover{ text-decoration: underline; }
.smallMuted{ color: rgba(19,21,21,.55); font-size: 12px; margin-top: 10px; }

.form label{
  display:grid;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}
input, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  font: inherit;
}
textarea{ resize: vertical; }

.toast{
  display:none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(200,255,77,.35);
  border: 1px solid rgba(0,0,0,.10);
  font-weight: 600;
  color: rgba(19,21,21,.75);
  font-size: 12px;
}

.footer{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 2.8vw, 40px);
  border-top: 1px solid rgba(0,0,0,.06);
  color: rgba(19,21,21,.70);
  flex-wrap: wrap;
}
.footerLinks{ display:flex; gap: 12px; }
.footerLinks a{ color: rgba(19,21,21,.70); text-decoration:none; font-weight: 700; font-size: 13px; }
.footerLinks a:hover{ text-decoration: underline; }

/* Mobile menu */
.mobileNav{
  display:none;
  position: fixed;
  right: 18px;
  top: 70px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.mobileNav a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration:none;
  color: rgba(19,21,21,.86);
  font-weight: 800;
  font-size: 13px;
}
.mobileNav a:hover{ background: rgba(0,0,0,.05); }

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .navpill{ display:none; }
  .iconbtn{ display:inline-grid; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .logos{ grid-template-columns: 1fr; }
  .programCard{ width: 300px; }
  .slideBtn{ display:none; }
  .stat{min-width: 80px;}
}

.logoCard p {
  font-weight:100;
}

@media (min-width: 760px){
  .track{
    overflow-x: hidden;
    scroll-snap-type: x none;
    -webkit-overflow-scrolling: touch;
  }

  .programCard{
    flex: 1 1 0;
    scroll-snap-align: start;
  }
}




