/*
Theme Name: Sitosense
*/

:root{
      --c-navy:#003156;
      --c-slate:#41698b;
      --c-blue:#0098d5;

      --bg:#f6f9fc;
      --text:#0b1b2a;
      --muted:#5d6b78;
      --card:#ffffff;
      --border:rgba(0,49,86,.12);

      --radius:16px;
      --shadow: 0 14px 40px rgba(0,49,86,.12);
      --shadow-soft: 0 10px 24px rgba(0,49,86,.10);

      /* header sizing */
      --header-h: 112px;
      --header-h-scrolled: 84px;

      --container: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Zalando Sans', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
}
a{color:inherit;text-decoration:none}
p { 
      margin: 0 0 14px 0;
      color: var(--muted);
      line-height:1.75;
      font-size:15px;     
 } 
 
.page-template-default h2{
  margin:20px 0 20px 0;
  font-size: clamp(18px, 2vw, 32px);
  color:var(--c-navy);
  font-weight:900;
}
 
.page-template-default h3{
  margin:0 0 20px 0;
  font-size: clamp(16px, 1.75vw, 28px);
  letter-spacing:-.01em;
  color:var(--c-navy);
  font-weight:600;
}
img{max-width:100%;display:block}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* ===== Header (shrinks + gains bg on scroll) ===== */
.header{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--header-h);
  z-index:1000;
  background: rgba(255,255,255,.40);
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(0,49,86,.10);
  transition: height .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.header.is-scrolled{
  height:var(--header-h-scrolled);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 28px rgba(0,49,86,.10);
  border-color: rgba(0,49,86,.14);
}

.header__inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 210px;
  transition: transform .18s ease;
}
// .header.is-scrolled .brand{transform: scale(.98)}
.brand__mark{
  width:42px;height:42px;border-radius:14px;
  background: radial-gradient(circle at 30% 25%, rgba(0,152,213,.9), rgba(0,49,86,.98) 68%);
  box-shadow: 0 10px 24px rgba(0,49,86,.18);
  position:relative;
  overflow:hidden;
  transition: width .18s ease, height .18s ease, border-radius .18s ease, box-shadow .18s ease;
  flex:0 0 auto;
}
.header.is-scrolled .brand__mark{
  width:36px;height:36px;border-radius:12px;
  box-shadow: 0 8px 18px rgba(0,49,86,.16);
}
.brand__mark::after{
  content:"";
  position:absolute;
  inset:-8px -18px auto auto;
  width:44px;height:44px;
  background:rgba(255,255,255,.16);
  transform: rotate(25deg);
  border-radius:14px;
}
.brand__text{display:flex;flex-direction:column;line-height:1.1}
.brand__name{
  font-weight:800; letter-spacing:.2px;
  color:var(--c-navy);
  font-size:16px;
  transition: font-size .18s ease;
}
.header.is-scrolled .brand__name{font-size:15px}
.brand__tag{
  font-size:12px; color:var(--c-slate);
  margin-top:2px;
  transition: opacity .18s ease;
}
.header.is-scrolled .brand__tag{opacity:.92}

	
.brand__logo{
  width: 200px;
  display: block;
  margin-top: -5px; 
}

/* als je header shrink gebruikt */
.header.is-scrolled .brand__logo{
  width: 150px;
}	
	
.nav{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav__list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:2px;
  padding:0;
  margin:0;
}

.nav__item{
  position:relative;
}

.nav__link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:12px;
  color:var(--c-navy);
  font-weight:600;
  font-size:16px;
  transition: background .18s ease, color .18s ease, padding .18s ease;
  outline:none;
}
.header.is-scrolled .nav__link{padding:9px 11px}
.nav__link:hover,
.nav__link:focus-visible{
  background:rgba(0,152,213,.10);
  color:var(--c-navy);
}

.chev{
  width:14px;height:14px;flex:0 0 14px;
  transition: transform .18s ease;
}
.nav__item[data-open="true"] > .nav__link .chev{transform:rotate(180deg)}

/* ===== Dropdown (fixed hover issue by keeping open while hovering dropdown) ===== */
.dropdown{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:240px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow: var(--shadow-soft);
  padding:8px;
  opacity:0;
  transform: translateY(-6px);
  pointer-events:none;
  transition: opacity .16s ease, transform .16s ease;
}
.nav__item[data-open="true"] > .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
/* “hover bridge” to prevent closing between link and dropdown */
.nav__item[data-dropdown="true"]::after{
  content:"";
  position:absolute;
  left:-6px;
  right:-6px;
  top:100%;
  height:14px; /* must cover gap */
}

