/* =========================
   Basis reset
   ========================= */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   Algemene stijl
   ========================= */
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #cdf3e5;
}

/* =========================
   Navigatie
   ========================= */
header{
  background: #f2fffa;
  border-bottom: 1px solid #e5e5e5;
}

.nav{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  font-weight: 700;
  font-size: 20px;
}

.logo img{
  height: 48px;
  width: auto;
  display: block;
}

.nav > ul{
  list-style: none;
  display: flex;
  gap: 16px;
}

.nav a{
  text-decoration: none;
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a:hover{
  color: #1dcd8d;
  opacity: 1;
}

.nav a.active,
.nav .has-submenu > a.active{
  font-weight: 700;
  color: #1dcd8d;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* =========================
   NAV – DIENSTEN SUBMENU
   ========================= */
.nav-item{ position: relative; }

.has-submenu > a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.has-submenu > a::after{
  content: "▾";
  font-size: 12px;
  opacity: 0.8;
  transform: translateY(1px);
}

/* dropdown panel */
.submenu{
  position: absolute;
  top: 100%;
  margin-top: 6px;
  left: 0;

  min-width: 260px;
  padding: 10px;

  list-style: none;
  margin: 0;

  background: rgba(242,255,250,0.98);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);

  display: none;
  z-index: 9999;
}

/* Hover-bridge */
.has-submenu::after{
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.submenu li{ width: 100%; }

.submenu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
}

.submenu a:hover{
  background: rgba(29,205,141,0.14);
  color: #0b1f16;
}

/* Open on hover/focus */
.has-submenu:hover .submenu{ display: block; }
.has-submenu:focus-within .submenu{ display: block; }

.has-submenu > a:focus:not(:focus-visible) + .submenu{
  display: none;
}

/* mobile submenu usable */
@media (max-width: 768px){
  .submenu{
    position: static;
    display: none;
    margin-top: 10px;
    min-width: unset;
  }
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu{
    display: block;
  }
}

/* =========================
   CTA knop
   ========================= */
.cta{
  display: inline-block;
  background-color: #1dcd8d;
  color: #000000;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cta:hover{
  background-color: #16b87e;
}

/* =========================
   Footer
   ========================= */
footer{
  border-top: 1px solid #e5e5e5;
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: #555555;
}

/* =========================
   Main container + sections
   ========================= */
main{
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px;
  padding-top: 4px;
}

.page-ondemand main{
  max-width: 1100px;
}

.section{
  margin-top: 28px;
  padding: 1px 0;
}

.section-soft{
  background-color: #cdf3e5;
  padding: 64px 24px;
}

.section-light{
  background-color: #f2fffa;
  padding: 64px 12px;
}

/* Cards */
.card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* =========================
   HERO – algemeen
   ========================= */
.hero{
  margin-top: 18px;
}

.hero h1{
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
}

/* Globale hero intro tekst: kleiner + justify + geen extra vet */
.hero p{
  font-size: 17px;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Social proof tekst */
.social-proof{
  margin: 12px 0 22px;
  font-size: 15px;
  color: #1a1a1a;
  opacity: 0.85;
}

/* =========================
   HERO GRID – standaard (tekst | visual)
   ========================= */
.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-text{
  max-width: 520px;
}

.hero-media{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 8px;
}

.hero-gif{
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
}

/* HERO “kaart” transparant (zoals je nu gebruikt op je site) */
.hero .card{
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

/* =========================
   SCRIPTIEHULP – split hero (intro links | CTA rechts)
   ========================= */
.hero-grid--split{
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: start;
}

.hero-left{
  max-width: 720px;
}

.hero-right{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.hero-right .cta{
  width: fit-content;
}

/* ✅ FIX: alleen 1 kolom op scriptiehulp ALS het géén split hero is */
.page-scriptiehulp .hero-grid:not(.hero-grid--split){
  grid-template-columns: 1fr;
}

/* =========================
   Content secties
   ========================= */
.content{
  margin-top: 0;
}

.content ul{
  margin-left: 20px;
}

.content li{
  margin-bottom: 8px;
}

/* =========================
   Sticky WhatsApp button
   ========================= */
/* .whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.whatsapp-float:hover{
  background: #000000;
}

.whatsapp-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

@media (max-width: 480px){
  .whatsapp-float span{ display: none; }
  .whatsapp-float{ padding: 14px; }
} */

/* =========================
   Sticky contact buttons (WhatsApp / Mail / Bel)
   ========================= */
.contact-fabs{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.fab:hover{
  background: #000000;
}

.fab-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Accent-kleur per knop (alleen het dotje) */
.fab--whatsapp .fab-dot{ background: #22c55e; }
.fab--mail .fab-dot{ background: #60a5fa; }  /* blauw */
.fab--call .fab-dot{ background: #1dcd8d; }  /* jouw groen */

/* Mobiel: tekst verbergen, alleen “dot” zichtbaar */
@media (max-width: 480px){
  .fab span{ display: none; }
  .fab{ padding: 14px; }
}


/* =========================
   Reviews – masonry
   ========================= */
.reviews.reviews-masonry{
  display: block;
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 6px;

  column-gap: 18px;
  column-count: 4;
  column-fill: auto;
}

.reviews.reviews-masonry .review{
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;

  break-inside: avoid;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.review{
  position: relative;
  border-radius: 18px;
  padding: 16px 16px 14px 18px;
  transition: box-shadow 180ms ease, border-color 180ms ease, outline-color 180ms ease;

  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.review::before{
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 4px;
  background: #1dcd8d;
}

.review blockquote{
  margin: 0;
  padding-left: 12px;
  line-height: 1.55;
  font-size: 16px;
  white-space: pre-line;
}

.review figcaption{
  margin-top: 12px;
  padding-left: 12px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.85;
}

.review:hover{
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: rgba(29,205,141,0.35);
}

/* responsive reviews */
@media (max-width: 1250px){ .reviews.reviews-masonry{ column-count: 3; } }
@media (max-width: 900px){ .reviews.reviews-masonry{ column-count: 2; } }
@media (max-width: 520px){ .reviews.reviews-masonry{ column-count: 1; } }

/* Reviews header styling */
.section-light > h2{
  text-align: center;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

/* Maak "section-light" minder wit blok */
.section-light{
  background: rgba(242,255,250,0.45);
  border-radius: 18px;
  padding: 40px 12px 64px;
}

.reviews.reviews-masonry{
  padding-top: 10px;
}

/* =========================
   TARIEVEN – clean layout
   ========================= */
.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Hoofdtitels binnen tarieven */
.section .wrap > h2{
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section--clean{ background: transparent; }

.section--soft{
  background: transparent;
  padding-top: 0px;
  padding-bottom: 28px;
}

.section--contrast{
  background: #111827;
  color: #ffffff;
}

.section--contrast h2{
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

/* pricing hero */
.pricing-hero{
  padding: 10px 0 10px;
}

.pricing-hero h1{
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.pricing-hero p{
  margin-bottom: 10px;
}

.pricing-hero .lead{
  max-width: 820px;
  margin-top: 10px;
  opacity: 0.9;
}

.hero-cta-row{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-ghost{
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,0.18);
  text-decoration: none;
  font-weight: 700;
  color: #111827;
  background: #ffffff;
}

/* sublead */
.sublead{
  max-width: 860px;
  margin-top: 4px;
  margin-bottom: 8px;
  opacity: 0.85;  
}

.sublead--contrast{ opacity: 0.85; }

/* rates */
.rates-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 320px));
  justify-content: center;
  gap: 36px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.rate{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 8px 4px;
}

.rate h3{
  margin: 0 0 10px;
  font-size: 1.05rem;
  text-align: center;
}

.rate-title{
  display: inline;
  background: #81e3c0;
  padding: 4px 10px;
  border-radius: 999px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.rate__price{
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 1.7rem;
  text-align: center;
}

.rate__price span{
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.7;
  margin-left: 6px;
}

.rate__text{
  margin: 0;
  opacity: 0.85;
  text-align: center;
}

.note{
  margin-top: 6px;
  margin-bottom: 2px;
  opacity: 0.75;
}

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

/* 
bundles
.center-head{
  text-align: center;
  margin-bottom: 40px;
}

.bundle-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 250px));
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.bundle{
  position: relative;
  border-radius: 26px;
  padding: 16px 16px 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  border: 1px solid rgba(17,24,39,0.08);
  overflow: visible;
}

.bundle__title{
  margin: 0;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.bundle__price{
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.bundle__now{
  font-size: 2.2rem;
  font-weight: 900;
}

.bundle__was{
  font-weight: 800;
  opacity: 0.7;
}

.bundle__list{
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0;
}

.bundle__list li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.bundle__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.bundle--starter{ background: #7ae7c6; }
.bundle--groei  { background: #4fddb0; }
.bundle--expert { background: #81e3c0; }

.bundle--pro{
  background: #1dcd8d;
  color: #0b1f16;
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(17,24,39,0.14);
  padding-top: 36px;
}

.bundle--pro .bundle__now,
.bundle--pro .bundle__title{
  color: #0b1f16;
}

.bundle__badge{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);

  background: #ffffff;
  color: #111827;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 100px;
  padding: 10px 24px;

  font-weight: 900;
  font-size: 0.85rem;
  white-space: nowrap;

  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  z-index: 2;
} */




/* =========================
   BUNDLES ONLY (Voordeelbundels) – clean block
   Vervang AL je bestaande .bundle* CSS door dit blok
   ========================= */

/* Grid */
.bundle-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 250px));
  justify-content: center;
  gap: 22px;
  margin-top: 12px;
}

/* Card basis */
.bundle{
  position: relative;
  border-radius: 38px;
  padding: 22px 22px 28px;
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: 0 22px 50px rgba(0,0,0,0.10);
  overflow: visible;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

/* Hover lift */
.bundle:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(0,0,0,0.14);
}

/* Bovenste titel */
.bundle__top{
  text-align: center;
  margin-bottom: 12px;
}

.bundle__title{
  margin: 0;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Prijsrij */
.bundle__price{
  margin-top: 14px;
  display: flex;
  flex-direction: column;      /* ✅ oude prijs onder nieuwe */
  align-items: center;         /* centreer zoals je oude */
  justify-content: center;
  gap: 6px;
}

/* Nieuwe prijs (outline zoals je oude site) */
.bundle__now{
  font-size: 3.05rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;

  color: #ffffff;

  /* ✅ strakke “outline” via text-shadow (werkt mooier dan text-stroke) */
  text-shadow:
    -2px -2px 0 rgba(0,0,0,0.85),
     0px -2px 0 rgba(0,0,0,0.85),
     2px -2px 0 rgba(0,0,0,0.85),
    -2px  0px 0 rgba(0,0,0,0.85),
     2px  0px 0 rgba(0,0,0,0.85),
    -2px  2px 0 rgba(0,0,0,0.85),
     0px  2px 0 rgba(0,0,0,0.85),
     2px  2px 0 rgba(0,0,0,0.85),
     0 14px 26px rgba(0,0,0,0.12);

  white-space: nowrap;
  display: inline-block;
}

/* Oude prijs (was) */
.bundle__was{
  font-weight: 600;
  font-size: 1.05rem;
  /* opacity: 0.85; */
  line-height: 1;
}

.bundle__was s{
  display: inline-block;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(0,0,0,0.78);
}

/* Checklist */
.bundle__list{
  list-style: none;
  padding-left: 0;
  margin: 16px 0 0;
}

.bundle__list li{
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  font-size: 1.05rem;
}

.bundle__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  transform: translateY(1px);
}

/* Badge (Meest gekozen) */
.bundle__badge{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%); /* iets hoger op de rand */
  z-index: 3;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #111827;

  padding: 10px 18px;       /* 🔽 kleiner */
  border-radius: 999px;

  font-weight: 500;
  font-size: 14px;          /* 🔽 iets kleiner */
  line-height: 1;
  white-space: nowrap;

  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);

  max-width: calc(100% - 38px); /* ✅ nooit zo breed als kaart */
}


/* Icon in badge (werkt met emoji of tekst) */
.bundle__badgeIcon{
  width: 26px;      /* 🔽 kleiner */
  height: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
}

.bundle__badgeIcon img{
  width: 20px;      /* 🔽 kleiner */
  height: 20px;
  object-fit: contain;
  display: block;
}

/* Kleurvarianten (speels + positief) */
.bundle--starter{
  /* background: linear-gradient(180deg, rgba(129,227,192,0.95), rgba(122,231,198,0.95)); */
  background: #23E59D;
  color: #0b1f16;
}

.bundle--groei{
  /* background: linear-gradient(180deg, rgba(79,221,176,0.95), rgba(29,205,141,0.80)); */
   background: #37F5B0;
   color: #0b1f16;
}

.bundle--expert{
  /* background: linear-gradient(180deg, rgba(129,227,192,0.92), rgba(205,243,229,0.86)); */
  background: #37F5B0;
  color: #0b1f16;
}

.bundle--pro{
  /* background: linear-gradient(180deg, rgba(29,205,141,1), rgba(29,205,141,0.72)); */
  background: #44FEBB;
  color: #0b1f16;

  transform: translateY(-10px);
  box-shadow: 0 34px 74px rgba(0,0,0,0.20);
  border: 1px solid rgba(17,24,39,0.16);
  padding-top: 44px; /* ruimte voor badge */
}

/* Zorg dat alle tekst in bundels donker blijft (behalve prijs) */
.bundle p,
.bundle li,
.bundle__title{
  color: #0b1f16;
}

.center-head{
  text-align: center;
  margin-bottom: 18px;
}

.center-head h2{
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 54px;
}

/* Responsive */
@media (max-width: 1050px){
  .bundle-grid{ grid-template-columns: repeat(2, minmax(0, 260px)); }
}

@media (max-width: 560px){
  .bundle-grid{ grid-template-columns: 1fr; }
  .bundle--pro{ transform: none; }
}


/* referral box */
.referral{
  max-width: 760px;
  margin: 14px auto 0;
  background: #cdf3e5;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(29,205,141,0.35);
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

/* ondemand */
.contrast-head{ max-width: 900px; }

.ondemand{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 16px;

  background: #111827;   /* 👈 donker blok */
  border-radius: 18px;
  padding: 18px;
}

  .ondemand,
  .ondemand h3,
  .ondemand li,
  .ondemand p{
  color: #ffffff;
}

.ondemand h3{ margin-top: 0; }

.checklist{
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}

.checklist li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.ondemand__price{
  font-size: 2.3rem;
  font-weight: 900;
  margin: 0;
}

.ondemand__mini{
  margin: 6px 0 14px;
  opacity: 0.8;
}

.btn-solid{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: #ffffff;
  color: #111827;
}

/* Tarieven responsive
@media (max-width: 1050px){
  .bundle-grid{ grid-template-columns: repeat(2, minmax(0, 260px)); }
}

@media (max-width: 900px){
  .rates-grid{ grid-template-columns: 1fr; }
  .ondemand{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .bundle-grid{ grid-template-columns: 1fr; }
  .bundle--pro{ transform: none; }
} */

/* =========================
   Referral ticker (marquee)
   ========================= */
.referral-ticker{
  max-width: 980px;
  margin: 10px auto 0;
  padding: 0 18px;
}

.ticker{
  position: relative;
  border-radius: 999px;
  background: #b9efdc;
  border: 1px solid rgba(17,24,39,0.14);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}

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

.ticker::before{
  left: 0;
  background: linear-gradient(to right, #b9efdc, rgba(29,205,141,0));
}

.ticker::after{
  right: 0;
  background: linear-gradient(to left, #b9efdc, rgba(29,205,141,0));
}

.ticker__dot--ghost{ visibility: hidden; }

.ticker__track{
  display: flex;
  width: max-content;
  animation: ticker-scroll 18s linear infinite;
}

.ticker__content{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker__item{
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #0b1f16;
}

.ticker__dot{
  font-weight: 900;
  opacity: 0.8;
  color: #0b1f16;
}

.ticker:hover .ticker__track{
  animation-play-state: paused;
}

@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .ticker__track{ animation: none; }
}

/* =========================
   OVER ONS – layout
   ========================= */
.about-hero{
  background: transparent;
  padding: 64px 0;
}

.about-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-hero-text{ hyphens: auto; }

.about-hero-text h1{
  margin-top: 16px;
  margin-bottom: 18px;
}

.about-hero-text p{
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;

  max-width: 450px;
  text-align: justify;
}

.about-hero-image img{
  width: 90%;
  height: auto;
  display: block;
  border-radius: 28px;
}

@media (max-width: 900px){
  .about-hero-inner{ grid-template-columns: 1fr; }
  .about-hero-text p{ max-width: 100%; }
}

/* horizontale whatsapp balk */
.about-strip{ padding: 0px 0; }

.about-strip-bar{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 28px;

  display: flex;
  align-items: center;
  gap: 22px;

  background: transparent;
}

.about-strip-text{
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.whatsapp-cta{ flex-shrink: 0; }

@media (max-width: 700px){
  .about-strip-bar{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.about-strip-text::before{
  content: "←";
  margin-right: 10px;
  font-weight: 900;
}

/* =========================
   DIENSTEN – cards + grid
   ========================= */
.diensten-cta-row{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.diensten-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.dienst-card{
  background: #20efa3;
  color: #0b1f16;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.dienst-card--accent{
  background: #20efa3;
  color: #0b1f16;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
}

.dienst-card h2{
  margin-bottom: 10px;
  line-height: 1.15;
  color: #0b1f16;
}

.dienst-card p,
.dienst-card li{
  color: #0b1f16;
}

.dienst-actions{ margin-top: 16px; }

.dienst-compare{ background: rgba(255,255,255,0.65); }

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

/* diensten hero met visual */
.hero--diensten .card.diensten-hero{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}

.diensten-hero__visual{
  display: flex;
  justify-content: flex-end;
}

.diensten-visual{
  width: min(420px, 100%);
  height: auto;
  display: block;
  opacity: 0.98;
}

@media (max-width: 1024px){
  .hero--diensten .card.diensten-hero{
    grid-template-columns: 1fr;
  }
  .diensten-hero__visual{
    justify-content: center;
    margin-top: 10px;
  }
  .diensten-visual{
    width: min(460px, 92vw);
  }
}

/* =========================
   SCRIPTIEHULP – content width fix
   ========================= */
.page-scriptiehulp .content{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}

.page-scriptiehulp .content + .content{
  margin-top: 22px;
}

/* =========================
   SCRIPTIEHULP – services grid (6 GIFs)
   ========================= */
.page-scriptiehulp .services-block{
  margin-top: 26px;
  margin-bottom: 54px;
}

.page-scriptiehulp .services-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-scriptiehulp .service-card{
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 8px 6px;
  text-align: center;
}

.page-scriptiehulp .service-card img{
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
  border-radius: 14px;
}

.page-scriptiehulp .service-card h3{
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #0b1f16;
}

.page-scriptiehulp .service-card p{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  opacity: 0.9;

  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Tablet: 2 per rij */
@media (max-width: 900px){
  .page-scriptiehulp .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobiel: 1 per rij */
@media (max-width: 560px){
  .page-scriptiehulp .services-grid{
    grid-template-columns: 1fr;
  }
  .page-scriptiehulp .service-card img{
    max-width: 260px;
  }
}

/* =========================
   SCRIPTIEHULP – sectie divider
   ========================= */
.page-scriptiehulp .section-divider{
  max-width: 1000px;
  margin: 32px auto 32px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.18),
    transparent
  );
}

/* =========================
   SCRIPTIEHULP – 2 kolommen tekst
   ========================= */
.page-scriptiehulp .two-col{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.page-scriptiehulp .two-col p,
.page-scriptiehulp .two-col li{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.page-scriptiehulp .two-col ul{
  margin-top: 10px;
  margin-left: 18px;
}

.page-scriptiehulp .two-col__note{
  margin-top: 12px;
  opacity: 0.9;
}

@media (max-width: 900px){
  .page-scriptiehulp .two-col{
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* =========================
   Mobiel / algemeen responsive
   ========================= */
@media (max-width: 768px){
  .nav ul{
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero h1{
    font-size: 28px;
  }

  .hero-gif{
    max-width: 240px;
    margin: 0 auto 12px;
  }

  .hero-grid{
    grid-template-columns: 1fr;
  }

  .hero-media{
    order: -1;
    justify-content: center;
    padding-right: 0;
  }
}

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

  .hero-right{
    margin-top: 16px;
  }
}

/* =========================
   DIENSTEN – bullets verder naar rechts
   ========================= */

.dienst-card ul{
  padding-left: 40px;   /* meer inspringing dan tekst */
  margin-top: 12px;
}

.dienst-card li{
  margin-bottom: 8px;
}

/* =========================
   FIX: Scriptiehulp hero uitlijnen met GIF-grid
   ========================= */

/* Zorg dat de hero content dezelfde centrering/breedte heeft als de rest van de pagina */
.page-scriptiehulp .hero .card{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;  /* gelijk aan je scriptiehulp content padding */
}

/* =========================
   ON-DEMAND PAGINA (SEO + HERO LAYOUT)
   ========================= */

.hero-grid--ondemand{
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.page-ondemand .hero .card{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.page-ondemand .lead{
  margin-top: 6px;
  margin-bottom: 14px;
  opacity: 0.95;
}

.bullets{
  margin-left: 20px;
  margin-top: 12px;
}

.bullets--compact li{
  margin-bottom: 8px;
}

.microtrust{
  margin-top: 14px;
  opacity: 0.9;
}

/* aanbodkaart rechts */
.ondemand-card{
  width: 100%;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.14);
}

.ondemand-card__btnRow{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ondemand-card__cta,
.ondemand-card__ghost{
  margin-top: 0; /* overschrijft je oude margins */
}

.ondemand-card__kicker{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
}

.ondemand-card__priceRow{
  margin-top: 10px;
  display: grid;
  gap: 2px;
}

.ondemand-card__price{
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
}

.ondemand-card__meta{
  margin: 0;
  opacity: 0.8;
}

.ondemand-card__cta{
  margin-top: 12px;
  width: fit-content;
}

.ondemand-card__ghost{
  margin-top: 10px;
  width: fit-content;
}

.ondemand-card__note{
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

/* stappenlijst */
.ondemand-steps .steps{
  margin-top: 12px;
  margin-left: 18px;
}

.ondemand-steps .steps li{
  margin-bottom: 10px;
}

/* Links: content die naast het offer doorloopt */
.ondemand-left{
  min-width: 0;
}

/* Binnen de hero-grid willen we geen extra max-width die de linkerkolom te smal maakt */
.page-ondemand .hero-text{
  max-width: none;
}


/* eind-CTA */
.ondemand-end__card{
  background: rgba(255,255,255,0.65);
}

.ondemand-end__actions{
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* 2 kolommen hergebruiken (zoals scriptiehulp) */
.two-col--ondemand{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

/* On-demand: wrapper zodat titel/intro boven de grid kan staan */
.hero-ondemand{
  display: block;
}

/* On-demand: hero-text mag volle breedte in deze wrapper */
.hero-text--ondemand{
  max-width: none;
}

.hero-text--ondemand .lead{
  max-width: 580px;
}

/* Grid start pas bij "Hoe werkt het": geef wat ruimte onder de intro */
.page-ondemand .hero-grid--ondemand{
  margin-top: 22px;
}

/* Gelijke spacing tussen koppen en bullets (ol + ul) */
.page-ondemand .content h2 + ol,
.page-ondemand .content h2 + ul{
  margin-top: 12px;
  margin-bottom: 18px;
}

/* responsive */
@media (max-width: 900px){
  .hero-grid--ondemand{
    grid-template-columns: 1fr;
  }
  .ondemand-card{
    margin-top: 18px;  /* iets luchtiger */
  }

  .two-col--ondemand{
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Groene pill – intensievere hulp */
.microtrust-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 16px;
  padding: 8px 14px;

  background: rgba(29,205,141,0.45);
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  color: #0b1f16;
  margin-bottom: 36px;
}

.microtrust-pill a{
  color: #0b1f16;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.microtrust-pill a:hover{
  opacity: 0.8;
}

/* =========================
   CONTACT – Directe knoppen + details
   ========================= */
.contact-hero{
  margin-top: 18px;
}

.contact-lead{
  max-width: 800;
  opacity: 0.95;
  margin-bottom: 14px;
}

/* Knoppen onder elkaar */
.contact-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 18px;
  max-width: 420px;
}

.contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.contact-btn:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Kleuren per knop */
.contact-btn--email{
  background: #16b87e;
  color: #000000;
}

.contact-btn--whatsapp{
  background: #22c55e;
  color: #000000;
}

.contact-btn--call{
  background: #1dcd8d;
  color: #000000;
}

/* Gegevens eronder */
.contact-details{
  padding-top: 0;
  margin-top: 10px;
  max-width: 720px;
}

.contact-details p{
  margin: 8px 0;
  font-size: 16px;
}

.contact-details a{
  color: #111827;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mobiel: knoppen full width */
@media (max-width: 520px){
  .contact-actions{
    max-width: 100%;
  }
  .contact-btn{
    width: 100%;
  }
}


/* 2-koloms layout in contact hero */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "intro  ."
    "main   visual";
  column-gap: 28px;
  row-gap: 18px;
  align-items: start;
}

.contact-intro{ grid-area: intro; }
.contact-main{  grid-area: main; }
.contact-right{ grid-area: visual; }


.contact-right{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.contact-gif{
  width: min(520px, 100%);
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* Icoontjes i.p.v. tekstregels */
.contact-icons{
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.contact-icon{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  box-shadow: none;

  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.contact-icon svg{
  width: 22px;
  height: 22px;
  fill: #111827;
}

.contact-icon:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Responsive: pas onder elkaar op ÉCHT mobiel */
@media (max-width: 620px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .contact-right{
    justify-content: flex-start;
  }
  .contact-gif{
    width: min(520px, 100%);
  }
}

/* Contact links met iconen + tekst (verticaal) */
.contact-links{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  max-width: 520px;
}

.contact-row{
  display: flex;
  align-items: center;  /* dit centreert alles verticaal */
  gap: 14px;
}

.contact-row__text{
  height: 46px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin: 0;

  color: #111827;
  text-decoration: none; /* geen underline */
  cursor: default;       /* niet “link-achtig” */
}

.contact-row__text:hover{
  text-decoration: none;
}

/* =========================
   Ervaringen – sterren + onzichtbare kop
   ========================= */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page-ervaringen .ervaringen-reviews{
  background: transparent;
  padding-top: 8px;
}

/* Sterren (groen gevuld, "uit" lichtgroen/grijzig) */
.review-stars{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding-left: 12px; /* match met blockquote/figcaption padding */
}

.review-stars .stars{
  display: inline-flex;
  gap: 6px;
}

.review-stars svg{
  width: 22px;
  height: 22px;
  fill: #1dcd8d;
}

.review-stars svg.star--off{
  fill: rgba(29,205,141,0.25);
}


/* =========================
   HOME – kleine aanvullingen
   ========================= */

.home-cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.home-microcopy{
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.home-subhead{
  margin-bottom: 8px;
}

/* Hoe werkt het: genummerde stappen */
.home-steps{
  margin-top: 12px;
  margin-left: 18px;
}

.home-steps li{
  margin-bottom: 10px;
}

/* Proof card */
.home-proof.card{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.home-proof__actions{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   HOME – hero afbeelding groter
   ========================= */

.hero-media{
  padding-right: 0; /* op home iets strakker */
}

.hero-gif{
  max-width: 620px; /* was 480 */
}

@media (max-width: 768px){
  .hero-gif{
    max-width: 320px; /* mobiel iets groter dan 240 */
  }
}

/* =========================
   Section divider – algemeen (home)
   ========================= */
.section-divider.section-divider--home{
  max-width: 1000px;
  margin: 36px auto 32px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.18),
    transparent
  );
}

/* =========================
   HOME – ervaringen blok rustiger
   ========================= */
.home-proof{
  background: rgba(242,255,250,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: none;
}

.home-proof h2{
  margin-bottom: 6px;
}

.home-proof p{
  margin: 0;
}

.home-proof__actions{
  margin-top: 12px;
}

/* =========================
   HOME – diensten intro (rustig)
   ========================= */
.home-services-intro{
  max-width: 900px;
  margin: 0 auto 16px;
  text-align: center;
}

.home-kicker{
  display: inline-block;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;

  background: rgba(29,205,141,0.25);
  padding: 6px 12px;
  border-radius: 999px;
}

.home-services-intro h2{
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1.15;
}

.home-services-sub{
  margin: 0 auto;
  max-width: 720px;
  opacity: 0.85;
}


/* =========================
   HOME – diensten linker vlak (groen)
   ========================= */
.dienst-card--primary,
.dienst-card--accent{
  background: #20efa3;
  color: #0b1f16;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
}

.dienst-card--primary h2,
.dienst-card--primary p,
.dienst-card--primary li,
.dienst-card--accent h2,
.dienst-card--accent p,
.dienst-card--accent li{
  color: #0b1f16;
}

.dienst-card--primary ul,
.dienst-card--accent ul{
  margin-top: 12px;
}

/* Primaire knop in beide kaarten */
.dienst-card .cta{
  background: #ffffff;
  color: #0b1f16;
}

.dienst-card .cta:hover{
  background: #f2fffa;
}

/* Tweede knop in beide kaarten */
.dienst-card .btn-ghost{
  background: #b9efdc;
  color: #0b1f16;
  border: 1.5px solid rgba(11,31,22,0.4);
}

.dienst-card .btn-ghost:hover{
  background: rgba(255,255,255,0.25);
}


/* =========================
   ALGEMENE VOORWAARDEN – pagina
   ========================= */

/* Content grid */
.voorwaarden-wrap{
  padding: 44px 0 12px;
}

.voorwaarden-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 0 18px;
}

.voorwaarde h2{
  color: #1dcd8d;
  font-size: 26px;
  margin-bottom: 10px;
}

.voorwaarde p{
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
}

/* Responsive */
@media (max-width: 900px){
  .voorwaarden-grid{ grid-template-columns: 1fr; }
  .voorwaarden-sub{ font-size: 18px; }
}


/* =========================
   FOOTER – voorwaarden knop + KVK (alle pagina's)
   ========================= */
.site-footer{
  border-top: 1px solid #e5e5e5;
  padding: 0;
  background: transparent;
}

.footer-legal{
  background: #1dcd8d;
  padding: 18px 18px 18px;
  text-align: center;
}

/* .footer-legal__title{
  color: #ffffff;
  font-weight: 900;
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: 0.4px;
} */

.footer-legal__title{
  font-weight: 900;
  font-size: 22px;    
  letter-spacing: 0.8px;
  opacity: 0.85;   
  margin-bottom: 8px;
}

.footer-legal__sub{
  color: #0b1f16;
  font-weight: 700;
  font-size: 17px;
  max-width: 1050px;
  margin: 0 auto 18px;
}

.footer-legal__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;
  border-radius: 999px;

  background: #cdf3e5;
  color: #111827;
  text-decoration: none;
  font-weight: 700;

  border: 1px solid rgba(0,0,0,0.10);
}

.footer-legal__btn:hover{ opacity: 0.92; }

.footer-legal__kvk{
  margin-top: 16px;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}

.footer-copy{
  padding: 18px 24px 24px;
  text-align: center;
  font-size: 14px;
  color: #555555;
}

/* SECTION DIVIIDERS OVER ALLE PAGINAS */
.section-divider{
  max-width: 1000px;
  margin: 36px auto;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.18),
    transparent
  );
}

/* On-Demand titel + ondertitel zwart (buiten het blok) */
.contrast-head h2,
.contrast-head p{
  color: #111827;
}

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

.fab-icon{
  width:18px;
  height:18px;
  fill:white;
  flex-shrink:0;
}

/* =========================
   PRICE / VALUE MESSAGING
   ========================= */

.price-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 10px 14px;
  background: #f2fffa;
  border: 1px solid rgba(29,205,141,0.28);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  font-size: 15px;
  font-weight: 700;
  color: #0b1f16;
}

.price-pill strong{
  font-weight: 900;
}

.kicker-soft{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(29,205,141,0.14);
  color: #0b1f16;
  font-size: 14px;
  font-weight: 700;
}

.value-points{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.value-point{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.value-point h3{
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.2;
}

.value-point p{
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.price-note{
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.bundle-highlight{
  max-width: 860px;
  margin: 22px auto 0;
  padding: 18px 20px;
  background: #f2fffa;
  border: 1px solid rgba(29,205,141,0.28);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  text-align: center;
}

.bundle-highlight h3{
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.bundle-highlight p{
  margin: 0;
}

.inline-price{
  font-weight: 800;
  color: #0b1f16;
}

@media (max-width: 900px){
  .value-points{
    grid-template-columns: 1fr;
  }
}

.tarief-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}
.scriptiehulp-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}