*{margin:0;padding:0;box-sizing:border-box;}
.ls-wrap{font-family:"Montserrat",Arial,Helvetica,sans-serif;}
.ls-wrap *,.ls-wrap *::before,.ls-wrap *::after{box-sizing:border-box;}
.ls-wrap img{display:block;width:100%;height:auto;}

.ls-wrap{
  --ew-purple:#26146c;
  --ew-orange:#e67800;
  --ew-blue:#0e86d6;
  --ew-soft:#f7f9fc;
  --ew-border:#e5ebf3;
  --ew-text:#4b5563;
  --ew-shadow:0 12px 34px rgba(16,24,40,0.08);
  --ew-shadow-hover:0 18px 42px rgba(16,24,40,0.12);
}

.ls-wrap a{text-decoration:none;}

.ls-wrap .ls-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:12px 24px;
  border-radius:12px;
  border:1px solid transparent;
  background:var(--ew-orange);
  color:#fff;
  font-size:1rem;
  font-weight:800;
  line-height:1.1;
  text-align:center;
  cursor:pointer;
  transition:.25s ease;
  box-shadow:0 8px 22px rgba(230,120,0,0.16);
}
.ls-wrap .ls-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
}
.ls-wrap .ls-btn--small{
  min-height:44px;
  padding:11px 16px;
  font-size:.95rem;
}
.ls-wrap .ls-btn--ghost{
  background:#fff;
  color:var(--ew-purple);
  border-color:#d9dfeb;
  box-shadow:none;
}
.ls-wrap .ls-btn--ghost:hover{
  background:#f8fafe;
  border-color:#c6d2ea;
}
.ls-wrap .ls-btn--ghost-white{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,0.98);
  box-shadow:none;
}
.ls-wrap .ls-btn--ghost-white:hover{
  background:#fff;
  color:#111;
  border-color:#fff;
}
.ls-wrap .ls-btn--purple{
  background:var(--ew-purple);
  color:#fff;
}

.ls-wrap .ls-container{
  width:min(1200px,calc(100% - 32px));
  margin:0 auto;
}

.ls-wrap .ls-extra{
  padding:64px 0;
  background:#fff;
}
.ls-wrap .ls-extra--soft{
  background:var(--ew-soft);
}
.ls-wrap .ls-extra--compact{
  padding:40px 0 72px;
}

.ls-wrap .ls-extra-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  margin-bottom:24px;
}
.ls-wrap .ls-extra-head--stack{
  display:grid;
  gap:8px;
  align-items:start;
}
.ls-wrap .ls-extra-head__text{
  display:grid;
  gap:8px;
}
.ls-wrap .ls-extra-head h2{
  color:var(--ew-purple);
  font-size:clamp(1.45rem,2.5vw,2rem);
  line-height:1.12;
}
.ls-wrap .ls-extra-head p{
  color:var(--ew-text);
  line-height:1.65;
  max-width:900px;
}

/* HERO */
.ls-wrap .ls-landing{
  position:relative;
  min-height:700px;
  padding:80px 20px;
  overflow:hidden;
}
.ls-wrap .ls-landing-bg{
  position:absolute;
  inset:0;
  z-index:-1;
  overflow:hidden;
  --hero-img:var(--ls-hero-img);
  --fade-height:265rem;
  --circle-size:400px;
  --circle-right:350px;
  --circle-y:40%;
  --circle-r:calc(var(--circle-size)/2);
  --circle-x:calc(100% - var(--circle-right) - var(--circle-r));
  --bg-size:cover;
  --bg-pos:center;
  background:#fff;
}
.ls-wrap .ls-landing-bg-base{
  position:absolute;
  inset:0;
  background-color:#fff;
  background-image:var(--hero-img);
  background-size:var(--bg-size);
  background-position:var(--bg-pos);
  background-repeat:no-repeat;
}
.ls-wrap .ls-landing-bg-wash{
  position:absolute;
  inset:0;
  background-image:linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  background-repeat:no-repeat;
  background-position:bottom;
  background-size:100% var(--fade-height);
  -webkit-mask-image:radial-gradient(circle var(--circle-r) at var(--circle-x) var(--circle-y),
    rgba(0,0,0,0) 0,
    rgba(0,0,0,0) calc(var(--circle-r) - 1px),
    rgba(0,0,0,1) calc(var(--circle-r) + 1px));
  mask-image:radial-gradient(circle var(--circle-r) at var(--circle-x) var(--circle-y),
    rgba(0,0,0,0) 0,
    rgba(0,0,0,0) calc(var(--circle-r) - 1px),
    rgba(0,0,0,1) calc(var(--circle-r) + 1px));
  pointer-events:none;
}
.ls-wrap .ls-landing-bg-ring{
  position:absolute;
  width:var(--circle-size);
  height:var(--circle-size);
  border-radius:50%;
  left:calc(var(--circle-x) - var(--circle-r));
  top:calc(var(--circle-y) - var(--circle-r));
  pointer-events:none;
}
.ls-wrap .ls-landing-content{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}
.ls-wrap .ls-landing-text{
  flex:1 1 520px;
  max-width:720px;
  padding:20px;
}
.ls-wrap .ls-landing-text h1{
  color:#28146A;
  font-size:clamp(2rem,4vw,2.9rem);
  line-height:1.18;
  margin:0 0 20px 0;
}
.ls-wrap .ls-landing-text p{
  margin:0 0 20px 0;
  color:#111;
  font-size:clamp(1rem,2vw,1.3rem);
  line-height:1.6;
}
.ls-wrap .ls-landing-img{
  flex:1 1 300px;
  min-height:1px;
  padding:20px;
}

/* ROUTES */
.ls-wrap .ls-routes-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.ls-wrap .ls-route-card{
  display:flex;
  flex-direction:column;
  color:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 16px 38px rgba(16,24,40,0.10);
}
.ls-wrap .ls-route-card--purple{
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)), var(--ew-purple);
}
.ls-wrap .ls-route-card--orange{
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)), var(--ew-orange);
}
.ls-wrap .ls-route-card__top{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:32px 24px 0;
}
.ls-wrap .ls-route-meta{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.ls-wrap .ls-route-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  color:#111;
  font-size:.9rem;
  font-weight:900;
  white-space:nowrap;
}
.ls-wrap .ls-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.ls-wrap .ls-meta-item{
  display:flex;
  gap:10px;
  align-items:baseline;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}
.ls-wrap .ls-meta-label{
  font-weight:950;
}
.ls-wrap .ls-meta-label::after{
  content:":";
  margin-left:4px;
  opacity:.95;
}
.ls-wrap .ls-meta-value{
  font-weight:800;
}
.ls-wrap .ls-route-title,
.ls-wrap .ls-route-intro,
.ls-wrap .ls-route-subtitle,
.ls-wrap .ls-route-microcopy,
.ls-wrap .ls-route-list{
  color:rgba(255,255,255,0.98);
  text-shadow:0 3px 18px rgba(0,0,0,0.45);
}
.ls-wrap .ls-route-title{
  font-size:clamp(1.75rem,2.45vw,2.55rem);
  line-height:1.1;
  letter-spacing:-0.3px;
}
.ls-wrap .ls-route-intro{
  font-size:1.05rem;
  line-height:1.75;
}
.ls-wrap .ls-route-intro::after{
  content:"";
  display:block;
  width:100%;
  height:1px;
  margin-top:14px;
  background:rgba(255,255,255,0.18);
}
.ls-wrap .ls-route-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:10px;
}
.ls-wrap .ls-route-block{
  padding:16px;
  border-radius:18px;
  background:rgba(0,0,0,0.14);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
}
.ls-wrap .ls-route-subtitle{
  margin:0 0 10px 0;
  font-size:1.05rem;
  font-weight:900;
}
.ls-wrap .ls-route-list{
  list-style:none;
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  font-weight:800;
  line-height:1.6;
}
.ls-wrap .ls-route-list li{
  position:relative;
  padding-left:14px;
}
.ls-wrap .ls-route-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:rgba(255,255,255,0.98);
  transform:translateY(-50%);
  box-shadow:0 2px 10px rgba(0,0,0,0.25);
}
.ls-wrap .ls-route-footer{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:14px;
}
.ls-wrap .ls-route-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.ls-wrap .ls-route-image{
  height:260px;
  margin-top:18px;
}
.ls-wrap .ls-route-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

/* CARDS */
.ls-wrap .ls-cards-grid{
  display:grid;
  gap:18px;
}
.ls-wrap .ls-services-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.ls-wrap .ls-sectors-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.ls-wrap .ls-card{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#fff;
  border:1px solid var(--ew-border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--ew-shadow);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ls-wrap .ls-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--ew-shadow-hover);
  border-color:#d8e3f2;
}
.ls-wrap .ls-card__img{
  position:relative;
  overflow:hidden;
  background:#eef3f8;
  aspect-ratio:16/10;
}
.ls-wrap .ls-card__img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.12));
  pointer-events:none;
}
.ls-wrap .ls-card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.ls-wrap .ls-card__body{
  display:flex;
  flex-direction:column;
  gap:12px;
  height:100%;
  padding:18px;
}
.ls-wrap .ls-card__eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:7px 10px;
  border-radius:999px;
  background:#f4f7fb;
  color:var(--ew-purple);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.02em;
}
.ls-wrap .ls-card__title{
  color:var(--ew-purple);
  font-size:1.14rem;
  line-height:1.22;
  font-weight:900;
}
.ls-wrap .ls-card__text{
  color:var(--ew-text);
  font-size:.96rem;
  line-height:1.62;
}
.ls-wrap .ls-card__list{
  list-style:none;
  display:grid;
  gap:8px;
  color:var(--ew-purple);
  font-size:.92rem;
  font-weight:800;
  line-height:1.5;
}
.ls-wrap .ls-card__list li{
  position:relative;
  padding-left:16px;
}
.ls-wrap .ls-card__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--ew-orange);
  transform:translateY(-50%);
}
.ls-wrap .ls-card__footer{
  margin-top:auto;
  padding-top:4px;
}
.ls-wrap .ls-card__cta{
  width:100%;
}

/* FAQ */
.ls-wrap .ls-faq-wrap{
  max-width:1000px;
}
.ls-wrap .ls-faq{
  display:grid;
  gap:12px;
}
.ls-wrap .ls-faq-item{
  background:#fff;
  border:1px solid var(--ew-border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(16,24,40,0.05);
}
.ls-wrap .ls-faq-btn{
  width:100%;
  border:0;
  background:#fff;
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  text-align:left;
  cursor:pointer;
  font:inherit;
  font-weight:900;
  color:var(--ew-purple);
}
.ls-wrap .ls-faq-icon{
  color:var(--ew-orange);
  font-size:1.2rem;
  line-height:1;
  flex-shrink:0;
}
.ls-wrap .ls-faq-panel{
  display:none;
  padding:0 18px 16px;
}
.ls-wrap .ls-faq-panel p{
  color:var(--ew-text);
  line-height:1.7;
}
.ls-wrap .ls-faq-item.is-open .ls-faq-panel{
  display:block;
}
.ls-wrap .ls-faq-item.is-open .ls-faq-btn{
  border-bottom:1px solid #eef2f7;
}

/* FOOTER CTA */
.ls-wrap .ls-footer-cta{
  display:grid;
  grid-template-columns:1.2fr auto;
  gap:20px;
  align-items:center;
  padding:22px;
  border:1px solid #d8e6ff;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,var(--ew-soft));
  box-shadow:0 14px 34px rgba(14,134,214,0.06);
}
.ls-wrap .ls-footer-cta__text{
  display:grid;
  gap:8px;
}
.ls-wrap .ls-footer-cta__text h2{
  color:var(--ew-purple);
  font-size:clamp(1.15rem,2vw,1.5rem);
  line-height:1.2;
}
.ls-wrap .ls-footer-cta__text p{
  color:var(--ew-text);
  line-height:1.6;
}
.ls-wrap .ls-footer-cta-phone{
  color:var(--ew-blue) !important;
  font-weight:900;
}
.ls-wrap .ls-footer-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

/* RESPONSIVE */
@media (max-width:1100px){
  .ls-wrap .ls-landing-bg-ring{display:none !important;}
  .ls-wrap .ls-landing-bg-wash{-webkit-mask-image:none !important;mask-image:none !important;}
  .ls-wrap .ls-landing-img{display:none !important;}

  .ls-wrap .ls-services-grid,
  .ls-wrap .ls-sectors-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ls-wrap .ls-footer-cta{
    grid-template-columns:1fr;
  }

  .ls-wrap .ls-footer-cta__actions{
    justify-content:flex-start;
  }
}

@media (max-width:900px){
  .ls-wrap .ls-extra{
    padding:54px 0;
  }

  .ls-wrap .ls-extra-head{
    align-items:start;
    flex-direction:column;
  }

  .ls-wrap .ls-routes-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .ls-wrap .ls-route-card__top{
    padding:24px 18px 0;
  }

  .ls-wrap .ls-route-meta{
    display:grid;
    gap:12px;
  }

  .ls-wrap .ls-meta{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .ls-wrap .ls-route-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .ls-wrap .ls-route-block{
    padding:14px;
    border-radius:16px;
  }

  .ls-wrap .ls-route-footer{
    margin-top:8px;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,0.16);
  }

  .ls-wrap .ls-route-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .ls-wrap .ls-route-actions .ls-btn{
    width:100%;
    min-height:52px;
    padding:14px 16px;
    font-size:.96rem;
  }

  .ls-wrap .ls-route-image{
    height:240px;
  }

  .ls-wrap .ls-services-grid,
  .ls-wrap .ls-sectors-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px){
  .ls-wrap .ls-landing{
    min-height:auto;
    padding:64px 16px 48px;
  }

  .ls-wrap .ls-landing-bg-ring{display:none !important;}
  .ls-wrap .ls-landing-bg-wash{-webkit-mask-image:none !important;mask-image:none !important;}

  .ls-wrap .ls-container{
    width:min(1200px,calc(100% - 24px));
  }

  .ls-wrap .ls-meta{
    grid-template-columns:1fr;
  }

  .ls-wrap .ls-route-actions{
    grid-template-columns:1fr;
  }

  .ls-wrap .ls-services-grid,
  .ls-wrap .ls-sectors-grid{
    grid-template-columns:1fr;
  }

  .ls-wrap .ls-footer-cta__actions .ls-btn{
    width:100%;
  }

  .ls-wrap .ls-card{
    border-radius:18px;
  }

  .ls-wrap .ls-card__body{
    padding:16px;
  }
}


















/* sub-diensten ↑ --

-- kabelmanagment ↓ */






























.pluh-page {
  --pluh-bg: #ffffff;
  --pluh-surface: #ffffff;
  --pluh-surface-soft: #f6f8ff;

  --pluh-text: #28146a;
  --pluh-text-soft: #5f5a7d;

  --pluh-line: #d8def3;

  --pluh-primary: #28146a;
  --pluh-primary-dark: #28146a;
  --pluh-primary-soft: rgba(40, 20, 106, 0.08);

  --pluh-accent: #e67800;
  --pluh-link: #0d86d6;

  --pluh-radius-xl: 6px;
  --pluh-radius-lg: 6px;
  --pluh-radius-md: 6px;
  --pluh-radius-sm: 6px;

  --pluh-max: 1240px;

  --pluh-faq-bg-image: url("fallback.jpg");
  --pluh-hero-bg-image: url("fallback.jpg");

  --pluh-choice-image-1: url("fallback.jpg");
  --pluh-choice-image-2: url("fallback.jpg");
  --pluh-choice-image-3: url("fallback.jpg");
  --pluh-choice-image-4: url("fallback.jpg");

  --pluh-route-image-1: url("fallback.jpg");
  --pluh-route-image-2: url("fallback.jpg");
  --pluh-route-image-3: url("fallback.jpg");

  --pluh-split-image: url("fallback.jpg");

  --pluh-service-image-1: url("fallback.jpg");
  --pluh-service-image-2: url("fallback.jpg");
  --pluh-service-image-3: url("fallback.jpg");
  --pluh-service-image-4: url("fallback.jpg");
  --pluh-service-image-5: url("fallback.jpg");
  --pluh-service-image-6: url("fallback.jpg");

  --pluh-mix-image-1: url("fallback.jpg");
  --pluh-mix-image-2: url("fallback.jpg");
  --pluh-mix-image-3: url("fallback.jpg");

  --pluh-topbar-height: 56px;
  --pluh-visible-page-height: 100svh;
  --pluh-first-screen-safe-gap: 18px;

  min-height: 100vh;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  background: #fff;
  color: var(--pluh-text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.pluh-page > .pluh-hero,
.pluh-page > .pluh-topbar,
.pluh-page > .pluh-section,
.pluh-page > .pluh-footer-cta {
  margin-top: 0 !important;
}

.pluh-page,
.pluh-page *::before,
.pluh-page *::after {
  box-sizing: border-box;
}

.pluh-page *,
.pluh-page *::before,
.pluh-page *::after {
  box-shadow: none !important;
}

.pluh-page img {
  max-width: 100%;
  display: block;
}

.pluh-page a {
  color: inherit;
  text-decoration: none;
}

.pluh-page button {
  font: inherit;
}

.pluh-shell {
  width: min(calc(100% - 32px), var(--pluh-max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@keyframes pluhShine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(180%) skewX(-18deg); }
}

@keyframes pluhPulseRing {
  0% { transform: scale(1); opacity: 0.35; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes pluhLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.pluh-animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  transition-delay: var(--pluh-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.pluh-animate-on-scroll.pluh-animate-left {
  transform: translateX(-48px);
}

.pluh-animate-on-scroll.pluh-animate-right {
  transform: translateX(48px);
}

.pluh-animate-on-scroll.pluh-animate-scale {
  transform: translateY(36px) scale(0.96);
}

.pluh-animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
}

/* TOPBAR */
.pluh-topbar {
  background: #f3faff;
  color: #0d86d6;
  margin: 0;
  position: relative;
  z-index: 5;
}

.pluh-topbar-row {
  min-height: var(--pluh-topbar-height);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
  padding: 8px 14px;
}

.pluh-topbar-item {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pluh-topbar-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* HERO */
.pluh-hero {
  padding: 0;
  background-color: #fff;
  background-image: var(--pluh-hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.pluh-hero .pluh-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  z-index: 2;
}

.pluh-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin: 0;
}

.pluh-hero-copy,
.pluh-calculator-card,
.pluh-footer-card,
.pluh-value-display,
.pluh-faq-item,
.pluh-logo-item,
.pluh-project-card,
.pluh-process-intro,
.pluh-process-highlight,
.pluh-process-card,
.pluh-service-card,
.pluh-stat-card,
.pluh-region-map-card,
.pluh-mix-card,
.pluh-city-item {
  background: var(--pluh-surface);
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.pluh-calculator-card:hover,
.pluh-footer-card:hover,
.pluh-value-display:hover,
.pluh-faq-item:hover,
.pluh-logo-item:hover,
.pluh-project-card:hover,
.pluh-process-card:hover,
.pluh-process-intro:hover,
.pluh-process-highlight:hover,
.pluh-service-card:hover,
.pluh-stat-card:hover,
.pluh-region-map-card:hover,
.pluh-mix-card:hover,
.pluh-city-item:hover {
  transform: translateY(-4px);
}

.pluh-hero-copy:hover {
  transform: none !important;
}

.pluh-hero-copy {
  border-radius: 0;
  padding: 32px 150px 32px 32px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 77% 0, 100% 100%, 0 100%);
  min-height: 100%;
  z-index: 2;
  background-color: rgba(13, 134, 214, 0.84);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pluh-hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}

.pluh-section-kicker,
.pluh-overlay-badge,
.pluh-value-label,
.pluh-eyebrow,
.pluh-service-badge,
.pluh-project-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 2rem;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 14px;
}

.pluh-section-kicker,
.pluh-value-label,
.pluh-service-badge,
.pluh-project-kicker {
  background: var(--pluh-primary-soft);
  color: var(--pluh-primary-dark);
}

.pluh-section-kicker-light {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.pluh-eyebrow {
  /*background: #0d86d6;*/
  color: #fff;
}

.pluh-title,
.pluh-subtitle,
.pluh-bullets,
.pluh-mini-trust,
.pluh-hero-actions,
.pluh-hero-note,
.pluh-hero-promise {
  position: relative;
  z-index: 2;
}

.pluh-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 14px;
  max-width: 620px;
  color: #ffffff;
}

.pluh-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 0 18px;
  font-weight: 500;
}

.pluh-hero-promise {
  margin-bottom: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.96);
  border-left: 4px solid var(--pluh-accent);
  color: var(--pluh-text);
  border-radius: var(--pluh-radius-md);
  max-width: 620px;
}

.pluh-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  width: 90%;
}

.pluh-bullets li {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--pluh-radius-md);
  padding: 13px 16px 13px 42px;
  font-weight: 600;
  font-size: 14px;
  color: var(--pluh-text);
}

.pluh-bullets li::before,
.pluh-check-list li::before,
.pluh-service-body li::before {
  content: "•";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-52%);
  color: var(--pluh-accent);
  font-size: 24px;
  line-height: 1;
}

.pluh-mini-trust {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.55;
}

.pluh-mini-trust p {
  margin: 0;
}

.pluh-hero-actions,
.pluh-footer-actions,
.pluh-value-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.pluh-btn {
  border: 0;
  border-radius: 2rem;
  padding: 15px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pluh-btn:hover {
  transform: translateY(-2px);
}

.pluh-btn-primary,
.pluh-btn-primary:visited,
.pluh-btn-primary:active,
.pluh-btn-primary:focus {
  background: var(--pluh-accent);
  color: #fff !important;
  overflow: hidden;
}

.pluh-btn-primary::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(230, 120, 0, 0.35);
  border-radius: 2rem;
  pointer-events: none;
  animation: pluhPulseRing 2.8s ease-out infinite;
}

.pluh-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 80%);
  pointer-events: none;
  animation: pluhShine 3.8s linear infinite;
}

.pluh-btn-primary:hover,
.pluh-btn-primary:hover:visited,
.pluh-btn-primary:hover:active,
.pluh-btn-primary:hover:focus {
  background: #cc6900;
  color: #fff !important;
}

.pluh-btn-secondary,
.pluh-btn-secondary:visited,
.pluh-btn-secondary:active,
.pluh-btn-secondary:focus {
  background: transparent;
  color: var(--pluh-primary-dark) !important;
  border: 1px solid var(--pluh-line);
}

.pluh-btn-secondary:hover,
.pluh-btn-secondary:hover:visited,
.pluh-btn-secondary:hover:active,
.pluh-btn-secondary:hover:focus {
  background: #f7f8fe;
  color: var(--pluh-primary-dark) !important;
}

.pluh-btn-link,
.pluh-btn-link:visited,
.pluh-btn-link:active,
.pluh-btn-link:focus {
  color: #fff !important;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pluh-btn-link:hover,
.pluh-btn-link:hover:visited,
.pluh-btn-link:hover:active,
.pluh-btn-link:hover:focus {
  color: #ffe0bf !important;
  transform: translateY(-1px);
}

.pluh-hero-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
}

/* HERO RIGHT */
.pluh-calculator-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 3;
  margin: 20px 0;
  padding: 0 36px;
  width: 100%;
}

.pluh-calculator-card {
  position: relative;
  border-radius: var(--pluh-radius-xl);
  overflow: hidden;
  min-height: 470px;
  background: linear-gradient(180deg, rgba(246,248,255,0.92) 0%, rgba(255,255,255,0.95) 100%);
  margin-top: 20px;
  border: none;
}

.pluh-showcase-card {
  min-height: 470px;
}

.pluh-showcase-visual {
  position: relative;
  min-height: 470px;
  height: 100%;
  background: rgba(13,134,214,0.86);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.35s ease;
}

.pluh-showcase-overlay {
  min-height: 470px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.pluh-showcase-overlay h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 700;
}

.pluh-showcase-overlay p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
}

.pluh-overlay-badge {
  background: rgba(230,120,0,0.18);
  color: #fff3e7;
  margin-bottom: 18px;
}

.pluh-overlay-list {
  margin: 22px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  line-height: 1.65;
  font-size: 16px;
  font-weight: 600;
}

.pluh-overlay-cta {
  margin-top: 24px;
  align-self: flex-start;
}

.pluh-hero-stats .pluh-stat-card {
  opacity: 0;
  transform: translateX(48px);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  transition-delay: var(--pluh-reveal-delay, 0ms);
}

.pluh-hero-stats .pluh-stat-card.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.pluh-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pluh-stat-card {
  border-radius: var(--pluh-radius-lg);
  padding: 18px 16px;
  background: #fff;
}

.pluh-stat-number {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--pluh-text);
}