.dropdown a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 10px;
  border-radius:12px;
  font-weight:600;
  font-size:15px;
  color:var(--c-navy);
  transition: background .14s ease;
}
.dropdown a:hover{background:rgba(65,105,139,.10)}
.dropdown .subhead{
  padding:10px 10px 6px 10px;
  font-size:12px;
  font-weight:900;
  color:var(--c-slate);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.dropdown__divider{
  height:1px;
  background:rgba(0,49,86,.08);
  margin:8px 6px;
  border-radius:99px;
}

/* CTA button */
.cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  border:0;
  border-radius:999px;
  padding:11px 16px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, padding .18s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.header.is-scrolled .btn{padding:10px 15px}
.btn--quote{
  background: var(--c-blue);
  color:white;
//  box-shadow: 0 14px 30px rgba(0,152,213,.25);
   font-family: 'Zalando Sans', sans-serif;
   font-weight: 600;
   font-size:15px;
}
.btn--quote:hover{transform: translateY(-1px)}
.btn--ghost{
  background: transparent;
  color:var(--c-navy);
  border:1px solid rgba(0,49,86,.18);
}
.btn--ghost:hover{background:rgba(0,49,86,.05)}

/* Mobile toggle */
.burger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(0,49,86,.16);
  background:rgba(255,255,255,.9);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex-direction:column;
}
.burger span{
  width:18px;height:2px;
  background:var(--c-navy);
  border-radius:99px;
  transition: transform .18s ease, opacity .18s ease;
}
.header[data-mobile-open="true"] .burger span:nth-child(1){transform: translateY(6px) rotate(45deg)}
.header[data-mobile-open="true"] .burger span:nth-child(2){opacity:0}
.header[data-mobile-open="true"] .burger span:nth-child(3){transform: translateY(-6px) rotate(-45deg)}

/* Mobile panel */
.mobilePanel{display:none}

/* Main spacing */
main{
  padding-top: calc(var(--header-h) + 10px);
  padding-top: calc(var(--header-h));
  transition: padding-top .18s ease;
}
/* keep content aligned after shrink (optional) */
body.has-scrolled main{
  padding-top: calc(var(--header-h-scrolled) + 10px);
}

/* ===== Hero (now inside container, not against edges) ===== */
.hero{
  position:relative;
  border-bottom:1px solid var(--border);
  overflow:hidden;
}

.hero__bg{
  min-height: 35vh;
  display:flex;
  align-items:flex-end;
  align-items:center;
  background:
	radial-gradient(1200px 520px at 20% 10%, rgba(0,152,213,.22), transparent 55%),
	radial-gradient(1000px 520px at 90% 30%, rgba(65,105,139,.12), transparent 60%),
	linear-gradient(120deg, rgba(0,49,86,.2), rgba(0,49,86,.1)),
	url("/wp-content/themes/sitosense/images/helder-zuiver-water.png");
  background-size: cover;
  background-position: center;
}	

