/* wow.css — extra beweging en glans bovenop de bestaande stijl.
   Alles hieronder is toevoeging: er worden geen bestaande regels overschreven. */

/* ---------- 1. Voortgangsbalk bovenin ---------- */
.wow-voortgang {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgb(46, 115, 85), rgb(111, 169, 140), rgb(124, 174, 211));
  border-radius: 0 3px 3px 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ---------- 2. Muisgloed ---------- */
.wow-gloed {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, rgba(111, 169, 140, 0.16) 0%, rgba(124, 174, 211, 0.10) 38%, rgba(124, 174, 211, 0) 68%);
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}
.wow-gloed.wow-aan { opacity: 1; }

/* ---------- 3. Glimmende kop (hero) ---------- */
@keyframes wowGlim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.wow-glim {
  background: linear-gradient(100deg, rgb(46, 115, 85) 20%, rgb(111, 190, 150) 42%, rgb(46, 115, 85) 60%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  animation: wowGlim 5.5s ease-in-out infinite;
}

/* ---------- 4. Onderstreping in het menu ---------- */
[data-desktop-nav] a {
  position: relative;
}
[data-desktop-nav] a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background: rgb(46, 115, 85);
  transition: width 0.28s cubic-bezier(0.16, 0.84, 0.24, 1);
}
[data-desktop-nav] a:hover::after {
  width: 100%;
}

/* ---------- 5. Kopbalk krijgt schaduw zodra je scrolt ---------- */
.wow-balk-schaduw {
  box-shadow: 0 8px 30px rgba(9, 25, 36, 0.10) !important;
}

/* ---------- 6. Lichtstreep over knoppen ---------- */
[data-btn] {
  position: relative;
  overflow: hidden;
}
[data-btn]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-22deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
[data-btn]:hover::after {
  left: 140%;
}

/* ---------- 7. Scrollende diensten-ticker ---------- */
@keyframes wowTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.wow-ticker {
  overflow: hidden;
  background: rgb(20, 35, 28);
  color: rgb(207, 227, 216);
  padding: 15px 0;
  border-top: 1px solid rgba(244, 250, 253, 0.08);
  border-bottom: 1px solid rgba(244, 250, 253, 0.08);
}
.wow-ticker-rij {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: wowTicker 30s linear infinite;
}
.wow-ticker:hover .wow-ticker-rij {
  animation-play-state: paused;
}
.wow-ticker-rij span {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.wow-ticker-rij span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(111, 169, 140);
}

/* ---------- 8. Kaarten die meekantelen ---------- */
.wow-tilt {
  will-change: transform;
}

/* ---------- 9. Zachte overgang bij binnenkomst van de pagina ---------- */
@keyframes wowPaginaIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body {
  animation: wowPaginaIn 0.45s ease-out;
}

/* ---------- Rustig als iemand minder beweging wil ---------- */
@media (prefers-reduced-motion: reduce) {
  .wow-glim,
  .wow-ticker-rij,
  body {
    animation: none !important;
  }
  .wow-gloed,
  .wow-voortgang {
    display: none !important;
  }
}

/* ================= RONDE 2: intro, cursor, typeffect, popup, sliders ================= */

/* ---------- 10. Intro bij eerste bezoek ---------- */
.wow-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgb(20, 35, 28);
  animation: wowIntroWeg 0.7s cubic-bezier(0.16, 0.84, 0.24, 1) 2.1s forwards;
}
@keyframes wowIntroWeg {
  to { opacity: 0; visibility: hidden; }
}
.wow-intro-binne { text-align: center; }
.wow-intro-balken {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 52px;
  margin-bottom: 20px;
}
.wow-intro-balken span {
  width: 10px;
  border-radius: 3px;
  background: rgb(111, 169, 140);
  transform-origin: bottom;
  animation: wowBalkIn 0.8s cubic-bezier(0.16, 0.84, 0.24, 1) both;
}
.wow-intro-balken span:nth-child(1) { height: 32px; animation-delay: 0.05s; }
.wow-intro-balken span:nth-child(2) { height: 52px; animation-delay: 0.18s; }
.wow-intro-balken span:nth-child(3) { height: 40px; background: rgb(207, 227, 216); animation-delay: 0.31s; }
@keyframes wowBalkIn {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
.wow-intro-naam {
  font-family: Magre, "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: -0.02em;
  color: rgb(244, 250, 253);
  animation: wowIntroTekst 0.7s ease 0.55s both;
}
.wow-intro-naam em { color: rgb(111, 169, 140); font-style: normal; }
.wow-intro-sub {
  margin-top: 8px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 250, 253, 0.55);
  animation: wowIntroTekst 0.7s ease 0.8s both;
}
@keyframes wowIntroTekst {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}

/* ---------- 11. Eigen cursor (punt + ring) ---------- */
.wow-cursor-punt,
.wow-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 210;
  border-radius: 50%;
  will-change: transform;
}
.wow-cursor-punt {
  width: 6px;
  height: 6px;
  background: rgb(46, 115, 85);
}
.wow-cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(46, 115, 85, 0.55);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background-color 0.25s;
}
.wow-cursor-ring.wow-groot {
  width: 58px;
  height: 58px;
  background: rgba(111, 169, 140, 0.12);
  border-color: rgba(46, 115, 85, 0.95);
}
@media (hover: none) {
  .wow-cursor-punt, .wow-cursor-ring { display: none; }
}

