:root{
  --navy-1:#00034C;
  --navy-2:#030380;
  --blue:#295ABB;
  --mint-1:#A9F1DC;
  --mint-2:#7ED9BC;
  --mint-3:#3FB68E;

  --radius: 18px;
}
/* navbar hoogte */
:root{
  --nav-h: 74px;
}

/* hero loopt onder navbar door */
.hero-with-cards{
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
}

.bg-navy{ background: var(--navy-1)!important; }
.border-navy-2{ border-color: rgba(255,255,255,.12)!important; }

.btn-mint{
  background: rgba(255,255,255,.92);
  color: var(--navy-1);
  border: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.btn-mint:hover{
  background: #ffffff;
  color: var(--blue);
}

.btn-outline-mint{
  border: 2px solid var(--mint-2);
  color: var(--mint-1);
}
.btn-outline-mint:hover{
  background: var(--mint-2);
  color: #052b24;
}

.hero{
  background: radial-gradient(1200px 600px at 10% 10%, rgba(63,182,142,.25), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(41,90,187,.25), transparent 60%),
              linear-gradient(180deg, var(--navy-1), #01012b);
  color: white;
}
.card-soft{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
}
.card-soft .card-body{ color: rgba(255,255,255,.88); }

.section{
  padding: 64px 0;
}
.section-title{
  font-weight: 800;
  letter-spacing: -0.02em;
}

.badge-mint{
  background: rgba(169,241,220,.15);
  border: 1px solid rgba(126,217,188,.35);
  color: white;
}

.free-book-cta{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  background: var(--mint-1);
  color: #03221b;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.08);
}
.free-book-cta:hover{ filter: brightness(.98); }

.footer-link{
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.footer-link:hover{ color: white; text-decoration: underline; }

.form-hint{
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}

.hover-lift{
  transition: transform .25s ease, box-shadow .25s ease;
}
.hover-lift:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}


/* HERO overlap cards */
.hero-with-cards{
  position: relative;
  padding-bottom: 110px; /* ruimte zodat cards kunnen overlappen */
}

.hero-inner{
  padding-top: 64px;
  padding-bottom: 140px; /* ruimte vóór overlap */
}

.hero-cards-wrap{
  position: relative;
  margin-top: -110px; /* overlap over hero */
  z-index: 5;
}

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

.card-float{
  height: 100%;
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-float:hover{
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  border-color: rgba(169,241,220,.35);
}

.card-kicker{
  display: inline-block;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-float-title{
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.card-float-text{
  color: rgba(255,255,255,.75);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.card-float-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.card-float-cta{
  font-weight: 800;
  color: var(--mint-1);
}

.card-float-featured{
  border-color: rgba(126,217,188,.40);
  background: linear-gradient(
    180deg,
    rgba(126,217,188,.16),
    rgba(255,255,255,.05)
  );
}

/* Mobile tweak: minder overlap zodat het niet cramped wordt */
@media (max-width: 575.98px){
  .hero-inner{ padding-bottom: 90px; }
  .hero-cards-wrap{ margin-top: -70px; }
}

/* HERO geeft onder ruimte voor overlap */
.hero-with-cards{
  position: relative;
  padding-bottom: 120px;
}
.hero-inner{
  padding-top: 64px;
  padding-bottom: 120px;
}

/* Nieuwe overlap section */
.paden-overlap{
  position: relative;
  margin-top: -96px;   /* klein beetje meer overlap */
  z-index: 10;
  padding-bottom: 56px;

  /* langere, zachtere overgang -> matcht #f8f9fa (Bootstrap bg-light) */
  background: linear-gradient(
    180deg,
    rgba(248,249,250, 0)   0%,
    rgba(248,249,250, .12) 22%,
    rgba(248,249,250, .35) 45%,
    rgba(248,249,250, .70) 70%,
    rgba(248,249,250, 1)   100%
  );
}



/* Cards rij */
.paden-cards{
  margin-bottom: 30px;
}

/* Zorg dat de volgende sectie niet tegen de cards drukt */
.section.bg-light{
  padding-top: 110px;
}

.card-float{
  height: 100%;
  border-radius: 22px;
  padding: 22px;

  /* Apple-ish glass, maar met tint zodat tekst leesbaar blijft */
  background: rgba(7, 16, 45, 0.72);
  border: 1px solid rgba(255,255,255,.14);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 24px 70px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.10);

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-float:hover{
  transform: translateY(-8px);
  box-shadow:
    0 34px 90px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);
  border-color: rgba(169,241,220,.28);
}

.card-kicker{
  display: inline-block;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .10em;
  color: rgba(255,255,255,.60);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-float-title{
  font-weight: 900;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.card-float-text{
  color: rgba(255,255,255,.74);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.card-float-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.card-float-cta{
  font-weight: 900;
  color: var(--mint-1);
}

/* Bridge tussen cards en risk */
.bridge-section{
  padding: 28px 0 14px;
  background: #f8f9fa; /* match bg-light */
  position: relative;
}

/* Subtiele divider (maakt abrupt gevoel weg) */
.bridge-section::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: min(920px, 92%);
  height: 1px;
  background: rgba(0,0,0,.06);
}

.bridge-kicker{
  display:inline-block;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(11,16,32,.55);
}

.bridge-title{
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Trust pills */
.trust-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.06);
  color: rgba(11,16,32,.75);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

/* Verminder de enorme gap boven risk */
.section.bg-light{
  padding-top: 56px;  /* was 110px */
}

/* ------------ TRI Testimonials (SLIDE) ------------ */

.tri-slider{
  position: relative;
  padding-top: 400px;
}

/* viewport clipt alles buiten beeld, maar we geven padding zodat shadows niet "cut off" voelen */
.tri-viewport{
  overflow: hidden;
  padding: 18px 24px 28px; /* ruimte voor shadows + nav */
}

/* track is FLEX zodat 5 items niet naar een 2e rij springen */
.tri-track{
  display: flex;
  gap: 24px;
  align-items: stretch;
  will-change: transform;
  transition: transform .38s ease;
}

/* 3 kaarten zichtbaar (gap 24px => 2 gaps = 48px) */
.tri-item{
  flex: 0 0 calc((100% - 48px) / 3);
}

/* Card styling */
.tri-card{
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  /* box-shadow: 0 18px 50px rgba(0,0,0,.08); */
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, opacity .25s ease, filter .25s ease;
}

.tri-photo img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.tri-quote{
  padding: 18px 18px 0;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(11,16,32,.88);
  min-height: 84px;
}

.tri-name{
  padding: 14px 18px 0;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--navy-2);
}

.tri-meta{
  padding: 6px 18px 18px;
  color: rgba(11,16,32,.55);
  font-weight: 700;
  font-size: .9rem;
}

/* States die JS zet op .tri-item */
/* Subtiele states */
.tri-item.is-active .tri-card{
  transform: translateY(-8px);              /* klein */
  /* box-shadow: 0 22px 60px rgba(0,0,0,.12);  */
  border-color: rgba(0,0,0,.08);
}

.tri-item.is-side{
  opacity: .45;
  filter: grayscale(.12);
}

/* Smooth transitions (minimal + premium) */
.tri-card{
  transition:
    transform .28s cubic-bezier(.2,.9,.2,1),
    box-shadow .28s cubic-bezier(.2,.9,.2,1),
    opacity .20s ease,
    filter .20s ease,
    border-color .20s ease;
}

/* Track beweging blijft de echte slide */
.tri-track{
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}

/* Nav buttons */
.tri-nav{
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  color: rgba(11,16,32,.80);
  cursor: pointer;
  z-index: 5;
}

.tri-prev{ left: -10px; }
.tri-next{ right: -10px; }
.tri-nav:hover{ filter: brightness(.98); }

/* Dots */
.tri-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.tri-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(11,16,32,.20);
}
.tri-dot.is-active{
  background: rgba(11,16,32,.55);
}

/* Mobile: 1 kaart */
@media (max-width: 767.98px){
  .tri-viewport{ padding: 18px 10px 20px; }
  .tri-track{ gap: 16px; }
  .tri-item{ flex: 0 0 100%; }
  .tri-prev{ left: 10px; }
  .tri-next{ right: 10px; }
}

.tri-slider{
  position: relative;
  padding-top: 10px;
  overflow: hidden; /* KILL HORIZONTAL SCROLL */
}

/* ------------ Footer Pro ------------ */

.footer-pro{
  position: relative;
}

/* subtiele “glow” bovenaan, past bij je hero look */
.footer-pro::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

.footer-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

.footer-brand{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.footer-tagline{
  color: rgba(255,255,255,.65);
  font-weight: 700;
  font-size: .92rem;
}

.footer-lead{
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  max-width: 46ch;
}

.footer-kicker{
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}

.footer-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-link{
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.footer-link:hover{
  color: rgba(255,255,255,.98);
  text-decoration: underline;
}

.footer-link-muted{
  color: rgba(255,255,255,.62);
}

.footer-btn-outline{
  border-color: rgba(255,255,255,.28) !important;
  color: rgba(255,255,255,.88) !important;
}
.footer-btn-outline:hover{
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.35) !important;
  color: #fff !important;
}

.footer-divider{
  height: 1px;
  background: rgba(255,255,255,.12);
}

.footer-contact{
  display: grid;
  gap: 10px;
}

.footer-contact-row{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
  font-size: .9rem;
}

.footer-social{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .06em;
}

.footer-social:hover{
  background: rgba(255,255,255,.10);
  color: #fff;
}


/* ------------ Navbar Pro ------------ */

.nav-pro{
  background: rgba(0, 3, 76, .78); /* navy glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.nav-pro::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

.brand-mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(255,255,255,.92);

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

.brand-text{
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* nav links: premium underline on hover */
.nav-pro .nav-link{
  color: rgba(255,255,255,.78);
  font-weight: 700;
  position: relative;
  padding: .55rem .7rem;
  border-radius: 12px;
}

.nav-pro .nav-link:hover{
  color: rgba(255,255,255,.96);
  background: rgba(255,255,255,.06);
}

.nav-pro .nav-link::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(169,241,220,.0);
  transform: scaleX(.6);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.nav-pro .nav-link:hover::after{
  opacity: 1;
  transform: scaleX(1);
  background: rgba(255,255,255,.22);
}

/* optional: active link (als je later server-side active class zet) */
.nav-pro .nav-link.active{
  color: rgba(255,255,255,.98);
  background: rgba(255,255,255,.08);
}
.nav-pro .nav-link.active::after{
  opacity: 1;
  transform: scaleX(1);
  background: rgba(169,241,220,.55);
}

/* separator */
.nav-sep{
  display: inline-block;
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.12);
  margin: 0 .35rem;
}

/* CTA buttons */
.nav-btn-primary{
  border-radius: 999px;
  padding: .55rem 1.0rem;
  font-weight: 900;
}

.nav-btn-ghost{
  border-radius: 999px;
  padding: .55rem 1.0rem;
  border-color: rgba(255,255,255,.28) !important;
  color: rgba(255,255,255,.88) !important;
}
.nav-btn-ghost:hover{
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.35) !important;
  color: #fff !important;
}

.nav-toggler{
  border-color: rgba(255,255,255,.18) !important;
}