.home .hero__bg{
   min-height: 50vh;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
	linear-gradient(180deg, rgba(0,49,86,.48) 0%, rgba(0,49,86,.35) 40%, rgba(0,49,86,.65) 100%);
  pointer-events:none;
}
.hero__content{
  position:relative;
 // width:100%;
  padding: 70px 0 58px 0;
  color:white;
}
.heroBox{
  /* subtle readable container */
  max-width: 820px;
//    padding: 22px 22px 20px 22px;
  border-radius: 22px;
//     background: rgba(0,49,86,.22);
//     border: 1px solid rgba(255,255,255,.14);
//     backdrop-filter: blur(6px);
//    box-shadow: 0 18px 50px rgba(0,49,86,.18);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
}
.kicker__dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--c-blue);
  box-shadow: 0 10px 20px rgba(0,152,213,.35);
}
.hero h1{
  margin:16px 0 10px 0;
  font-size: clamp(32px, 4vw, 70px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero p{
  margin:0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height:1.6;
  color: rgba(255,255,255,.88);
  max-width: 62ch;
}
.hero__actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero__meta{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.82);
  font-weight:700;
  font-size:13px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.pill svg{opacity:.95}

/* Intro section */
.section{padding: 60px 0;}
.intro{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items:start;
}
.intro__card{
//      background:var(--card);
//      border:1px solid var(--border);
//      border-radius: var(--radius);
//      box-shadow: var(--shadow-soft);
//      padding: 26px;
	padding-right:26px
}
.intro h2{
  margin:0 0 1em 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-.01em;
  color:var(--c-navy);
}

.intro h3{
  margin:1.5em 0 0.5em 0;
  font-size: clamp(15px, 1.5vw, 22px);
  letter-spacing:-.01em;
  color:var(--c-navy);
}

.intro p{
  margin:0;
  margin-bottom: 1em;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}
.stats{display:grid;gap:12px;}
.stat{
  background:linear-gradient(180deg, rgba(0,152,213,.08), rgba(0,49,86,.04));
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
}
.stat strong{
  display:block;
  font-size:18px;
  color:var(--c-navy);
  margin-bottom:4px;
}
.stat span{
  display:block;
  color:var(--c-slate);
  font-weight:700;
  font-size:13px;
}

/* Carousel */
.carousel{
  background: linear-gradient(180deg, rgba(0,49,86,.04), rgba(0,152,213,.05));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.carousel__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}
.carousel__head h2{
  margin:0;
  color:var(--c-navy);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-.01em;
}
.carousel__head p{
  margin:8px 0 0 0;
  color:var(--muted);
  max-width: 60ch;
  line-height:1.6;
  font-size:14px;
}
.carousel__controls{
  display:flex;
  gap:10px;
  align-items:center;
  flex:0 0 auto;
}
.iconbtn{
  width:42px;height:42px;
  border-radius:14px;
  border:1px solid rgba(0,49,86,.16);
  background: rgba(255,255,255,.9);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: transform .12s ease, background .14s ease;
}
.iconbtn:hover{transform: translateY(-1px); background:#fff}

.slider{
  width:calc(100% + 38px);
  max-width:1220px;
  margin-left:-20px;
  overflow:hidden;

}
.track{
  display:flex;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.slide{
  flex: 0 0 auto;
  width: calc((100% - 0px) / 3);
  padding: 18px;
}
.product{
  height:100%;
  background: var(--card);
  border:1px solid var(--border);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,49,86,.08);
  display:flex;
  flex-direction:column;
  min-height: 320px;
}
	
.product__media{
  height:200px;
  position:relative;
  overflow:hidden;
  padding:10px;
}

.product__media img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* 🔵 Jouw eerdere gradient als overlay */
.product__media::after{
  content:"";
  position:absolute;
  inset:0;
background:
  radial-gradient(circle at center,
    rgba(255,255,255,.08) 0%,
    transparent 45%
  ),
  radial-gradient(520px 220px at 20% 20%,
    rgba(0,152,213,.08),
    transparent 55%
  ),
  radial-gradient(420px 220px at 85% 10%,
    rgba(65,105,139,.06),
    transparent 60%
  ),
  linear-gradient(135deg,
    rgba(0,49,86,.18),
    rgba(65,105,139,.12)
  );
  pointer-events:none;
}

.badge{
  position:absolute;
  left:14px;
  top:14px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,49,86,.75);
  backdrop-filter: blur(6px);
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.02em;
  z-index:999
}

.product__body{
  padding: 16px 16px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}
.product__title{
  margin:0;
  font-weight:950;
  color:var(--c-navy);
  letter-spacing:-.01em;
  font-size:16px;
}
.product__desc{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  flex:1;
}
.product__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top: 6px;
}


.product__price{
  margin: 6px 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: #325b79;
  display:flex;
  align-items:baseline;
  gap:6px;
}

.product__price span{
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.priceBlock{
  display:inline-flex;
  align-items: center;  
  gap:4px;
  margin: 0 0 22px 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,152,213,.08), rgba(0,49,86,.05));
  border: 1px solid rgba(0,49,86,.12);
  box-shadow: 0 10px 24px rgba(0,49,86,.06);
}

.priceBlock__label{
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--c-slate);
}

.priceBlock__value{
  font-size: clamp(18px, 1.75vw, 24px);
  line-height:1;
  font-weight:600;
  color: #41698b;
  display:inline-block;
}

.priceBlock__meta{
  font-size:13px;
  font-weight:700;
  color: var(--muted);
  display:inline-block;
  margin-left:5px;
}



.chip{
  display:inline-flex;
  display:none;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,152,213,.10);
  color: var(--c-navy);
  font-weight:900;
  font-size:12px;
}
.link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:15px;
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(0,152,213,.08);
  background: rgba(0,152,213);

}

