:root{
  --bg:#fff;
  --ink:#0a0a0a;
  --muted:#5c5c5c;
  --line:#e9e9e9;
  --soft:#f7f7f7;
  --pill:#111;
  --pill-ink:#fff;
  --radius:18px;
  --radius-lg:24px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --maxw:980px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--maxw);margin:0 auto;padding:0 18px;}
.center{text-align:center}

/* Header pill */
.nav-wrap{position:sticky;top:0;z-index:50;padding:14px 0;background:transparent;}
.nav{
  background:#000;color:#fff;border-radius:999px;padding:12px 16px;
  display:flex;align-items:center;justify-content:space-between;box-shadow:var(--shadow);
}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;letter-spacing:.2px;}
.logo-mark{
  width:28px;height:28px;display:grid;place-items:center;border-radius:999px;background:#fff1;
}
.logo-mark svg{width:22px;height:22px;fill:#fff;}
.nav-links{display:flex;gap:14px;font-size:14px;opacity:.9;}
.nav-links a{padding:8px 10px;border-radius:999px;}
.nav-links a:hover{background:#ffffff14;}

/* ===== HERO v2 (zoals screenshot) ===== */
.hero{
  padding: 54px 0 34px;
  background:#fff;
}

.hero-shell-v2{
  display:grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items:center;
}

/* left block */
.hero-left h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: .2px;
  font-weight: 800;
}

.hero-left .hero-sub{
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 46ch;
}

/* button like screenshot */
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #3b3f52, #232634);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  transition: .2s ease;
}
.hero-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* right visual */
.hero-right{
  display:grid;
  place-items:center;
}
.hero-graphic-v2{
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  display:block;
  transform: translateX(6px);
}

/* responsive */
@media (max-width: 900px){
  .hero-shell-v2{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-left h1{
    font-size: 36px;
  }
  .hero-graphic-v2{
    max-width: 420px;
    transform: none;
  }
}


/* Sections */
.section{padding:44px 0;}
.section-title{font-size:24px;margin:0 0 8px;letter-spacing:.2px;}
.section-lead{margin:0 0 14px;color:var(--muted);}

/* Carousel wrapper + track volledig wit */
.carousel-wrap{
  position:relative;
  margin-top:6px;
}

.carousel{
  display:flex;
  gap:12px;
  overflow:hidden;
  padding:8px 0;          /* geen ruimte voor arrows nodig */
  scroll-behavior:smooth;
  border-radius:var(--radius-lg);
  background:#fff;        /* wit */
  border:none;            /* geen rand */
}
.logo-item{
  min-width:220px;
  flex:0 0 auto;
  border:none;            /* weg met rand */
  border-radius:0;        /* strak/clean */
  padding:10px 6px;
  display:grid;
  place-items:center;
  background:transparent; /* geen soft background */
}

/* logo image */
.logo-img{
  width: 160px;
  height: 70px;
  object-fit: contain;
  filter: none;
}

/* for black-on-transparent logo */
.logo-img.dark{
  filter: invert(1) saturate(0) brightness(0.25);
}
.logo-meta{font-size:14px;}
.logo-meta b{display:block;font-size:15px;}
.car-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:34px;height:34px;border-radius:999px;border:1px solid var(--line);
  background:#fff;display:grid;place-items:center;cursor:pointer;box-shadow:var(--shadow);
}
.car-btn:hover{background:#000;color:#fff;border-color:#000;}
.car-btn.left{left:6px;} .car-btn.right{right:6px;}
.progress{
  height:3px;
  background:#f0f0f0;
  border-radius:999px;
  margin-top:8px;
  overflow:hidden;
}
.progress > div{
  height:100%;
  width:40%;
  background:#000;
  border-radius:999px;
  transition:.2s;
}

/* Contact block */
.contact{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;align-items:start;
}
.contact-card{
  background:var(--soft);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:18px;box-shadow:var(--shadow);
}
label{display:grid;gap:6px;font-size:14px;font-weight:600;}
input,textarea{
  width:100%;padding:11px 12px;border-radius:12px;border:1px solid var(--line);
  font-size:15px;outline:none;background:#fff;
}
textarea{min-height:110px;resize:vertical;}
.checkbox{display:flex;gap:8px;align-items:center;font-size:14px;color:var(--muted);font-weight:500;}
.note{margin-top:8px;font-size:13px;color:var(--muted);}
.tiny-list{list-style:none;padding:0;margin:0;display:grid;gap:6px;color:var(--muted);font-size:14px;}
.tiny-list li::before{content:"✦ ";color:#000;}
/* extra witregel tussen bericht + verzendknop */
.contact-card form .checkbox{
  margin-top: 8px;
}

.contact-card form button[type="submit"]{
  margin-top: 10px;
}

/* Netlify honeypot accessibility */
.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  border:0;white-space:nowrap;
}

.footer{
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
}

.foot-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* logo in footer netjes */
.logo-mark-footer{
  background: transparent;
}

/* PNG logo inside the round mark */
.img-mark{
  background: transparent;          /* geen zwarte cirkel achter je png */
  padding: 0;
}

.img-mark img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.foot-right{display:flex;gap:10px;flex-wrap:wrap;}
.privacy{margin-left:6px;}

@media (max-width:820px){
  .contact{grid-template-columns:1fr;}
  .logo-item{min-width:180px;}
  .logo-img{width:130px;height:56px;}
}

.logo-item{
  cursor: pointer;
}
.logo-item:hover{
  transform: translateY(-1px);
  transition: .15s ease;
}
/* hide carousel progress bar */
.progress{
  display: none !important;
}
.hero-visual{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 220px;
}

.hero-graphic{
  width: 100%;
  max-width: 340px;   /* tweak als je ‘m groter/kleiner wil */
  height: auto;
  object-fit: contain;
  display:block;
  transform: translateY(4px); /* klein beetje “hang” zoals carrd */
}

/* mobile */
@media (max-width: 820px){
  .hero-visual{
    min-height: 180px;
    padding: 14px;
  }
  .hero-graphic{
    max-width: 260px;
  }
}
/* base buttons (site-wide) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 16px;
  border-radius:999px;
  font-weight:650;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
  white-space:nowrap;
}

.btn.primary{
  background:var(--pill);
  color:var(--pill-ink);
}

.btn.primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.btn.full{
  width:100%;
}
