/* ====== RESET ====== */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0b1220;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(0,119,182,.18), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(255,183,3,.16), transparent 50%),
    #f7f9fc;
  line-height: 1.6;
}

/* Fix voor hidden attributen (toast/backdrop/etc) */
[hidden]{ display:none !important; }

/* Fixed header offset bij anchor scroll */
:target{ scroll-margin-top: 90px; }

.container{ width: min(1120px, 92%); margin: 0 auto; }

.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;
}

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff;
  padding:10px 14px;
  border-radius:10px;
}
.skip-link:focus{ left:12px; z-index:2000; }

/* ====== HEADER ====== */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.header-inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.site-header.scrolled{
  box-shadow: 0 12px 30px rgba(2, 6, 23, .08);
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:inherit;
  font-weight: 800;
}
.brand-icon{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color:#fff;
}
.brand-text{ letter-spacing:.2px; }

/* ====== NAV ====== */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(15, 23, 42, .12);
  background: rgba(255,255,255,.8);
  cursor:pointer;
}
.nav-toggle i{ font-size:18px; }

.nav-panel{ display:flex; }
.nav-list{
  list-style:none;
  display:flex;
  gap:10px;
  align-items:center;
}
.nav-link{
  display:inline-flex; gap:8px; align-items:center;
  text-decoration:none;
  color:#0b1220;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  transition: transform .15s ease, background .15s ease;
}
.nav-link:hover{ background: rgba(2, 62, 138, .08); transform: translateY(-1px); }
.nav-link.active{ background: rgba(0,119,182,.12); }

.nav-cta{
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color:#fff !important;
}
.nav-cta:hover{ background: linear-gradient(135deg, #005c8d, #022e67); }

.nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,.45);
  z-index: 900;
}

/* ====== HERO ====== */
.hero{
  position:relative;
  padding:44px 0 60px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:-2px;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(0,119,182,.22), transparent 60%),
    radial-gradient(700px 380px at 80% 10%, rgba(255,183,3,.22), transparent 55%);
  pointer-events:none;
  z-index:-1;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:24px;
  align-items:center;
  padding:26px 0;
}

.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  width: fit-content;
}
.icon-circle{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0077b6;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(2,6,23,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.icon-circle:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2,6,23,.12);
}
.hero h1{
  font-size: clamp(2.1rem, 3.3vw, 3.2rem);
  line-height:1.1;
  margin-top:14px;
}
.lead{
  margin-top:12px;
  font-size:1.12rem;
  color: rgba(11,18,32,.78);
}

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

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color:#fff;
  box-shadow: 0 14px 30px rgba(2,62,138,.18);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,.75);
  border-color: rgba(15,23,42,.12);
  color:#0b1220;
}
.btn-ghost:hover{ background: rgba(255,255,255,.95); transform: translateY(-1px); }
.btn-dark{ background:#0b1220; color:#fff; }
.btn-dark:hover{ transform: translateY(-1px); }

.hero-stats{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.stat{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.7);
  min-width: 140px;
}
.stat-value{ font-weight:800; font-size:1.3rem; }
.stat-label{ color: rgba(11,18,32,.72); font-weight:600; }

.hero-card{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.8);
  box-shadow: 0 20px 60px rgba(2, 6, 23, .12);
  overflow:hidden;
}
.hero-card-top{
  display:flex; align-items:center; gap:10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(0,119,182,.14), rgba(255,183,3,.12));
  font-weight:800;
}
.hero-card-body{ padding:16px; }
.mini-steps{ margin-top:12px; display:grid; gap:10px; }
.mini-step{
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.65);
  font-weight:700;
}