.pluh-stat-label {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--pluh-text-soft);
}

.pluh-disclaimer {
  margin: 0 0 30px;
  font-size: 13px;
  line-height: 1.7;
  background-color: #f3faff;
  border: dashed #0d86d6 2px;
  border-radius: var(--pluh-radius-sm);
  padding: 15px 10px;
  color: #0d86d6;
}

/* SECTIONS */
.pluh-section {
  padding: 46px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pluh-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.pluh-section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.pluh-section-head p {
  margin: 0;
  color: var(--pluh-text-soft);
  line-height: 1.75;
}

.pluh-section-soft:not(#faq) {
  position: relative;
  overflow: hidden;
  margin-top: 13px;
  background: #f6f8ff;
}

/* VALUE BLOCK */
.pluh-value-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.pluh-value-list {
  display: grid;
  gap: 14px;
}

.pluh-value-item {
  width: 100%;
  text-align: left;
  border: 1px solid var(--pluh-line);
  border-radius: var(--pluh-radius-md);
  background: var(--pluh-surface);
  padding: 20px 22px;
  font-size: 18px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-family: "Montserrat", sans-serif !important;
  line-height: 1.45;
  letter-spacing: 0 !important;
  color: var(--pluh-text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease,
    color 0.24s ease;
}

.pluh-value-item:hover,
.pluh-value-item.is-active {
  background: var(--pluh-accent);
  border-color: var(--pluh-accent);
  color: #fff;
  transform: translateY(-3px);
}

.pluh-value-display {
  border-radius: var(--pluh-radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-rows: 360px auto;
  min-height: 0;
}

.pluh-value-media {
  display: block;
  background:
    linear-gradient(135deg, rgba(40, 20, 106, 0.18), rgba(13, 134, 214, 0.14)),
    radial-gradient(circle at top right, rgba(230,120,0,0.18), rgba(230,120,0,0) 48%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  transition: transform 0.45s ease, background-image 0.35s ease;
}

.pluh-value-display:hover .pluh-value-media {
  transform: scale(1.03);
}

.pluh-value-content {
  padding: 28px 30px 32px;
}

.pluh-value-label {
  margin-bottom: 14px;
}

.pluh-value-content h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.pluh-value-content p {
  margin: 0;
  color: var(--pluh-text-soft);
  line-height: 1.85;
  font-size: 16px;
}

.pluh-value-display,
.pluh-value-media,
.pluh-value-label,
.pluh-value-content h3,
.pluh-value-content p,
.pluh-value-cta-row,
.pluh-showcase-overlay h3,
.pluh-showcase-overlay p,
.pluh-showcase-overlay .pluh-overlay-list,
.pluh-showcase-overlay .pluh-overlay-cta,
.pluh-showcase-overlay .pluh-overlay-badge {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background-image 0.35s ease;
}

.pluh-value-display.is-switching .pluh-value-media,
.pluh-value-display.is-switching .pluh-value-label,
.pluh-value-display.is-switching .pluh-value-content h3,
.pluh-value-display.is-switching .pluh-value-content p,
.pluh-value-display.is-switching .pluh-value-cta-row,
.pluh-showcase-visual.is-switching .pluh-overlay-badge,
.pluh-showcase-visual.is-switching .pluh-showcase-overlay h3,
.pluh-showcase-visual.is-switching .pluh-showcase-overlay p,
.pluh-showcase-visual.is-switching .pluh-showcase-overlay .pluh-overlay-list,
.pluh-showcase-visual.is-switching .pluh-showcase-overlay .pluh-overlay-cta {
  opacity: 0;
  transform: translateY(10px);
}

/* ROUTES */
.pluh-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pluh-project-card {
  overflow: hidden;
  border-radius: var(--pluh-radius-xl);
}

.pluh-project-image {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.pluh-project-grid .pluh-project-card:nth-child(1) .pluh-project-image {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.22), rgba(40,20,106,0.16)),
    var(--pluh-route-image-1);
}

.pluh-project-grid .pluh-project-card:nth-child(2) .pluh-project-image {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.22), rgba(40,20,106,0.16)),
    var(--pluh-route-image-2);
}

.pluh-project-grid .pluh-project-card:nth-child(3) .pluh-project-image {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.22), rgba(40,20,106,0.16)),
    var(--pluh-route-image-3);
}

.pluh-project-content {
  padding: 24px;
}

.pluh-project-content h3 {
  margin: 14px 0 10px;
  font-weight: 700;
}

.pluh-project-content p {
  margin: 0;
  line-height: 1.75;
  color: var(--pluh-text-soft);
}

/* SPLIT */
.pluh-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pluh-split-image {
  min-height: 460px;
  border-radius: var(--pluh-radius-xl);
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.10)),
    var(--pluh-split-image);
  background-size: cover;
  background-position: center;
}

.pluh-split-copy h3 {
  margin: 14px 0 12px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
}

.pluh-check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pluh-check-list li {
  position: relative;
  padding-left: 42px;
  line-height: 1.7;
  color: var(--pluh-text);
}

.pluh-check-list-light li {
  color: rgba(255,255,255,0.92);
}

.pluh-check-list-light li::before {
  color: #fff;
}

/* SERVICES */
.pluh-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pluh-service-card {
  border-radius: var(--pluh-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pluh-service-media {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.pluh-service-card:nth-child(1) .pluh-service-media {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-service-image-1);
}

.pluh-service-card:nth-child(2) .pluh-service-media {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-service-image-2);
}

.pluh-service-card:nth-child(3) .pluh-service-media {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-service-image-3);
}

.pluh-service-card:nth-child(4) .pluh-service-media {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-service-image-4);
}

.pluh-service-card:nth-child(5) .pluh-service-media {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-service-image-5);
}

.pluh-service-card:nth-child(6) .pluh-service-media {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-service-image-6);
}

.pluh-service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pluh-service-body h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.pluh-service-body p {
  margin: 0 0 16px;
  line-height: 1.78;
  color: var(--pluh-text-soft);
  font-size: 15px;
}

.pluh-service-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.pluh-service-body li {
  position: relative;
  padding-left: 42px;
  line-height: 1.65;
  color: var(--pluh-text);
}

.pluh-text-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--pluh-link);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pluh-text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.pluh-text-link:hover::after {
  transform: translateX(3px);
}

/* MIX */
.pluh-mix-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}

.pluh-mix-card {
  border-radius: var(--pluh-radius-xl);
  padding: 28px;
}

.pluh-mix-card-dark {
  background: #28146a;
  color: #fff;
  border: none;
}

.pluh-mix-card-dark h2 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 700;
}

.pluh-mix-card-dark p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

.pluh-mix-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.pluh-mix-side {
  display: grid;
  gap: 14px;
}

.pluh-mix-image {
  border-radius: var(--pluh-radius-xl);
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

.pluh-mix-image-large {
  min-height: 100%;
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-mix-image-1);
}

.pluh-mix-side .pluh-mix-image:nth-child(1) {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-mix-image-2);
}

.pluh-mix-side .pluh-mix-image:nth-child(2) {
  background-image:
    linear-gradient(135deg, rgba(13,134,214,0.18), rgba(40,20,106,0.12)),
    var(--pluh-mix-image-3);
}

/* CLIENTS */
.pluh-clients-section {
  background: #f6f8ff;
}

.pluh-clients-section .pluh-logo-slider {
  background: #f2f6ff;
  border-radius: var(--pluh-radius-xl);
  padding: 18px 0;
}

.pluh-logo-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--pluh-radius-xl);
}

.pluh-logo-slider::before,
.pluh-logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.pluh-clients-section .pluh-logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #eef3ff 0%, rgba(238, 243, 255, 0) 100%);
}

.pluh-clients-section .pluh-logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #eef3ff 0%, rgba(238, 243, 255, 0) 100%);
}

.pluh-logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: pluhLogoScroll 26s linear infinite;
}

.pluh-logo-slider:hover .pluh-logo-track {
  animation-play-state: paused;
}

.pluh-logo-item {
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 110px;
  padding: 20px 24px;
  border-radius: var(--pluh-radius-md);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--pluh-text-soft);
  background: #fff;
  border: 1px solid rgba(40, 20, 106, 0.08);
}

/* PROCESS */
.pluh-process-section {
  background: #f6f8ff;
}

.pluh-process-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.pluh-process-intro,
.pluh-process-highlight {
  border-radius: var(--pluh-radius-xl);
  padding: 28px;
}

.pluh-process-intro h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.pluh-process-intro p,
.pluh-process-highlight p {
  margin: 0;
  color: var(--pluh-text-soft);
  line-height: 1.8;
}

.pluh-process-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.pluh-process-highlight h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
  color: var(--pluh-text);
  font-weight: 700;
}

.pluh-process-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pluh-process-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--pluh-primary-soft);
  color: var(--pluh-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.pluh-process-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.pluh-process-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(13,134,214,0.24) 0%,
    rgba(40,20,106,0.16) 100%
  );
}

.pluh-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.pluh-process-marker {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #0d86d6;
  color: #0d86d6;
  font-size: 20px;
  font-weight: 800;
}

.pluh-process-card {
  border-radius: var(--pluh-radius-xl);
  padding: 24px 24px 22px;
}

.pluh-process-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.18;
  color: var(--pluh-text);
  font-weight: 700;
}

.pluh-process-card p {
  margin: 0 0 8px;
  color: var(--pluh-text-soft);
  line-height: 1.8;
  font-size: 15px;
}

.pluh-process-card p:last-child {
  margin-bottom: 0;
}

/* REGION */
.pluh-region-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.pluh-region-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 700;
}

.pluh-city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.pluh-city-item {
  padding: 16px 18px;
  border-radius: var(--pluh-radius-md);
  background: #fff;
  border: 1px solid var(--pluh-line);
  color: var(--pluh-text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.pluh-city-item:hover,
.pluh-city-item.is-preview {
  background: var(--pluh-accent);
  border-color: var(--pluh-accent);
  color: #fff;
  transform: translateY(-2px);
}

.pluh-region-map-card {
  border-radius: var(--pluh-radius-xl);
  padding: 16px;
}

.pluh-region-map {
  position: relative;
  min-height: 460px;
  border-radius: var(--pluh-radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(13, 134, 214, 0.12), rgba(13, 134, 214, 0) 35%),
    linear-gradient(180deg, rgba(13, 134, 214, 0.10) 0%, rgba(13, 134, 214, 0.04) 100%);
}

.pluh-map-shape {
  position: absolute;
  inset: 8% 18% 10% 18%;
  border-radius: 46% 54% 38% 62% / 34% 40% 60% 66%;
  background: linear-gradient(135deg, rgba(40, 20, 106, 0.05), rgba(40, 20, 106, 0.11));
  border: 1px solid rgba(40, 20, 106, 0.08);
}

.pluh-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--pluh-accent);
  cursor: pointer;
  appearance: none;
  color: transparent;
  font-size: 0;
  box-shadow:
    0 0 0 1px rgba(40, 20, 106, 0.08),
    0 8px 18px rgba(40, 20, 106, 0.12);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  z-index: 2;
}

.pluh-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(230, 120, 0, 0.12);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.pluh-pin::before {
  content: attr(data-city);
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(221, 228, 238, 0.9);
  font-size: 12px;
  font-weight: 800;
  color: var(--pluh-text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(40, 20, 106, 0.08);
  line-height: 1;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.pluh-pin[data-city="Den Haag"]::before {
  left: auto;
  right: calc(100% + 14px);
}

.pluh-pin.is-preview {
  background: var(--pluh-accent);
}

.pluh-pin.is-preview {
  transform: translate(-50%, -50%) scale(1.12);
  z-index: 3;
}

.pluh-pin.is-preview::after {
  opacity: 1;
  transform: scale(1);
}

.pluh-pin.is-preview::before {
  opacity: 1;
  visibility: visible;
}

/* FAQ */
#faq {
  background: linear-gradient(135deg, rgba(13,134,214,0.94) 0%, rgba(40,20,106,0.88) 100%);
}

#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pluh-faq-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transform: scale(1.05);
}

#faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(255,255,255,0.14), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, rgba(13,134,214,0.12), rgba(40,20,106,0.18));
}

#faq .pluh-section-head h2,
#faq .pluh-section-head p,
#faq .pluh-section-kicker {
  color: #fff;
}

#faq .pluh-section-kicker {
  background: rgba(255,255,255,0.12);
}

.pluh-faq {
  display: grid;
  gap: 14px;
}

.pluh-faq-item {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--pluh-radius-md);
  overflow: hidden;
  backdrop-filter: blur(7px);
}

.pluh-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700 !important;
  font-style: normal !important;
  font-family: "Montserrat", sans-serif !important;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--pluh-text);
  transition: background 0.22s ease, color 0.22s ease;
}

.pluh-faq-question span {
  font-weight: 700 !important;
  font-style: normal !important;
}

.pluh-faq-question:hover {
  background: rgba(13,134,214,0.05);
}

.pluh-faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pluh-primary-soft);
  color: var(--pluh-primary-dark);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pluh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.pluh-faq-answer p {
  margin: 0;
  padding: 10px 20px;
  color: black;
  font-size: 16px;
  font-weight: bold;
  
  line-height: 1.75;
}

.pluh-faq-item.is-open .pluh-faq-icon {
  background: #28146a;
  color: #fff;
  transform: rotate(180deg);
}

/* FOOTER CTA */
.pluh-footer-cta {
  padding: 18px 0 64px;
  background: #ffffff;
}

.pluh-footer-card {
  border-radius: var(--pluh-radius-xl);
  padding: 36px 34px;
  text-align: center;
}

.pluh-footer-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
  color: var(--pluh-text);
  font-weight: 700;
}

.pluh-footer-card p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--pluh-text-soft);
  line-height: 1.8;
  font-size: 16px;
}

.pluh-footer-actions {
  justify-content: center;
}

.pluh-footer-phone {
  margin-top: 18px !important;
}

.pluh-footer-phone a {
  font-weight: 700;
  color: var(--pluh-link);
}

/* TABLET / MID */
@media (max-width: 1100px) {
  .pluh-hero {
    min-height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    height: auto;
    max-height: none;
  }

  .pluh-hero-grid,
  .pluh-value-grid,
  .pluh-project-grid,
  .pluh-process-top,
  .pluh-service-grid,
  .pluh-split-grid,
  .pluh-mix-grid,
  .pluh-region-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pluh-mix-images {
    grid-template-columns: 1fr;
  }

  .pluh-mix-image-large {
    min-height: 340px;
  }

  .pluh-hero .pluh-shell {
    width: min(calc(100% - 32px), var(--pluh-max));
    max-width: var(--pluh-max);
    margin: 0 auto;
    height: auto;
  }

  .pluh-hero-copy {
    clip-path: none;
    border-radius: var(--pluh-radius-xl);
    padding: 28px 22px;
    min-height: auto;
  }

  .pluh-calculator-wrap {
    margin: 0;
    padding: 0;
    gap: 10px;
    height: auto;
  }

  .pluh-calculator-card,
  .pluh-showcase-card,
  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    min-height: 0;
    height: auto;
    margin-top: 0;
  }

  .pluh-showcase-card {
    border-radius: 1.2rem;
  }

  .pluh-showcase-overlay {
    min-height: 0;
    padding: 18px 16px;
  }

  .pluh-disclaimer {
    margin: 12px 0 0;
  }

  .pluh-logo-slider::before,
  .pluh-logo-slider::after {
    width: 40px;
  }

  .pluh-process-intro,
  .pluh-process-highlight,
  .pluh-mix-card {
    padding: 22px;
  }
}