.dots{
  display:flex;
  justify-content:center;
  gap:10px;
  padding: 14px 0 2px 0;
}
.dot{
  width:14px;height:14px;border-radius:50%;
  border:1px solid rgba(0,49,86,.20);
  background: rgba(0,49,86,.10);
  cursor:pointer;
  transition: transform .12s ease, background .14s ease, border-color .14s ease;
}
.dot[aria-current="true"]{
  background: var(--c-blue);
  border-color: rgba(0,152,213,.45);
  transform: scale(1.15);
}

footer{
  background: linear-gradient(180deg, rgba(0,49,86,.92), rgba(0,49,86,.98));
  color: rgba(255,255,255,.78);
 /* border-top: 1px solid rgba(255,255,255,.10); */
  padding: 15px 0 0 0; /* bottom bar regelt de onderkant */
}

.footerWave {
  position: relative;
  width: 100%;
  line-height: 0;
}

.footerWave svg {
  display: block;
  width: 100%;
  height: 100px; /* hoogte golf */
}

@media (max-width: 760px) {
	.footerWave svg {
	  height: 50px;
	}
}

.footerWave path {
  fill: rgb(20, 65, 99); /* zelfde kleur als je footer */
}


.footerGrid{
  display:grid;
  gap: 22px;
  align-items:start;
}

.footerGrid--3{
  grid-template-columns: 1.3fr 1fr 1fr;
  padding: 15px 0px;
}