/* ====== SECTIONS ====== */
.section{ padding: 64px 0; }
.section-soft{
  background: rgba(255,255,255,.55);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section-head{ margin-bottom:22px; }
.section-head h2{
  font-size: 2rem;
  display:flex; justify-content:center; align-items:center; gap:10px;
}
.section-head p{
  margin-top:10px;
  color: rgba(11,18,32,.72);
  text-align:center;
}

/* Features */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  padding:18px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, .08);
}
.feature-icon{
  width:46px; height:46px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(0,119,182,.12);
  color:#023e8a;
  margin-bottom:10px;
  font-size:20px;
}
.feature h3{ font-size:1.1rem; }
.feature p{ margin-top:6px; color: rgba(11,18,32,.74); }

/* Cards */
.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  text-align:left;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  border-radius:18px;
  padding:18px;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, .10);
}
.card-icon{
  width:46px; height:46px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,183,3,.18);
  color:#7a4b00;
  font-size:20px;
  margin-bottom:10px;
}
.card p{ margin-top:6px; color: rgba(11,18,32,.74); }
.card-link{
  margin-top:12px;
  display:inline-flex; gap:8px; align-items:center;
  font-weight:800;
  color:#023e8a;
}

/* Steps */
.steps{
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:10px;
}
.step{
  display:flex; gap:14px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
}
.step-badge{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(0,119,182,.12);
  color:#023e8a;
  font-weight:900;
}
.step-body h3{ margin-top:2px; }
.step-body p{ margin-top:6px; color: rgba(11,18,32,.74); }

/* Focus cards (reviews area) */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.review{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  padding:18px;
  text-align:left;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.review:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, .10);
}
.review:focus{ outline: 3px solid rgba(0,119,182,.20); }
.review-top{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:10px;
}
.review-stars i{ color:#ffb703; }
.review-tag{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  font-weight:800;
  font-size:.85rem;
}
.review p{ color: rgba(11,18,32,.78); }
.review-who{ margin-top:10px; font-weight:800; color: rgba(11,18,32,.7); }

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

.center .btn-primary{
  padding: 14px 20px;
  font-size: 1.05rem;
}

/* CTA section */
.cta{
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(0,119,182,.12), rgba(255,183,3,.10));
  border-top: 1px solid rgba(15,23,42,.06);
}
.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
}

/* ====== BIG FOOTER ====== */
.footer-big{
  padding: 40px 0 18px;
  background: rgba(255,255,255,.75);
  border-top: 1px solid rgba(15,23,42,.08);
}
.footer-big-inner{
  display:grid;
  gap: 22px;
  max-width: 1080px;
}
.footer-big-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding-bottom: 6px;
}
.footer-big-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
  max-width: 640px;
}
.footer-big-logo{
  width:46px; height:46px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color:#fff;
  flex:0 0 auto;
}
.footer-big-title{
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing:.2px;
}
.footer-big-desc{
  margin-top: 8px;
  max-width: 620px;
  color: rgba(11,18,32,.68);
  font-weight: 600;
}
.footer-big-cta{ white-space: nowrap; }

.footer-big-cols{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 4px;
}
.footer-col h4{
  font-size: .92rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: rgba(11,18,32,.92);
}
.footer-col a{
  display:block;
  padding: 6px 0;
  color: rgba(11,18,32,.68);
  text-decoration:none;
  font-weight: 600;
}
.footer-col a:hover{
  color: rgba(11,18,32,.95);
  text-decoration: underline;
}