/* MOBILE */
@media (max-width: 760px) {
  .pluh-shell {
    width: min(calc(100% - 16px), var(--pluh-max));
  }

  .pluh-topbar .pluh-shell {
    width: min(calc(100% - 12px), var(--pluh-max));
  }

  .pluh-topbar-row {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 6px 0;
  }

  .pluh-topbar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 3px;
    border: 1px solid rgba(13, 134, 214, 0.12);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.88);
    white-space: normal;
    text-align: center;
    line-height: 1.02;
    font-size: 9px;
  }

  .pluh-hero {
    min-height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    padding: 0;
  }

  .pluh-hero-grid {
    gap: 0;
    min-height: 100%;
  }

  .pluh-hero-copy {
    width: 100%;
    border-radius: 0;
    padding: 16px 14px 14px;
  }

  .pluh-eyebrow {
    padding: 7px 9px;
    font-size: 9.5px;
  }

  .pluh-title {
    font-size: 24px;
    line-height: 1.04;
    margin: 8px 0 6px;
  }

  .pluh-subtitle {
    font-size: 12.5px;
    line-height: 1.34;
    margin: 0 0 8px;
  }

  .pluh-hero-promise {
    margin-bottom: 8px;
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.26;
  }

  .pluh-bullets {
    width: 100%;
    gap: 5px;
  }

  .pluh-bullets li {
    padding: 7px 9px 7px 27px;
    font-size: 11px;
    line-height: 1.2;
    border-radius: 0.75rem;
  }

  .pluh-bullets li::before {
    left: 10px;
    font-size: 15px;
  }

  .pluh-mini-trust {
    margin-top: 8px;
    gap: 3px;
    font-size: 11px;
    line-height: 1.2;
  }

  .pluh-hero-actions {
    margin-top: 10px;
    gap: 6px;
  }

  .pluh-hero-actions .pluh-btn {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    padding: 9px 12px;
    font-size: 11.5px;
  }

  .pluh-hero-actions .pluh-btn-link {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    font-size: 11px;
  }

  .pluh-hero-note {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.22;
  }

  .pluh-calculator-wrap {
    gap: 6px;
    padding: 6px 6px 0;
  }

  .pluh-showcase-card {
    height: auto;
    border-radius: 0.9rem;
  }

  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    min-height: 0;
    height: auto;
  }

  .pluh-showcase-overlay {
    padding: 12px 10px;
  }

  .pluh-showcase-overlay h3 {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.06;
  }

  .pluh-showcase-overlay p {
    font-size: 11.5px;
    line-height: 1.28;
  }

  .pluh-overlay-badge {
    margin-bottom: 8px;
    padding: 7px 9px;
    font-size: 9.5px;
  }

  .pluh-overlay-list {
    margin-top: 7px;
    gap: 3px;
    font-size: 10.5px;
    line-height: 1.2;
  }

  .pluh-overlay-cta {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    min-height: 38px;
    font-size: 11px;
  }

  .pluh-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .pluh-stat-card {
    padding: 6px 5px;
    border-radius: 0.7rem;
    min-height: 0;
  }

  .pluh-stat-number {
    font-size: 11px;
    margin-bottom: 1px;
    line-height: 1.05;
  }

  .pluh-stat-label {
    font-size: 8.5px;
    line-height: 1.05;
  }

  .pluh-disclaimer {
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border: 0;
    border-radius: 0;
    padding: 7px 14px;
    font-size: 9.5px;
    line-height: 1.18;
  }

  .pluh-section {
    padding: 22px 0;
  }

  .pluh-section-head {
    margin-bottom: 12px;
  }

  .pluh-section-head h2 {
    font-size: 24px;
    line-height: 1.06;
    margin: 7px 0 5px;
  }

  .pluh-section-head p {
    line-height: 1.38;
    font-size: 13px;
  }

  .pluh-value-grid {
    gap: 8px;
  }

  .pluh-value-list {
    gap: 6px;
  }

  .pluh-value-item {
    padding: 10px 12px;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-family: "Montserrat", sans-serif !important;
    line-height: 1.18;
    border-radius: 0.8rem;
  }

  .pluh-value-display {
    grid-template-rows: 96px auto;
    border-radius: 0.95rem;
  }

  .pluh-value-media {
    min-height: 96px;
  }

  .pluh-value-content {
    padding: 12px 12px 12px;
  }

  .pluh-value-label {
    margin-bottom: 6px;
    padding: 7px 9px;
    font-size: 9.5px;
  }

  .pluh-value-content h3 {
    margin: 0 0 5px;
    font-size: 17px;
    line-height: 1.08;
  }

  .pluh-value-content p {
    font-size: 11.8px;
    line-height: 1.28;
  }

  .pluh-value-cta-row {
    margin-top: 8px;
  }

  .pluh-value-cta-row .pluh-btn {
    width: 100%;
    justify-content: center;
    min-height: 38px;
    font-size: 11px;
  }

  .pluh-project-grid,
  .pluh-service-grid,
  .pluh-split-grid,
  .pluh-mix-grid,
  .pluh-region-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pluh-project-image,
  .pluh-service-media,
  .pluh-split-image {
    min-height: 140px;
  }

  .pluh-project-content,
  .pluh-service-body {
    padding: 14px 12px;
  }

  .pluh-service-body h3 {
    font-size: 20px;
  }

  .pluh-service-body p,
  .pluh-project-content p {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .pluh-service-body li,
  .pluh-check-list li {
    padding-left: 28px;
    font-size: 12px;
    line-height: 1.3;
  }

  .pluh-service-body li::before,
  .pluh-check-list li::before {
    left: 10px;
    font-size: 16px;
  }

  .pluh-clients-section .pluh-logo-slider {
    padding: 10px 0;
    border-radius: 1rem;
  }

  .pluh-logo-track {
    gap: 8px;
  }

  .pluh-logo-item {
    min-width: 120px;
    min-height: 58px;
    padding: 10px 8px;
    font-size: 11px;
    border-radius: 0.7rem;
  }

  .pluh-process-top {
    gap: 6px;
  }

  .pluh-process-intro,
  .pluh-process-highlight {
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 14px 14px;
  }

  .pluh-process-intro h2 {
    font-size: 24px;
    margin: 7px 0 5px;
  }

  .pluh-process-highlight h3 {
    font-size: 18px;
  }

  .pluh-process-pills {
    gap: 6px;
    margin-top: 10px;
  }

  .pluh-process-pill {
    padding: 7px 8px;
    font-size: 10px;
  }

  .pluh-process-step {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }

  .pluh-process-marker {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .pluh-process-timeline::before {
    left: 16px;
  }

  .pluh-process-card {
    padding: 12px 10px;
  }

  .pluh-process-card h3 {
    font-size: 15px;
    margin: 0 0 5px;
  }

  .pluh-process-card p {
    font-size: 11.8px;
    line-height: 1.34;
  }

  .pluh-mix-card {
    padding: 16px 14px;
  }

  .pluh-mix-card-dark h2 {
    font-size: 24px;
    margin: 7px 0 5px;
  }

  .pluh-mix-card-dark p {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .pluh-mix-image-large,
  .pluh-mix-image {
    min-height: 140px;
  }

  .pluh-city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .pluh-city-item {
    padding: 10px 10px;
    font-size: 12px;
    border-radius: 0.8rem;
  }

  .pluh-region-map {
    min-height: 300px;
  }

  .pluh-pin::before {
    font-size: 11px;
    padding: 7px 10px;
    left: calc(100% + 10px);
  }

  .pluh-pin[data-city="Den Haag"]::before {
    right: calc(100% + 10px);
  }

  .pluh-faq {
    gap: 6px;
  }

  .pluh-faq-item {
    border-radius: 0.8rem;
  }

  .pluh-faq-question {
    padding: 12px 12px;
    font-size: 12.5px;
    line-height: 1.2;
  }

  .pluh-faq-answer p {
    padding: 0 12px 12px;
    font-size: 11.8px;
    line-height: 1.34;
  }

  .pluh-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .pluh-footer-card {
    padding: 18px 14px;
  }

  .pluh-footer-card h2 {
    font-size: 24px;
    margin: 7px 0 5px;
  }

  .pluh-footer-card p {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .pluh-footer-actions {
    gap: 6px;
  }

  .pluh-footer-actions .pluh-btn {
    width: 100%;
    justify-content: center;
    min-height: 38px;
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .pluh-topbar-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
  }

  .pluh-topbar-item {
    min-height: 28px;
    font-size: 8.5px;
    padding: 4px 2px;
    border-radius: 0;
  }

  .pluh-title {
    font-size: 22px;
  }

  .pluh-showcase-overlay h3 {
    font-size: 16px;
  }

  .pluh-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pluh-stat-card {
    padding: 5px 4px;
  }

  .pluh-stat-number {
    font-size: 10px;
  }

  .pluh-stat-label {
    font-size: 8px;
  }

  .pluh-value-display {
    grid-template-rows: 88px auto;
  }

  .pluh-value-media {
    min-height: 88px;
  }

  .pluh-value-item {
    padding: 9px 10px;
    font-size: 12px !important;
  }

  .pluh-logo-item {
    min-width: 108px;
    min-height: 54px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pluh-page *,
  .pluh-page *::before,
  .pluh-page *::after {
    animation: none !important;
    transition: none !important;
  }

  .pluh-animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (min-width: 1101px) {
  .pluh-topbar {
    position: relative;
    z-index: 5;
  }


.pluh-hero {
    height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    min-height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    max-height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    display: flex;
    align-items: stretch;
  }

  .pluh-hero .pluh-shell {
    height: 100%;
    min-height: 0;
  }

  .pluh-hero-grid {
    width: 100%;
    max-width: 1800px;
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    align-items: stretch;
    gap: 0;
  }

  .pluh-topbar-row {
    min-height: 52px;
    gap: 20px;
    padding: 8px 14px;
  }

  .pluh-topbar-item {
    font-size: 12px;
  }

  .pluh-hero-copy {
    padding: 24px 82px 24px 28px;
    min-height: 100%;
    min-width: 0;
    justify-content: center;
    gap: 6px;
  }

  .pluh-eyebrow {
    padding: 8px 12px;
    font-size: 10.5px;
  }

  .pluh-title {
    font-size: clamp(27px, 2.25vw, 38px);
    line-height: 1.04;
    margin: 8px 0 9px;
    max-width: 500px;
  }

  .pluh-subtitle {
    margin: 0 0 10px;
    max-width: 500px;
    font-size: 13px;
    line-height: 1.42;
  }

  .pluh-hero-promise {
    margin-bottom: 10px;
    padding: 9px 11px;
    max-width: 500px;
    font-size: 12px;
    line-height: 1.34;
  }

  .pluh-bullets {
    gap: 6px;
    width: 84%;
  }

  .pluh-bullets li {
    padding: 8px 11px 8px 32px;
    font-size: 11.8px;
    line-height: 1.24;
  }

  .pluh-bullets li::before {
    left: 12px;
    font-size: 17px;
  }

  .pluh-mini-trust {
    margin-top: 8px;
    gap: 4px;
    font-size: 11px;
    line-height: 1.28;
  }

  .pluh-hero-actions {
    margin-top: 10px;
    gap: 10px;
  }

  .pluh-hero-actions .pluh-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .pluh-hero-actions .pluh-btn-link {
    font-size: 12px;
  }

  .pluh-hero-note {
    margin-top: 6px;
    font-size: 10.5px;
    line-height: 1.28;
    max-width: 500px;
  }

  .pluh-calculator-wrap {
    height: 100%;
    min-height: 0;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
    gap: 8px;
    justify-content: center;
  }

  .pluh-calculator-card,
  .pluh-showcase-card,
  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    margin-top: 0;
    min-height: 0;
  }

  .pluh-showcase-card {
    height: clamp(350px, 54vh, 610px);
  }

  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    height: 100%;
    min-height: 0;
  }

  .pluh-showcase-overlay {
    padding: 12px 14px;
    justify-content: center;
    gap: 6px;
  }

  .pluh-showcase-overlay h3 {
    margin: 0 0 6px;
    font-size: clamp(21px, 1.9vw, 31px);
    line-height: 1.08;
  }

  .pluh-showcase-overlay p {
    font-size: 12.9px;
    line-height: 1.38;
    max-width: 100%;
  }

  .pluh-overlay-badge {
    margin-bottom: 6px;
  }

  .pluh-overlay-list {
    margin-top: 6px;
    padding-left: 16px;
    gap: 5px;
    font-size: 11.8px;
    line-height: 1.26;
  }

  .pluh-overlay-cta {
    margin-top: 6px;
  }

  .pluh-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .pluh-stat-card {
    padding: 10px 10px;
  }

  .pluh-stat-number {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .pluh-stat-label {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .pluh-disclaimer {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    padding: 10px 12px;
  }
}

@media (min-width: 1101px) and (max-height: 860px) {
  .pluh-topbar-row {
    min-height: 48px;
    gap: 16px;
    padding: 7px 12px;
  }

  .pluh-topbar-item {
    font-size: 11.5px;
  }

  .pluh-hero-copy {
    padding: 20px 68px 20px 24px;
    justify-content: center;
    gap: 5px;
  }

  .pluh-title {
    font-size: clamp(24px, 1.95vw, 32px);
    margin: 6px 0;
  }

  .pluh-subtitle {
    font-size: 12px;
    line-height: 1.34;
    margin-bottom: 8px;
  }

  .pluh-hero-promise {
    font-size: 11.2px;
    line-height: 1.28;
    padding: 8px 10px;
    margin-bottom: 8px;
  }

  .pluh-bullets {
    gap: 5px;
  }

  .pluh-bullets li {
    padding: 7px 10px 7px 29px;
    font-size: 11px;
    line-height: 1.18;
  }

  .pluh-bullets li::before {
    left: 11px;
    font-size: 16px;
  }

  .pluh-mini-trust {
    margin-top: 7px;
    font-size: 10.4px;
    line-height: 1.22;
  }

  .pluh-hero-actions {
    margin-top: 8px;
  }

  .pluh-hero-actions .pluh-btn {
    padding: 9px 13px;
    font-size: 11.5px;
  }

  .pluh-hero-actions .pluh-btn-link {
    font-size: 11.5px;
  }

  .pluh-hero-note {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.2;
  }

  .pluh-calculator-wrap {
    padding: 8px 16px;
    gap: 7px;
  }

  .pluh-showcase-card {
    height: clamp(290px, 46vh, 470px);
  }

  .pluh-showcase-overlay {
    padding: 11px 13px;
    justify-content: center;
    gap: 5px;
  }

  .pluh-showcase-overlay h3 {
    font-size: clamp(18px, 1.65vw, 26px);
    margin-bottom: 4px;
  }

  .pluh-showcase-overlay p {
    font-size: 11.8px;
    line-height: 1.32;
    max-width: 100%;
  }

  .pluh-overlay-badge {
    margin-bottom: 5px;
  }

  .pluh-overlay-list {
    margin-top: 5px;
    gap: 4px;
    padding-left: 15px;
    font-size: 10.8px;
    line-height: 1.18;
  }

  .pluh-overlay-cta {
    margin-top: 5px;
  }

  .pluh-stat-card {
    padding: 8px 9px;
  }

  .pluh-stat-number {
    font-size: 15px;
  }

  .pluh-stat-label {
    font-size: 10px;
    line-height: 1.18;
  }

  .pluh-disclaimer {
    font-size: 11px;
    line-height: 1.3;
    padding: 8px 10px;
  }
}

/* =========================================================
   ALLES MET BORDER-RADIUS OP 6PX
   ========================================================= */
/* =========================================================
   ALLES 6PX: VLAKKEN / IMAGES / KNOPPEN
   PLAK DIT HELEMAAL ONDERAAN JE CSS
   ========================================================= */

.pluh-btn,
.pluh-btn-primary::before,
.pluh-btn-secondary,
.pluh-btn-link,
.pluh-topbar-item,
.pluh-value-item,
.pluh-city-item,
.pluh-faq-icon,
.pluh-process-pill,
.pluh-section-kicker,
.pluh-overlay-badge,
.pluh-value-label,
.pluh-eyebrow,
.pluh-service-badge,
.pluh-project-kicker {
  border-radius: 6px !important;
}

.pluh-calculator-card,
.pluh-showcase-card,
.pluh-value-display,
.pluh-project-card,
.pluh-service-card,
.pluh-stat-card,
.pluh-region-map-card,
.pluh-mix-card,
.pluh-logo-item,
.pluh-process-intro,
.pluh-process-highlight,
.pluh-process-card,
.pluh-faq-item,
.pluh-footer-card,
.pluh-hero-promise,
.pluh-disclaimer,
.pluh-city-item,
.pluh-bullets li {
  border-radius: 1rem !important;
}

.pluh-project-image,
.pluh-service-media,
.pluh-split-image,
.pluh-mix-image,
.pluh-mix-image-large,
.pluh-value-media,
.pluh-showcase-visual,
.pluh-region-map,
.pluh-map-shape {
  border-radius: 6px !important;
  overflow: hidden !important;
}

.pluh-logo-slider,
.pluh-clients-section .pluh-logo-slider {
  border-radius: 6px !important;
  overflow: hidden !important;
}

.pluh-pin,
.pluh-pin::after,
.pluh-pin::before {
  border-radius: 6px !important;
}

.pluh-calculator-card,
.pluh-showcase-card,
.pluh-value-display,
.pluh-project-card,
.pluh-service-card,
.pluh-region-map-card,
.pluh-mix-card,
.pluh-logo-slider,
.pluh-logo-item,
.pluh-faq-item,
.pluh-footer-card {
  overflow: hidden !important;
}

/* binnenste image-lagen ook forceren */
.pluh-project-card .pluh-project-image,
.pluh-service-card .pluh-service-media,
.pluh-value-display .pluh-value-media,
.pluh-showcase-card .pluh-showcase-visual,
.pluh-region-map-card .pluh-region-map,
.pluh-mix-images .pluh-mix-image,
.pluh-mix-images .pluh-mix-image-large {
  border-radius: 6px !important;
}

/* mobiel: ook daar alle aparte overrides recht trekken */
@media (max-width: 1100px) {
  .pluh-showcase-card,
  .pluh-hero-copy,
  .pluh-process-intro,
  .pluh-process-highlight,
  .pluh-mix-card {
    border-radius: 6px !important;
  }
}

@media (max-width: 760px) {
  .pluh-showcase-card,
  .pluh-value-display,
  .pluh-value-item,
  .pluh-stat-card,
  .pluh-logo-item,
  .pluh-city-item,
  .pluh-faq-item,
  .pluh-footer-card,
  .pluh-bullets li,
  .pluh-project-card,
  .pluh-service-card,
  .pluh-split-image,
  .pluh-mix-image,
  .pluh-mix-image-large,
  .pluh-process-card {
    border-radius: 6px !important;
  }
}


/* REGIO RECHTER DEEL TERUG NAAR ORIGINEEL */
.pluh-region-map-card {
  border-radius: var(--pluh-radius-xl) !important;
}

.pluh-region-map {
  border-radius: 2rem !important;
  overflow: hidden !important;
}

.pluh-map-shape {
  border-radius: 46% 54% 38% 62% / 34% 40% 60% 66% !important;
}

.pluh-pin {
  border-radius: 50% !important;
}

.pluh-pin::after {
  border-radius: 50% !important;
}

.pluh-pin::before {
  border-radius: 999px !important;
}

/* FAQ PLUS TERUG NAAR ORIGINEEL */
.pluh-faq-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: var(--pluh-primary-soft) !important;
  color: var(--pluh-primary-dark) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease !important;
}

.pluh-faq-item.is-open .pluh-faq-icon {
  background: #28146a !important;
  color: #fff !important;
  transform: rotate(180deg) !important;
}




















































/* =========================================================
   ERGOWERKEN · HERO OVERRIDES
   VERVANG alle vorige versies — alleen dit blok bewaren
   ==============================9=========================== */

/* FAQ icon verbergen */
.kmc-faq-icon,
.kmc-faq-icon::before,
.kmc-faq-icon::after,
.pluh-faq-icon,
.pluh-faq-icon::before,
.pluh-faq-icon::after {
  display: none !important;
}

/* Bullets: vinkjes */
.pluh-hero-copy .pluh-bullets {
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.pluh-hero-copy .pluh-bullets li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 4px 4px 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.pluh-hero-copy .pluh-bullets li::before {
  content: "✓" !important;
  color: var(--pluh-accent);
  font-size: 15px;
  left: 4px;
}

/* Stat cards: oranje streep + ALTIJD ZICHTBAAR (bypass JS animatie) */
.pluh-stat-card {
  border-top: 3px solid var(--pluh-accent);
}

.pluh-hero-stats .pluh-stat-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Showcase bullets */
.pluh-showcase-bullets {
  list-style: none;
  margin: 16px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pluh-showcase-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.pluh-showcase-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pluh-accent);
  font-size: 13px;
}

/* Hero note */
.pluh-hero-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase sub-tekst */
.pluh-showcase-sub {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase overlay: links uitlijnen */
.pluh-showcase-overlay {
  align-items: flex-start;
  text-align: left;
}

/* Lang toggle */
.pluh-lang-toggle {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  line-height: 1.5;
  z-index: 1;
}

.pluh-lang-toggle:hover { opacity: 1; }

/* Topbar */
.pluh-topbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 16px;
  min-height: 60px;
}

.pluh-topbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.pluh-topbar {
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.pluh-topbar.is-stuck {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(40, 20, 106, 0.12) !important;
}

.pluh-topbar-item {
  font-size: 13px;
  border: none;
  background: transparent !important;
  border-radius: 0;
  white-space: nowrap;
  padding: 0;
  min-height: auto;
}

/* Geen border-radius op hero kanten */
.pluh-hero-copy { border-radius: 0 !important; }

.pluh-calculator-card,
.pluh-showcase-card,
.pluh-showcase-visual,
.pluh-showcase-overlay {
  border-radius: var(--pluh-radius-xl) !important;
}

/* Rechter hero breedte */
.pluh-calculator-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.pluh-calculator-card,
.pluh-showcase-card {
  width: 100%;
  max-width: none;
}

.pluh-calculator-wrap .pluh-calculator-card:hover,
.pluh-calculator-wrap .pluh-stat-card:hover {
  transform: none !important;
}

/* FAQ sectie achtergrond */
#faq {
  background: #0d86d6 !important;
}

#faq .pluh-section-head h2,
#faq .pluh-section-head p,
#faq .pluh-section-kicker {
  color: #ffffff;
}

#faq .pluh-section-kicker {
  background: rgba(255, 255, 255, 0.12);
}

/* FAQ antwoord stijl */
.pluh-faq-answer p {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 24px 20px 34px;
  color: var(--pluh-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
  text-align: left;
  background: rgba(13, 134, 214, 0.08);
  border-left: 3px solid var(--pluh-accent) !important;
  border-radius: 0 !important;
}

.pluh-faq-answer p::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 6px;
  font-size: 36px;
  line-height: 1;
  color: var(--pluh-accent);
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   DESKTOP (≥ 1101px)
   ========================================================= */
@media (min-width: 1101px) {
  .pluh-hero-copy { padding-bottom: 100px; }
  .pluh-hero-actions { margin-top: 0; }

  .pluh-calculator-wrap {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .pluh-showcase-overlay { padding: 24px; }
  .pluh-stat-card { padding: 11px 13px; }

  .pluh-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 11px;
  }

  .pluh-btn-link {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }
}

/* =========================================================
   TABLET (≤ 1100px) — hero gestapeld, volledig blauw
   ========================================================= */
@media (max-width: 1100px) {
  /* Hero: vaste viewport hoogte, twee kolommen naast elkaar */
  .pluh-hero {
    height: calc(var(--pluh-visible-page-height, 100svh) - var(--pluh-topbar-height, 0px));
    overflow: hidden;
    background-color: rgba(13, 134, 214, 0.84);
    border-radius: 0 !important;
  }

  .pluh-hero .pluh-calculator-wrap,
  .pluh-hero .pluh-calculator-card,
  .pluh-hero .pluh-showcase-card,
  .pluh-hero .pluh-showcase-visual,
  .pluh-hero .pluh-showcase-overlay,
  .pluh-calculator-wrap,
  .pluh-calculator-card,
  .pluh-showcase-card,
  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    border-radius: 0 !important;
    overflow: hidden;
  }

  .pluh-hero .pluh-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .pluh-hero-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 100%;
    gap: 0 !important;
  }

  /* Linker kolom: copy */
  .pluh-hero-copy {
    flex: 0 0 46% !important;
    width: 46% !important;
    border-radius: 0 !important;
    padding: 92px 18px 14px;
    border-right: 2px solid var(--pluh-accent);
    border-bottom: none !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
  }

  .pluh-title { font-size: 17px; line-height: 1.15; margin: 3px 0 8px; }
  .pluh-eyebrow { font-size: 9px; margin-bottom: 4px; }
  .pluh-hero-copy .pluh-bullets { gap: 5px; margin-top: 6px; margin-bottom: 8px; }
  .pluh-hero-copy .pluh-bullets li { font-size: 11px; padding: 2px 4px 2px 18px; line-height: 1.3; }
  .pluh-hero-copy .pluh-hero-actions { gap: 6px; flex-wrap: wrap; }
  .pluh-hero-copy .pluh-btn { padding: 8px 12px; font-size: 11px; }
  .pluh-hero-note { display: none; }

  /* Rechter kolom: stats + showcase */
  .pluh-calculator-wrap {
    flex: 0 0 54% !important;
    width: 54% !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    display: flex !important;
    flex-direction: column !important;
    background-color: rgba(13, 134, 214, 0.84);
    overflow: hidden;
  }

  .pluh-hero-stats {
    flex: 0 0 auto;
    margin: 6px 12px;
    gap: 5px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pluh-stat-card { padding: 5px 7px; border-top-width: 2px; }
  .pluh-stat-number { font-size: 11px; margin-bottom: 1px; }
  .pluh-stat-label { font-size: 7px; line-height: 1.2; }

  .pluh-calculator-card,
  .pluh-showcase-card {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .pluh-showcase-visual {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    background: rgba(13, 134, 214, 0.86);
    position: relative;
  }

  .pluh-showcase-overlay {
    min-height: 0;
    height: 100%;
    margin-top: 0;
    border-radius: 0 !important;
    padding: 92px 16px 14px;
    justify-content: flex-start;
  }

  /* Showcase content: zelfde grootte als linker kant */
  .pluh-showcase-overlay h2,
  .pluh-showcase-overlay h3 { font-size: 17px !important; line-height: 1.15; margin: 3px 0 8px; }
  .pluh-slide-kicker { font-size: 9px !important; margin-bottom: 4px; letter-spacing: 0.06em; }
  .pluh-showcase-sub { font-size: 11px !important; line-height: 1.35; margin: 0 0 8px; }
  .pluh-showcase-bullets { gap: 5px !important; margin-top: 6px !important; margin-bottom: 8px !important; }
  .pluh-showcase-bullets li { font-size: 11px !important; padding: 2px 4px 2px 18px !important; line-height: 1.3 !important; }
  .pluh-showcase-overlay .pluh-btn,
  .pluh-showcase-overlay .pluh-btn-link { padding: 8px 12px !important; font-size: 11px !important; }

  /* Navbar: kleiner op tablet zodat alles past */
  .pluh-topbar-row {
    min-height: 46px;
    padding: 5px 12px;
    gap: 14px;
  }

  .pluh-topbar-links {
    flex-wrap: nowrap !important;
    gap: 0 8px !important;
    white-space: nowrap !important;
  }

  .pluh-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .pluh-lang-toggle {
    font-size: 10px !important;
    padding: 2px 9px !important;
  }

  /* Secties */
  .pluh-section { padding: 28px 0; }
  .pluh-section-head { margin-bottom: 16px; }
  .pluh-section-head h2 { font-size: 24px; margin: 8px 0 8px; }
  .pluh-section-head p { font-size: 14px; line-height: 1.5; }

  .pluh-value-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pluh-value-item { font-size: 13px !important; padding: 14px 12px !important; line-height: 1.3 !important; }
  .pluh-value-display { grid-template-rows: auto; }
  .pluh-value-media { display: none; }
  .pluh-value-content { padding: 16px 18px 18px; }
  .pluh-value-content h3 { font-size: 18px; margin: 0 0 8px; }
  .pluh-value-content p { font-size: 13px; line-height: 1.55; }
  .pluh-value-cta-row { margin-top: 10px; }

  .pluh-project-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .pluh-project-card { scroll-snap-align: start; min-width: 0; }
  .pluh-project-image { min-height: 160px; }
  .pluh-project-content h3 { font-size: 13px; margin: 6px 0 6px; line-height: 1.2; }
  .pluh-project-content p { font-size: 11px; line-height: 1.35; }

  .pluh-service-grid {
    grid-template-columns: repeat(6, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .pluh-service-card { scroll-snap-align: start; min-width: 0; }
  .pluh-service-media { min-height: 110px; }
  .pluh-service-body { padding: 12px 12px 14px; }
  .pluh-service-body h3 { font-size: 14px; margin: 6px 0 6px; line-height: 1.2; }
  .pluh-service-body p { font-size: 11.5px; line-height: 1.4; margin: 0 0 8px; }
  .pluh-service-body li { font-size: 11px; line-height: 1.3; padding-left: 20px; }
  .pluh-service-body li::before { font-size: 14px; left: 2px; }

  .pluh-mix-images {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 8px; padding-bottom: 6px; grid-template-columns: unset;
  }
  .pluh-mix-side { display: contents; }
  .pluh-mix-image, .pluh-mix-image-large {
    flex: 0 0 80%; min-height: 160px;
    scroll-snap-align: start; border-radius: var(--pluh-radius-xl);
  }
  .pluh-mix-card { padding: 20px 18px; }
  .pluh-mix-card-dark h2 { font-size: 22px; margin: 8px 0 8px; line-height: 1.15; }
  .pluh-mix-card-dark p { font-size: 13px; line-height: 1.5; }
  .pluh-split-image { min-height: 150px; }
  .pluh-split-copy h3 { font-size: 20px; margin: 8px 0 8px; }
}

/* =========================================================
   MOBIEL (≤ 760px)
   ========================================================= */
@media (max-width: 760px) {
  /* Topbar hoogte aanpassen zodat hero-calc klopt */
  .pluh-page {
    --pluh-topbar-height: 52px;
  }

  /* Navbar: twee lagen — links boven, lang toggle onder */
  .pluh-topbar-row {
    min-height: 52px;
    height: 52px;
    padding: 0 12px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .pluh-topbar-links {
    position: absolute !important;
    left: 50% !important;
    top: 6px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 10px !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .pluh-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .pluh-topbar-links .pluh-topbar-item + .pluh-topbar-item::before {
    content: "·" !important;
    margin-right: 10px !important;
    opacity: 0.45 !important;
  }

  .pluh-lang-toggle {
    font-size: 10px !important;
    padding: 2px 10px !important;
    top: auto !important;
    bottom: 4px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Hero: copy + stats = startscherm, showcase verborgen */
  .pluh-hero {
    height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    overflow: hidden;
  }

  .pluh-hero .pluh-shell {
    height: 100%;
    overflow: hidden;
  }

  .pluh-hero-grid {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    height: 100%;
    overflow: hidden;
  }

  /* Hero-copy: alles behalve 70px voor stats */
  .pluh-hero-copy {
    flex: 0 0 calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height) - 70px) !important;
    width: 100% !important;
    height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height) - 70px);
    min-height: 0;
    padding: 8px 18px 12px;
    overflow: hidden;
    border-right: none !important;
    border-bottom: none !important;
  }

  .pluh-title { font-size: 20px; line-height: 1.1; margin: 2px 0 10px; }
  .pluh-eyebrow { font-size: 10px; margin-bottom: 4px; }
  .pluh-hero-copy .pluh-bullets { gap: 6px; margin-top: 8px; margin-bottom: 12px; }
  .pluh-hero-copy .pluh-bullets li { font-size: 12px; padding: 3px 4px 3px 20px; line-height: 1.25; }
  .pluh-hero-copy .pluh-hero-actions { gap: 6px; }
  .pluh-hero-copy .pluh-btn { padding: 9px 14px; font-size: 12px; }

  /* Calculator-wrap: vaste 70px = stats strip, full width */
  .pluh-calculator-wrap {
    flex: 0 0 70px !important;
    height: 70px !important;
    min-height: 70px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Stats: absoluut positioneren zodat ze altijd de volledige breedte van de wrap pakken */
  .pluh-hero-stats {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: 70px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    transform: none !important;
  }

  /* Stats: altijd zichtbaar, bypass JS animatie */
  .pluh-hero-stats .pluh-stat-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    border-radius: 0 !important;
  }

  .pluh-stat-card {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 4px 6px !important;
    border-top-width: 2px !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .pluh-stat-number { font-size: 15px; margin-bottom: 2px; text-align: center; }
  .pluh-stat-label { font-size: 8px; line-height: 1.2; text-align: center; }

  /* Showcase: verborgen op mobiel */
  .pluh-calculator-card,
  .pluh-showcase-card {
    display: none !important;
  }

  /* Sticky positie onder de Lightspeed hoofdheader op mobiel */
  .pluh-topbar.is-stuck {
    top: 105px !important;
  }

  /* Regio */
  .pluh-region-grid { grid-template-columns: 1fr; gap: 10px; }
  .pluh-region-copy h2 { font-size: 17px; margin: 6px 0 4px; }
  .pluh-region-copy p { font-size: 11.5px; line-height: 1.35; }
  .pluh-city-list { grid-template-columns: repeat(2, 1fr); gap: 5px; margin-top: 8px; }
  .pluh-city-item { padding: 8px 10px; font-size: 11.5px; }
  .pluh-region-map-card { padding: 6px; }
  .pluh-region-map { min-height: 260px; }
}

/* ── Hero Slider ─────────────────────────────────── */
.pluh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.pluh-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pluh-slide .pluh-showcase-overlay {
  min-height: 0;
  height: 100%;
}

.pluh-slide-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.pluh-slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.pluh-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pluh-slider-dot.is-active {
  background: var(--pluh-accent);
  transform: scale(1.3);
}

.pluh-slider-prev,
.pluh-slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pluh-slider-prev:hover,
.pluh-slider-next:hover {
  background: var(--pluh-accent);
  border-color: var(--pluh-accent);
}


/* =========================================================
   ERGOWERKEN · HERO UPDATES + RESPONSIVENESS
   Plak dit helemaal onderaan de Lightspeed CSS
   ========================================================= */

/* Bullets in hero → vinkjes */
.pluh-hero-copy .pluh-bullets {
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.pluh-hero-copy .pluh-bullets li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 4px 4px 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.pluh-hero-copy .pluh-bullets li::before {
  content: "✓" !important;
  color: var(--pluh-accent);
  font-size: 15px;
  left: 4px;
}

/* Stat cards: oranje streep bovenaan */
.pluh-stat-card {
  border-top: 3px solid var(--pluh-accent);
}

/* Showcase bullets */
.pluh-showcase-bullets {
  list-style: none;
  margin: 16px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pluh-showcase-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.pluh-showcase-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pluh-accent);
  font-size: 13px;
}

/* Hero note: beter leesbaar */
.pluh-hero-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase sub-tekst (nieuw element) */
.pluh-showcase-sub {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase overlay: links uitlijnen */
.pluh-showcase-overlay {
  align-items: flex-start;
  text-align: left;
}

/* Topbar: zelfde stijl als lokale versie */
.pluh-topbar-row {
  display: flex;
  gap: 26px;
  padding: 10px 16px;
  min-height: 60px;
}

.pluh-topbar-item {
  font-size: 13px;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  white-space: nowrap;
  padding: 0;
  min-height: auto;
}

/* Geen border-radius op hero kanten */
.pluh-hero-copy {
  border-radius: 0 !important;
}

.pluh-calculator-card,
.pluh-showcase-card,
.pluh-showcase-visual,
.pluh-showcase-overlay {
  border-radius: var(--pluh-radius-xl) !important;
}

/* Rechter hero: volledige breedte, geen overflow die hoekjes toont */
.pluh-calculator-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.pluh-calculator-card,
.pluh-showcase-card {
  width: 100%;
  max-width: none;
}

/* Geen hover op rechter hero kant */
.pluh-calculator-wrap .pluh-calculator-card:hover,
.pluh-calculator-wrap .pluh-stat-card:hover {
  transform: none !important;
}

/* FAQ antwoord stijl */
.pluh-faq-answer p {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 24px 20px 34px;
  color: var(--pluh-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
  text-align: left;
  background: rgba(13, 134, 214, 0.08);
  border-left: 3px solid var(--pluh-accent) !important;
  border-radius: 0 !important;
}

.pluh-faq-answer p::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 6px;
  font-size: 36px;
  line-height: 1;
  color: var(--pluh-accent);
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   DESKTOP
   ========================================================= */
@media (min-width: 1101px) {
  .pluh-hero-copy {
    padding-bottom: 100px;
  }

  .pluh-hero-actions {
    margin-top: 0;
  }

  .pluh-calculator-wrap {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .pluh-showcase-overlay {
    padding: 24px;
  }

  .pluh-stat-card {
    padding: 11px 13px;
  }

  .pluh-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 11px;
  }

  .pluh-btn-link {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }
}

/* =========================================================
   TABLET (≤ 1100px) — HERO VOLLEDIG BLAUW
   ========================================================= */
@media (max-width: 1100px) {
  .pluh-hero {
    background-color: rgba(13, 134, 214, 0.84);
  }

  .pluh-hero .pluh-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .pluh-hero-grid {
    gap: 0 !important;
  }

  .pluh-hero-copy {
    border-radius: 0;
    padding: 28px 20px;
    border-bottom: 2px solid var(--pluh-accent);
  }

  .pluh-calculator-wrap {
    padding: 20px 0 28px;
    background-color: rgba(13, 134, 214, 0.84);
  }

  .pluh-hero-stats {
    margin-bottom: 8px;
  }

  .pluh-calculator-card,
  .pluh-showcase-card,
  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    min-height: 0;
    height: auto;
    margin-top: 0;
  }

  .pluh-showcase-overlay {
    padding: 22px 20px;
  }
}

/* =========================================================
   MOBIEL (≤ 760px)
   ========================================================= */
@media (max-width: 760px) {
  /* Topbar: eenvoudige flex zoals lokale versie */
  .pluh-topbar-row {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: unset;
    min-height: auto;
    gap: 10px 16px;
    padding: 10px 12px;
  }

  .pluh-topbar-item {
    font-size: 13px;
    white-space: normal;
    text-align: center;
  }
  /* Hero stats: 3 kolommen compact */
  .pluh-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .pluh-stat-card {
    padding: 8px 7px;
  }

  .pluh-stat-number {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .pluh-stat-label {
    font-size: 9px;
    line-height: 1.2;
  }

  /* Secties */
  .pluh-section {
    padding: 28px 0;
  }

  .pluh-section-head {
    margin-bottom: 14px;
  }

  .pluh-section-head h2 {
    font-size: 26px;
    margin: 8px 0 8px;
  }

  /* Keuzehulp: 2×2 grid knoppen, afbeelding verborgen */
  .pluh-value-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .pluh-value-item {
    font-size: 13px !important;
    padding: 14px 12px !important;
    line-height: 1.3 !important;
  }

  .pluh-value-display {
    grid-template-rows: auto;
  }

  .pluh-value-media {
    display: none;
  }

  .pluh-value-content {
    padding: 16px 18px 18px;
  }

  .pluh-value-content h3 {
    font-size: 18px;
    margin: 0 0 8px;
  }

  .pluh-value-content p {
    font-size: 13px;
    line-height: 1.55;
  }

  .pluh-value-cta-row {
    margin-top: 10px;
  }

  /* Snel kiezen: horizontale scroll */
  .pluh-project-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 8px;
  }

  .pluh-project-card {
    scroll-snap-align: start;
    min-width: 0;
  }

  .pluh-project-image {
    min-height: 160px;
  }

  .pluh-project-content h3 {
    font-size: 13px;
    margin: 6px 0 6px;
    line-height: 1.2;
  }

  .pluh-project-content p {
    font-size: 11px;
    line-height: 1.35;
  }

  /* Wat levert het op */
  .pluh-split-image {
    min-height: 150px;
  }

  .pluh-split-copy h3 {
    font-size: 20px;
    margin: 8px 0 8px;
  }

  /* Onze diensten: 2-kolommen grid */
  .pluh-service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pluh-service-media {
    min-height: 110px;
  }

  .pluh-service-body {
    padding: 12px 12px 14px;
  }

  .pluh-service-body h3 {
    font-size: 14px;
    margin: 6px 0 6px;
    line-height: 1.2;
  }

  .pluh-service-body p {
    font-size: 11.5px;
    line-height: 1.4;
    margin: 0 0 8px;
  }

  .pluh-service-body li {
    font-size: 11px;
    line-height: 1.3;
    padding-left: 20px;
  }

  .pluh-service-body li::before {
    font-size: 14px;
    left: 2px;
  }

  /* Wat is er mogelijk: afbeeldingen als slider */
  .pluh-mix-images {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 6px;
    grid-template-columns: unset;
  }

  .pluh-mix-side {
    display: contents;
  }

  .pluh-mix-image,
  .pluh-mix-image-large {
    flex: 0 0 80%;
    min-height: 160px;
    scroll-snap-align: start;
    border-radius: var(--pluh-radius-xl);
  }

  .pluh-mix-card {
    padding: 20px 18px;
  }

  .pluh-mix-card-dark h2 {
    font-size: 22px;
    margin: 8px 0 8px;
    line-height: 1.15;
  }

  .pluh-mix-card-dark p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Regio: gestapeld, kaart met ruimte */
  .pluh-region-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pluh-region-copy h2 {
    font-size: 17px;
    margin: 6px 0 4px;
  }

  .pluh-region-copy p {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .pluh-city-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 8px;
  }

  .pluh-city-item {
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .pluh-region-map-card {
    padding: 6px;
  }

  .pluh-region-map {
    min-height: 260px;
  }

  /* Hero acties: volle breedte */
  .pluh-hero-actions {
    gap: 8px;
  }

  .pluh-hero-actions .pluh-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }

  .pluh-hero-note {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .pluh-showcase-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
}

@media (max-width: 520px) {
  .pluh-topbar-row {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: unset;
  }
}














/* =========================================================
   ERGOWERKEN · HERO OVERRIDES
   VERVANG alle vorige versies — alleen dit blok bewaren
   ==============================9=========================== */

/* FAQ icon verbergen */
.kmc-faq-icon,
.kmc-faq-icon::before,
.kmc-faq-icon::after,
.pluh-faq-icon,
.pluh-faq-icon::before,
.pluh-faq-icon::after {
  display: none !important;
}

/* Bullets: vinkjes */
.pluh-hero-copy .pluh-bullets {
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.pluh-hero-copy .pluh-bullets li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 4px 4px 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.pluh-hero-copy .pluh-bullets li::before {
  content: "✓" !important;
  color: var(--pluh-accent);
  font-size: 15px;
  left: 4px;
}

/* Stat cards: oranje streep + ALTIJD ZICHTBAAR (bypass JS animatie) */
.pluh-stat-card {
  border-top: 3px solid var(--pluh-accent);
}

.pluh-hero-stats .pluh-stat-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Showcase bullets */
.pluh-showcase-bullets {
  list-style: none;
  margin: 16px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pluh-showcase-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.pluh-showcase-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pluh-accent);
  font-size: 13px;
}

/* Hero note */
.pluh-hero-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase sub-tekst */
.pluh-showcase-sub {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase overlay: links uitlijnen */
.pluh-showcase-overlay {
  align-items: flex-start;
  text-align: left;
}

/* Lang toggle */
.pluh-lang-toggle { display: none !important; }

/* Topbar */
.pluh-topbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 16px;
  min-height: 60px;
}

.pluh-topbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.pluh-topbar {
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.pluh-topbar.is-stuck {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(40, 20, 106, 0.12) !important;
}

.pluh-topbar-item {
  font-size: 13px;
  border: none;
  background: transparent !important;
  border-radius: 0;
  white-space: nowrap;
  padding: 0;
  min-height: auto;
}

/* Geen border-radius op hero kanten */
.pluh-hero-copy { border-radius: 0 !important; }

.pluh-calculator-card,
.pluh-showcase-card,
.pluh-showcase-visual,
.pluh-showcase-overlay {
  border-radius: var(--pluh-radius-xl) !important;
}

/* Rechter hero breedte */
.pluh-calculator-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.pluh-calculator-card,
.pluh-showcase-card {
  width: 100%;
  max-width: none;
}

.pluh-calculator-wrap .pluh-calculator-card:hover,
.pluh-calculator-wrap .pluh-stat-card:hover {
  transform: none !important;
}

/* FAQ sectie achtergrond */
.pluh-page #faq {
  background-image: linear-gradient(rgba(13,134,214,0.72), rgba(13,134,214,0.72)), url('https://i.imgur.com/ypsaNYd.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.pluh-page #faq .pluh-section-head h2,
.pluh-page #faq .pluh-section-head p,
.pluh-page #faq .pluh-section-kicker {
  color: #ffffff;
}

.pluh-page #faq .pluh-section-kicker {
  background: rgba(255, 255, 255, 0.12);
}

/* FAQ antwoord stijl */
.pluh-faq-answer p {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 24px 20px 34px;
  color: var(--pluh-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
  text-align: left;
  background: rgba(13, 134, 214, 0.08);
  border-left: 3px solid var(--pluh-accent) !important;
  border-radius: 0 !important;
}

.pluh-faq-answer p::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 6px;
  font-size: 36px;
  line-height: 1;
  color: var(--pluh-accent);
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   DESKTOP (≥ 1101px)
   ========================================================= */
@media (min-width: 1101px) {
  .pluh-hero-copy { padding-bottom: 100px; }
  .pluh-hero-actions { margin-top: 0; }

  .pluh-calculator-wrap {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .pluh-showcase-overlay { padding: 24px; }
  .pluh-stat-card { padding: 11px 13px; }

  .pluh-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 11px;
  }

  .pluh-btn-link {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }
}

/* =========================================================
   TABLET (≤ 1100px) — hero gestapeld, volledig blauw
   ========================================================= */
@media (max-width: 1100px) {
  /* Hero: vaste viewport hoogte, twee kolommen naast elkaar */
  .pluh-hero {
    height: calc(var(--pluh-visible-page-height, 100svh) - var(--pluh-topbar-height, 0px));
    overflow: hidden;
    background-color: rgba(13, 134, 214, 0.84);
    border-radius: 0 !important;
  }

  .pluh-hero .pluh-calculator-wrap,
  .pluh-hero .pluh-calculator-card,
  .pluh-hero .pluh-showcase-card,
  .pluh-hero .pluh-showcase-visual,
  .pluh-hero .pluh-showcase-overlay,
  .pluh-calculator-wrap,
  .pluh-calculator-card,
  .pluh-showcase-card,
  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    border-radius: 0 !important;
    overflow: hidden;
  }

  .pluh-hero .pluh-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .pluh-hero-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 100%;
    gap: 0 !important;
  }

  /* Linker kolom: copy */
  .pluh-hero-copy {
    flex: 0 0 46% !important;
    width: 46% !important;
    border-radius: 0 !important;
    padding: 92px 18px 14px;
    border-right: 2px solid var(--pluh-accent);
    border-bottom: none !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
  }

  .pluh-title { font-size: 17px; line-height: 1.15; margin: 3px 0 8px; }
  .pluh-eyebrow { font-size: 9px; margin-bottom: 4px; }
  .pluh-hero-copy .pluh-bullets { gap: 5px; margin-top: 6px; margin-bottom: 8px; }
  .pluh-hero-copy .pluh-bullets li { font-size: 11px; padding: 2px 4px 2px 18px; line-height: 1.3; }
  .pluh-hero-copy .pluh-hero-actions { gap: 6px; flex-wrap: wrap; }
  .pluh-hero-copy .pluh-btn { padding: 8px 12px; font-size: 11px; }
  .pluh-hero-note { display: none; }

  /* Rechter kolom: stats + showcase */
  .pluh-calculator-wrap {
    flex: 0 0 54% !important;
    width: 54% !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    display: flex !important;
    flex-direction: column !important;
    background-color: rgba(13, 134, 214, 0.84);
    overflow: hidden;
  }

  .pluh-hero-stats {
    flex: 0 0 auto;
    margin: 6px 12px;
    gap: 5px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pluh-stat-card { padding: 5px 7px; border-top-width: 2px; }
  .pluh-stat-number { font-size: 11px; margin-bottom: 1px; }
  .pluh-stat-label { font-size: 7px; line-height: 1.2; }

  .pluh-calculator-card,
  .pluh-showcase-card {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .pluh-showcase-visual {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    background: rgba(13, 134, 214, 0.86);
    position: relative;
  }

  .pluh-showcase-overlay {
    min-height: 0;
    height: 100%;
    margin-top: 0;
    border-radius: 0 !important;
    padding: 92px 16px 14px;
    justify-content: flex-start;
  }

  /* Showcase content: zelfde grootte als linker kant */
  .pluh-showcase-overlay h2,
  .pluh-showcase-overlay h3 { font-size: 17px !important; line-height: 1.15; margin: 3px 0 8px; }
  .pluh-slide-kicker { font-size: 9px !important; margin-bottom: 4px; letter-spacing: 0.06em; }
  .pluh-showcase-sub { font-size: 11px !important; line-height: 1.35; margin: 0 0 8px; }
  .pluh-showcase-bullets { gap: 5px !important; margin-top: 6px !important; margin-bottom: 8px !important; }
  .pluh-showcase-bullets li { font-size: 11px !important; padding: 2px 4px 2px 18px !important; line-height: 1.3 !important; }
  .pluh-showcase-overlay .pluh-btn,
  .pluh-showcase-overlay .pluh-btn-link { padding: 8px 12px !important; font-size: 11px !important; }

  /* Navbar: kleiner op tablet zodat alles past */
  .pluh-topbar-row {
    min-height: 46px;
    padding: 5px 12px;
    gap: 14px;
  }

  .pluh-topbar-links {
    flex-wrap: nowrap !important;
    gap: 0 8px !important;
    white-space: nowrap !important;
  }

  .pluh-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .pluh-lang-toggle {
    font-size: 10px !important;
    padding: 2px 9px !important;
  }

  /* Secties */
  .pluh-section { padding: 28px 0; }
  .pluh-section-head { margin-bottom: 16px; }
  .pluh-section-head h2 { font-size: 24px; margin: 8px 0 8px; }
  .pluh-section-head p { font-size: 14px; line-height: 1.5; }

  .pluh-value-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pluh-value-item { font-size: 13px !important; padding: 14px 12px !important; line-height: 1.3 !important; }
  .pluh-value-display { grid-template-rows: auto; }
  .pluh-value-media { display: none; }
  .pluh-value-content { padding: 16px 18px 18px; }
  .pluh-value-content h3 { font-size: 18px; margin: 0 0 8px; }
  .pluh-value-content p { font-size: 13px; line-height: 1.55; }
  .pluh-value-cta-row { margin-top: 10px; }

  .pluh-project-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .pluh-project-card { scroll-snap-align: start; min-width: 0; }
  .pluh-project-image { min-height: 160px; }
  .pluh-project-content h3 { font-size: 13px; margin: 6px 0 6px; line-height: 1.2; }
  .pluh-project-content p { font-size: 11px; line-height: 1.35; }

  .pluh-service-grid {
    grid-template-columns: repeat(6, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .pluh-service-card { scroll-snap-align: start; min-width: 0; }
  .pluh-service-media { min-height: 110px; }
  .pluh-service-body { padding: 12px 12px 14px; }
  .pluh-service-body h3 { font-size: 14px; margin: 6px 0 6px; line-height: 1.2; }
  .pluh-service-body p { font-size: 11.5px; line-height: 1.4; margin: 0 0 8px; }
  .pluh-service-body li { font-size: 11px; line-height: 1.3; padding-left: 20px; }
  .pluh-service-body li::before { font-size: 14px; left: 2px; }

  .pluh-mix-images {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 8px; padding-bottom: 6px; grid-template-columns: unset;
  }
  .pluh-mix-side { display: contents; }
  .pluh-mix-image, .pluh-mix-image-large {
    flex: 0 0 80%; min-height: 160px;
    scroll-snap-align: start; border-radius: var(--pluh-radius-xl);
  }
  .pluh-mix-card { padding: 20px 18px; }
  .pluh-mix-card-dark h2 { font-size: 22px; margin: 8px 0 8px; line-height: 1.15; }
  .pluh-mix-card-dark p { font-size: 13px; line-height: 1.5; }
  .pluh-split-image { min-height: 150px; }
  .pluh-split-copy h3 { font-size: 20px; margin: 8px 0 8px; }
}

/* =========================================================
   MOBIEL (≤ 760px)
   ========================================================= */
@media (max-width: 760px) {
  /* Topbar hoogte aanpassen zodat hero-calc klopt */
  .pluh-page {
    --pluh-topbar-height: 52px;
  }

  /* Navbar: twee lagen — links boven, lang toggle onder */
  .pluh-topbar-row {
    min-height: 52px;
    height: 52px;
    padding: 0 12px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .pluh-topbar-links {
    position: absolute !important;
    left: 50% !important;
    top: 6px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 10px !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .pluh-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .pluh-topbar-links .pluh-topbar-item + .pluh-topbar-item::before {
    content: "·" !important;
    margin-right: 10px !important;
    opacity: 0.45 !important;
  }

  .pluh-lang-toggle {
    font-size: 10px !important;
    padding: 2px 10px !important;
    top: auto !important;
    bottom: 4px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Hero: copy + stats = startscherm, showcase verborgen */
  .pluh-hero {
    height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    overflow: hidden;
  }

  .pluh-hero .pluh-shell {
    height: 100%;
    overflow: hidden;
  }

  .pluh-hero-grid {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    height: 100%;
    overflow: hidden;
  }

  /* Hero-copy: alles behalve 70px voor stats */
  .pluh-hero-copy {
    flex: 0 0 calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height) - 70px) !important;
    width: 100% !important;
    height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height) - 70px);
    min-height: 0;
    padding: 8px 18px 12px;
    overflow: hidden;
    border-right: none !important;
    border-bottom: none !important;
  }

  .pluh-title { font-size: 20px; line-height: 1.1; margin: 2px 0 10px; }
  .pluh-eyebrow { font-size: 10px; margin-bottom: 4px; }
  .pluh-hero-copy .pluh-bullets { gap: 6px; margin-top: 8px; margin-bottom: 12px; }
  .pluh-hero-copy .pluh-bullets li { font-size: 12px; padding: 3px 4px 3px 20px; line-height: 1.25; }
  .pluh-hero-copy .pluh-hero-actions { gap: 6px; }
  .pluh-hero-copy .pluh-btn { padding: 9px 14px; font-size: 12px; }

  /* Calculator-wrap: vaste 70px = stats strip, full width */
  .pluh-calculator-wrap {
    flex: 0 0 70px !important;
    height: 70px !important;
    min-height: 70px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Stats: absoluut positioneren zodat ze altijd de volledige breedte van de wrap pakken */
  .pluh-hero-stats {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: 70px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    transform: none !important;
  }

  /* Stats: altijd zichtbaar, bypass JS animatie */
  .pluh-hero-stats .pluh-stat-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    border-radius: 0 !important;
  }

  .pluh-stat-card {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 4px 6px !important;
    border-top-width: 2px !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .pluh-stat-number { font-size: 15px; margin-bottom: 2px; text-align: center; }
  .pluh-stat-label { font-size: 8px; line-height: 1.2; text-align: center; }

  /* Showcase: verborgen op mobiel */
  .pluh-calculator-card,
  .pluh-showcase-card {
    display: none !important;
  }

  /* Sticky positie onder de Lightspeed hoofdheader op mobiel */
  .pluh-topbar.is-stuck {
    top: 105px !important;
  }

  /* Regio */
  .pluh-region-grid { grid-template-columns: 1fr; gap: 10px; }
  .pluh-region-copy h2 { font-size: 17px; margin: 6px 0 4px; }
  .pluh-region-copy p { font-size: 11.5px; line-height: 1.35; }
  .pluh-city-list { grid-template-columns: repeat(2, 1fr); gap: 5px; margin-top: 8px; }
  .pluh-city-item { padding: 8px 10px; font-size: 11.5px; }
  .pluh-region-map-card { padding: 6px; }
  .pluh-region-map { min-height: 260px; }
}

/* ── Hero Slider ─────────────────────────────────── */
.pluh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.pluh-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pluh-slide .pluh-showcase-overlay {
  min-height: 0;
  height: 100%;
}

.pluh-slide-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.pluh-slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.pluh-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pluh-slider-dot.is-active {
  background: var(--pluh-accent);
  transform: scale(1.3);
}

.pluh-slider-prev,
.pluh-slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pluh-slider-prev:hover,
.pluh-slider-next:hover {
  background: var(--pluh-accent);
  border-color: var(--pluh-accent);
}





























 
 













/* kabelmanagment ↑ --

-- projectinrichting ↓ */

























:root {
  --kmc-bg: #ffffff;
  --kmc-surface: #ffffff;
  --kmc-surface-soft: #f6f8ff;
  --kmc-text: #28146A;
  --kmc-text-soft: #5f5a7d;
  --kmc-line: #d8def3;
  --kmc-primary: #28146A;
  --kmc-primary-dark: #28146A;
  --kmc-primary-soft: rgba(40, 20, 106, 0.08);
  --kmc-accent: #E67800;
  --kmc-link: #0D86D6;
  --kmc-shadow: none;
  --kmc-shadow-hover: none;
  --kmc-radius-xl: 6px;
  --kmc-radius-lg: 6px;
  --kmc-radius-md: 6px;
  --kmc-radius-sm: 6px;
  --kmc-max: 1240px;

  
  --kmc-topbar-height: 56px;
  --kmc-visible-page-height: 100svh;
  --kmc-first-screen-height: 100svh;
  --kmc-first-screen-safe-gap: 18px;
  --kmc-hero-bottom-gap: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: var(--kmc-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.kmc-page {
  min-height: 100vh;
  background: #ffffff;
}

.kmc-shell {
  width: min(calc(100% - 32px), var(--kmc-max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kmc-page *,
.kmc-page *::before,
.kmc-page *::after {
  box-shadow: none !important;
}

@keyframes kmcShine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(180%) skewX(-18deg); }
}

@keyframes kmcPulseRing {
  0% { transform: scale(1); opacity: 0.35; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@keyframes kmcLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.kmc-animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  transition-delay: var(--kmc-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.kmc-animate-on-scroll.kmc-animate-left {
  transform: translateX(-48px);
}

.kmc-animate-on-scroll.kmc-animate-right {
  transform: translateX(48px);
}

.kmc-animate-on-scroll.kmc-animate-scale {
  transform: translateY(36px) scale(0.96);
}

.kmc-animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
}

/* HERO RIGHT LOAD ANIMATION */
.kmc-hero-sequence,
.kmc-hero-sequence-inner {
  opacity: 0;
  filter: blur(8px);
  will-change: opacity, transform, filter;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kmc-hero-delay, 0ms);
}

.kmc-hero-sequence {
  transform: translateX(42px) translateY(14px);
}

.kmc-hero-sequence-inner {
  transform: translateY(18px);
}

.kmc-hero-sequence.is-visible,
.kmc-hero-sequence-inner.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
  filter: blur(0);
}

/* TOPBAR */
.kmc-topbar {
  background: #f3faff;
  color: #0d86d6;
  margin: 0;
  position: relative;
  z-index: 5;
}

.kmc-topbar-row {
  min-height: var(--kmc-topbar-height);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
  padding: 8px 14px;
}

.kmc-topbar-item {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.kmc-topbar-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* HERO */
.kmc-hero {
  padding: 0;
  background-color: #ffffff;
  background-image: var(--kmc-hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.kmc-hero .kmc-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  z-index: 2;
}

.kmc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin: 0;
}

.kmc-hero-copy,
.kmc-calculator-card,
.kmc-footer-card,
.kmc-value-display,
.kmc-faq-item,
.kmc-logo-item,
.kmc-project-card,
.kmc-process-intro,
.kmc-process-highlight,
.kmc-process-card,
.kmc-stat-card {
  background: var(--kmc-surface);
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.kmc-calculator-card:hover,
.kmc-footer-card:hover,
.kmc-value-display:hover,
.kmc-faq-item:hover,
.kmc-logo-item:hover,
.kmc-project-card:hover,
.kmc-process-card:hover,
.kmc-process-intro:hover,
.kmc-process-highlight:hover,
.kmc-stat-card:hover {
  transform: translateY(-4px);
}

.kmc-hero-copy:hover {
  transform: none !important;
}

.kmc-hero-copy {
  border-radius: 0;
  padding: 32px 150px 32px 32px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 77% 0, 100% 100%, 0 100%);
  min-height: 100%;
  z-index: 2;
  background-color: #0d86d6d3;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kmc-hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.kmc-section-kicker,
.kmc-overlay-badge,
.kmc-value-label,
.kmc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 14px;
}

.kmc-section-kicker,
.kmc-value-label {
  background: var(--kmc-primary-soft);
  color: var(--kmc-primary-dark);
}

.kmc-eyebrow {
  background: #0d86d6;
  color: #ffffff;
}

.kmc-title,
.kmc-subtitle,
.kmc-bullets,
.kmc-mini-trust,
.kmc-hero-actions,
.kmc-hero-note,
.kmc-hero-promise {
  position: relative;
  z-index: 2;
}

.kmc-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 14px;
  max-width: 620px;
  color: #ffffff;
}

.kmc-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 0 18px;
}

.kmc-hero-promise {
  margin-bottom: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 4px solid var(--kmc-accent);
  color: var(--kmc-text);
  border-radius: 6px;
  max-width: 620px;
}

.kmc-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  width: 90%;
}

.kmc-bullets li {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 13px 16px 13px 42px;
  font-weight: 600;
  font-size: 14px;
  color: var(--kmc-text);
}

.kmc-bullets li::before {
  content: "•";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-52%);
  color: #e67800;
  font-size: 24px;
  line-height: 1;
}

.kmc-mini-trust {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.55;
}

.kmc-mini-trust p {
  margin: 0;
}

.kmc-hero-actions,
.kmc-footer-actions,
.kmc-value-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.kmc-btn {
  border: 0;
  border-radius: 6px;
  padding: 15px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kmc-btn:hover {
  transform: translateY(-2px);
}

.kmc-btn-primary,
.kmc-btn-primary:visited,
.kmc-btn-primary:active,
.kmc-btn-primary:focus {
  background: #e67800;
  color: #ffffff !important;
  overflow: hidden;
}

.kmc-btn-primary::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(230, 120, 0, 0.35);
  border-radius: 6px;
  pointer-events: none;
  animation: kmcPulseRing 2.8s ease-out infinite;
}

.kmc-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 80%);
  pointer-events: none;
  animation: kmcShine 3.8s linear infinite;
}

.kmc-btn-primary:hover,
.kmc-btn-primary:hover:visited,
.kmc-btn-primary:hover:active,
.kmc-btn-primary:hover:focus {
  background: #cc6900;
  color: #ffffff !important;
}

.kmc-btn-secondary,
.kmc-btn-secondary:visited,
.kmc-btn-secondary:active,
.kmc-btn-secondary:focus {
  background: transparent;
  color: var(--kmc-primary-dark) !important;
  border: 1px solid var(--kmc-line);
}

.kmc-btn-secondary:hover,
.kmc-btn-secondary:hover:visited,
.kmc-btn-secondary:hover:active,
.kmc-btn-secondary:hover:focus {
  background: #f7f8fe;
  color: var(--kmc-primary-dark) !important;
}

.kmc-btn-link,
.kmc-btn-link:visited,
.kmc-btn-link:active,
.kmc-btn-link:focus {
  color: #ffffff !important;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.kmc-btn-link:hover,
.kmc-btn-link:hover:visited,
.kmc-btn-link:hover:active,
.kmc-btn-link:hover:focus {
  color: #ffe0bf !important;
  transform: translateY(-1px);
}

.kmc-hero-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}

/* RIGHT HERO BLOCK */
.kmc-hero-stats .kmc-stat-card {
  opacity: 0;
  transform: translateX(48px);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  transition-delay: var(--kmc-reveal-delay, 0ms);
}

.kmc-hero-stats .kmc-stat-card.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.kmc-calculator-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 3;
  margin: 20px 0;
  padding: 0 36px;
  width: 100%;
}

.kmc-calculator-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 470px;
  background: linear-gradient(180deg, rgba(246, 248, 255, 0.92) 0%, rgba(255, 255, 255, 0.95) 100%);
  margin-top: 20px;
  border: none;
}

.kmc-showcase-card {
  min-height: 470px;
}

.kmc-showcase-visual {
  position: relative;
  min-height: 470px;
  height: 100%;
  background: rgba(13, 134, 214, 0.86);
  transition: background 0.35s ease;
  border-radius: 6px;
  overflow: hidden;
}

.kmc-showcase-overlay {
  min-height: 470px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.kmc-showcase-overlay h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.kmc-showcase-overlay p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
}

.kmc-overlay-badge {
  background: rgba(230, 120, 0, 0.18);
  color: #fff3e7;
  margin-bottom: 18px;
}

.kmc-overlay-list {
  margin: 22px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  line-height: 1.65;
  font-size: 16px;
  font-weight: 600;
}

.kmc-overlay-cta {
  margin-top: 24px;
  align-self: flex-start;
}

.kmc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kmc-stat-card {
  border-radius: 6px;
  padding: 18px 16px;
  background: #ffffff;
}

.kmc-stat-number {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--kmc-text);
}

.kmc-stat-label {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--kmc-text-soft);
}

.kmc-disclaimer {
  margin: 0 0 30px;
  font-size: 13px;
  line-height: 1.7;
  background-color: #f3faff;
  border: dashed #0d86d6 2px;
  border-radius: 6px;
  padding: 15px 10px;
  color: #0d86d6;
}

/* SECTIONS */
.kmc-section {
  padding: 46px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.kmc-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.kmc-section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
}

.kmc-section-head p {
  margin: 0;
  color: var(--kmc-text-soft);
  line-height: 1.75;
}

/* KEUZEHULP */
.kmc-value-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.kmc-value-list {
  display: grid;
  gap: 14px;
}

.kmc-value-item {
  width: 100%;
  text-align: left;
  border: 1px solid var(--kmc-line);
  border-radius: 6px;
  background: var(--kmc-surface);
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--kmc-text);
  cursor: pointer;
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease,
    color 0.24s ease;
}

.kmc-value-item:hover,
.kmc-value-item.is-active {
  background: #e67800;
  border-color: #e67800;
  color: #ffffff;
  transform: translateY(-3px);
}

.kmc-value-display {
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 360px auto;
}

.kmc-value-media {
  background:
    linear-gradient(135deg, rgba(40, 20, 106, 0.18), rgba(13, 134, 214, 0.14)),
    radial-gradient(circle at top right, rgba(230, 120, 0, 0.18), rgba(230, 120, 0, 0) 48%);
  background-size: cover;
  background-position: center;
  min-height: 360px;
  transition: transform 0.45s ease, background-image 0.35s ease;
  border-radius: 6px;
  overflow: hidden;
}

.kmc-value-display:hover .kmc-value-media {
  transform: scale(1.03);
}

.kmc-value-content {
  padding: 28px 30px 32px;
}

.kmc-value-label {
  margin-bottom: 14px;
}

.kmc-value-content h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.kmc-value-content p {
  margin: 0;
  color: var(--kmc-text-soft);
  line-height: 1.85;
  font-size: 16px;
}

/* SWITCH ANIMATIE */
.kmc-value-display,
.kmc-value-media,
.kmc-value-label,
.kmc-value-content h3,
.kmc-value-content p,
.kmc-value-cta-row,
.kmc-showcase-overlay h3,
.kmc-showcase-overlay p,
.kmc-showcase-overlay .kmc-overlay-list,
.kmc-showcase-overlay .kmc-overlay-cta,
.kmc-showcase-overlay .kmc-overlay-badge {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background-image 0.35s ease;
}

.kmc-value-display.is-switching .kmc-value-media,
.kmc-value-display.is-switching .kmc-value-label,
.kmc-value-display.is-switching .kmc-value-content h3,
.kmc-value-display.is-switching .kmc-value-content p,
.kmc-value-display.is-switching .kmc-value-cta-row,
.kmc-showcase-visual.is-switching .kmc-overlay-badge,
.kmc-showcase-visual.is-switching .kmc-showcase-overlay h3,
.kmc-showcase-visual.is-switching .kmc-showcase-overlay p,
.kmc-showcase-visual.is-switching .kmc-showcase-overlay .kmc-overlay-list,
.kmc-showcase-visual.is-switching .kmc-showcase-overlay .kmc-overlay-cta {
  opacity: 0;
  transform: translateY(10px);
}

/* CLIENTS */
.kmc-clients-section {
  background: #f6f8ff;
}

.kmc-clients-section .kmc-logo-slider {
  background: #f2f6ff;
  border-radius: 6px;
  padding: 18px 0;
}

.kmc-logo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.kmc-logo-slider::before,
.kmc-logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.kmc-clients-section .kmc-logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #eef3ff 0%, rgba(238, 243, 255, 0) 100%);
}

.kmc-clients-section .kmc-logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #eef3ff 0%, rgba(238, 243, 255, 0) 100%);
}

.kmc-logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: kmcLogoScroll 26s linear infinite;
}

