/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

:root {
  /* CONTRAST-FIX – één bron van waarheid */
  --green: #00865C; /* brand june (too little contrast) : #3BADA8; */
  --green-dark: #006A4B;

  /* extra tinten die web.css gebruikt */
  --green-darker: #00553C;   /* hover alias */

  /* UI tokens (behouden) */
  --ink: #0F172A;
  --ring: #073b2f;
  --surface: #ffffff;
  --surface-soft: #f4fbf8;

  /* bestaande tokens */
  --gray: #f5f7f8;
  --border: #e6eaee;
  --radius: 16px;
}

html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.5;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--gray);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}
.hero h1 {
  font-size: 36px;
  margin: 0 0 16px;
}
.hero p.sub {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}
.offer {
  background: #e6fff6;
  color: var(--green-dark);
  border: 1px dashed var(--green);
  padding: 10px 16px;
  display: inline-block;
  border-radius: 999px;
  font-weight: 600;
  margin: 0 0 24px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
}
.hero img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

/* ---------- SECTIONS GENERIC ---------- */
.section { margin-top: 64px; }

/* ---------- STEPS ---------- */
.steps-wrap .section-title{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
}
.steps-wrap .section-sub{
  margin: 0 0 20px;
  color: #444;
}

.step { position: relative; padding-top: 16px; }
.step .step__num{
  position: absolute;
  top: 0;
  left: 0;
  display:inline-flex; align-items:center; justify-content:center;
  width: 28px; height: 28px; border-radius: 50%;
  font-weight: 700; font-size: 14px;
  background: #e6fff6;
  color: var(--green-dark);
  border: 1px solid var(--green);
}
.step h3{ padding-left: 36px; }
.step p{ margin: 8px 0 0; padding-left: 36px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.step h3 { margin-top: 0; font-size: 18px; }

/* ---------- USPs ---------- */
.usps-wrap .section-title{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
}
.usps-wrap .section-sub{
  margin: 0 0 20px;
  color: #444;
}
.usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.usp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.usp h4 { margin-top: 0; font-size: 18px; }

/* ---------- TESTIMONIALS – pill style ---------- */
.testimonials{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-pill{
  position: relative;
  display: grid;
  grid-template-columns: 6px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.02);
}
.testimonial-pill__left{
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  background: linear-gradient(180deg, var(--green) 0%, #25d2a0 100%);
}
.testimonial-pill__body{ padding: 16px 18px; }

/* sterren – AA fix zoals landing.css */
.testimonial-stars{
  display: inline-flex;
  gap: 2px;
  margin-bottom: 8px;
  line-height: 0;
}
.testimonial-stars .star{
  width: 16px;
  height: 16px;
  fill: #EEF2F6;        /* zachter leeg */
  stroke: #6B7C93;      /* duidelijke contour (±4.26:1) */
  stroke-width: .75px;
}
.testimonial-stars .star.is-filled{
  fill: #fbbc04;
  stroke: #fbbc04;
}

.testimonial-quote{
  margin: 0 0 8px;
  font-style: italic;
  line-height: 1.5;
  color: #222;
}
.testimonial-meta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.testimonial-avatar{
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; display: inline-block;
}
.testimonial-cite{ font-style: normal; color: #333; }

.testimonials__caption{
  margin-top: 12px;
  color: #5b6b7a;
  font-size: 14px;
  text-align: center;
}

/* ---------- PRICING ---------- */
.pricing-wrap{
  background: var(--gray);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.pricing-wrap .section-title{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
}
.pricing-wrap .section-sub{
  margin: 0 0 20px;
  color: #444;
}

/* Countdown bar – kleuren zoals landing.css (AA) */
.pricing-countdown{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px; flex-wrap: wrap;
  background: #ffe9cc;
  border-left: 5px solid #f57c00;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 20px 0 24px;
}
.pricing-countdown__title{ font-size: 16px; color: #003366; display:block; }
.pricing-countdown__sub{ color:#003366; opacity:.9; margin-left: 4px; }
.pricing-countdown__timer{
  font-weight: 700;
  color: #fff;
  background: #c62828;          /* landing.css: AA (i.p.v. #d9534f) */
  padding: 6px 12px;
  border-radius: 6px;
  min-width: 160px;
  text-align: center;
  font-size: 16px;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display:flex; flex-direction:column;
  box-shadow: 0 2px 8px rgba(0,0,0,.02);
}
.pricing-card.is-popular{ border:2px solid var(--green); }
.pricing-card__badge{
  position:absolute; top:-12px; left:14px;
  background: var(--green); color:#fff;
  padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight:700;
}
.pricing-card__title{ margin:0 0 8px; font-size: 18px; }
.pricing-card__subtitle{ margin:0 0 10px; color:#555; min-height: 36px; }

.pricing-price{ font-size: 26px; font-weight: 700; margin: 6px 0 2px; }
.pricing-term{ font-size: 14px; color:#666; margin-bottom: 12px; }

.pricing-btn{ margin: 0 0 12px; }

/* Outline button – AA zoals landing.css */
.pricing-wrap .btn--outline{
  background: transparent;
  color: #0F172A;                 /* was #5b6b7a */
  border: 1px solid #93A3B8;      /* donkerder contour */
  box-shadow: none;
  font-weight: 600;
}
.pricing-wrap .btn--outline:hover{
  background: #f9fbfc;
  border-color: #7B8EA8;
  color: #0B1220;
}
.pricing-wrap .btn--outline:active{ background: #f2f5f7; }
.pricing-wrap .btn--outline:focus-visible{
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}
.pricing-features li{ position:relative; padding-left: 20px; margin: 6px 0; }
.pricing-features li::before{
  content:"✔";
  position:absolute; left:0; top:0; color: var(--green-dark);
  font-weight: 700;
}

@media (max-width:768px){
  .pricing-countdown__title{ font-size:15px; }
  .pricing-countdown__timer{ font-size:15px; }
}

/* ---------- CTA (sectie) ---------- */
.cta{
  margin-top: 64px;
  text-align: center;
  background: var(--cta-bg, var(--gray));
  padding: 40px;
  border-radius: var(--radius);
}
.cta h2{ margin: 0 0 8px; }
.cta p{ margin: 0 0 16px; color: #444; }

@media (max-width:768px){
  .cta{ padding: 28px; }
}

/* ---------- STICKY CTA ---------- */
.sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sticky-bg, rgba(255,255,255,0.95));
  backdrop-filter: saturate(1.1) blur(4px);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;

  transform: translateY(0);
  transition: transform .22s ease, opacity .2s ease;
  opacity: 1;
}
.sticky-cta.is-hidden{
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta__text{
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-align: center;
}
body.has-sticky-cta { padding-bottom: 90px; }
@media (prefers-reduced-motion: reduce){
  .sticky-cta{ transition: none; }
}

/* ---------- FOOTER SIMPLE ---------- */
.footer-simple {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  background: #f9fbfc;
}
.footer-simple .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}
.footer-simple .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-simple .footer-links .sep { opacity: .4; }
.footer-simple .footer-links a {
  color: var(--green-dark);
  text-decoration: none;
}
.footer-simple .footer-links a:hover{ color: #00553C; } /* AA hover zoals landing.css */
.footer-simple p {
  margin: 0;
  font-size: 13px;
  color: #5b6b7a;
  text-align: center;
}

/* ---------- HEADER SIMPLE (behouden) ---------- */
.header-simple{
  background: var(--header-bg, #fff);
  border-bottom: var(--header-border, 1px solid var(--border));
}
.header-simple__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 8px 0;
}
.header-simple__brand img{
  display:block; height: 44px; width:auto;
}
.header-simple__partner img,
img.header-simple__partner{
  display:block; height: 36px; width:auto; opacity:.95; max-width: 160px;
}

/* ---------- RESPONSIVE HERO/STICKY ---------- */
@media (max-width: 768px){
  .header-simple__brand img{ height: 38px; }
  .header-simple__partner img{ height: 30px; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .sticky-cta {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; list-style:none; padding:0; margin:0; }
.faq-item{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-toggle{
  -webkit-appearance: none; appearance: none;
  width: 100%; border: 0; background: transparent;
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-weight: 700; font-size: 16px; cursor: pointer; text-align: left;
}
.faq-toggle:focus-visible{ outline: 2px solid var(--green); outline-offset: 2px; }
.faq-toggle .chev{ width: 18px; height: 18px; fill: #5b6b7a; transition: transform .18s ease; }
.faq-toggle[aria-expanded="true"] .chev{ transform: rotate(180deg); }
.faq-a{ border-top: 1px solid var(--border); background: #fcfcfc; }
.faq-a__inner{
  padding: 12px 18px 16px; color: #222; line-height: 1.55;
}
.faq-a__inner p{ margin: 0 0 10px; }
.faq-a__inner a{ color: var(--green-dark); text-decoration: none; }
.faq-a__inner a:hover{ text-decoration: underline; }

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

/* ---- LEAD (gelijk aan landing) ---- */
.lead-card{
  background: var(--gray);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: none;
  overflow: hidden;
}
.lead-card__content{}
.lead-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.input-wrap{ position: relative; }
.input-icon{
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none; font-size: 14px; opacity: .8;
}
.input-wrap input{
  width: 100%;
  padding: 12px 14px 12px 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  background: #fff;
}
.input-wrap input:focus{
  outline: 2px solid var(--green);
  border-color: var(--green-dark);
}
.lead-form__btn{
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
}
.lead-form__trust,
.lead-form__success{ margin-top: 10px; font-size: 14px; color: #5b6b7a; }
@media (max-width: 768px){
  .lead-card{ padding: 28px 20px; }
  .lead-card__content, .lead-form{ max-width: 100%; }
}

/* Remove default DnD spacing under header */
.page-content > .dnd-section:first-of-type + .dnd-section,
.page-content > .dnd-section:nth-of-type(2) {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* Neutralize module-level spacing in that section */
.page-content > .dnd-section:first-of-type + .dnd-section .hero,
.page-content > .dnd-section:first-of-type + .dnd-section .section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* =====================================================================
   SITE HEADER (donker, mega-menu) — BEHOUDEN UIT WEB.CSS
   ===================================================================== */
.site-header{
  background:#0B2E4E;/* previous : #0f1216; */
  color:#fff;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom:1px solid rgba(255,255,255,.08);
  --pad-y: 12px;
  --pad-y-condensed: 6px;
  --logo-h: 44px;
  --logo-h-condensed: 36px;
}
.site-header__inner{
  max-width:1200px; margin:0 auto; padding: var(--pad-y) 20px;
  display:grid; grid-template-columns:auto 1fr auto; gap:16px; align-items:center;
  transition: padding .16s ease;
}
.header-simple__brand img{ display:block; height: var(--logo-h); width:auto; transition: height .16s ease; }
.site-header.is-condensed .site-header__inner{ padding: var(--pad-y-condensed) 20px; }
.site-header.is-condensed .header-simple__brand img{ height: var(--logo-h-condensed); }

.site-nav{ align-self:stretch; }
.nav__list{
  display:flex; gap:20px; align-items:center; height:100%;
  list-style:none; margin:0; padding:0;
}
.nav__item{ position:relative; }
.nav__link{
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .12s ease, padding .16s ease;
}
.nav__link:hover, .nav__link:focus{ color:#fff; text-decoration:none; }
.has-children > .nav__link{ color: rgba(255,255,255,0.85); }
.nav__link.is-active,
.nav__item.is-current > .nav__link,
.nav__link[aria-current="page"]{ color:#fff; }

.has-children > .nav__expander{
  display:inline-block; width:10px; height:10px; margin-left:4px;
  background:transparent; border:0; cursor:pointer; position:relative;
}
.has-children > .nav__expander::after{
  content:''; display:block; width:8px; height:8px;
  border-right:2px solid #fff; border-bottom:2px solid #fff;
  transform:rotate(45deg); position:absolute; top:0; left:0;
}

.nav__submenu{
  position:absolute; top:100%; left:0; min-width:220px;
  background:#141922; border:1px solid rgba(255,255,255,.1);
  border-radius:12px; padding:8px; display:none;
  box-shadow:0 10px 30px rgba(0,0,0,.35); z-index:1100;
}
.nav__submenu-item{ list-style:none; }
.nav__submenu-link{
  display:block; padding:10px 12px; border-radius:8px;
  color: rgba(255,255,255,0.9);
  font-weight: 400; font-size: 0.95rem; line-height: 1.5;
  text-decoration: none;
}
.nav__submenu-link:hover, .nav__submenu-link:focus{
  background: rgba(255,255,255,0.08); color:#fff; text-decoration: none;
}
.has-children:hover > .nav__submenu,
.has-children:focus-within > .nav__submenu{ display:block; }

.site-header__toggle{ display:none; width:40px; height:40px; cursor:pointer; position:relative; }
.site-header__toggle-bar{
  position:absolute; left:8px; right:8px; height:2px; background:#fff; border-radius:2px;
}
.site-header__toggle-bar:nth-child(1){ top:12px; }
.site-header__toggle-bar:nth-child(2){ top:19px; }
.site-header__toggle-bar:nth-child(3){ top:26px; }
.site-header__toggle-input{ display:none; }

@media (max-width:980px){
  .site-header__inner{ grid-template-columns:auto auto 1fr; }
  .site-header__toggle{ display:block; }
  .site-nav{
    position:fixed; inset:64px 0 auto 0; background:#0f1216;
    border-top:1px solid rgba(255,255,255,.08);
    transform:translateY(-10px); opacity:0; pointer-events:none;
    transition:.15s ease; padding:16px 20px;
  }
  #menuToggle:checked ~ .site-nav{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav__list{ flex-direction:column; align-items:flex-start; gap:8px; }
  .has-children > .nav__expander{ display:none; }
  .nav__submenu{
    position:static; display:block; box-shadow:none; border:0;
    padding:6px 0 0 10px; background:transparent;
  }
}
@media (max-width: 980px){
  .site-header__toggle{ grid-column: 2; justify-self: start; }
  .site-nav{ grid-column: 1 / -1; grid-row: 2; }
  .site-header__right{ grid-column: 3; justify-self: end; }
}

/* Header right: language switch + CTA */
.site-header .site-header__right{
  display:flex; align-items:center; gap:14px;
}
.site-header .locale-switch__link{
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: .95rem;
}
.site-header .locale-switch__link:hover,
.site-header .locale-switch__link:focus{ color:#fff; text-decoration: none; }
.site-header .locale-switch__link.is-active{ color:#fff; font-weight:700; }
.site-header .locale-switch__sep{ color: rgba(255,255,255,0.4); }
.site-header .btn-cta{
  display:inline-flex; align-items:center; justify-content:center;
  height:38px; padding:0 14px; border-radius:10px; font-weight:700;
  background: #4ABAE0; /*previous #32d68c; */
  color:#0f1216; text-decoration:none;
  transition: background-color .15s ease, transform .06s ease;
}
.site-header .btn-cta:hover{ background:#2bc27f; }

/* =====================================================================
   Footer (extended) — BEHOUDEN
   ===================================================================== */
.footer-extended {
  background: #0B2E4E; /* previous: #0f1216; */
  color: #fff;
  padding: 48px 20px 24px;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.footer-extended a { color: #cfe8ff; text-decoration: none; }
.footer-extended a:hover, .footer-extended a:focus { text-decoration: underline; }

.footer-extended__inner {
  --footer-max: 1200px;
  --footer-gap: 24px;
  --footer-cols: repeat(auto-fit, minmax(180px, 1fr));
  max-width: var(--footer-max);
  margin: 0 auto;
  box-sizing: border-box;
}
.footer-extended__grid,
.footer-extended__grid--auto {
  display: grid;
  grid-template-columns: var(--footer-cols);
  gap: var(--footer-gap);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}
.footer-col__title {
  font-size: 0.95rem; font-weight: 700; margin: 0 0 10px; color: #fff;
}
.footer-col__list { list-style: none; margin: 0; padding: 0; }
.footer-col__list li { margin: 6px 0; }
.footer-col__list a { font-size: 0.95rem; line-height: 1.5; }

.footer-extended__lower {
  display: grid;
  grid-template-columns: var(--footer-cols);
  gap: var(--footer-gap);
  padding-top: 24px;
  box-sizing: border-box;
}
.footer-newsletter { grid-column: 1 / -2; }
.footer-meta {
  grid-column: -2 / -1;
  justify-self: end;
  display: grid; gap: 12px; justify-items: end;
}
.footer-newsletter h5 { margin: 0 0 8px; font-size: 1.05rem; }
.footer-newsletter__text { margin: 0 0 12px; color: rgba(255, 255, 255, 0.8); }
.footer-newsletter__embed { background: rgba(255, 255, 255, 0.06); padding: 12px; border-radius: 16px; }

.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); margin-left: 8px;
}
.footer-social a:first-child { margin-left: 0; }
.footer-social img { width: 18px; height: 18px; display: block; }

.footer-company { text-align: right; }
.footer-company .company-name { font-weight: 700; }
.footer-company .company-lines {
  display: grid; color: rgba(255, 255, 255, 0.85); font-size: 0.95rem;
}
.footer-company .company-contact a { margin-left: 12px; font-size: 0.95rem; }
.footer-bottom-note { margin-top: 16px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

@media (max-width: 1024px) {
  .footer-extended__lower { grid-template-columns: 1fr; }
  .footer-newsletter, .footer-meta {
    grid-column: 1 / -1; justify-items: start; justify-self: start;
  }
  .footer-company { text-align: left; }
}

/* Footer newsletter form */
.footer-newsletter form{
  display:flex; gap:12px; align-items:center; margin-top:10px; flex-wrap:wrap;
}
.footer-extended{ --footer-cta-bg: #32d68c; --footer-cta-bg-hover: #2bc27f; }
.footer-newsletter input[type="email"]{
  appearance:none; height:46px; padding:0 14px; width:min(100%, 360px);
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18);
  color:#fff; border-radius:12px; font-size:16px; line-height:1;
  transition:border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.footer-newsletter input[type="email"]::placeholder{ color:rgba(255,255,255,0.6); }
.footer-newsletter input[type="email"]:focus{
  outline:none; border-color:rgba(255,255,255,0.35);
  box-shadow:0 0 0 3px rgba(50,214,140,0.2);
}
#juneFooterSubmit{
  height:46px; padding:0 16px; border:0; border-radius:12px;
  background:var(--footer-cta-bg); 
  color: #0f1216;
  font-weight:700; font-size:15px; cursor:pointer;
  transition:transform .06s ease, filter .15s ease, background-color .15s ease;
}
#juneFooterSubmit:hover{ background:var(--footer-cta-bg-hover); }
#juneFooterSubmit:active{ transform:translateY(1px); }
#juneFooterSubmit:focus{ outline:none; box-shadow:0 0 0 3px rgba(50,214,140,0.25); }

.footer-newsletter-success{ margin-top:10px; color: rgba(255,255,255,.8) !important; font-size:.95rem; }
.footer-newsletter form:has(#popupSuccess:not([hidden])) input[type="email"],
.footer-newsletter form:has(#popupSuccess:not([hidden])) button { display: none !important; }
@media (max-width: 480px){
  .footer-newsletter form{ flex-direction:column; align-items:stretch; }
  .footer-newsletter input[type="email"], #juneFooterSubmit{ width:100%; }
}

/* =====================================================================
   UNIFIED BUTTONS — exact zoals landing.css
   (vervangt eerdere LP-styling zodat overal dezelfde look geldt)
   ===================================================================== */
.btn {
  display: inline-block;
  background: var(--btn-bg, var(--green));
  color: var(--btn-text, #fff);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
  border: 0;                    /* neutraliseer UA */
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
}
.btn:hover {
  background: var(--btn-bg-hover, var(--green-dark));
}

/* Alias voor historisch gebruik */
.btn--solid{
  background: var(--btn-bg, var(--green));
  color: var(--btn-text, #fff);
}
.btn--solid:hover{
  background: var(--btn-bg-hover, var(--green-dark));
}

/* Hero/CTA/Sticky: forceer AA-groen zoals landing.css */
.hero .btn,
.cta .btn,
.sticky-cta .btn{
  background: var(--green);
  color: #fff;
}
.hero .btn:hover,
.cta .btn:hover,
.sticky-cta .btn:hover{
  background: var(--green-dark);
}

/* Secundaire/ghost varianten kunnen desgewenst via modulevariabelen gestuurd worden
   (we houden geen afwijkende borders of pill-shapes meer t.o.v. landing.css) */

/* Donkere modus: behoud generieke tokens (geen afwijkende btn-styles nodig) */
@media (prefers-color-scheme: dark){
  :root{ --surface:#0b0f14; --surface-soft:#0f1713; --ink:#e8eef5; }
}

/* === Productpagina met sticky lead-module === */
.product-with-sticky-lead { color:#1a1a1a; }

.product-with-sticky-lead .pwsl-wrap {
  max-width: var(--maxw, 1080px);
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 28px;
}
@media (max-width: 940px){
  .product-with-sticky-lead .pwsl-wrap { grid-template-columns: 1fr; gap: 20px; }
}

/* Content-kolom */
.product-with-sticky-lead .pwsl-content .hero {
  background: var(--gray, #f5f7f8);
  border-radius: var(--radius, 16px);
  padding: 24px;
}
.product-with-sticky-lead .pwsl-content h1 {
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 40px);
}
.product-with-sticky-lead .pwsl-content .sub { margin: 0 0 16px; color:#444; font-size: 16px; }

.product-with-sticky-lead .pwsl-content .benefits {
  display:grid; grid-template-columns: repeat(2,minmax(0,1fr));
  gap:12px; margin-top: 16px;
}
.product-with-sticky-lead .pwsl-content .benefits li {
  background:#fff; border:1px solid var(--border, #e6eaee);
  border-radius:12px; padding:12px 14px;
}
@media (max-width: 680px){
  .product-with-sticky-lead .pwsl-content .benefits { grid-template-columns: 1fr; }
}

/* === Sticky Lead (consolidated) === */
.sticky-lead{
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--sticky-bg, rgba(255,255,255,0.98));
  color: var(--sticky-text, #0F172A);
  backdrop-filter: saturate(1.1) blur(4px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  padding: 16px;
  z-index: 999;
  transform: translateY(0);
  transition: transform .22s ease, opacity .2s ease;
  opacity: 1;
}
.sticky-lead.is-hidden{ transform: translateY(100%); opacity: 0; pointer-events: none; }

.sticky-lead__inner{
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 12px;
  align-items: start;
}

/* Copy hiërarchie */
.sticky-lead__copy{ display: grid; gap: 2px; }
.sticky-lead__kicker{
  display:inline-block; font-size:12px; font-weight:700;
  padding: 2px 8px; border-radius:999px; background:#e6fff6; color: var(--green-dark);
  margin-bottom: 4px;
}
.sticky-lead__title{ font-size:16px; line-height:1.3; font-weight:800; }
.sticky-lead__subtitle{ font-size:13.5px; color:#5B6B7A; }

/* Form: 1 kolom */
.sticky-form{ display:grid; grid-template-columns:1fr; gap:10px; }
.sticky-form .input-wrap input{
  width:100%; min-height:46px; padding:12px 14px;
  border:1px solid #D7DFE7; border-radius:12px; background:#fff;
}
.sticky-form .input-wrap input:focus{
  outline:2px solid var(--green);
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(0,134,92,.18);
}

/* Compat: als er ooit een HubSpot .hs-form in de balk zou staan */
.sticky-lead__form .hs-form input,
.sticky-lead__form .hs-form select{ height:42px; }
.sticky-lead__form .hs-button,
.sticky-lead__form input[type="submit"]{
  background: var(--btn-bg, var(--green));
  color: var(--btn-text, #fff);
  border:0; border-radius:10px; padding:10px 16px; font-weight:700;
}
.sticky-lead__form .hs-button:hover,
.sticky-lead__form input[type="submit"]:hover{ background: var(--btn-bg-hover, var(--green-dark)); }

/* CTA */
.sticky-btn{
  width:100%; min-height:50px;
  border-radius:12px; font-weight:800;
  box-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.sticky-btn:focus-visible{
  outline:3px solid rgba(0,134,92,.3);
  outline-offset:2px;
}

/* Optioneel telefoonveld toggle */
.sticky-lead__toggle{
  -webkit-appearance:none; appearance:none; background:transparent; border:0; padding:0;
  color: var(--green-dark); font-weight:700; text-align:left; cursor:pointer;
}
.sticky-lead__toggle:hover{ text-decoration: underline; }
#stickyPhoneRow .hint{ font-size:12px; color:#5B6B7A; margin-top:4px; display:block; }

/* Validatieberichten (alleen na submit zichtbaar) */
/* Validatieberichten – toon pas als het element NIET hidden is */
.field-msg{
  /* geen display hier! */
  margin-top: 6px;
  font-size: 12px;
  color: #b00020;
}
.field-msg:not([hidden]){ display: block; }  /* zichtbaar pas na msg.hidden = false */


/* Trust & succes */
.sticky-lead__trust{ margin:2px 0 0; font-size:12.5px; color:#5B6B7A; }
.sticky-success{ margin:4px 0 0; font-size:14px; color:var(--green-dark); font-weight:700; }

/* Close */
.sticky-lead__close{
  -webkit-appearance:none; appearance:none; border:0; background:transparent; color:currentColor;
  width:44px; height:44px; border-radius:10px; cursor:pointer;
}
.sticky-lead__close:hover{ background:rgba(0,0,0,.06); }

/* Safe area */
body.has-sticky-lead{ padding-bottom:150px; }

@media (min-width:740px){
  .sticky-lead__inner{ grid-template-columns: 1.1fr 1fr auto; gap:16px; align-items:center; }
}
@media (prefers-reduced-motion: reduce){
  .sticky-lead{ transition:none; }
}

/* === Layout-only: mobile drawer + desktop card === */

/* Mobile: start compact (peek), klapt open via JS met .is-collapsed toggle */
@media (max-width: 768px){
  .sticky-lead.is-collapsed {
    padding-top: 12px; padding-bottom: 12px;
  }
  .sticky-lead.is-collapsed .sticky-form,
  .sticky-lead.is-collapsed .sticky-lead__trust,
  .sticky-lead.is-collapsed #stickyPhoneRow { display: none; }

  /* header blijft zichtbaar (kicker/title/subtitle) + CTA-knop */
  .sticky-lead.is-collapsed .sticky-lead__inner{
    grid-template-columns: 1fr;
  }
}

/* Desktop: floating card rechts-onder, velden onder elkaar */
@media (min-width: 1024px){
  .sticky-lead{
    left: auto;                 /* niet full-width */
    right: 24px;
    width: min(420px, calc(100vw - 48px));
    border-radius: 16px;
  }
  .sticky-lead__inner{
    grid-template-columns: 1fr; /* copy boven, form onder */
    align-items: start;
  }
  /* de pagina hoeft geen extra bottom-padding als de card drijft */
  body.has-sticky-lead { padding-bottom: 0; }
}

/* Mini-CTA standaard verbergen */
.sticky-mini-btn{ display:none; width:100%; min-height:46px; border-radius:12px; font-weight:800; }

/* Alleen tonen wanneer mobile én collapsed */
@media (max-width: 768px){
  .sticky-lead.is-collapsed .sticky-mini-btn{ display:block; }
  /* in collapsed verbergen we form/trust (heb je al); mini-CTA blijft over */
}

/* === Sticky Lead: desktop position options === */
@media (min-width: 1024px){
  /* Reset full-width gedrag op desktop */
  .sticky-lead{
    left: auto; right: auto; top: auto; bottom: auto;
    width: min(420px, calc(100vw - 48px));
    border-radius: 16px;
    /* behoud je bestaande kleur/typografie/shadow etc. */
  }

  /* Hoek-varianten (24px marge tot randen) */
  .sticky-lead--pos-br { right: 24px; bottom: 24px; }
  .sticky-lead--pos-tr { right: 24px; top: 24px; }
  .sticky-lead--pos-tl { left: 24px;  top: 24px; }
  .sticky-lead--pos-bl { left: 24px;  bottom: 24px; }

  /* Geen extra body-padding nodig voor drijvende card */
  body.has-sticky-lead { padding-bottom: 0; }
}

/* Desktop hoek-positie met header-offset */
@media (min-width: 1024px){
  .sticky-lead{ left:auto; right:auto; top:auto; bottom:auto; }

  .sticky-lead--pos-br { right:24px; bottom:24px; width:min(420px, calc(100vw - 48px)); border-radius:16px; }
  .sticky-lead--pos-bl { left:24px;  bottom:24px; width:min(420px, calc(100vw - 48px)); border-radius:16px; }

  /* Top-hoeken: onder de header + safe-area (iOS notch) */
  .sticky-lead--pos-tr { right:24px; top: calc(var(--sticky-top, 24px) + env(safe-area-inset-top, 0px)); width:min(420px, calc(100vw - 48px)); border-radius:16px; }
  .sticky-lead--pos-tl { left:24px;  top: calc(var(--sticky-top, 24px) + env(safe-area-inset-top, 0px)); width:min(420px, calc(100vw - 48px)); border-radius:16px; }

  /* Drijvende card → geen extra body padding nodig */
  body.has-sticky-lead { padding-bottom: 0; }
}

/* ===== Videos grid & cards ===== */
.videos-wrap{
  /* tunebaar */
  --video-title-lines: 3;     /* # regels titel */
  --video-title-lh: 1.3;      /* line-height titel */
  --video-sub-lines: 2;       /* # regels subtitel */
  --video-sub-lh: 1.35;       /* line-height subtitel */

  /* NIEUW: max hoogte van het videoframe */
  --video-max-h: 960px;      /* desktop cap (gangbaar: 480–640px) */
  --video-max-h-vh: 72vh;    /* extra safeguard t.o.v. viewport */
}
@media (max-width: 980px){
  .videos-wrap{ --video-max-h: 420px; }   /* tablet */
}
@media (max-width: 680px){
  .videos-wrap{ --video-max-h: 320px; }   /* mobiel */
}

}

.videos-wrap .videos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.videos-wrap .video-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;

  /* gelijkmaken van hoogtes & secties */
  display:flex;
  flex-direction:column;
  height:100%;
}

.videos-wrap .video-card__title{
  margin:0 0 10px;
  font-size:20px;
  line-height: var(--video-title-lh);

  /* vaste hoogte + multi-line ellipsis */
  min-height: calc(var(--video-title-lines) * var(--video-title-lh) * 1em);
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp: var(--video-title-lines);
  overflow:hidden;
}

.videos-wrap .video-card__media{ margin-bottom:12px; }

.videos-wrap .video-frame{
  position:relative;
  aspect-ratio:var(--ar, 16/9);
  background:#e6fff6;
  border-radius:12px;
  overflow:hidden;
  
   /* NIEUW: cap de rendering-hoogte */
  max-height: min(var(--video-max-h), var(--video-max-h-vh));
}

/* frame vullen met embed/iframe/video/HS */
.videos-wrap .video-frame > *,
.videos-wrap .video-frame iframe,
.videos-wrap .video-frame video,
.videos-wrap .video-frame .hs-video-player,
.videos-wrap .video-frame .hs-video-wrapper{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.videos-wrap .video-frame iframe{ border:0; display:block; }
.videos-wrap .video-frame video{ display:block; object-fit:cover; background:#000; }

/* play-badge gecentreerd */
.videos-wrap .c-video-center--play{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

/* subtitel gelijk uitlijnen + ellipsis */
.videos-wrap .video-card__subtitle{
  margin:6px 0 6px;
  font-size:16px;
  color:#333;
  line-height: var(--video-sub-lh);

  min-height: calc(var(--video-sub-lines) * var(--video-sub-lh) * 1em);
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp: var(--video-sub-lines);
  overflow:hidden;
}

.videos-wrap .video-card__desc{
  color:#222;
  line-height:1.6;
}

/* growth-june / logos-strip.module.css */

.ls-title{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:clamp(22px,2.4vw,32px);
  text-align:center;
  margin:0 0 8px;
}
.ls-intro{
  text-align:center;
  margin:0 0 16px;
  line-height:1.6;
}

/* Desktop / brede schermen: bestaande grid blijft */
.ls-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  list-style:none;
  margin:0;
  padding:0;
}

.ls-item{
  display:flex;
  justify-content:center;
}

.ls-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.ls-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

/* Logo: uniforme hoogte, proportioneel breed */
.ls-img{
  height: 96px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}

.ls-cap{
  margin-top:8px;
  font-size:.9rem;
  color:#333;
  font-family:'Montserrat',sans-serif;
}

/* ---------- CARROUSEL op small screens ---------- */
@media (max-width: 820px){
  .ls-grid{
    display:flex;                 /* switch van grid naar horizontale rij */
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 6px;
    margin: 0;
  }
  .ls-grid::-webkit-scrollbar{ display:none; }

  .ls-item{
    flex: 0 0 60%;                /* 1 logo per "view" met een beetje peek */
    scroll-snap-align: center;
    justify-content:center;
  }

  .ls-img{ height: 84px; }

  .ls-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:14px;
  }
  .ls-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    border:0;
    background:#cfd6dc;
    cursor:pointer;
    transition:transform .2s ease;
  }
  .ls-dot.is-active{
    background:#00865C;           /* past bij June-groen */
    transform:scale(1.15);
  }
  .ls-dot:focus{ outline:2px solid #00865C; outline-offset:2px; }
}