.footerBrand{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.footerMark{
  width:38px;height:38px;border-radius:14px;
  background: radial-gradient(circle at 30% 25%, rgba(0,152,213,.95), rgba(0,49,86,1) 68%);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  flex:0 0 auto;
}

.footerTitle{
  font-weight:950;
  color: #fff;
  letter-spacing:.2px;
  margin:0;
  font-size:16px;
}

.footerText{
  margin:35px 0 0 0;
  line-height:1.6;
  font-weight:500;
  font-size:15px;
  color: rgba(255,255,255,.72);
  color: #fff;
}

.footerCol h4{
  margin:0 0 15px 0;
  font-size:20px;
//  letter-spacing:.06em;
//  text-transform:uppercase;
  color: rgba(255,255,255,.92);
  color: #ceeaf5;
}

.footerLinks{
  list-style:none;
  padding:0;margin:0;
  display:grid;
  gap:8px;
}

.footerLinks a{
  font-weight: 400;
  font-size:15px;
  color: rgba(255,255,255,.76);
  color: #fff;
}
.footerLinks a:hover{ color:#fff; }

.footerContact{
  display:grid;
  gap:8px;
  font-weight:400;
  font-size:15px;
  color: rgba(255,255,255,.72);
  color: #fff;
}
.footerContact a{
  font-weight:400;
  color: rgba(255,255,255,.90);
  color: #fff;
}
.footerContact a:hover{ color:#fff; }

.footerCta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background: var(--c-blue);
  color:#fff !important;
  font-weight:950;
  box-shadow: 0 14px 30px rgba(0,152,213,.20);
}

/* ===== Full-width bottom bar with different color ===== */
.footerBottomBar{
  margin-top: 34px;
  background: rgba(65,105,139,.35);          /* afwijkende kleur */
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px 0;
}

.footerBottomBar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  font-weight:400;
  font-size:13px;
  color: rgba(255,255,255,.86);
}

.footerBottomLinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footerBottomLinks a{
  color: rgba(255,255,255,.86);
  color:#fff;
  font-weight:400;
}
.footerBottomLinks a:hover{ color:#fff; }

/* Responsive */
@media (max-width: 980px){
  .footerGrid--3{ grid-template-columns: 1.2fr 1fr; }
}
@media (max-width: 640px){
  .footerGrid--3{ grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 980px){
  .slide{width:50%}
  .intro{grid-template-columns:1fr}
  .brand{min-width:auto}
  .footerGrid{grid-template-columns: 1.2fr 1fr 1fr;}
}
@media (max-width: 760px){
  .nav{display:none}
  .burger{display:flex}
  .cta .btn--ghost{display:none}

  .hero__bg{min-height: 40vh}
  .heroBox{padding:18px; border-radius:18px}

  .slide{width:100%}
  .carousel__head{flex-direction:column; align-items:flex-start}
  .carousel__controls{align-self:flex-end}

  .mobilePanel{
	display:block;
	position:fixed;
	top: var(--header-h);
	left:0; right:0;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(10px);
	border-bottom:1px solid var(--border);
	transform: translateY(-8px);
	opacity:0;
	pointer-events:none;
	transition: opacity .16s ease, transform .16s ease, top .18s ease;
	z-index:999;
  }
  .header.is-scrolled ~ .mobilePanel{
	top: var(--header-h-scrolled);
  }
  .header[data-mobile-open="true"] + .mobilePanel{
	opacity:1;
	transform: translateY(0);
	pointer-events:auto;
  }
  .mobileNav{
	padding: 12px 0 16px 0;
  }
  .mobileNav a, .mobileNav button{
	width:100%;
	text-align:left;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding: 12px 12px;
	border-radius: 14px;
	background: transparent;
	border: 0;
	font-weight:900;
	color: var(--c-navy);
	cursor:pointer;
  }
  .mobileNav a:hover, .mobileNav button:hover{background: rgba(0,152,213,.10)}
  .mobileSub{
	margin: 6px 0 0 0;
	padding: 0 0 0 10px;
	border-left: 2px solid rgba(0,152,213,.35);
	display:none;
  }
  .mobileSub a{
	font-weight:800;
	color: var(--c-slate);
  }
  .mobileNav [data-m-open="true"] + .mobileSub{display:block}
  .mobileCTA{
	margin-top: 8px;
	display:flex;
	gap:10px;
	flex-wrap:wrap;
  }

  .footerGrid{grid-template-columns: 1fr 1fr; gap:18px}
}
@media (max-width: 520px) {
  .footerGrid{grid-template-columns: 1fr}
}



.usp-box{
  background: linear-gradient(
      180deg,
      rgba(0,152,213,.08),
      rgba(0,49,86,.05)
  );
  border:1px solid rgba(0,49,86,.12);
  border-radius:20px;
  padding:26px;
  display:flex;
  flex-direction:column;   /* 👈 onder elkaar */
  gap:20px;
  box-shadow: 0px 0px 8px rgba(0,0,0,.08);
}

.usp-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.usp-item strong{
  display:block;
  font-size:16px;
  font-weight:700;
  color:var(--c-navy);
  margin-bottom:4px;
}

.usp-item span{
  font-size:14px;
  font-weight:500;
  color:var(--c-slate);
}

.usp-icon{
  width:46px;
  height:46px;
  min-width:46px;
  border-radius:14px;
  background:rgba(0,152,213,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--c-blue);
}

.usp-icon svg{
  width:24px;
  height:24px;
}

.usp-divider{
  height:1px;
  width:100%;
  background:rgba(0,49,86,.12);
}

@media (max-width: 900px){
  .usp-box{
    flex-direction:column;
  }
  .usp-divider{
    height:1px;
    width:100%;
  }
}	
	
.link{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.link__icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  transition: transform .18s ease;
}

.link:hover .link__icon{
  transform: translateX(2px);
}	


/* Single Product */

    .pageHead{ padding: 22px 0 0 0; }

    .breadcrumb{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      color: var(--muted);
      font-weight:700;
      font-size:13px;
      padding: 18px 0 10px 0;
    }
    .breadcrumb a{ color: var(--c-slate); }
    .breadcrumb .sep{ opacity:.55; }
	
    .productGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 26px;
      padding: 14px 0 34px 0;
      align-items:start;
	  border-bottom: 1px solid rgba(0,49,86,.12);
	  margin-bottom:20px;
    }

    /* Left photo card stays */
.mediaCard{
  display:block;
  overflow:visible;
  background:none;
  border:none;
  border-radius:0;
}

.mediaTop{
  position:relative;
  padding:20px;
  min-height:460px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.12) 0%, transparent 50%),
    radial-gradient(760px 360px at 18% 18%, rgba(0,152,213,.10), transparent 55%),
    radial-gradient(680px 360px at 86% 10%, rgba(65,105,139,.07), transparent 60%),
    linear-gradient(135deg, rgba(0,49,86,.18), rgba(65,105,139,.10));
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
}

.has-jpg .mediaTop{ 
	background: #fff;
}	 

.mediaTop img{
  width:100%;
  height:520px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 18px 34px rgba(0,49,86,.18));
}


.has-jpg .mediaTop img{ 
	filter:none;
}	 


.productGalleryMain{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:none;
  cursor:zoom-in;
}

.productThumbs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
  padding:0;
  background:none;
  border:none;
}

.productThumb{
  display:block;
  width:90px;
  height:90px;
  padding:0;
  border:1px solid rgba(0,49,86,.12);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
  flex:0 0 90px;
}