/* ✅ GEFIXTE ICONS + minder ruimte */
.footer-icons{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-icon{
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  color: rgba(11,18,32,.85);
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(2,6,23,.08);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.footer-icon i{
  font-size: 16px;
  line-height: 1;
}

.footer-big-bottom{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding-top:14px;
  border-top: 1px solid rgba(15,23,42,.08);
  color: rgba(11,18,32,.60);
  font-weight:650;
  font-size:.9rem;
  flex-wrap: wrap;
}
.footer-sep{ opacity:.6; }

.footer-credits a{
  color:#0077b6;
  text-decoration:none;
  font-weight:900;
  position: relative;
}
.footer-credits a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:100%;
  height:2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .18s ease;
}
.footer-credits a:hover::after{ transform: scaleX(1); }

/* ====== CONTACT PAGE ====== */
.page{ padding-top:20px; }
.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.form{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  padding:18px;
}
.field{ display:grid; gap:8px; margin-bottom:14px; }
label{ font-weight:800; }
input, textarea{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  font: inherit;
  background: rgba(255,255,255,.9);
}
textarea{ min-height:140px; resize:vertical; }
input:focus, textarea:focus{
  outline: 3px solid rgba(0,119,182,.20);
  border-color: rgba(0,119,182,.35);
}
.error{ color:#b42318; font-weight:700; min-height:18px; }

.toast{
  margin-top:12px;
  display:flex; gap:10px; align-items:center;
  padding:12px 14px;
  border-radius:14px;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .22);
  font-weight:800;
}
.muted{ color: rgba(11,18,32,.72); }
.contact-card{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  padding:18px;
}
.contact-lines{ display:grid; gap:10px; margin-top:10px; }
.contact-lines div{ display:flex; gap:10px; align-items:center; font-weight:700; }
.contact-card hr{ margin:16px 0; border:none; border-top:1px solid rgba(15,23,42,.10); }

/* ====== MODAL ====== */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  place-items:center;
  padding:18px;
  background: rgba(2,6,23,.55);
  z-index:2000;
}
.modal.open{ display:grid; }
.modal-panel{
  width: min(560px, 96%);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.92);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  padding:18px;
  position: relative;
}
.modal-close{
  position:absolute; top:12px; right:12px;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.9);
  cursor:pointer;
}
.modal-list{ margin: 10px 0 14px 18px; }
.modal-list li{ margin:6px 0; }

/* ====== REVEAL ====== */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ order: -1; }
  .grid-3, .cards-3, .reviews{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-big-cols{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .nav-toggle{ display:inline-grid; place-items:center; }
  .nav-panel{
    position: fixed;
    top: 72px;
    right: 10px;
    width: min(320px, 92vw);
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,.12);
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 60px rgba(2, 6, 23, .18);
    padding: 10px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 950;
  }
  .nav-panel.open{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }
  .nav-list{ flex-direction:column; align-items:stretch; }
  .nav-link{ justify-content:space-between; }

  .footer-big-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-big-cols{ grid-template-columns: 1fr; }
  .footer-big-cta{ width: fit-content; }
}

/* Motion respect */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ transition:none; transform:none; opacity:1; }
  .btn-primary:hover, .btn-ghost:hover, .btn-dark:hover,
  .card:hover, .review:hover, .feature:hover, .footer-icon:hover{
    transform:none;
  }
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float{
  position: fixed;
  bottom: 22px;
  right: 18px;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;

  font-size: 22px;
  line-height: 1;
  text-decoration: none;

  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  z-index: 3000;

  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.whatsapp-float i{ line-height:1; }

/* Footer: Contact kolom netjes centreren */
.footer-big-cols .footer-col:last-child{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-big-cols .footer-col:last-child h4{
  width: 100%;
  text-align: center;
}

.footer-big-cols .footer-col:last-child .footer-icons{
  justify-content: center;
  margin-top: 6px;
}

/* Focus bullets */
.mini-list{
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0;
}

.mini-list li{
  position: relative;
  padding-left: 14px;
  font-weight: 600;
  color: rgba(11,18,32,.7);
}

.mini-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.4;
  color: rgba(11,18,32,.5);
}

/* =========================
   LIVING UPGRADE LAYER ✨
   Plak onderaan je CSS
========================= */

/* --- Theme tokens --- */
:root{
  --bg: #f7f9fc;
  --text: #0b1220;

  /* main vibes */
  --pri: #0077b6;
  --pri2:#023e8a;

  /* extra punch */
  --acc: #ffb703;
  --acc2:#ff5d8f;
  --vio: #7c3aed;

  /* ui */
  --glass: rgba(255,255,255,.78);
  --stroke: rgba(15,23,42,.10);
  --shadow: 0 18px 60px rgba(2, 6, 23, .10);
  --shadow2: 0 24px 80px rgba(2, 6, 23, .14);

  --ring: 0 0 0 4px rgba(0,119,182,.18);
}

/* --- Body bg: iets meer “wow” zonder schreeuwen --- */
body{
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(0,119,182,.22), transparent 62%),
    radial-gradient(900px 650px at 100% 0%, rgba(255,183,3,.20), transparent 55%),
    radial-gradient(800px 600px at 30% 110%, rgba(124,58,237,.10), transparent 55%),
    var(--bg);
}