/* ---------- 12. Typeffect-caret ---------- */
.wow-typ::after {
  content: "|";
  margin-left: 2px;
  color: rgb(46, 115, 85);
  animation: wowKnip 1s steps(1) infinite;
}
@keyframes wowKnip { 50% { opacity: 0; } }

/* ---------- 13. Exit-popup (gratis websitescan) ---------- */
.wow-exit {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(9, 25, 36, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wow-exit.wow-open { opacity: 1; pointer-events: auto; }
.wow-exit-kaart {
  position: relative;
  background: rgb(255, 255, 255);
  border-radius: 22px;
  max-width: 440px;
  width: 100%;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 30px 80px rgba(9, 25, 36, 0.35);
  transform: translate3d(0, 18px, 0) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.24, 1);
}
.wow-exit.wow-open .wow-exit-kaart { transform: none; }
.wow-exit-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(46, 115, 85);
  margin-bottom: 10px;
}
.wow-exit-kaart h3 {
  margin: 0 0 10px;
  font-family: Magre, "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.wow-exit-kaart p { margin: 0 0 20px; color: rgba(9, 9, 9, 0.72); font-size: 15px; }
.wow-exit-sluit {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: rgba(9, 9, 9, 0.45);
  padding: 6px;
}
.wow-exit-sluit:hover { color: rgb(9, 9, 9); }

/* ---------- 14. Voor/na-vergelijker ---------- */
.wow-voorna {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.1);
  box-shadow: rgba(9, 25, 36, 0.12) 0 18px 44px;
  aspect-ratio: 16 / 9;
  user-select: none;
  touch-action: pan-y;
  background: rgb(255, 255, 255);
  --vn: 50%;
}
.wow-voorna .vn-laag { position: absolute; inset: 0; padding: 8%; }
.wow-voorna .vn-na { clip-path: inset(0 0 0 var(--vn)); background: rgb(255, 255, 255); }
.wow-voorna .vn-greep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--vn);
  width: 2px;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 0 1px rgba(9, 9, 9, 0.18);
  cursor: ew-resize;
}
.wow-voorna .vn-knop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgb(46, 115, 85);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(20, 35, 28, 0.35);
  pointer-events: none;
}
.wow-voorna .vn-tag {
  position: absolute;
  top: 12px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.72);
  color: #fff;
}
.wow-voorna .vn-tag.links { left: 12px; }
.wow-voorna .vn-tag.rechts { right: 12px; background: rgb(46, 115, 85); }
/* wireframe-blokjes in de twee lagen */
.vn-b { border-radius: 6px; }
.vn-voor .vn-b { background: rgba(9, 9, 9, 0.14); }
.vn-na .vn-b { background: rgba(46, 115, 85, 0.18); }
.vn-na .vn-b.vn-accent { background: rgb(46, 115, 85); }

/* ---------- 15. Prijsconfigurator ---------- */
.wow-config {
  margin-top: 32px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(9, 9, 9, 0.09);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 18px;
}
.wow-config-titel {
  font-family: Magre, "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.wow-config-groep { display: grid; gap: 8px; }
.wow-config-groep > span {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(9, 9, 9, 0.5);
}
.wow-config-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.wow-opt {
  border: 1px solid rgba(9, 9, 9, 0.18);
  background: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.wow-opt:hover { transform: translateY(-1px); border-color: rgb(46, 115, 85); }
.wow-opt.wow-keuze {
  background: rgb(46, 115, 85);
  border-color: rgb(46, 115, 85);
  color: #fff;
}
.wow-config-uitkomst {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  border-top: 1px dashed rgba(9, 9, 9, 0.16);
  padding-top: 16px;
}
.wow-config-bedrag {
  font-family: Magre, "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: rgb(46, 115, 85);
}
.wow-config-maand { color: rgba(9, 9, 9, 0.65); font-size: 14px; }
.wow-config-klein { font-size: 12.5px; color: rgba(9, 9, 9, 0.55); }

/* ---------- 16. Sectie-stippen aan de rechterrand ---------- */
.wow-stippen {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: grid;
  gap: 11px;
}
.wow-stip {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(9, 9, 9, 0.22);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s;
}
.wow-stip.wow-actief { background: rgb(46, 115, 85); transform: scale(1.4); }
.wow-stip::after {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgb(20, 35, 28);
  color: rgb(244, 250, 253);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.wow-stip:hover::after { opacity: 1; transform: translateY(-50%); }
@media (max-width: 1100px) { .wow-stippen { display: none; } }

/* ---------- 17. Tellers ---------- */
.wow-tel { display: inline-block; }

/* ---------- Rustig bij minder beweging ---------- */
@media (prefers-reduced-motion: reduce) {
  .wow-intro, .wow-intro-balken span, .wow-intro-naam, .wow-intro-sub { animation: none !important; }
  .wow-intro { display: none !important; }
  .wow-cursor-punt, .wow-cursor-ring { display: none !important; }
}