.productThumb img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.productThumb.is-active{
  border: 2px solid rgb(184, 199, 210);
  box-shadow: 0 5px 8px 2px rgba(99, 99, 99, 0.14);
}


.galleryLightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}

.galleryLightbox.is-open{
  display:block;
}

.galleryLightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(7,16,28,.78);
  backdrop-filter:blur(4px);
}

.galleryLightbox__dialog{
  position:relative;
  z-index:2;
  width:min(92vw, 1180px);
  height:min(88vh, 900px);
  margin:4vh auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.galleryLightbox__imageWrap{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 70px;
}

.galleryLightbox__imageWrap img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.28);
  background:#fff;
  filter:none;
}

.galleryLightbox__close{
  position:absolute;
  top:10px;
  right:10px;
  width:48px;
  height:48px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.galleryLightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:36px;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.galleryLightbox__nav--prev{
  left:10px;
}

.galleryLightbox__nav--next{
  right:10px;
}

@media (max-width:760px){
  .galleryLightbox__imageWrap{
    padding:28px 16px;
  }

  .galleryLightbox__nav{
    width:44px;
    height:44px;
    font-size:28px;
  }
}


    .tag{
      position:absolute;
      top:16px; left:16px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(0,49,86,.78);
      backdrop-filter: blur(6px);
      color:#fff;
      font-weight:900;
      font-size:12px;
      letter-spacing:.02em;
    }
    .mediaMeta{
      padding: 14px 16px 16px 16px;
      display:flex;
      display:none;
      gap:10px;
      flex-wrap:wrap;
      border-top:1px solid rgba(0,49,86,.08);
      background: rgba(255,255,255,.72);
    }
    .metaPill{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(0,49,86,.04);
      border:1px solid rgba(0,49,86,.10);
      font-weight:900;
      font-size:12px;
      color: var(--c-navy);
    }

    /* Right side: NO CARD */
    .content{
      padding: 0px 0 0 20px;
    }
    .content h1{
	  margin: 0px 0 24px 0;
	  font-size: clamp(26px, 3vw, 38px);
	  line-height: 1.08;
	  letter-spacing: -.02em;
	  color: var(--c-navy);
    }
    .lead, .single-producten .content p {
      margin: 0 0 14px 0;
      color: var(--muted);
      line-height:1.75;
      font-size:15px;
      max-width: 70ch;
    }
.bullets{
  margin: 24px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;   /* ⭐ bepaalt nu ALTIJD de afstand */
}

.bullets li{
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.tick{
  width:22px;
  height:22px;
  border-radius:8px;
  background: rgba(0,152,213,.12);
  border:1px solid rgba(0,152,213,.20);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--c-blue);
  font-size:13px;
  margin-top: 2px;
}
    .actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 14px;
    }
    .btn--wide{
      padding: 12px 16px;
      border-radius: 16px;
      font-size:15px;
    }
    .btn--outline{
      border:1px solid rgba(0,49,86,.18);
      background: rgba(0,49,86,.02);
      color: var(--c-navy);
    }
    .btn--outline:hover{ background: rgba(0,49,86,.05); }

    .docLink{
      margin-top: 14px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(0,49,86,.14);
      background: rgba(255,255,255,.6);
      box-shadow: 0 10px 24px rgba(0,49,86,.06);
      font-weight:900;
      color: var(--c-navy);
    }
    .docLink span{
      font-weight:800;
      color: var(--c-slate);
      font-size:13px;
      margin-left: 6px;
    }
    .pdfIcon{
      width:22px;height:22px; flex:0 0 22px;
      color: var(--c-blue);
    }

    /* Specs */
    .single-producten .section{ padding: 12px 0 60px 0; }
    .sectionTitle{
      margin:0 0 12px 0;
      color: var(--c-navy);
      font-size: clamp(20px, 2.2vw, 28px);
      letter-spacing:-.01em;
    }

	.sectionHead{
	  display:flex;
	  align-items:center;
	  justify-content:space-between;
	  gap:12px;
	  margin: 0 0 12px 0; /* neemt de ruimte over van sectionTitle margin */
	}

	.sectionHead .sectionTitle{
	  margin:0; /* zodat de flex-row netjes uitlijnt */
	}

	/* compactere handleiding-link in de header */
	.docLink--small{
	  margin-top:0;
	  padding: 9px 12px;
	  border-radius: 14px;
	  font-size: 13px;
	}

	.docLink--small span{ display:none; } /* omdat je header-variant geen subtekst nodig heeft */	
	
    .specCard{
      background: var(--card);
      border:1px solid var(--border);
      border-radius: 22px;
      box-shadow: var(--shadow-soft);
      overflow:hidden;
	  margin-top:30px;
    }
    .specToolbar{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      padding: 14px 16px;
      border-bottom:1px solid rgba(0,49,86,.08);
      background: rgba(255,255,255,.78);
	  background: rgb(230, 236, 240);
	  background: linear-gradient( 180deg, rgba(0,152,213,.08), rgba(0,49,86,.05) );
	  background: linear-gradient( 180deg, rgba(222, 222, 222, 0.08), rgba(0,49,86,.05) );
      flex-wrap:wrap;
    }
    .specToolbar p{
      margin:0;
      color: #003156;
      font-weight:900;
      font-size:16px;
      line-height:1.6;
    }
    .specTable{ width:100%; border-collapse: collapse; }
    .specTable th, .specTable td{
      text-align:left;
      padding: 14px 16px;
      border-bottom:1px solid rgba(0,49,86,.08);
      vertical-align:top;
      font-size:14px;
    }
    .specTable th{
      width: 42%;
      color: var(--c-navy);
      font-weight:600;
      background: rgba(0,49,86,.02);
	  line-height:1.6
    }
    .specTable td{ color: var(--muted); font-weight:500; line-height:1.6 }
    .specTable tr:last-child th, .specTable tr:last-child td{ border-bottom:0; }

    /* Offerte block */
    .quoteCard{
      margin-top: 16px;
      background: linear-gradient(180deg, rgba(0,152,213,.08), rgba(0,49,86,.04));
      border:1px solid rgba(0,49,86,.12);
      border-radius: 22px;
      box-shadow: var(--shadow-soft);
      padding: 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .quoteCard strong{
      color: var(--c-navy);
      font-weight:950;
      font-size:15px;
    }
    .quoteCard span{
      display:block;
      color: var(--muted);
      font-weight:700;
      font-size:13px;
      margin-top: 4px;
      line-height:1.45;
      max-width: 70ch;
    }
	
	
/* Hero variant */
.hero--small .hero__bg{
  min-height: 35vh;
}

.hero__bg--sectoren{
  background:
    radial-gradient(1200px 520px at 20% 10%, rgba(0,152,213,.22), transparent 55%),
    radial-gradient(1000px 520px at 90% 30%, rgba(65,105,139,.12), transparent 60%),
    linear-gradient(120deg, rgba(0,49,86,.2), rgba(0,49,86,.1)),
    url("/wp-content/themes/sitosense/images/water-bubbels.png");
  background-size: cover;
  background-position: center;
}

.intro--sectoren{
  grid-template-columns: 1.15fr .85fr;
}

@media (max-width: 980px){
  .intro--sectoren, .productGrid {grid-template-columns:1fr}
}

/* Sector cards */
.sectorCards{
  background: linear-gradient(180deg, rgba(0,49,86,.04), rgba(0,152,213,.05));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.sectorGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.sectorCard{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,49,86,.08);
  display:flex;
  flex-direction:column;
  min-height: 250px;
}

.sectorCard__icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,152,213,.10);
  color: var(--c-blue);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 16px;
}