.kmc-logo-slider:hover .kmc-logo-track {
  animation-play-state: paused;
}

.kmc-logo-item {
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 110px;
  padding: 20px 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--kmc-text-soft);
  background: #ffffff;
  border: 1px solid rgba(40, 20, 106, 0.08);
}

/* PROJECTS */
.kmc-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kmc-project-card {
  overflow: hidden;
  border-radius: 6px;
}

.kmc-project-image {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
}

.kmc-project-card:nth-child(1) .kmc-project-image {
  background-image:
    linear-gradient(135deg, rgba(13, 134, 214, 0.22), rgba(40, 20, 106, 0.16)),
    var(--kmc-project-image-1);
}

.kmc-project-card:nth-child(2) .kmc-project-image {
  background-image:
    linear-gradient(135deg, rgba(13, 134, 214, 0.22), rgba(40, 20, 106, 0.16)),
    var(--kmc-project-image-2);
}

.kmc-project-card:nth-child(3) .kmc-project-image {
  background-image:
    linear-gradient(135deg, rgba(13, 134, 214, 0.22), rgba(40, 20, 106, 0.16)),
    var(--kmc-project-image-3);
}

.kmc-project-content {
  padding: 24px;
}

.kmc-project-content h3 {
  margin: 0 0 10px;
}