/* =========================
   BUTTON GLOW: stacking + z-index fix
   Ensures ::before glow sits behind text/icon
========================= */

.btn{
  position: relative;
  overflow: hidden;
}

.btn > *{
  position: relative;
  z-index: 2;
}

.btn-primary::before{
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,183,3,.35), transparent 55%);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 1;
  pointer-events: none;
}

.btn-primary:hover::before{ opacity: .9; }

/* Optional: subtle extra punch on hover without overwhelming the glow */
.btn-primary:hover{ filter: saturate(1.05) contrast(1.05); }

/* --- Global: smooth hover feel --- */
a, button, .card, .feature, .review, .footer-icon, .stat, .pill, .mini-step{
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease,
    filter .18s ease;
}

/* --- Header: iets meer depth & glans --- */
.site-header{
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
}
.site-header.scrolled{
  box-shadow: 0 18px 50px rgba(2, 6, 23, .10);
}

/* Brand icon: subtiele pulse glow */
.brand-icon{
  box-shadow: 0 12px 28px rgba(2,62,138,.18);
}
.brand:hover .brand-icon{
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: 0 18px 44px rgba(2,62,138,.26);
}

/* --- Nav links: underline + glow --- */
.nav-link{
  position: relative;
  border: 1px solid transparent;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:7px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(0,119,182,.0), rgba(0,119,182,.55), rgba(255,183,3,.55), rgba(255,183,3,0));
  transform: scaleX(0);
  transform-origin:center;
  transition: transform .18s ease;
  pointer-events:none;
}
.nav-link:hover{
  background: rgba(2, 62, 138, .08);
  transform: translateY(-2px);
}
.nav-link:hover::after{
  transform: scaleX(1);
}
.nav-link.active{
  border-color: rgba(0,119,182,.18);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

/* Nav CTA: shine */
.nav-cta{
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(2,62,138,.22);
}
.nav-cta::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.35), transparent 65%);
  transform: translateX(-40%) rotate(12deg);
  transition: transform .45s ease;
}
.nav-cta:hover{
  transform: translateY(-2px);
  filter: saturate(1.1);
}
.nav-cta:hover::before{
  transform: translateX(40%) rotate(12deg);
}

/* --- HERO: meer “levend” met subtle noise-like glow via gradients --- */
.hero-bg{
  background:
    radial-gradient(900px 450px at 20% 18%, rgba(0,119,182,.26), transparent 62%),
    radial-gradient(780px 420px at 88% 12%, rgba(255,183,3,.26), transparent 58%),
    radial-gradient(680px 520px at 55% 90%, rgba(124,58,237,.12), transparent 55%);
}

/* Pill: een beetje meer contrast */
.pill{
  border-color: rgba(0,119,182,.16);
  box-shadow: 0 14px 34px rgba(2,6,23,.06);
}
.pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(2,6,23,.10);
}

/* --- Buttons: pop + active press + glow --- */
.btn{
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn:active{
  transform: translateY(0px) scale(.98);
}

.btn-primary{
  background: linear-gradient(135deg, var(--pri), var(--pri2));
  box-shadow: 0 18px 44px rgba(2,62,138,.22);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(2,62,138,.28);
  filter: saturate(1.1);
}
.btn-primary::before{
  content:"";
  position:absolute;
  inset:-50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,183,3,.35), transparent 55%);
  opacity:.0;
  transition: opacity .2s ease;
}
.btn-primary:hover::before{ opacity:.9; }