.sectorCard h3{
  margin:0 0 10px 0;
  color: var(--c-navy);
  font-size: 20px;
  line-height: 1.2;
}

.sectorCard p{
  margin:0 0 18px 0;
  color: var(--muted);
  line-height:1.7;
  font-size:15px;
  flex:1;
}

.sectorUnified{
  background: linear-gradient(180deg, rgba(0,49,86,.04), rgba(0,152,213,.05));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.sectorRow{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 42px 0;
  align-items:center;
  border-bottom: 1px solid rgba(0,49,86,.10);
}

.sectorRow:last-child{
  border-bottom:0;
}

.sectorRow--reverse {
  grid-template-columns: 2fr 1fr;
}

.sectorRow--reverse .sectorMedia{
  order:2;
}

.sectorRow--reverse .sectorContent{
  order:1;
}

.sectorMedia{
  width:100%;
  aspect-ratio:1 / 1;   /* maakt hem vierkant */
  overflow:hidden;
  border-radius:16px;	
  position:relative;
  border-radius: 22px;
  border:1px solid var(--border);
  box-shadow: var(--shadow-soft);
  min-height: 200px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.10) 0%, transparent 45%),
    radial-gradient(760px 360px at 18% 18%, rgba(0,152,213,.10), transparent 55%),
    radial-gradient(680px 360px at 86% 10%, rgba(65,105,139,.07), transparent 60%),
    linear-gradient(135deg, rgba(0,49,86,.18), rgba(65,105,139,.10));
}

.sectorMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.sectorContent{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.sectorIntro h2{
  margin:0 0 14px 0;
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--c-navy);
  line-height:1.15;
  letter-spacing:-.02em;
}

.sectorIntro p{
  margin:0;
  color: var(--muted);
  line-height:1.75;
  font-size:15px;
}

.sectorLabel{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(0,152,213,.10);
  color: var(--c-navy);
  font-weight:900;
  font-size:15px;
  letter-spacing:.03em;
  margin-bottom: 14px;
}

.bullets{
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullets li{
  display:grid;
  grid-template-columns: 26px 1fr;
  align-items:start;
  gap:12px;
  font-size:15px;
  line-height:1.6;
  color:var(--muted);
}

.tick{
  width:22px;
  height:22px;
  border-radius:8px;
  background: rgba(0,152,213,.12);
  border:1px solid rgba(0,152,213,.20);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--c-blue);
  font-size:13px;
  margin-top:2px;
}



@media (max-width: 980px){
  .sectorRow{
    gap: 28px;
  }

  .sectorMedia,
  .sectorMedia img{
    min-height: 300px;
  }
}

@media (max-width: 760px){
  .sectorRow{
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .sectorRow--reverse .sectorMedia,
  .sectorRow--reverse .sectorContent{
    order: initial;
  }

  .sectorMedia,
  .sectorMedia img{
    min-height: 240px;
  }
}


.outro h3{
  margin:0 0 20px 0;
  font-size: clamp(20px, 2.0vw, 38px);
  letter-spacing:-.01em;
  color:var(--c-navy);
}

.outro p {
  margin:0;
  margin-bottom: 20px;
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}



.sectorGrid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:20px;
  margin-top:30px;
  margin-bottom:20px;
}

@media (max-width: 980px){
  .sectorGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.sectorCard{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.sectorCard__icon{
  font-size:24px;
  margin-bottom:10px;
}

.sectorCard__media{
  width:100%;
  height:140px;
  overflow:hidden;
  border-radius:10px;
  margin-bottom:15px;
}

.sectorCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.quoteOverlay{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.quoteOverlay.active{
  display:block;
}

.quoteOverlay__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}

.quoteOverlay__panel{
  position:relative;
  max-width:500px;
  margin:60px auto;
  background:#fff;
  padding:30px;
  border-radius:12px;
  z-index:2;
}

.quoteOverlay__close{
  position:absolute;
  top:10px;
  right:10px;
  font-size:24px;
  background:none;
  border:none;
  cursor:pointer;
}

.formRow{
  margin-bottom:15px;
}

.formRow input,
.formRow select,
.formRow textarea{
  width:100%;
  padding:10px;
  border:1px solid #ddd;
  border-radius:6px;
  margin-top:5px;
}

.formRow select{
  width: 100%;
  border: 1px solid rgba(0,49,86,.16);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  font-family: 'Zalando Sans';
}

.selectWrap--multiple select {
  padding: 14px;
  border: 1px solid rgba(0,49,86,.14);
  border-radius: 16px;
  background: #fff;
  color: var(--c-navy);
  font: inherit;
  line-height: 1.5;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.03);
  margin-top:5px;
}

.selectWrap--multiple select option {
  padding: 10px 12px;
  border-radius: 10px;
}

.selectWrap--multiple select:focus {
  outline: none;
  border-color: rgba(0,152,213,.5);
  box-shadow: 0 0 0 4px rgba(0,152,213,.12);
}

.formHint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.formRow option{
  font-family: 'Zalando Sans';
}

.formRow select:hover{
  border-color: var(--c-blue);
}

.formRow select:focus{
  outline:none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(0,152,213,.15);
}

.formSuccess{
  background: rgba(0,152,213,.08);
  border:1px solid rgba(0,152,213,.2);
  color: var(--c-navy);
  padding:14px 16px;
  border-radius:12px;
  font-weight:600;
  margin-bottom:16px;
}

.archive-producten .archiveBadge--extra-label{
  left: auto !important;
  right: 14px;  
  top: 14px;
  background: linear-gradient(135deg, #0098d5, #0087bc) !important;  
  color: #fff;
  width:fit-content;
  box-shadow: 0 8px 18px rgba(40, 117, 160, 0.32);
  letter-spacing:0.03em !important;
}