.kmc-project-content p {
  margin: 0;
  line-height: 1.75;
  color: var(--kmc-text-soft);
}

/* SOFT SECTIONS */
.kmc-section-soft:not(#faq) {
  position: relative;
  overflow: hidden;
  margin-top: 13px;
  background: #f6f8ff;
}

.kmc-section-soft:not(#faq)::before,
.kmc-section-soft:not(#faq)::after {
  display: none;
}

/* PROCESS */
.kmc-process-section {
  background: #f6f8ff;
}

.kmc-process-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.kmc-process-intro,
.kmc-process-highlight {
  border-radius: 6px;
  padding: 28px;
}

.kmc-process-intro h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.kmc-process-intro p,
.kmc-process-highlight p {
  margin: 0;
  color: var(--kmc-text-soft);
  line-height: 1.8;
}

.kmc-process-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.kmc-process-highlight h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
  color: var(--kmc-text);
}

.kmc-process-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.kmc-process-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--kmc-primary-soft);
  color: var(--kmc-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.kmc-process-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.kmc-process-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(13, 134, 214, 0.24) 0%,
    rgba(40, 20, 106, 0.16) 100%
  );
}

.kmc-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.kmc-process-marker {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 2px solid #0d86d6;
  color: #0d86d6;
  font-size: 20px;
  font-weight: 800;
}

.kmc-process-card {
  border-radius: 6px;
  padding: 24px 24px 22px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.kmc-process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 134, 214, 0.18);
}

.kmc-process-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.18;
  color: var(--kmc-text);
}

.kmc-process-card p {
  margin: 0 0 8px;
  color: var(--kmc-text-soft);
  line-height: 1.8;
  font-size: 15px;
}

.kmc-process-card p:last-child {
  margin-bottom: 0;
}

/* FAQ */
#faq {
  background: linear-gradient(135deg, rgba(13, 134, 214, 0.94) 0%, rgba(40, 20, 106, 0.88) 100%);
}

#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--kmc-faq-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transform: scale(1.05);
}

#faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(13, 134, 214, 0.12), rgba(40, 20, 106, 0.18));
}

#faq .kmc-section-head h2,
#faq .kmc-section-head p,
#faq .kmc-section-kicker {
  color: #ffffff;
}

#faq .kmc-section-kicker {
  background: rgba(255, 255, 255, 0.12);
}

.kmc-faq {
  display: grid;
  gap: 14px;
}

.kmc-faq-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  overflow: hidden;
  backdrop-filter: blur(7px);
}

.kmc-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-weight: 700;
  color: var(--kmc-text);
  transition: background 0.22s ease;
}

.kmc-faq-question:hover {
  background: rgba(13, 134, 214, 0.05);
}

.kmc-faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--kmc-primary-soft);
  color: var(--kmc-primary-dark);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.kmc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}




.kmc-faq-item.is-open .kmc-faq-icon {
  background: #28146a;
  color: #ffffff;
  transform: rotate(180deg);
}

/* FOOTER CTA */
.kmc-footer-cta {
  padding: 18px 0 64px;
  background: #ffffff;
}

.kmc-footer-card {
  border-radius: 6px;
  padding: 36px 34px;
  text-align: center;
}

.kmc-footer-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
}

.kmc-footer-card p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--kmc-text-soft);
  line-height: 1.8;
  font-size: 16px;
}

.kmc-footer-actions {
  justify-content: center;
}

.kmc-footer-phone {
  margin-top: 18px !important;
}

.kmc-footer-phone a {
  font-weight: 700;
  color: var(--kmc-link);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .kmc-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0;
  }

  .kmc-hero .kmc-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    height: auto;
  }

  .kmc-hero-grid,
  .kmc-value-grid,
  .kmc-project-grid,
  .kmc-process-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kmc-hero-copy {
    clip-path: none;
    border-radius: 0;
    padding: 24px 18px;
    min-height: auto;
  }

  .kmc-calculator-wrap {
    margin: 0;
    padding: 0 10px 0;
    gap: 8px;
    height: auto;
  }

  .kmc-calculator-card,
  .kmc-showcase-card,
  .kmc-showcase-visual,
  .kmc-showcase-overlay {
    min-height: 0;
    height: auto;
    margin-top: 0;
  }

  .kmc-showcase-card {
    border-radius: 6px;
  }

  .kmc-showcase-overlay {
    min-height: 0;
    padding: 14px 12px;
  }

  .kmc-disclaimer {
    margin: 0;
  }

  .kmc-process-intro,
  .kmc-process-highlight {
    padding: 18px 16px;
  }

  .kmc-section {
    padding: 26px 0;
  }
}