.btn-ghost{
  background: rgba(255,255,255,.75);
  border-color: rgba(15,23,42,.12);
}
.btn-ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 55px rgba(2,6,23,.10);
}

.btn-dark{
  box-shadow: 0 18px 46px rgba(2,6,23,.18);
}
.btn-dark:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(2,6,23,.22);
}

/* --- Cards/Features/Reviews: gradient border + glow hover --- */
.feature, .card, .review, .stat, .mini-step, .hero-card, .form, .contact-card{
  position: relative;
}

.feature::before,
.card::before,
.review::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  padding:1px;
  background: linear-gradient(135deg,
    rgba(0,119,182,.35),
    rgba(255,183,3,.28),
    rgba(124,58,237,.22)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events:none;
}

.feature:hover,
.card:hover,
.review:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  filter: saturate(1.04);
}
.feature:hover::before,
.card:hover::before,
.review:hover::before{
  opacity: 1;
}

.feature-icon{
  background: linear-gradient(135deg, rgba(0,119,182,.16), rgba(124,58,237,.10));
  border: 1px solid rgba(0,119,182,.14);
}
.card-icon{
  background: linear-gradient(135deg, rgba(255,183,3,.22), rgba(255,93,143,.14));
  border: 1px solid rgba(255,183,3,.16);
}

/* --- Steps: badge iets pittiger --- */
.step{
  box-shadow: 0 10px 28px rgba(2,6,23,.06);
}
.step:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
}
.step-badge{
  background: linear-gradient(135deg, rgba(0,119,182,.18), rgba(255,183,3,.14));
  border: 1px solid rgba(0,119,182,.14);
}

/* --- Footer icons: kleur op hover (email/phone/whatsapp vibe) --- */
.footer-icon:hover{
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 18px 50px rgba(2,6,23,.16);
  border-color: rgba(0,119,182,.22);
}
.footer-icon[href^="mailto"]:hover{ color: var(--pri); }
.footer-icon[href^="tel"]:hover{ color: var(--vio); }
.footer-icon[href*="wa.me"]:hover{ color: #25D366; }

/* --- WhatsApp float: extra glow --- */
.whatsapp-float{
  box-shadow: 0 14px 34px rgba(37,211,102,.28), 0 12px 28px rgba(0,0,0,.18);
}
.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 60px rgba(37,211,102,.32), 0 18px 40px rgba(0,0,0,.22);
}

/* --- Inputs: nicer focus + hover --- */
input:hover, textarea:hover{
  border-color: rgba(0,119,182,.22);
}
input:focus, textarea:focus{
  box-shadow: var(--ring);
}

/* --- Focus styles (keyboard) --- */
:where(a, button, input, textarea):focus-visible{
  outline: none;
  box-shadow: var(--ring);
  border-color: rgba(0,119,182,.35);
}

/* --- Reveal anim: iets snappier --- */
.reveal{
  transition: opacity .55s ease, transform .55s ease;
}

/* Motion respect blijft werken (jij had dit al) */
@media (prefers-reduced-motion: reduce){
  .nav-link::after,
  .nav-cta::before,
  .btn-primary::before,
  .feature::before,
  .card::before,
  .review::before{
    transition:none !important;
  }
}

/* Zorg dat iconen altijd zichtbaar blijven */
.btn i,
.nav-cta i,
.footer-icon i{
  position: relative;
  z-index: 2;
}

.btn-primary::before,
.nav-cta::before{
  z-index: 1;
  pointer-events: none;
}

.nav-cta:hover i{
  filter: drop-shadow(0 4px 10px rgba(255,255,255,.6));
  transform: translateY(-1px);
}