@media (max-width: 760px) {
  .kmc-page {
    display: flex;
    flex-direction: column;
  }

  .kmc-shell {
    width: min(calc(100% - 16px), var(--kmc-max));
  }

  .kmc-topbar {
    order: -1;
    position: relative;
    z-index: 6;
    background: #f3faff;
  }

  .kmc-topbar .kmc-shell {
    width: min(calc(100% - 12px), var(--kmc-max));
  }

  .kmc-topbar-row {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 6px 0;
  }

  .kmc-topbar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 3px;
    border: 1px solid rgba(13, 134, 214, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.88);
    white-space: normal;
    text-align: center;
    line-height: 1.02;
    font-size: 9px;
  }

  .kmc-hero {
    min-height: calc(100svh - 44px);
    padding: 0;
  }

  .kmc-hero-grid {
    gap: 0;
    min-height: 100%;
  }

  .kmc-hero-copy {
    width: 100%;
    border-radius: 0;
    padding: 16px 14px 14px;
  }

  .kmc-eyebrow {
    padding: 7px 9px;
    font-size: 9.5px;
  }

  .kmc-title {
    font-size: 24px;
    line-height: 1.04;
    margin: 8px 0 6px;
  }

  .kmc-subtitle {
    font-size: 12.5px;
    line-height: 1.34;
    margin: 0 0 8px;
  }

  .kmc-hero-promise {
    margin-bottom: 8px;
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.26;
  }

  .kmc-bullets {
    width: 100%;
    gap: 5px;
  }

  .kmc-bullets li {
    padding: 7px 9px 7px 27px;
    font-size: 11px;
    line-height: 1.2;
    border-radius: 6px;
  }

  .kmc-bullets li::before {
    left: 10px;
    font-size: 15px;
  }

  .kmc-mini-trust {
    margin-top: 8px;
    gap: 3px;
    font-size: 11px;
    line-height: 1.2;
  }

  .kmc-hero-actions {
    margin-top: 10px;
    gap: 6px;
  }

  .kmc-hero-actions .kmc-btn {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    padding: 9px 12px;
    font-size: 11.5px;
  }

  .kmc-hero-actions .kmc-btn-link {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    font-size: 11px;
  }

  .kmc-hero-note {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.22;
  }

  .kmc-calculator-wrap {
    gap: 6px;
    padding: 6px 6px 0;
  }

  .kmc-showcase-card {
    height: auto;
    border-radius: 6px;
  }

  .kmc-showcase-visual,
  .kmc-showcase-overlay {
    min-height: 0;
    height: auto;
  }

  .kmc-showcase-overlay {
    padding: 12px 10px;
  }

  .kmc-showcase-overlay h3 {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.06;
  }

  .kmc-showcase-overlay p {
    font-size: 11.5px;
    line-height: 1.28;
  }

  .kmc-overlay-badge {
    margin-bottom: 8px;
    padding: 7px 9px;
    font-size: 9.5px;
  }

  .kmc-overlay-list {
    margin-top: 7px;
    gap: 3px;
    font-size: 10.5px;
    line-height: 1.2;
  }

  .kmc-overlay-cta {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    min-height: 38px;
    font-size: 11px;
  }

  .kmc-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .kmc-stat-card {
    padding: 6px 5px;
    border-radius: 6px;
    min-height: 0;
  }

  .kmc-stat-number {
    font-size: 11px;
    margin-bottom: 1px;
    line-height: 1.05;
  }

  .kmc-stat-label {
    font-size: 8.5px;
    line-height: 1.05;
  }

  .kmc-disclaimer {
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border: 0;
    border-radius: 0;
    padding: 7px 14px;
    font-size: 9.5px;
    line-height: 1.18;
  }

  .kmc-section {
    padding: 22px 0;
  }

  .kmc-section-head {
    margin-bottom: 12px;
  }

  .kmc-section-head h2 {
    font-size: 24px;
    line-height: 1.06;
    margin: 7px 0 5px;
  }

  .kmc-section-head p {
    line-height: 1.38;
    font-size: 13px;
  }

  .kmc-value-grid {
    gap: 8px;
  }

  .kmc-value-list {
    gap: 6px;
  }

  .kmc-value-item {
    padding: 10px 12px;
    font-size: 12.5px;
    line-height: 1.18;
    border-radius: 6px;
  }

  .kmc-value-display {
    grid-template-rows: 96px auto;
    border-radius: 6px;
  }

  .kmc-value-media {
    min-height: 96px;
    border-radius: 6px;
  }

  .kmc-value-content {
    padding: 12px 12px 12px;
  }

  .kmc-value-label {
    margin-bottom: 6px;
    padding: 7px 9px;
    font-size: 9.5px;
  }

  .kmc-value-content h3 {
    margin: 0 0 5px;
    font-size: 17px;
    line-height: 1.08;
  }

  .kmc-value-content p {
    font-size: 11.8px;
    line-height: 1.28;
  }

  .kmc-value-cta-row {
    margin-top: 8px;
  }

  .kmc-value-cta-row .kmc-btn {
    width: 100%;
    justify-content: center;
    min-height: 38px;
    font-size: 11px;
  }

  .kmc-clients-section .kmc-logo-slider {
    padding: 10px 0;
    border-radius: 6px;
  }

  .kmc-logo-track {
    gap: 8px;
  }

  .kmc-logo-item {
    min-width: 120px;
    min-height: 58px;
    padding: 10px 8px;
    font-size: 11px;
    border-radius: 6px;
  }

  .kmc-project-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kmc-project-image {
    min-height: 140px;
  }

  .kmc-project-content {
    padding: 14px 12px;
  }

  .kmc-process-top {
    gap: 6px;
  }

  .kmc-process-intro,
  .kmc-process-highlight {
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 14px 14px;
  }

  .kmc-process-intro h2 {
    font-size: 24px;
    margin: 7px 0 5px;
  }

  .kmc-process-highlight h3 {
    font-size: 18px;
  }

  .kmc-process-pills {
    gap: 6px;
    margin-top: 10px;
  }

  .kmc-process-pill {
    padding: 7px 8px;
    font-size: 10px;
  }

  .kmc-process-step {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }

  .kmc-process-marker {
    width: 34px;
    height: 34px;
    font-size: 13px;
    border-radius: 50%;
  }

  .kmc-process-timeline::before {
    left: 16px;
  }

  .kmc-process-card {
    padding: 12px 10px;
  }

  .kmc-process-card h3 {
    font-size: 15px;
    margin: 0 0 5px;
  }

  .kmc-process-card p {
    font-size: 11.8px;
    line-height: 1.34;
  }

  .kmc-faq {
    gap: 6px;
  }

  .kmc-faq-item {
    border-radius: 6px;
  }

  .kmc-faq-question {
    padding: 12px 12px;
    font-size: 12.5px;
    line-height: 1.2;
  }

  .kmc-faq-answer p {
    margin: 0 !important;
    padding: 10px 20px !important;
    color: black !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .kmc-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
    border-radius: 50%;
  }

  .kmc-footer-card {
    padding: 18px 14px;
  }

  .kmc-footer-card h2 {
    font-size: 24px;
    margin: 7px 0 5px;
  }

  .kmc-footer-card p {
    font-size: 12.5px;
    line-height: 1.38;
  }

  .kmc-footer-actions {
    gap: 6px;
  }

  .kmc-footer-actions .kmc-btn {
    width: 100%;
    justify-content: center;
    min-height: 38px;
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .kmc-topbar-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
  }

  .kmc-topbar-item {
    min-height: 28px;
    font-size: 8.5px;
    padding: 4px 2px;
    border-radius: 6px;
  }

  .kmc-title {
    font-size: 22px;
  }

  .kmc-showcase-overlay h3 {
    font-size: 16px;
  }

  .kmc-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kmc-stat-card {
    padding: 5px 4px;
  }

  .kmc-stat-number {
    font-size: 10px;
  }

  .kmc-stat-label {
    font-size: 8px;
  }

  .kmc-value-display {
    grid-template-rows: 88px auto;
  }

  .kmc-value-media {
    min-height: 88px;
  }

  .kmc-value-item {
    padding: 9px 10px;
    font-size: 12px;
  }

  .kmc-logo-item {
    min-width: 108px;
    min-height: 54px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .kmc-animate-on-scroll,
  .kmc-hero-sequence,
  .kmc-hero-sequence-inner {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (min-width: 1101px) {
  .kmc-page {
    display: block;
  }

  .kmc-hero {
    height: calc(var(--kmc-visible-page-height) - var(--kmc-topbar-height));
    min-height: calc(var(--kmc-visible-page-height) - var(--kmc-topbar-height));
    max-height: calc(var(--kmc-visible-page-height) - var(--kmc-topbar-height));
    display: flex;
    align-items: stretch;
  }

  .kmc-topbar {
    position: relative;
    z-index: 5;
  }

  .kmc-topbar-row {
    min-height: 52px;
    gap: 20px;
    padding: 8px 14px;
  }

  .kmc-topbar-item {
    font-size: 12px;
  }

  .kmc-hero .kmc-shell {
    height: 100%;
    min-height: 0;
  }

  .kmc-hero-grid {
    width: 100%;
    max-width: 1800px;
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    align-items: stretch;
    gap: 0;
  }

  .kmc-hero-copy {
    padding: 24px 82px 24px 28px;
    min-height: 100%;
    min-width: 0;
    justify-content: center;
    gap: 6px;
  }

  .kmc-eyebrow {
    padding: 8px 12px;
    font-size: 10.5px;
  }

  .kmc-title {
    font-size: clamp(27px, 2.25vw, 38px);
    line-height: 1.04;
    margin: 8px 0 9px;
    max-width: 500px;
  }

  .kmc-subtitle {
    margin: 0 0 10px;
    max-width: 500px;
    font-size: 13px;
    line-height: 1.42;
  }

  .kmc-hero-promise {
    margin-bottom: 10px;
    padding: 9px 11px;
    max-width: 500px;
    font-size: 12px;
    line-height: 1.34;
  }

  .kmc-bullets {
    gap: 6px;
    width: 84%;
  }

  .kmc-bullets li {
    padding: 8px 11px 8px 32px;
    font-size: 11.8px;
    line-height: 1.24;
  }

  .kmc-bullets li::before {
    left: 12px;
    font-size: 17px;
  }

  .kmc-mini-trust {
    margin-top: 8px;
    gap: 4px;
    font-size: 11px;
    line-height: 1.28;
  }

  .kmc-hero-actions {
    margin-top: 10px;
    gap: 10px;
  }

  .kmc-hero-actions .kmc-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .kmc-hero-actions .kmc-btn-link {
    font-size: 12px;
  }

  .kmc-hero-note {
    margin-top: 6px;
    font-size: 10.5px;
    line-height: 1.28;
    max-width: 500px;
  }

  .kmc-calculator-wrap {
    height: 100%;
    min-height: 0;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
    gap: 8px;
    justify-content: center;
  }

  .kmc-calculator-card,
  .kmc-showcase-card,
  .kmc-showcase-visual,
  .kmc-showcase-overlay {
    margin-top: 0;
    min-height: 0;
  }

  .kmc-showcase-card {
    height: clamp(350px, 54vh, 610px);
  }

  .kmc-showcase-visual,
  .kmc-showcase-overlay {
    height: 100%;
    min-height: 0;
  }

  .kmc-showcase-overlay {
    padding: 12px 14px;
    justify-content: center;
    gap: 6px;
  }

  .kmc-showcase-overlay h3 {
    margin: 0 0 6px;
    font-size: clamp(21px, 1.9vw, 31px);
    line-height: 1.08;
  }

  .kmc-showcase-overlay p {
    font-size: 12.9px;
    line-height: 1.38;
    max-width: 100%;
  }

  .kmc-overlay-badge {
    margin-bottom: 6px;
  }

  .kmc-overlay-list {
    margin-top: 6px;
    padding-left: 16px;
    gap: 5px;
    font-size: 11.8px;
    line-height: 1.26;
  }

  .kmc-overlay-cta {
    margin-top: 6px;
  }

  .kmc-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .kmc-stat-card {
    padding: 10px 10px;
  }

  .kmc-stat-number {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .kmc-stat-label {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .kmc-disclaimer {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    padding: 10px 12px;
  }
}

@media (min-width: 1101px) and (max-height: 860px) {
  .kmc-topbar-row {
    min-height: 48px;
    gap: 16px;
    padding: 7px 12px;
  }

  .kmc-topbar-item {
    font-size: 11.5px;
  }

  .kmc-hero-copy {
    padding: 20px 68px 20px 24px;
    justify-content: center;
    gap: 5px;
  }

  .kmc-title {
    font-size: clamp(24px, 1.95vw, 32px);
    margin: 6px 0;
  }

  .kmc-subtitle {
    font-size: 12px;
    line-height: 1.34;
    margin-bottom: 8px;
  }

  .kmc-hero-promise {
    font-size: 11.2px;
    line-height: 1.28;
    padding: 8px 10px;
    margin-bottom: 8px;
  }

  .kmc-bullets {
    gap: 5px;
  }

  .kmc-bullets li {
    padding: 7px 10px 7px 29px;
    font-size: 11px;
    line-height: 1.18;
  }

  .kmc-bullets li::before {
    left: 11px;
    font-size: 16px;
  }

  .kmc-mini-trust {
    margin-top: 7px;
    font-size: 10.4px;
    line-height: 1.22;
  }

  .kmc-hero-actions {
    margin-top: 8px;
  }

  .kmc-hero-actions .kmc-btn {
    padding: 9px 13px;
    font-size: 11.5px;
  }

  .kmc-hero-actions .kmc-btn-link {
    font-size: 11.5px;
  }

  .kmc-hero-note {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.2;
  }

  .kmc-calculator-wrap {
    padding: 8px 16px;
    gap: 7px;
  }

  .kmc-showcase-card {
    height: clamp(290px, 46vh, 470px);
  }

  .kmc-showcase-overlay {
    padding: 11px 13px;
    justify-content: center;
    gap: 5px;
  }

  .kmc-showcase-overlay h3 {
    font-size: clamp(18px, 1.65vw, 26px);
    margin-bottom: 4px;
  }

  .kmc-showcase-overlay p {
    font-size: 11.8px;
    line-height: 1.32;
    max-width: 100%;
  }

  .kmc-overlay-badge {
    margin-bottom: 5px;
  }

  .kmc-overlay-list {
    margin-top: 5px;
    gap: 4px;
    padding-left: 15px;
    font-size: 10.8px;
    line-height: 1.18;
  }

  .kmc-overlay-cta {
    margin-top: 5px;
  }

  .kmc-stat-card {
    padding: 8px 9px;
  }

  .kmc-stat-number {
    font-size: 15px;
  }

  .kmc-stat-label {
    font-size: 10px;
    line-height: 1.18;
  }

  .kmc-disclaimer {
    font-size: 11px;
    line-height: 1.3;
    padding: 8px 10px;
  }
}

/* ALLES 6PX: VLAKKEN / IMAGES / KNOPPEN */
.kmc-btn,
.kmc-btn-primary::before,
.kmc-btn-secondary,
.kmc-btn-link,
.kmc-topbar-item,
.kmc-value-item,
.kmc-process-pill,
.kmc-section-kicker,
.kmc-overlay-badge,
.kmc-value-label,
.kmc-eyebrow {
  border-radius: 6px !important;
}

.kmc-calculator-card,
.kmc-showcase-card,
.kmc-value-display,
.kmc-project-card,
.kmc-stat-card,
.kmc-logo-item,
.kmc-process-intro,
.kmc-process-highlight,
.kmc-process-card,
.kmc-faq-item,
.kmc-footer-card,
.kmc-hero-promise,
.kmc-disclaimer,
.kmc-bullets li {
  border-radius: 6px !important;
}

.kmc-project-image,
.kmc-value-media,
.kmc-showcase-visual,
.kmc-logo-slider {
  border-radius: 6px !important;
  overflow: hidden !important;
}

/* FAQ PLUS TERUG ORIGINEEL */
.kmc-faq-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: var(--kmc-primary-soft) !important;
  color: var(--kmc-primary-dark) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease !important;
}

.kmc-faq-item.is-open .kmc-faq-icon {
  background: #28146a !important;
  color: #fff !important;
  transform: rotate(180deg) !important;
}

/* FAQ TEKST FORCE */
.kmc-faq-answer p {
  margin: 0 !important;
  padding: 10px 20px !important;
  color: black !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  font-weight: bold;
}

@media (max-width: 760px) {
  .kmc-faq-answer p {
    margin: 0 !important;
  padding: 10px 20px !important;
  color: black !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
    font-weight: bold;
}
  }
}


































/* =========================================================
   ERGOWERKEN · PROJECTINRICHTING
   Plak dit helemaal onderaan de Lightspeed CSS
   ========================================================= */

/* Bullets in hero → vinkjes */
.kmc-hero-copy .kmc-bullets {
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.kmc-hero-copy .kmc-bullets li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 4px 4px 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.kmc-hero-copy .kmc-bullets li::before {
  content: "✓" !important;
  color: var(--kmc-accent);
  font-size: 15px;
  left: 4px;
}

/* Stat cards: oranje streep bovenaan */
.kmc-stat-card {
  border-top: 3px solid var(--kmc-accent);
}

/* Showcase bullets */
.kmc-showcase-bullets {
  list-style: none;
  margin: 16px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.kmc-showcase-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.kmc-showcase-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--kmc-accent);
  font-size: 13px;
}

/* Hero note: beter leesbaar */
.kmc-hero-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase sub-tekst */
.kmc-showcase-sub {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase overlay: links uitlijnen */
.kmc-showcase-overlay {
  align-items: flex-start;
  text-align: left;
}

/* Topbar: taaltoggle */
.kmc-lang-toggle {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  line-height: 1.5;
  z-index: 1;
}

.kmc-lang-toggle:hover {
  opacity: 1;
}

/* Topbar: gecentreerde links + sticky */
.kmc-topbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 16px;
  min-height: 60px;
}

.kmc-topbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.kmc-topbar {
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.kmc-topbar.is-stuck {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(40, 20, 106, 0.12) !important;
}

.kmc-topbar-item {
  font-size: 13px;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  white-space: nowrap;
  padding: 0;
  min-height: auto;
}

/* Geen border-radius op hero kanten */
.kmc-hero-copy {
  border-radius: 0 !important;
}

.kmc-calculator-card,
.kmc-showcase-card,
.kmc-showcase-visual,
.kmc-showcase-overlay {
  border-radius: var(--kmc-radius-xl) !important;
}

/* Rechter hero: volledige breedte */
.kmc-calculator-wrap {
  padding-left: 0 !important;
  padding-right: 24px !important;
  overflow: hidden;
}

.kmc-calculator-card,
.kmc-showcase-card {
  width: 100%;
  max-width: none;
}

/* Geen hover op rechter hero kant */
.kmc-calculator-wrap .kmc-calculator-card:hover,
.kmc-calculator-wrap .kmc-stat-card:hover {
  transform: none !important;
}

/* =========================================================
   FAQ
   ========================================================= */
.kmc-faq {
  display: grid;
  gap: 14px;
}

.kmc-faq-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--kmc-radius-md);
  overflow: hidden;
  backdrop-filter: blur(7px);
}

.kmc-faq-question {
  width: 100%;
  border: 0;
  list-style: none;
  background: transparent;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-weight: 700;
  color: var(--kmc-text);
  transition: background 0.22s ease;
}

.kmc-faq-question::-webkit-details-marker {
  display: none;
}

.kmc-faq-question:hover {
  background: rgba(13, 134, 214, 0.05);
}

.kmc-faq-icon,
.kmc-faq-icon::before,
.kmc-faq-icon::after {
  display: none !important;
}

.kmc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.kmc-faq-item[open] .kmc-faq-answer,
.kmc-faq-item.is-open .kmc-faq-answer {
  animation: pluhFaqOpen 0.28s ease;
}

@keyframes pluhFaqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.kmc-faq-answer p {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 24px 20px 34px;
  color: var(--kmc-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
  text-align: left;
  background: rgba(13, 134, 214, 0.08);
  border-left: 3px solid var(--kmc-accent) !important;
  border-radius: 0 !important;
}

.kmc-faq-answer p::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 6px;
  font-size: 36px;
  line-height: 1;
  color: var(--kmc-accent);
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   PROJECTEN GRID
   ========================================================= */
.kmc-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kmc-project-card {
  overflow: hidden;
  border-radius: var(--kmc-radius-xl);
  background: var(--kmc-surface, #fff);
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease;
}

.kmc-project-card:hover {
  transform: translateY(-4px);
}

.kmc-project-image {
  width: 100%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.kmc-project-content {
  padding: 16px 18px 18px;
}

.kmc-project-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kmc-accent);
  margin-bottom: 6px;
}

.kmc-project-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--kmc-text);
  line-height: 1.3;
}

.kmc-project-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--kmc-text-muted, rgba(40,20,106,0.65));
  margin: 0 0 12px;
}

.kmc-text-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--kmc-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.kmc-text-link:hover {
  text-decoration: underline;
}

/* =========================================================
   WERKWIJZE / PROCESS TIMELINE
   ========================================================= */
.kmc-process-section {
  background: var(--kmc-surface-dark, #f5f4fb);
}

.kmc-process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

.kmc-process-intro h2 {
  font-size: 32px;
  margin: 8px 0 12px;
  line-height: 1.2;
}

.kmc-process-intro p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--kmc-text-muted, rgba(40,20,106,0.65));
}

.kmc-process-highlight {
  background: #fff;
  border-radius: var(--kmc-radius-xl);
  padding: 24px 28px;
  border: 1px solid rgba(40,20,106,0.08);
}

.kmc-process-highlight h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.kmc-process-highlight p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--kmc-text-muted, rgba(40,20,106,0.65));
  margin: 0 0 16px;
}

.kmc-process-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kmc-process-pill {
  background: var(--kmc-primary-soft);
  color: var(--kmc-primary-dark);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
}

.kmc-process-timeline {
  position: relative;
  display: grid;
  gap: 20px;
}

.kmc-process-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--kmc-primary), var(--kmc-accent));
  border-radius: 1px;
}

.kmc-process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.kmc-process-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kmc-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.kmc-process-card {
  background: #fff;
  border-radius: var(--kmc-radius-lg);
  padding: 18px 20px;
  border: 1px solid rgba(40,20,106,0.08);
}

.kmc-process-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.kmc-process-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--kmc-text-muted, rgba(40,20,106,0.65));
  margin: 0 0 4px;
}

/* =========================================================
   DESKTOP (≥ 1101px)
   ========================================================= */
@media (min-width: 1101px) {
  .kmc-hero-copy {
    padding-bottom: 100px;
  }

  .kmc-hero-actions {
    margin-top: 0;
  }

  .kmc-calculator-wrap {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .kmc-showcase-overlay {
    padding: 24px;
  }

  .kmc-stat-card {
    padding: 11px 13px;
  }

  .kmc-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 11px;
  }

  .kmc-btn-link {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }
}

/* =========================================================
   TABLET (≤ 1100px)
   ========================================================= */
@media (max-width: 1100px) {
  .kmc-hero {
    background-color: rgba(13, 134, 214, 0.84);
  }

  .kmc-hero .kmc-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .kmc-hero-grid {
    gap: 0 !important;
  }

  .kmc-hero-copy {
    border-radius: 0;
    padding: 28px 20px;
    border-bottom: 2px solid var(--kmc-accent);
  }

  .kmc-calculator-wrap {
    padding: 20px 0 28px;
    background-color: rgba(13, 134, 214, 0.84);
  }

  .kmc-hero-stats {
    margin-bottom: 8px;
  }

  .kmc-calculator-card,
  .kmc-showcase-card,
  .kmc-showcase-visual,
  .kmc-showcase-overlay {
    min-height: 0;
    height: auto;
    margin-top: 0;
  }

  .kmc-showcase-overlay {
    padding: 22px 20px;
  }

  .kmc-process-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
}

/* =========================================================
   MOBIEL (≤ 760px)
   ========================================================= */
@media (max-width: 760px) {
  .kmc-topbar {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .kmc-topbar::-webkit-scrollbar {
    display: none;
  }

  .kmc-topbar-row {
    width: max-content !important;
    max-width: none !important;
    min-width: 100vw;
    min-height: auto;
    margin: 0 !important;
    padding: 0;
    gap: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
  }

  .kmc-lang-toggle {
    position: static !important;
    transform: none !important;
    flex-shrink: 0;
    margin: 10px 0 10px 16px;
  }

  .kmc-topbar-links {
    position: static !important;
    transform: none !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 24px;
    padding: 10px 16px;
    white-space: nowrap;
  }

  .kmc-topbar-item {
    font-size: 12px;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .kmc-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .kmc-stat-card {
    padding: 10px 10px;
  }

  .kmc-stat-number {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .kmc-stat-label {
    font-size: 8px;
    line-height: 1.3;
  }

  .kmc-section {
    padding: 28px 0;
  }

  .kmc-section-head {
    margin-bottom: 14px;
  }

  .kmc-section-head h2 {
    font-size: 26px;
    margin: 8px 0 8px;
  }

  .kmc-value-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .kmc-value-item {
    font-size: 13px !important;
    padding: 14px 12px !important;
    line-height: 1.3 !important;
  }

  .kmc-value-display {
    grid-template-rows: auto;
  }

  .kmc-value-media {
    display: none;
  }

  .kmc-value-content {
    padding: 16px 18px 18px;
  }

  .kmc-value-content h3 {
    font-size: 18px;
    margin: 0 0 8px;
  }

  .kmc-value-content p {
    font-size: 13px;
    line-height: 1.55;
  }

  .kmc-value-cta-row {
    margin-top: 10px;
  }

  .kmc-project-grid {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: calc(85% - 4px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .kmc-project-grid::-webkit-scrollbar {
    display: none;
  }

  .kmc-project-card {
    scroll-snap-align: start;
    min-width: 0;
  }

  .kmc-project-image {
    min-height: 160px;
  }

  .kmc-project-content h3 {
    font-size: 13px;
    margin: 6px 0 6px;
    line-height: 1.2;
  }

  .kmc-project-content p {
    font-size: 11px;
    line-height: 1.35;
  }

  .kmc-process-top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .kmc-process-intro h2 {
    font-size: 22px;
  }

  .kmc-hero-actions {
    gap: 8px;
  }

  .kmc-hero-actions .kmc-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }

  .kmc-hero-note {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .kmc-showcase-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
}


/* ── Hero Slider ─────────────────────────────────────────── */
.kmc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.kmc-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.kmc-slide .kmc-showcase-overlay {
  min-height: 0;
  height: 100%;
}

.kmc-slide-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.kmc-slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.kmc-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.kmc-slider-dot.is-active {
  background: var(--kmc-accent);
  transform: scale(1.3);
}

.kmc-slider-prev,
.kmc-slider-next {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.kmc-slider-prev:hover,
.kmc-slider-next:hover {
  background: var(--kmc-accent);
  border-color: var(--kmc-accent);
}











/* =========================================================
   ERGOWERKEN · PROJECTINRICHTING — LIGHTSPEED OVERRIDES
   Vervang alle vorige versies — alleen dit blok bewaren
   ========================================================= */

/* FAQ icon verbergen */
.pluh-faq-icon,
.pluh-faq-icon::before,
.pluh-faq-icon::after {
  display: none !important;
}

/* Bullets: vinkjes */
.pluh-hero-copy .pluh-bullets {
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.pluh-hero-copy .pluh-bullets li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 4px 4px 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.pluh-hero-copy .pluh-bullets li::before {
  content: "✓" !important;
  color: var(--pluh-accent);
  font-size: 15px;
  left: 4px;
}

/* Stat cards: oranje streep + ALTIJD ZICHTBAAR (bypass JS animatie) */
.pluh-stat-card {
  border-top: 3px solid var(--pluh-accent);
}

.pluh-hero-stats .pluh-stat-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Hero note */
.pluh-hero-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Lang toggle */
.pluh-lang-toggle { display: none !important; }

/* Topbar */
.pluh-topbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 16px;
  min-height: 60px;
}

.pluh-topbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.pluh-topbar {
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.pluh-topbar.is-stuck {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(40, 20, 106, 0.12) !important;
}

.pluh-topbar-item {
  font-size: 13px;
  border: none;
  background: transparent !important;
  border-radius: 0;
  white-space: nowrap;
  padding: 0;
  min-height: auto;
}

/* Geen border-radius op hero */
.pluh-hero-copy { border-radius: 0 !important; }

.pluh-calculator-card,
.pluh-showcase-card,
.pluh-showcase-visual,
.pluh-showcase-overlay {
  border-radius: var(--pluh-radius-xl) !important;
}

/* Rechter hero breedte */
.pluh-calculator-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.pluh-calculator-card,
.pluh-showcase-card {
  width: 100%;
  max-width: none;
}

.pluh-calculator-wrap .pluh-calculator-card:hover,
.pluh-calculator-wrap .pluh-stat-card:hover {
  transform: none !important;
}

/* FAQ sectie achtergrond */
.kmc-page #faq {
  background: #0d86d6 !important;
}

.kmc-page #faq .pluh-section-head h2,
.kmc-page #faq .pluh-section-head p,
.kmc-page #faq .pluh-section-kicker {
  color: #ffffff;
}

.kmc-page #faq .pluh-section-kicker {
  background: rgba(255, 255, 255, 0.12);
}

/* FAQ open staat — native details/summary toggle */
.pluh-faq-item[open] .pluh-faq-answer,
.pluh-faq-item.is-open .pluh-faq-answer {
  display: block !important;
  height: auto !important;
  max-height: 800px !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* FAQ antwoord stijl */
.pluh-faq-answer p {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 24px 20px 34px;
  color: var(--pluh-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
  text-align: left;
  background: rgba(13, 134, 214, 0.08);
  border-left: 3px solid var(--pluh-accent) !important;
  border-radius: 0 !important;
}

.pluh-faq-answer p::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 6px;
  font-size: 36px;
  line-height: 1;
  color: var(--pluh-accent);
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   DESKTOP (≥ 1101px)
   ========================================================= */
@media (min-width: 1101px) {
  .pluh-hero-copy { padding-bottom: 100px; }
  .pluh-hero-actions { margin-top: 0; }

  .pluh-calculator-wrap {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .pluh-showcase-overlay { padding: 24px; }
  .pluh-stat-card { padding: 11px 13px; }

  .pluh-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 11px;
  }

  .pluh-btn-link {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }
}

/* =========================================================
   TABLET (≤ 1100px) — hero gestapeld, volledig blauw
   ========================================================= */
@media (max-width: 1100px) {
  /* Hero: vaste viewport hoogte, twee kolommen naast elkaar */
  .pluh-hero {
    height: calc(var(--pluh-visible-page-height, 100svh) - var(--pluh-topbar-height, 0px));
    overflow: hidden;
    background-color: rgba(13, 134, 214, 0.84);
    border-radius: 0 !important;
  }

  .pluh-hero .pluh-calculator-wrap,
  .pluh-hero .pluh-calculator-card,
  .pluh-hero .pluh-showcase-card,
  .pluh-hero .pluh-showcase-visual,
  .pluh-hero .pluh-showcase-overlay,
  .pluh-calculator-wrap,
  .pluh-calculator-card,
  .pluh-showcase-card,
  .pluh-showcase-visual,
  .pluh-showcase-overlay {
    border-radius: 0 !important;
    overflow: hidden;
  }

  .pluh-hero .pluh-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .pluh-hero-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 100%;
    gap: 0 !important;
  }

  /* Linker kolom: copy */
  .pluh-hero-copy {
    flex: 0 0 46% !important;
    width: 46% !important;
    border-radius: 0 !important;
    padding: 92px 18px 14px;
    border-right: 2px solid var(--pluh-accent);
    border-bottom: none !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
  }

  .pluh-title { font-size: 17px; line-height: 1.15; margin: 3px 0 8px; }
  .pluh-eyebrow { font-size: 9px; margin-bottom: 4px; }
  .pluh-hero-copy .pluh-bullets { gap: 5px; margin-top: 6px; margin-bottom: 8px; }
  .pluh-hero-copy .pluh-bullets li { font-size: 11px; padding: 2px 4px 2px 18px; line-height: 1.3; }
  .pluh-hero-copy .pluh-hero-actions { gap: 6px; flex-wrap: wrap; }
  .pluh-hero-copy .pluh-btn { padding: 8px 12px; font-size: 11px; }
  .pluh-hero-note { display: none; }

  /* Rechter kolom: stats + showcase */
  .pluh-calculator-wrap {
    flex: 0 0 54% !important;
    width: 54% !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    display: flex !important;
    flex-direction: column !important;
    background-color: rgba(13, 134, 214, 0.84);
    overflow: hidden;
  }

  .pluh-hero-stats {
    flex: 0 0 auto;
    margin: 6px 12px;
    gap: 5px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pluh-stat-card { padding: 5px 7px; border-top-width: 2px; }
  .pluh-stat-number { font-size: 11px; margin-bottom: 1px; }
  .pluh-stat-label { font-size: 7px; line-height: 1.2; }

  .pluh-calculator-card,
  .pluh-showcase-card {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .pluh-showcase-visual {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    background: rgba(13, 134, 214, 0.86);
    position: relative;
  }

  .pluh-showcase-overlay {
    min-height: 0;
    height: 100%;
    margin-top: 0;
    border-radius: 0 !important;
    padding: 92px 16px 14px;
    justify-content: flex-start;
  }

  /* Showcase content: zelfde grootte als linker kant */
  .pluh-showcase-overlay h2,
  .pluh-showcase-overlay h3 { font-size: 17px !important; line-height: 1.15; margin: 3px 0 8px; }
  .pluh-slide-kicker { font-size: 9px !important; margin-bottom: 4px; letter-spacing: 0.06em; }
  .pluh-showcase-sub { font-size: 11px !important; line-height: 1.35; margin: 0 0 8px; }
  .pluh-showcase-bullets { gap: 5px !important; margin-top: 6px !important; margin-bottom: 8px !important; }
  .pluh-showcase-bullets li { font-size: 11px !important; padding: 2px 4px 2px 18px !important; line-height: 1.3 !important; }
  .pluh-showcase-overlay .pluh-btn,
  .pluh-showcase-overlay .pluh-btn-link { padding: 8px 12px !important; font-size: 11px !important; }

  /* Navbar: kleiner op tablet zodat alles past */
  .pluh-topbar-row {
    min-height: 46px;
    padding: 5px 12px;
    gap: 14px;
  }

  .pluh-topbar-links {
    flex-wrap: nowrap !important;
    gap: 0 8px !important;
    white-space: nowrap !important;
  }

  .pluh-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .pluh-lang-toggle {
    font-size: 10px !important;
    padding: 2px 9px !important;
  }

  /* Secties */
  .pluh-section { padding: 28px 0; }
  .pluh-section-head { margin-bottom: 16px; }
  .pluh-section-head h2 { font-size: 24px; margin: 8px 0 8px; }
  .pluh-section-head p { font-size: 14px; line-height: 1.5; }

  .pluh-value-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pluh-value-item { font-size: 13px !important; padding: 14px 12px !important; line-height: 1.3 !important; }
  .pluh-value-display { grid-template-rows: auto; }
  .pluh-value-media { display: none; }
  .pluh-value-content { padding: 16px 18px 18px; }
  .pluh-value-content h3 { font-size: 18px; margin: 0 0 8px; }
  .pluh-value-content p { font-size: 13px; line-height: 1.55; }
  .pluh-value-cta-row { margin-top: 10px; }

  .pluh-project-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .pluh-project-card { scroll-snap-align: start; min-width: 0; }
  .pluh-project-image { min-height: 160px; }
  .pluh-project-content h3 { font-size: 13px; margin: 6px 0 6px; line-height: 1.2; }
  .pluh-project-content p { font-size: 11px; line-height: 1.35; }

  .pluh-service-grid {
    grid-template-columns: repeat(6, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .pluh-service-card { scroll-snap-align: start; min-width: 0; }
  .pluh-service-media { min-height: 110px; }
  .pluh-service-body { padding: 12px 12px 14px; }
  .pluh-service-body h3 { font-size: 14px; margin: 6px 0 6px; line-height: 1.2; }
  .pluh-service-body p { font-size: 11.5px; line-height: 1.4; margin: 0 0 8px; }
  .pluh-service-body li { font-size: 11px; line-height: 1.3; padding-left: 20px; }
  .pluh-service-body li::before { font-size: 14px; left: 2px; }

  .pluh-mix-images {
    display: flex; flex-direction: row;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 8px; padding-bottom: 6px; grid-template-columns: unset;
  }
  .pluh-mix-side { display: contents; }
  .pluh-mix-image, .pluh-mix-image-large {
    flex: 0 0 80%; min-height: 160px;
    scroll-snap-align: start; border-radius: var(--pluh-radius-xl);
  }
  .pluh-mix-card { padding: 20px 18px; }
  .pluh-mix-card-dark h2 { font-size: 22px; margin: 8px 0 8px; line-height: 1.15; }
  .pluh-mix-card-dark p { font-size: 13px; line-height: 1.5; }
  .pluh-split-image { min-height: 150px; }
  .pluh-split-copy h3 { font-size: 20px; margin: 8px 0 8px; }
}

/* =========================================================
   MOBIEL (≤ 760px)
   ========================================================= */
@media (max-width: 760px) {
  /* Topbar hoogte aanpassen zodat hero-calc klopt */
  .pluh-page {
    --pluh-topbar-height: 52px;
  }

  /* Navbar: twee lagen — links boven, lang toggle onder */
  .pluh-topbar-row {
    min-height: 52px;
    height: 52px;
    padding: 0 12px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .pluh-topbar-links {
    position: absolute !important;
    left: 50% !important;
    top: 6px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 10px !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .pluh-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .pluh-topbar-links .pluh-topbar-item + .pluh-topbar-item::before {
    content: "·" !important;
    margin-right: 10px !important;
    opacity: 0.45 !important;
  }

  .pluh-lang-toggle {
    font-size: 10px !important;
    padding: 2px 10px !important;
    top: auto !important;
    bottom: 4px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Hero: copy + stats = startscherm, showcase verborgen */
  .pluh-hero {
    height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height));
    overflow: hidden;
  }

  .pluh-hero .pluh-shell {
    height: 100%;
    overflow: hidden;
  }

  .pluh-hero-grid {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    height: 100%;
    overflow: hidden;
  }

  /* Hero-copy: alles behalve 44px voor stats */
  .pluh-hero-copy {
    flex: 0 0 calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height) - 44px) !important;
    width: 100% !important;
    height: calc(var(--pluh-visible-page-height) - var(--pluh-topbar-height) - 44px);
    min-height: 0;
    padding: 8px 18px 12px;
    overflow: hidden;
    border-right: none !important;
    border-bottom: none !important;
  }

  .pluh-title { font-size: 20px; line-height: 1.1; margin: 2px 0 10px; }
  .pluh-eyebrow { font-size: 10px; margin-bottom: 4px; }
  .pluh-hero-copy .pluh-bullets { gap: 6px; margin-top: 8px; margin-bottom: 12px; }
  .pluh-hero-copy .pluh-bullets li { font-size: 12px; padding: 3px 4px 3px 20px; line-height: 1.25; }
  .pluh-hero-copy .pluh-hero-actions { gap: 6px; }
  .pluh-hero-copy .pluh-btn { padding: 9px 14px; font-size: 12px; }

  /* Calculator-wrap: vaste 44px = stats strip, full width */
  .pluh-calculator-wrap {
    flex: 0 0 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Stats: absoluut positioneren zodat ze altijd de volledige breedte van de wrap pakken */
  .pluh-hero-stats {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: 44px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    transform: none !important;
  }

  /* Stats: altijd zichtbaar, bypass JS animatie */
  .pluh-hero-stats .pluh-stat-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    border-radius: 0 !important;
  }

  .pluh-stat-card {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 4px 6px !important;
    border-top-width: 2px !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .pluh-stat-number { font-size: 8px; margin-bottom: 0; text-align: center; }
  .pluh-stat-label { font-size: 5px; line-height: 1.1; text-align: center; }
  .pluh-hero-stats .pluh-stat-card:nth-child(2) .pluh-stat-label { display: none; }

  /* Showcase: verborgen op mobiel */
  .pluh-calculator-card,
  .pluh-showcase-card {
    display: none !important;
  }

  /* Sticky positie onder de Lightspeed hoofdheader op mobiel */
  .pluh-topbar.is-stuck {
    top: 105px !important;
  }
}

/* ── Hero Slider ─────────────────────────────────── */
.pluh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.pluh-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pluh-slide .pluh-showcase-overlay {
  min-height: 0;
  height: 100%;
}

.pluh-slide-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.pluh-slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.pluh-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pluh-slider-dot.is-active {
  background: var(--pluh-accent);
  transform: scale(1.3);
}

.pluh-slider-prev,
.pluh-slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pluh-slider-prev:hover,
.pluh-slider-next:hover {
  background: var(--pluh-accent);
  border-color: var(--pluh-accent);
}
























..................................................................................................................................


/* projectinrichting ↑ --

-- werkplekonderzoek ↓ */



































/* =========================================================
   ERGOWERKEN · WERKPLEKONDERZOEK
   Plak dit helemaal onderaan de Lightspeed CSS
   ========================================================= */

/* Standaard CSS-variabelen — zorgen dat hero werkt ook zonder JS */
.kmc-page {
  --kmc-visible-page-height: 100svh;
  --kmc-topbar-height: 56px;
}

/* Bullets in hero → vinkjes */
.kmc-hero-copy .kmc-bullets {
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.kmc-hero-copy .kmc-bullets li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 4px 4px 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.kmc-hero-copy .kmc-bullets li::before {
  content: "✓" !important;
  color: var(--kmc-accent);
  font-size: 15px;
  left: 4px;
}

/* Eyebrow in hero: geen achtergrond */
.kmc-hero-copy .kmc-eyebrow {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Keuzehulp: keuzetags verbergen, situatie-label tonen */
#choiceTags,
.kmc-choice-tags,
.kmc-choice-tag {
  display: none !important;
}

.kmc-value-label,
.kmc-value-content .kmc-value-label,
#valueDisplay .kmc-value-label {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  background: rgba(0, 0, 0, 0.07) !important;
  color: inherit !important;
  border-radius: 0.5rem;
  margin-bottom: 10px;
}

/* Stat cards: oranje streep bovenaan + bypass JS animatie */
.kmc-stat-card {
  border-top: 3px solid var(--kmc-accent);
}

.kmc-hero-stats .kmc-stat-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Showcase bullets */
.kmc-showcase-bullets {
  list-style: none;
  margin: 16px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.kmc-showcase-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.kmc-showcase-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--kmc-accent);
  font-size: 13px;
}

/* Hero note */
.kmc-hero-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase sub-tekst */
.kmc-showcase-sub {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* Showcase overlay: links uitlijnen */
.kmc-showcase-overlay {
  align-items: flex-start;
  text-align: left;
}

/* Topbar: taaltoggle */
.kmc-lang-toggle {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  line-height: 1.5;
  z-index: 1;
  font-family: inherit;
}

.kmc-lang-toggle:hover {
  opacity: 1;
}

/* Topbar: gecentreerde links + sticky */
.kmc-topbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 16px;
  min-height: 60px;
}

.kmc-topbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.kmc-topbar {
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.kmc-topbar.is-stuck {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(40, 20, 106, 0.12) !important;
}

.kmc-topbar-item {
  font-size: 13px;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  white-space: nowrap;
  padding: 0;
  min-height: auto;
}

.kmc-topbar-item:hover,
.kmc-topbar-item:active,
.kmc-topbar-item:visited,
.kmc-topbar-item:focus {
  color: inherit !important;
}

/* Geen border-radius op hero kanten */
.kmc-hero-copy {
  border-radius: 0 !important;
}

.kmc-calculator-card,
.kmc-showcase-card,
.kmc-showcase-visual,
.kmc-showcase-overlay {
  border-radius: var(--kmc-radius-xl) !important;
}

/* Rechter hero: volledige breedte */
.kmc-calculator-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.kmc-calculator-card,
.kmc-showcase-card {
  width: 100%;
  max-width: none;
}

/* Geen hover op rechter hero */
.kmc-calculator-wrap .kmc-calculator-card:hover,
.kmc-calculator-wrap .kmc-stat-card:hover {
  transform: none !important;
}

/* =========================================================
   SECTIES BASIS
   ========================================================= */

/* Zachte achtergrond voor bepaalde secties */
.kmc-section-soft:not(#faq) {
  background: #f6f8ff;
}

/* Section kicker + service badge */
.kmc-section-kicker,
.kmc-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 0.5rem;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 14px;
  background: var(--kmc-primary-soft);
  color: var(--kmc-primary-dark);
}

/* Voor wie — twee kolommen (ideaal vs minder ideaal) */
.kmc-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.kmc-dual-card {
  border-radius: var(--kmc-radius-xl);
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease;
}

.kmc-dual-card:hover { transform: translateY(-4px); }

.kmc-dual-card-positive {
  border-top: 3px solid #22c55e;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.kmc-dual-card-negative {
  border-top: 3px solid #ef4444;
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}

.kmc-dual-card h2 {
  margin: 14px 0 18px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
}

.kmc-check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.kmc-check-list li {
  position: relative;
  padding-left: 42px;
  line-height: 1.7;
  color: var(--kmc-text);
}

.kmc-check-list li::before {
  content: "•";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-52%);
  color: #e67800;
  font-size: 24px;
  line-height: 1;
}

.kmc-dual-card-positive .kmc-check-list li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  font-size: 16px;
}

.kmc-dual-block + .kmc-dual-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--kmc-line);
}

.kmc-dual-block h3 { margin: 0 0 6px; font-size: 15px; }
.kmc-dual-block p { margin: 0; line-height: 1.7; color: var(--kmc-text-soft); }

.kmc-dual-redirect {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--kmc-primary);
  font-size: 13px;
  font-weight: 600;
  transition: gap 0.18s ease;
}

.kmc-dual-redirect:hover { gap: 10px; }

/* Wat krijg je concreet — benefit cards */
.kmc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kmc-benefit-card {
  border-radius: var(--kmc-radius-xl);
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease;
}

.kmc-benefit-card:hover { transform: translateY(-4px); }

.kmc-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(13, 134, 214, 0.1);
  color: #0d86d6;
  position: relative;
}

.kmc-benefit-icon svg { width: 24px; height: 24px; display: block; }
.kmc-benefit-card h3 { margin: 0; line-height: 1.45; }

/* Section head basis */
.kmc-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.kmc-section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
}

.kmc-section-head p {
  margin: 0;
  color: var(--kmc-text-soft, #5f5a7d);
  line-height: 1.75;
}

/* Onze klanten — logo slider */
.kmc-clients-section {
  background: #f6f8ff;
}

.kmc-clients-section .kmc-logo-slider {
  background: #f2f6ff;
  border-radius: var(--kmc-radius-xl);
  padding: 18px 0;
}

.kmc-logo-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--kmc-radius-xl);
}

.kmc-logo-slider::before,
.kmc-logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.kmc-clients-section .kmc-logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #eef3ff 0%, rgba(238, 243, 255, 0) 100%);
}

.kmc-clients-section .kmc-logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #eef3ff 0%, rgba(238, 243, 255, 0) 100%);
}

.kmc-logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: kmcLogoScroll 26s linear infinite;
}

.kmc-logo-slider:hover .kmc-logo-track {
  animation-play-state: paused;
}

.kmc-logo-item {
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 110px;
  padding: 20px 24px;
  border-radius: var(--kmc-radius-md);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--kmc-text-soft, #5f5a7d);
  background: #ffffff;
  border: 1px solid rgba(40, 20, 106, 0.08);
}

@keyframes kmcLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

/* Werksituaties — project grid */
.kmc-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kmc-project-card {
  overflow: hidden;
  border-radius: var(--kmc-radius-xl);
  background: #ffffff;
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease;
}

.kmc-project-card:hover { transform: translateY(-4px); }

.kmc-project-image {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.kmc-project-content {
  padding: 24px;
}

.kmc-project-content h3 {
  margin: 0;
  line-height: 1.35;
}

/* Benefit cards: unicode icons */
.kmc-benefit-icon svg {
  display: none !important;
}

.kmc-benefit-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 800;
  color: #28146a;
  line-height: 1;
}

.kmc-benefit-card:nth-child(1) .kmc-benefit-icon::before { content: "↕"; }
.kmc-benefit-card:nth-child(2) .kmc-benefit-icon::before { content: "✓"; }
.kmc-benefit-card:nth-child(3) .kmc-benefit-icon::before { content: "⚙"; }
.kmc-benefit-card:nth-child(4) .kmc-benefit-icon::before { content: "☰"; }
.kmc-benefit-card:nth-child(5) .kmc-benefit-icon::before { content: "☎"; }

/* Tarieven — service cards */
.kmc-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kmc-service-card {
  border-radius: var(--kmc-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease;
}

.kmc-service-card:hover { transform: translateY(-4px); }

.kmc-service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kmc-service-body h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.kmc-service-body p {
  margin: 0 0 16px;
  line-height: 1.78;
  color: var(--kmc-text-soft);
  font-size: 15px;
}

.kmc-service-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.kmc-service-body li {
  position: relative;
  padding-left: 42px;
  line-height: 1.65;
  color: var(--kmc-text);
}

.kmc-service-body li::before {
  content: "•";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-52%);
  color: #e67800;
  font-size: 24px;
  line-height: 1;
}

/* =========================================================
   FAQ
   ========================================================= */

/* FAQ: blauwe achtergrond */
#faq {
  background: #0d86d6 !important;
}

#faq .kmc-section-head h2,
#faq .kmc-section-head p {
  color: #ffffff;
}

#faq .kmc-section-kicker {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}


/* =========================================================
   FAQ
   ========================================================= */
.wpo .kmc-faq {
  display: grid;
  gap: 14px;
}

.wpo-faq-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--kmc-radius-md);
  overflow: hidden;
  backdrop-filter: blur(7px);
}

.wpo-faq-question {
  width: 100%;
  border: 0;
  list-style: none;
  background: transparent;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-weight: 700;
  color: var(--kmc-text);
  transition: background 0.22s ease;
}

.wpo-faq-question::-webkit-details-marker {
  display: none;
}

.wpo-faq-question:hover {
  background: rgba(13, 134, 214, 0.05);
}

.wpo .kmc-faq-icon,
.wpo .kmc-faq-icon::before,
.wpo .kmc-faq-icon::after {
  display: none !important;
}

.wpo-faq-answer {
  display: block !important;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}


.wpo-faq-answer p {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 24px 20px 34px;
  color: var(--kmc-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
  text-align: left;
  background: rgba(13, 134, 214, 0.08);
  border-left: 3px solid var(--kmc-accent);
  border-radius: 0 !important;
}

.wpo-faq-answer p::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 6px;
  font-size: 36px;
  line-height: 1;
  color: var(--kmc-accent);
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   WERKWIJZE / PROCESS TIMELINE
   ========================================================= */
.kmc-process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

.kmc-process-intro {
  background: #ffffff;
  border: 1px solid rgba(40, 20, 106, 0.08);
  border-radius: var(--kmc-radius-xl);
  padding: 28px;
}

.kmc-process-intro h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  margin: 14px 0 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.kmc-process-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--kmc-text-soft);
}

.kmc-process-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border-radius: var(--kmc-radius-xl);
  padding: 24px 28px;
  border: 1px solid rgba(40, 20, 106, 0.08);
}

.kmc-process-highlight h3 {
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1.15;
}

.kmc-process-highlight p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--kmc-text-soft);
}

.kmc-process-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.kmc-process-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(13, 134, 214, 0.24) 0%,
    rgba(40, 20, 106, 0.16) 100%
  );
}

.kmc-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.kmc-process-marker {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 2px solid #0d86d6;
  color: #0d86d6;
  font-size: 20px;
  font-weight: 800;
}

.kmc-process-card {
  background: #fff;
  border-radius: var(--kmc-radius-xl);
  padding: 24px 24px 22px;
  border: 1px solid rgba(40, 20, 106, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.kmc-process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 134, 214, 0.18);
}

.kmc-process-card h3 {
  font-size: 23px;
  line-height: 1.18;
  margin: 0 0 10px;
  color: var(--kmc-text);
}

.kmc-process-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--kmc-text-soft);
  margin: 0 0 8px;
}

.kmc-process-card p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.kmc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.kmc-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.kmc-slide .kmc-showcase-overlay {
  min-height: 0;
  height: 100%;
}

.kmc-slide-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.kmc-slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.kmc-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.kmc-slider-dot.is-active {
  background: var(--kmc-accent);
  transform: scale(1.3);
}

.kmc-slider-prev,
.kmc-slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.kmc-slider-prev:hover,
.kmc-slider-next:hover {
  background: var(--kmc-accent);
  border-color: var(--kmc-accent);
}

/* =========================================================
   DESKTOP (≥ 1101px)
   ========================================================= */
@media (min-width: 1101px) {
  .kmc-hero-copy {
    padding: 0px 102px 100px 32px;
    justify-content: center;
  }

  .kmc-hero-actions {
    margin-top: 0;
  }

  .kmc-hero-actions .kmc-btn,
  .kmc-hero-actions .kmc-btn-link {
    font-size: 13px;
    padding: 13px 18px;
  }

  .kmc-calculator-wrap {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .kmc-showcase-overlay {
    padding: 24px;
  }

  .kmc-showcase-overlay .kmc-btn {
    padding: 13px 18px;
    font-size: 13px;
  }

  .kmc-stat-card {
    padding: 11px 13px;
  }

  .kmc-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 11px;
  }

  .kmc-btn-link {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }
}

/* =========================================================
   TABLET (≤ 1100px) — twee kolommen naast elkaar
   ========================================================= */
@media (max-width: 1100px) {
  /* Hero: vaste viewport hoogte */
  .kmc-hero {
    height: calc(var(--kmc-visible-page-height, 100dvh) - var(--kmc-topbar-height));
    overflow: hidden;
    background-color: rgba(13, 134, 214, 0.84);
    border-radius: 0 !important;
  }

  .kmc-hero .kmc-calculator-wrap,
  .kmc-hero .kmc-calculator-card,
  .kmc-hero .kmc-showcase-card,
  .kmc-hero .kmc-showcase-visual,
  .kmc-hero .kmc-showcase-overlay,
  .kmc-calculator-wrap,
  .kmc-calculator-card,
  .kmc-showcase-card,
  .kmc-showcase-visual,
  .kmc-showcase-overlay {
    border-radius: 0 !important;
    overflow: hidden;
  }

  .kmc-hero .kmc-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .kmc-hero-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 100%;
    gap: 0 !important;
  }

  /* Linker kolom: copy — gecentreerd */
  .kmc-hero-copy {
    flex: 0 0 46% !important;
    width: 46% !important;
    border-radius: 0 !important;
    padding: 20px 18px 60px;
    border-right: 2px solid var(--kmc-accent);
    border-bottom: none !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
  }

  .kmc-title { font-size: 17px; line-height: 1.15; margin: 3px 0 8px; }
  .kmc-eyebrow { font-size: 9px; margin-bottom: 4px; }
  .kmc-hero-copy .kmc-bullets { gap: 5px; margin-top: 6px; margin-bottom: 8px; }
  .kmc-hero-copy .kmc-bullets li { font-size: 11px; padding: 2px 4px 2px 18px; line-height: 1.3; }
  .kmc-hero-copy .kmc-hero-actions { gap: 6px; flex-wrap: wrap; }
  .kmc-hero-copy .kmc-btn { padding: 8px 12px; font-size: 11px; }
  .kmc-hero-copy .kmc-btn-link { padding: 8px 12px !important; font-size: 11px !important; }
  .kmc-hero-note { display: none; }

  /* Rechter kolom: showcase + stats */
  .kmc-calculator-wrap {
    flex: 0 0 54% !important;
    width: 54% !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    display: flex !important;
    flex-direction: column !important;
    background-color: rgba(13, 134, 214, 0.84);
    overflow: hidden;
  }

  .kmc-hero-stats {
    flex: 0 0 auto;
    margin: 6px 12px;
    gap: 5px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kmc-stat-card { padding: 5px 7px; border-top-width: 2px; }
  .kmc-stat-number { font-size: 11px; margin-bottom: 1px; }
  .kmc-stat-label { font-size: 7px; line-height: 1.2; }

  .kmc-calculator-card,
  .kmc-showcase-card {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .kmc-showcase-visual {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    background: rgba(13, 134, 214, 0.86);
    position: relative;
  }

  /* Rechter overlay: gecentreerd, zelfde uitlijning als links */
  .kmc-showcase-overlay {
    min-height: 0;
    height: 100%;
    margin-top: 0;
    border-radius: 0 !important;
    padding: 20px 16px 60px;
    justify-content: center;
  }

  .kmc-showcase-overlay h2,
  .kmc-showcase-overlay h3 { font-size: 17px !important; line-height: 1.15; margin: 3px 0 8px; }
  .kmc-slide-kicker { font-size: 9px !important; margin-bottom: 4px; letter-spacing: 0.06em; }
  .kmc-showcase-sub { font-size: 11px !important; line-height: 1.35; margin: 0 0 8px; }
  .kmc-showcase-bullets { gap: 5px !important; margin-top: 6px !important; margin-bottom: 8px !important; }
  .kmc-showcase-bullets li { font-size: 11px !important; padding: 2px 4px 2px 18px !important; line-height: 1.3 !important; }
  .kmc-showcase-overlay .kmc-btn,
  .kmc-showcase-overlay .kmc-btn-link { padding: 8px 12px !important; font-size: 11px !important; }

  /* Navbar: kleiner zodat alles past */
  .kmc-topbar-row {
    min-height: 46px;
    padding: 5px 12px;
    gap: 14px;
  }

  .kmc-topbar-links {
    flex-wrap: nowrap !important;
    gap: 0 8px !important;
    white-space: nowrap !important;
  }

  .kmc-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .kmc-lang-toggle {
    font-size: 10px !important;
    padding: 2px 9px !important;
  }

  /* Secties */
  .kmc-section { padding: 28px 0; }
  .kmc-section-head { margin-bottom: 16px; }
  .kmc-section-head h2 { font-size: 24px; margin: 8px 0 8px; }
  .kmc-section-head p { font-size: 14px; line-height: 1.5; }

  .kmc-value-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .kmc-value-item { font-size: 13px !important; padding: 14px 12px !important; line-height: 1.3 !important; }
  .kmc-value-display { grid-template-rows: auto; }
  .kmc-value-media { display: none; }
  .kmc-value-content { padding: 16px 18px 18px; }
  .kmc-value-content h3 { font-size: 18px; margin: 0 0 8px; }
  .kmc-value-content p { font-size: 13px; line-height: 1.55; }
  .kmc-value-cta-row { margin-top: 10px; }

  .kmc-dual-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kmc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .kmc-project-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .kmc-project-card { scroll-snap-align: start; min-width: 0; }
  .kmc-project-image { min-height: 160px; }
  .kmc-project-content h3 { font-size: 13px; margin: 6px 0 6px; line-height: 1.2; }

  .kmc-service-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .kmc-service-card { scroll-snap-align: start; min-width: 0; }
  .kmc-service-body { padding: 12px 12px 14px; }
  .kmc-service-body h3 { font-size: 14px; margin: 6px 0 6px; line-height: 1.2; }
  .kmc-service-body p { font-size: 11.5px; line-height: 1.4; margin: 0 0 8px; }
  .kmc-service-body li { font-size: 11px; line-height: 1.3; padding-left: 20px; }
  .kmc-service-body li::before { font-size: 14px; left: 2px; }

  .kmc-process-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
}

/* =========================================================
   MOBIEL (≤ 760px)
   ========================================================= */
@media (max-width: 760px) {
  /* Topbar hoogte aanpassen zodat hero-calc klopt */
  .kmc-page {
    --kmc-topbar-height: 52px;
  }

  /* Navbar: links boven, lang toggle onder */
  .kmc-topbar-row {
    min-height: 52px;
    height: 52px;
    padding: 0 12px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .kmc-topbar-links {
    position: absolute !important;
    left: 50% !important;
    top: 6px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 10px !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .kmc-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .kmc-topbar-links .kmc-topbar-item + .kmc-topbar-item::before {
    content: "·" !important;
    margin-right: 10px !important;
    opacity: 0.45 !important;
  }

  .kmc-lang-toggle {
    font-size: 10px !important;
    padding: 2px 10px !important;
    top: auto !important;
    bottom: 4px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Hero: copy + 70px stats strip */
  .kmc-hero {
    height: calc(100dvh - var(--kmc-topbar-height));
    overflow: hidden;
  }

  .kmc-hero .kmc-shell {
    height: 100%;
    overflow: hidden;
  }

  .kmc-hero-grid {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    height: 100%;
    overflow: hidden;
  }

  /* Hero-copy: alles behalve 70px voor de stats strip */
  .kmc-hero-copy {
    flex: 0 0 calc(100dvh - var(--kmc-topbar-height) - 70px) !important;
    width: 100% !important;
    height: calc(100dvh - var(--kmc-topbar-height) - 70px);
    min-height: 0 !important;
    padding: 8px 18px 12px !important;
    overflow: hidden !important;
    border-right: none !important;
    border-bottom: none !important;
    justify-content: center !important;
  }

  .kmc-title { font-size: 20px; line-height: 1.1; margin: 2px 0 10px; }
  .kmc-eyebrow { font-size: 10px; margin-bottom: 4px; }
  .kmc-hero-copy .kmc-bullets { gap: 6px; margin-top: 8px; margin-bottom: 12px; }
  .kmc-hero-copy .kmc-bullets li { font-size: 12px; padding: 3px 4px 3px 20px; line-height: 1.25; }
  .kmc-hero-copy .kmc-hero-actions { gap: 6px; margin-top: 10px; flex-wrap: nowrap; }
  .kmc-hero-copy .kmc-btn { padding: 9px 14px; font-size: 12px; width: auto; }
  .kmc-hero-copy .kmc-btn-link {
    width: auto;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
  }

  /* Calculator-wrap: vaste 70px stats strip, full width */
  .kmc-calculator-wrap {
    flex: 0 0 70px !important;
    height: 70px !important;
    min-height: 70px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Stats: absoluut in de 70px strip */
  .kmc-hero-stats {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: 70px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    transform: none !important;
  }

  /* Stats: altijd zichtbaar, bypass JS animatie */
  .kmc-hero-stats .kmc-stat-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    border-radius: 0 !important;
  }

  .kmc-stat-card {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 4px 6px !important;
    border-top-width: 2px !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .kmc-stat-number { font-size: 15px; margin-bottom: 2px; text-align: center; }
  .kmc-stat-label { font-size: 8px; line-height: 1.2; text-align: center; }

  /* Showcase verborgen op mobiel */
  .kmc-calculator-card,
  .kmc-showcase-card {
    display: none !important;
  }

  /* Sticky positie onder de Lightspeed hoofdheader */
  .kmc-topbar.is-stuck {
    top: 105px !important;
  }

  /* Secties */
  .kmc-section { padding: 28px 0; }
  .kmc-section-head { margin-bottom: 14px; }
  .kmc-section-head h2 { font-size: 26px; margin: 8px 0 8px; }

  .kmc-value-list { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .kmc-value-item { font-size: 13px !important; padding: 14px 12px !important; line-height: 1.3 !important; }
  .kmc-value-display { grid-template-rows: auto; }
  .kmc-value-media { display: none; }
  .kmc-value-content { padding: 16px 18px 18px; }
  .kmc-value-content h3 { font-size: 18px; margin: 0 0 8px; }
  .kmc-value-content p { font-size: 13px; line-height: 1.55; }
  .kmc-value-cta-row { margin-top: 10px; }

  .kmc-dual-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kmc-benefits-grid {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: calc(85% - 4px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .kmc-benefits-grid::-webkit-scrollbar { display: none; }
  .kmc-benefit-card { scroll-snap-align: start; min-width: 0; }

  .kmc-project-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .kmc-project-card { scroll-snap-align: start; min-width: 0; }
  .kmc-project-image { min-height: 160px; }
  .kmc-project-content h3 { font-size: 13px; margin: 6px 0 6px; line-height: 1.2; }

  .kmc-service-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .kmc-service-card { scroll-snap-align: start; min-width: 0; }
  .kmc-service-body { padding: 12px 12px 14px; }
  .kmc-service-body h3 { font-size: 14px; margin: 6px 0 6px; line-height: 1.2; }
  .kmc-service-body p { font-size: 11.5px; line-height: 1.4; margin: 0 0 8px; }
  .kmc-service-body li { font-size: 11px; line-height: 1.3; padding-left: 20px; }
  .kmc-service-body li::before { font-size: 14px; left: 2px; }

  .kmc-process-top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .kmc-process-intro h2 { font-size: 22px; }

  .kmc-process-step { grid-template-columns: 48px 1fr; gap: 14px; }
  .kmc-process-marker { width: 48px; height: 48px; font-size: 18px; }
  .kmc-process-timeline::before { left: 23px; }
  .kmc-process-card { padding: 20px 18px 18px; }
  .kmc-process-card h3 { font-size: 20px; }

  .kmc-footer-card { padding: 28px 22px; }
}














































































































/* =========================================================
   ERGOWERKEN · WERKPLEKONDERZOEK — LIGHTSPEED OVERRIDES
   Vervang alle vorige versies — alleen dit blok bewaren
   ========================================================= */

/* Visuele volgorde: hero altijd boven topbar, ongeacht DOM-volgorde */
.kmc-page.wpo {
  display: flex !important;
  flex-direction: column !important;
}
.kmc-page.wpo > .kmc-hero {
  order: 1 !important;
}
.kmc-page.wpo > .kmc-topbar {
  order: 2 !important;
}
.kmc-page.wpo > *:not(.kmc-hero):not(.kmc-topbar) {
  order: 3 !important;
}

/* Bullets in hero → vinkjes */
.kmc-hero-copy .kmc-bullets {
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.kmc-hero-copy .kmc-bullets li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 4px 4px 28px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.kmc-hero-copy .kmc-bullets li::before {
  content: "✓" !important;
  color: var(--kmc-accent);
  font-size: 15px;
  left: 4px;
}

/* Stat cards: oranje streep + ALTIJD ZICHTBAAR (bypass JS animatie) */
.kmc-stat-card {
  border-top: 3px solid var(--kmc-accent);
}

.kmc-hero-stats .kmc-stat-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Hero note */
.kmc-hero-note {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Lang toggle */
.kmc-lang-toggle { display: none !important; }

/* Topbar */
.kmc-topbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 16px;
  min-height: 60px;
}

.kmc-topbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.wpo .kmc-topbar {
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.wpo .kmc-topbar.is-stuck {
  position: fixed !important;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff !important;
  box-shadow: 0 2px 12px rgba(40, 20, 106, 0.12) !important;
}

.kmc-topbar-item {
  font-size: 13px;
  border: none;
  background: transparent !important;
  border-radius: 0;
  white-space: nowrap;
  padding: 0;
  min-height: auto;
}

/* Geen border-radius op hero */
.kmc-hero-copy { border-radius: 0 !important; }

.kmc-calculator-card,
.kmc-showcase-card,
.kmc-showcase-visual,
.kmc-showcase-overlay {
  border-radius: var(--kmc-radius-xl) !important;
}

/* Rechter hero breedte */
.kmc-calculator-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.kmc-calculator-card,
.kmc-showcase-card {
  width: 100%;
  max-width: none;
}

.kmc-calculator-wrap .kmc-calculator-card:hover,
.kmc-calculator-wrap .kmc-stat-card:hover {
  transform: none !important;
}

/* Keuzehulp: keuzetags verbergen, situatie-label als kicker tonen */
#choiceTags,
.kmc-choice-tags,
.kmc-choice-tag {
  display: none !important;
}

.kmc-value-label,
.kmc-value-content .kmc-value-label,
#valueDisplay .kmc-value-label {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  background: rgba(0, 0, 0, 0.07) !important;
  color: inherit !important;
  border-radius: 0.5rem;
  margin-bottom: 10px;
}

/* Benefit cards: unicode icons */
.kmc-benefit-icon {
  background: rgba(13, 134, 214, 0.1) !important;
  color: #0d86d6 !important;
  position: relative !important;
}

.kmc-benefit-icon svg {
  display: none !important;
}

.kmc-benefit-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 800;
  color: #28146a;
  line-height: 1;
}

.kmc-benefit-card:nth-child(1) .kmc-benefit-icon::before { content: "↕"; }
.kmc-benefit-card:nth-child(2) .kmc-benefit-icon::before { content: "✓"; }
.kmc-benefit-card:nth-child(3) .kmc-benefit-icon::before { content: "⚙"; }
.kmc-benefit-card:nth-child(4) .kmc-benefit-icon::before { content: "☰"; }
.kmc-benefit-card:nth-child(5) .kmc-benefit-icon::before { content: "☎"; }

/* FAQ sectie: blauwe achtergrond */
.wpo #faq {
  background: #0d86d6 !important;
}

.wpo #faq .kmc-section-head h2,
.wpo #faq .kmc-section-head p {
  color: #ffffff;
}

.wpo #faq .kmc-section-kicker {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.wpo .wpo-faq-answer p::before {
  color: var(--kmc-accent) !important;
}

.wpo .wpo-faq-question {
  font-size: revert !important;
}

.wpo .wpo-faq-answer p {
  border-left-color: var(--kmc-accent) !important;
}

/* =========================================================
   DESKTOP (≥ 1101px)
   ========================================================= */
@media (min-width: 1101px) {
  .kmc-hero-copy {
    padding: 0px 102px 100px 32px;
    justify-content: center;
  }

  .kmc-eyebrow {
    margin-top: -8px;
    margin-left: 10px;
  }

  .kmc-hero-actions { margin-top: 0; }

  .kmc-hero-actions .kmc-btn,
  .kmc-hero-actions .kmc-btn-link {
    padding: 9px 14px;
    font-size: 12px;
  }

  .kmc-calculator-wrap {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }

  .kmc-showcase-overlay { padding: 24px; }

  .kmc-showcase-overlay .kmc-btn {
    padding: 13px 18px;
    font-size: 13px;
  }

  .kmc-stat-card { padding: 11px 13px; }

  .kmc-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 11px;
  }

  .kmc-btn-link {
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  }
}

/* =========================================================
   TABLET (≤ 1100px) — twee kolommen naast elkaar
   ========================================================= */
@media (max-width: 1100px) {
  /* Hero: vaste viewport hoogte, twee kolommen */
  .kmc-hero.wpo {
    height: calc(var(--kmc-visible-page-height, 100svh) - var(--kmc-topbar-height, 0px)) !important;
    min-height: 400px !important;
    overflow: hidden;
    background-color: rgba(13, 134, 214, 0.84);
    border-radius: 0 !important;
  }

  .kmc-hero.wpo .kmc-calculator-wrap,
  .kmc-hero.wpo .kmc-calculator-card,
  .kmc-hero.wpo .kmc-showcase-card,
  .kmc-hero.wpo .kmc-showcase-visual,
  .kmc-hero.wpo .kmc-showcase-overlay {
    border-radius: 0 !important;
    overflow: hidden;
  }

  .kmc-hero.wpo .kmc-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .kmc-hero-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 100%;
    gap: 0 !important;
  }

  /* Linker kolom: copy — gecentreerd */
  .kmc-hero-copy {
    flex: 0 0 46% !important;
    width: 46% !important;
    border-radius: 0 !important;
    padding: 20px 18px 60px;
    border-right: 2px solid var(--kmc-accent);
    border-bottom: none !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
  }

  .kmc-title { font-size: 17px; line-height: 1.15; margin: 3px 0 8px; }
  .kmc-eyebrow { font-size: 9px; margin-bottom: 4px; }
  .kmc-hero-copy .kmc-bullets { gap: 5px; margin-top: 6px; margin-bottom: 8px; }
  .kmc-hero-copy .kmc-bullets li { font-size: 11px; padding: 2px 4px 2px 18px; line-height: 1.3; }
  .kmc-hero-copy .kmc-hero-actions { gap: 6px; flex-wrap: wrap; }
  .kmc-hero-copy .kmc-btn { padding: 8px 12px; font-size: 11px; }
  .kmc-hero-note { display: none; }

  /* Rechter kolom: stats + showcase */
  .kmc-calculator-wrap {
    flex: 0 0 54% !important;
    width: 54% !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    display: flex !important;
    flex-direction: column !important;
    background-color: rgba(13, 134, 214, 0.84);
    overflow: hidden;
  }

  .kmc-hero-stats {
    flex: 0 0 auto;
    margin: 6px 12px;
    gap: 5px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kmc-stat-card { padding: 5px 7px; border-top-width: 2px; }
  .kmc-stat-number { font-size: 11px; margin-bottom: 1px; }
  .kmc-stat-label { font-size: 7px; line-height: 1.2; }

  .kmc-calculator-card,
  .kmc-showcase-card {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
  }

  .kmc-showcase-visual {
    flex: 1 1 auto;
    min-height: 0 !important;
    height: auto;
    margin-top: 0;
    border-radius: 0 !important;
    background: rgba(13, 134, 214, 0.86);
    position: relative;
  }

  .kmc-showcase-overlay {
    min-height: 0;
    height: 100%;
    margin-top: 0;
    border-radius: 0 !important;
    padding: 20px 16px 60px;
    justify-content: center;
  }

  .kmc-showcase-overlay h2,
  .kmc-showcase-overlay h3 { font-size: 17px !important; line-height: 1.15; margin: 3px 0 8px; }
  .kmc-slide-kicker { font-size: 9px !important; margin-bottom: 4px; letter-spacing: 0.06em; }
  .kmc-showcase-sub { font-size: 11px !important; line-height: 1.35; margin: 0 0 8px; }
  .kmc-showcase-bullets { gap: 5px !important; margin-top: 6px !important; margin-bottom: 8px !important; }
  .kmc-showcase-bullets li { font-size: 11px !important; padding: 2px 4px 2px 18px !important; line-height: 1.3 !important; }
  .kmc-showcase-overlay .kmc-btn,
  .kmc-showcase-overlay .kmc-btn-link { padding: 8px 12px !important; font-size: 11px !important; }

  /* Navbar: kleiner zodat alles past */
  .kmc-topbar-row {
    min-height: 46px;
    padding: 5px 12px;
    gap: 14px;
  }

  .kmc-topbar-links {
    flex-wrap: nowrap !important;
    gap: 0 8px !important;
    white-space: nowrap !important;
  }

  .kmc-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .kmc-lang-toggle {
    font-size: 10px !important;
    padding: 2px 9px !important;
  }

  /* Secties */
  .kmc-section { padding: 28px 0; }
  .kmc-section-head { margin-bottom: 16px; }
  .kmc-section-head h2 { font-size: 24px; margin: 8px 0 8px; }
  .kmc-section-head p { font-size: 14px; line-height: 1.5; }

  .kmc-value-list { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .kmc-value-item { font-size: 13px !important; padding: 14px 12px !important; line-height: 1.3 !important; }
  .kmc-value-display { grid-template-rows: auto; }
  .kmc-value-media { display: none; }
  .kmc-value-content { padding: 16px 18px 18px; }
  .kmc-value-content h3 { font-size: 18px; margin: 0 0 8px; }
  .kmc-value-content p { font-size: 13px; line-height: 1.55; }
  .kmc-value-cta-row { margin-top: 10px; }

  .kmc-dual-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kmc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .kmc-project-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .kmc-project-card { scroll-snap-align: start; min-width: 0; }
  .kmc-project-image { min-height: 160px; }
  .kmc-project-content h3 { font-size: 13px; margin: 6px 0 6px; line-height: 1.2; }

  .kmc-service-grid {
    grid-template-columns: repeat(3, calc(50% - 6px));
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 10px; padding-bottom: 8px;
  }
  .kmc-service-card { scroll-snap-align: start; min-width: 0; }
  .kmc-service-body { padding: 12px 12px 14px; }
  .kmc-service-body h3 { font-size: 14px; margin: 6px 0 6px; line-height: 1.2; }
  .kmc-service-body p { font-size: 11.5px; line-height: 1.4; margin: 0 0 8px; }
  .kmc-service-body li { font-size: 11px; line-height: 1.3; padding-left: 20px; }
  .kmc-service-body li::before { font-size: 14px; left: 2px; }

  .kmc-process-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
}

/* =========================================================
   MOBIEL (≤ 760px)
   ========================================================= */
@media (max-width: 760px) {
  .wpo {
    --kmc-topbar-height: 52px;
  }

  .wpo .kmc-topbar-row {
    min-height: 52px;
    height: 52px;
    padding: 0 12px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .wpo .kmc-topbar-links {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 6px !important;
    transform: none !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    justify-content: flex-start !important;
    white-space: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 12px !important;
  }

  .wpo .kmc-topbar-links::-webkit-scrollbar {
    display: none !important;
  }

  .wpo .kmc-topbar-links .kmc-topbar-item {
    scroll-snap-align: center !important;
    flex: 0 0 auto !important;
    padding: 0 14px !important;
  }

  .wpo .kmc-topbar-item {
    font-size: 10px !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .wpo .kmc-topbar-links .kmc-topbar-item + .kmc-topbar-item::before {
    content: "·" !important;
    margin-right: 10px !important;
    opacity: 0.45 !important;
  }

  .wpo .kmc-lang-toggle {
    position: absolute !important;
    font-size: 10px !important;
    padding: 2px 10px !important;
    top: 50% !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .kmc-hero.wpo {
    height: calc(var(--kmc-visible-page-height, 100dvh) - var(--kmc-topbar-height, 52px)) !important;
    min-height: 400px !important;
    overflow: hidden;
  }

  .kmc-hero.wpo .kmc-shell {
    height: 100%;
    overflow: hidden;
  }

  .kmc-hero.wpo .kmc-hero-grid {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    height: 100%;
    overflow: hidden;
  }

  .kmc-hero.wpo .kmc-hero-copy {
    flex: 0 0 calc(var(--kmc-visible-page-height, 100dvh) - var(--kmc-topbar-height, 52px) - 70px) !important;
    width: 100% !important;
    height: calc(var(--kmc-visible-page-height, 100dvh) - var(--kmc-topbar-height, 52px) - 70px);
    min-height: 0;
    padding: 8px 18px 12px;
    overflow: hidden;
    border-right: none !important;
    border-bottom: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .kmc-hero.wpo .kmc-title { font-size: 20px; line-height: 1.1; margin: 2px 0 10px; }
  .kmc-hero.wpo .kmc-eyebrow { font-size: 10px; margin-bottom: 4px; }
  .kmc-hero.wpo .kmc-hero-copy .kmc-bullets { gap: 6px; margin-top: 8px; margin-bottom: 12px; }
  .kmc-hero.wpo .kmc-hero-copy .kmc-bullets li { font-size: 12px; padding: 3px 4px 3px 20px; line-height: 1.25; }
  .kmc-hero.wpo .kmc-hero-copy .kmc-hero-actions { gap: 6px; flex-direction: column !important; }
  .kmc-hero.wpo .kmc-hero-copy .kmc-btn,
  .kmc-hero.wpo .kmc-hero-copy .kmc-btn-link { padding: 9px 14px; font-size: 12px; width: 100% !important; text-align: center !important; box-sizing: border-box !important; }

  .kmc-hero.wpo .kmc-calculator-wrap {
    flex: 0 0 70px !important;
    height: 70px !important;
    min-height: 70px !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .kmc-hero.wpo .kmc-hero-stats {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    height: 70px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 8px !important;
    transform: none !important;
  }

  .kmc-hero.wpo .kmc-hero-stats .kmc-stat-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    border-radius: 0 !important;
  }

  .kmc-hero.wpo .kmc-stat-card {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 4px 6px !important;
    border-top-width: 2px !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .kmc-hero.wpo .kmc-stat-number { font-size: 15px; margin-bottom: 2px; text-align: center; }
  .kmc-hero.wpo .kmc-stat-label { font-size: 8px; line-height: 1.2; text-align: center; }

  .kmc-hero.wpo .kmc-calculator-card,
  .kmc-hero.wpo .kmc-showcase-card {
    display: none !important;
  }

  .wpo .kmc-topbar.is-stuck {
    top: 105px !important;
  }

  .kmc-benefits-grid {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: calc(85% - 4px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .kmc-benefits-grid::-webkit-scrollbar {
    display: none;
  }

  .kmc-benefit-card {
    scroll-snap-align: start;
    min-width: 0;
    padding: 14px 12px;
  }

  .kmc-benefit-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }

  .kmc-benefit-icon::before {
    font-size: 15px !important;
  }

  .kmc-benefit-card h3 {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* ── Hero Slider ─────────────────────────────────── */
.kmc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.kmc-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.kmc-slide .kmc-showcase-overlay {
  min-height: 0;
  height: 100%;
}

.kmc-slide-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.kmc-slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.kmc-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.kmc-slider-dot.is-active {
  background: var(--kmc-accent);
  transform: scale(1.3);
}

.kmc-slider-prev,
.kmc-slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.kmc-slider-prev:hover,
.kmc-slider-next:hover {
  background: var(--kmc-accent);
  border-color: var(--kmc-accent);
}


























































/* werkplekonderzoek ↑ --

-- pluh ↓ */