/* style.css */
/* =============== Design tokens =============== */
:root{
  --brand:#0078AD;
  --accent:#DF1683;

  --text:#1f2320;
  --muted:#5b6166;

  --bg:#ffffff;
  --surface:#f6f7f8;

  --radius:22px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.08);
  --shadow: 0 18px 55px rgba(0,0,0,.14);

  --container: 1180px;
}

/* =============== Base =============== */
*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family:"Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

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

.section{ padding:86px 0; }
.surface{ background: var(--surface); }

.divider{
  height:2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(223,22,131,.75),
    rgba(0,154,218,.35),
    transparent
  );
}

h1,h2,h3{ margin:0; }

h3{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h2{
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing:-.5px;
  font-weight:900;
  color: var(--text);
}

p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:18px;
}

/* =============== Buttons =============== */
.btn-row{
  margin-top:26px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}


.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:16px;
  font-weight:900;
  font-size:15px;
  border:1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  will-change: transform;
  cursor:pointer;
}

.btn.primary{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn.primary:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.secondary{
  background: rgba(255,255,255,.06);
  color:#fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn.secondary:hover{
  transform: translateY(-2px);
  border-color: rgba(223,22,131,.75);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.btn.ghost{
  background:#fff;
  border-color: rgba(0,0,0,.10);
  color: rgba(31,35,32,.88);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.btn.ghost:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(223,22,131,.35);
}

/* =============== Header =============== */
header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  padding:16px 0;
  transition: background .25s ease, box-shadow .25s ease;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0));
}

header.scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.nav-wrap{
  display:flex;
  align-items:baseline;
  justify-content:flex-start;
  gap:24px;
}


.logo{
  display:flex;
  align-items:baseline;
  gap:12px;
  min-width:210px;
}

.logo img{ height:35px; width:auto; transform: translateY(8px); }
.logo .wordmark{
  font-weight:900;
  letter-spacing:-.2px;
  color:#fff;
  white-space:nowrap;
  line-height:1;
  padding-bottom:2px;
}

header.scrolled .logo .wordmark{ color:var(--text); }

/* Desktop navigation */
.nav-desktop{
  display:flex;
  align-items:baseline;
  gap:18px;
  flex-wrap:nowrap;
}

.nav-desktop a{
  position:relative;
  font-weight:700;
  font-size:14px;
  color:rgba(255,255,255,.88);
  padding:10px 10px;
  border-radius:14px;
  transition: color .2s ease, background .2s ease;
}

/* Dropdown navigation (desktop) */
.nav-item{ position:relative; display:inline-flex; align-items:center; }
.nav-item .nav-link{ padding-right:28px; }
.nav-item.has-submenu .nav-link::before{
  content:"";
  position:absolute;
  right:12px;
  top:50%;
  width:8px;
  height:8px;
  border-right:2px solid rgba(255,255,255,.86);
  border-bottom:2px solid rgba(255,255,255,.86);
  transform: translateY(-55%) rotate(45deg);
  opacity:.9;
}
header.scrolled .nav-item.has-submenu .nav-link::before{
  border-right-color: rgba(31,35,32,.78);
  border-bottom-color: rgba(31,35,32,.78);
}

.submenu{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding:10px;
  border-radius:16px;
  background: rgba(18,22,24,.88);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 48px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display:none;
}
header.scrolled .submenu{
  background: rgba(255,255,255,.96);
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}
.submenu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  font-size:13px;
  color: rgba(245,247,250,.94);
}
.submenu a::after{ display:none; }
header.scrolled .submenu a{ color: rgba(31,35,32,.88); }
.submenu a:hover{ background: rgba(255,255,255,.10); }
header.scrolled .submenu a:hover{ background: rgba(0,0,0,.04); }

.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu{ display:block; }
header.scrolled .nav-desktop a{ color: rgba(31,35,32,.86); }
.nav-desktop a:hover{ background: rgba(255,255,255,.10); }
header.scrolled .nav-desktop a:hover{ background: rgba(0,0,0,.04); }

.nav-desktop a::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:7px;
  height:2px;
  border-radius:999px;
  background:transparent;
  transform:scaleX(.15);
  transform-origin:left;
  transition: background .2s ease, transform .2s ease;
}
.nav-desktop a:hover::after{
  background: rgba(223,22,131,.95);
  transform:scaleX(1);
}


/* --- Dropdown hover fix: keep submenu open (no hover gap) --- */
.nav-item.has-submenu { position: relative; }
.submenu{
  top: 100%;
  margin-top: 8px;            /* visual spacing */
  display: block;             /* allow transitions */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
/* Invisible bridge so mouse can travel from parent link to submenu without collapsing */
.submenu::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:-12px;
  height:12px;
}
.nav-item.has-submenu:hover > .submenu,
.nav-item.has-submenu:focus-within > .submenu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}


/* Desktop CTA */
.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
  color:#fff;
  background: rgba(0,154,218,.95);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.header-cta:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Nav CTA button */
.nav-cta{
  padding:8px 20px !important;
  font-size:0.9rem !important;
  font-weight:700 !important;
  color:#fff !important;
  background:var(--brand) !important;
  border-radius:var(--radius) !important;
  white-space:nowrap;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta::after{ display:none !important; }
.nav-cta:hover{
  background:#0088c2 !important;
  transform: translateY(-1px);
}
header.scrolled .nav-cta{
  color:#fff !important;
  background:var(--brand) !important;
}
header.scrolled .nav-cta:hover{
  background:#0088c2 !important;
}

/* Mobile menu */
.hamburger{
  margin-left:auto;
display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  cursor:pointer;
  -webkit-appearance:none;
  appearance:none;
  padding:0;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background: rgba(245,247,250,.92);
  border-radius:2px;
}
.hamburger span:nth-child(2){ width:18px; opacity:.95; }

header.scrolled .hamburger{
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.10);
}
header.scrolled .hamburger span{
  background: rgba(31,35,32,.90);
}

.mobile-menu{
  position: fixed;
  inset: 0;
  background: rgba(11,15,18,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1200;
  display:none;
}

/* Mobile accordion (inside menu) */
.mobile-accordion{ margin-top:6px; }
.mobile-acc-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.02);
  color: rgba(31,35,32,.88);
  font-weight:900;
  font-size:16px;
  cursor:pointer;
}
.mobile-acc-btn::after{
  content:"";
  width:10px;
  height:10px;
  border-right:2px solid rgba(31,35,32,.66);
  border-bottom:2px solid rgba(31,35,32,.66);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.mobile-acc-btn[aria-expanded="true"]::after{ transform: rotate(225deg); }

.mobile-acc-panel{
  padding: 8px 0 4px 0;
  margin-left: 16px;
}
.mobile-acc-panel a{
  margin-top:8px;
  font-size: 14px;
  color: rgba(31,35,32,.75);
  background: rgba(0, 120, 173, 0.06);
  border-left: 3px solid var(--brand);
  padding-left: 12px;
  border-radius: 0;
  font-weight: 600;
}
.mobile-acc-panel a.overview-link{
  font-weight: 700;
  color: var(--brand);
}
.mobile-menu.open{ display:block; }

.mobile-menu-inner{
  width:min(520px, 92%);
  margin: 88px auto 0;
  background: rgba(255,255,255,.94);
  border:1px solid rgba(0,0,0,.10);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.mobile-menu-title{
  font-weight:900;
  color: rgba(31,35,32,.92);
}

.mobile-close{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
  font-weight:900;
  -webkit-appearance:none;
  appearance:none;
}

.mobile-links{
  display:grid;
  gap:8px;
  padding:14px 16px 8px;
}
.mobile-links a{
  display:flex;
  padding:12px;
  border-radius:16px;
  font-weight:900;
  color: rgba(31,35,32,.88);
  background: rgba(0,0,0,.02);
  border:1px solid rgba(0,0,0,.06);
}

.mobile-cta{ padding: 12px 16px 18px; }
body.menu-open{ overflow:hidden; }

/* =============== Hero =============== */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  color:#fff;
  overflow:hidden;
  background:#0b0f12;
  padding: 120px 0 80px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background: url("../img/ILB-Hero-image.webp") center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.04);
  z-index:0;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 18% 28%, rgba(0,154,218,.22), transparent 58%),
    radial-gradient(800px 520px at 62% 38%, rgba(223,22,131,.10), transparent 62%),
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.40) 55%, rgba(0,0,0,.20) 100%);
  pointer-events:none;
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width: 760px;
}

.hero h1{
  margin:0 0 16px;
  font-size: clamp(40px, 5.8vw, 84px);
  line-height:1.01;
  letter-spacing:-1.2px;
  font-weight:900;
  color:#F5F7FA;
  text-shadow: 0 18px 60px rgba(0,0,0,.38);
}


.hero p{
  margin:0;
  font-size: clamp(17px, 1.55vw, 22px);
  color: rgba(245,247,250,.90);
  max-width: 62ch;
}


.hero .micro{
  margin-top:14px;
  font-size:13px;
  color: rgba(245,247,250,.72);
}
.hero .micro b{ color: rgba(223,22,131,.95); }

/* Scroll indicator */
.scroll-indicator{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  z-index:3;
  opacity:.85;
}
body.scrolled .scroll-indicator{
  opacity:0;
  pointer-events:none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.mouse{
  width:26px;
  height:42px;
  border:2px solid rgba(245,247,250,.8);
  border-radius:20px;
  position:relative;
}
.wheel{
  width:4px;
  height:8px;
  background: rgba(245,247,250,.9);
  border-radius:2px;
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}
.mouse::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:24px;
  border:1px solid rgba(245,247,250,.25);
  animation: pulse 2.5s infinite;
}
@keyframes scrollWheel{
  0%{ opacity:0; transform:translate(-50%, 0); }
  30%{ opacity:1; }
  60%{ opacity:1; transform:translate(-50%, 10px); }
  100%{ opacity:0; transform:translate(-50%, 14px); }
}
@keyframes pulse{
  0%{ transform:scale(1); opacity:.6; }
  70%{ transform:scale(1.2); opacity:0; }
  100%{ opacity:0; }
}

/* =============== BBC =============== */
.bbc-section{ background: var(--bg); }

.bbc-highlight{
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
}
.bbc-highlight::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  background: linear-gradient(180deg, rgba(223,22,131,.95), rgba(0,154,218,.65));
  opacity:.95;
}
.bbc-highlight::after{
  content:"";
  position:absolute;
  inset:-40% -40% auto -40%;
  height:70%;
  transform: rotate(-8deg);
  background:
    radial-gradient(circle at 30% 40%, rgba(223,22,131,.10), transparent 55%),
    radial-gradient(circle at 60% 30%, rgba(0,154,218,.08), transparent 60%);
  pointer-events:none;
}

.bbc-inner{ position: relative; z-index: 1; padding: 34px; }

.bbc-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 360px;
  gap: 22px 26px;
  align-items:start;
}

.bbc-head{ grid-column: 1 / -1; }
.bbc-footerText{ grid-column: 1 / -1; }

.bbc-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(31,35,32,.75);
  margin-bottom: 10px;
}
.bbc-kicker .pill{
  height:10px;
  width:10px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(223,22,131,.12);
}

.bbc-title{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 900;
  letter-spacing: -.6px;
  line-height: 1.12;
}
.bbc-subtitle{
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}
.bbc-tagline{
  margin-top: 10px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(31,35,32,.92);
}
.bbc-tagline span{ color: var(--accent); }

.bbc-miniTitle{
  margin: 6px 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(31,35,32,.90);
  letter-spacing: -.2px;
}

.bbc-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.bbc-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height: 1.5;
}
.bbc-list .dot{
  width:9px;
  height:9px;
  margin-top:7px;
  border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,154,218,.10);
  flex:0 0 auto;
}

.bbc-list--light li{
  font-weight:500;
  color: rgba(31,35,32,.76);
  font-size:15px;
}

.bbc-ctaBox{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-self:start;
}
.bbc-ctaBox h3{
  margin:0 0 8px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.2px;
}
.bbc-ctaBox p{
  margin:0 0 14px;
  font-size: 14px;
  color: var(--muted);
}
.bbc-ctaBox .btn{ width:100%; }
.bbc-note{
  margin-top:10px;
  font-size: 13px;
  color: rgba(91,97,102,.85);
}
.bbc-footerText .bbc-subtitle{
  margin-top: 14px;
  font-size: 16px;
  color: rgba(31,35,32,.70);
  line-height: 1.6;
}

/* =============== Social proof =============== */
.sp-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
  margin-top:22px;
}

.sp-card{
  background:#fff;
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.04);
  position:relative;
  overflow:hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.sp-card::after{
  content:"";
  position:absolute;
  inset:auto -40% -60% -40%;
  height:60%;
  transform: rotate(-10deg);
  background: linear-gradient(90deg, rgba(223,22,131,.07), rgba(0,154,218,.06));
  opacity:.9;
  pointer-events:none;
}
.sp-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Volgeboekt ribbon */
.ribbon-volgeboekt{
  position:absolute;
  top:36px;
  right:-58px;
  width:240px;
  padding:10px 0;
  background:#DF1683;
  color:#fff;
  font-size:1rem;
  font-weight:700;
  text-transform:uppercase;
  text-align:center;
  letter-spacing:.1em;
  transform:rotate(45deg);
  z-index:2;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}
.ribbon-volgeboekt::before,
.ribbon-volgeboekt::after{
  content:"";
  position:absolute;
  bottom:-6px;
  border:6px solid transparent;
  border-top-color:#a8105e;
}
.ribbon-volgeboekt::before{ left:0; border-left-color:#a8105e; }
.ribbon-volgeboekt::after{ right:0; border-right-color:#a8105e; }

.sp-top{
  display:flex;
  gap:14px;
  align-items:flex-start;
  position:relative;
  z-index:1;
}

.sp-avatar{
  width:60px;
  height:60px;
  border-radius:16px;
  object-fit:cover;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.sp-quote{
  margin:0;
  font-weight:400;
  color: rgba(31,35,32,.78);
  font-size:16px;
  line-height:1.6;
}

.sp-meta{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}

/* Horizontale review-cards (beginners) */
.sp-grid--horizontal{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.sp-grid--horizontal .sp-card{
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  gap:20px;
  padding:24px;
}
.sp-grid--horizontal .sp-top{
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  gap:18px;
  flex:1;
}
.sp-grid--horizontal .sp-avatar{
  width:80px;
  height:80px;
  flex-shrink:0;
}
.sp-grid--horizontal .sp-reviewer{
  display:flex;
  flex-direction:column;
  align-items:center;
  flex-shrink:0;
  min-width:100px;
  gap:8px;
}
.sp-grid--horizontal .sp-meta{
  margin-top:0;
  justify-content:center;
}

/* Homepage review-cards: foto links, naam rechts, tekst eronder */
.sp-grid .sp-top{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.sp-grid .sp-reviewer{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
}
.sp-grid .sp-avatar{
  width:72px;
  height:72px;
  flex-shrink:0;
}
.sp-grid .sp-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  margin-top:0;
}

/* Reviewer naam — vetgedrukte tekst, geen pill */
.sp-name{
  display:block;
  font-weight:700;
  font-size:15px;
  color:var(--text);
  letter-spacing:-.01em;
  line-height:1.3;
}

/* Trainingtype pill — iets subtieler */
.pill--type{
  font-size:11px;
  font-weight:600;
  padding:5px 10px;
  opacity:.85;
}
.sp-grid .sp-quote{
  width:100%;
  text-align:left;
  margin:0;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
  font-weight:700;
  font-size:12px;
  color: rgba(31,35,32,.72);
}
.pill i{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(223,22,131,.12);
}

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

/* Panels */
.grid-2{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.panel{
  background:#fff;
  border-radius: var(--radius);
  padding:24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.04);
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background: linear-gradient(180deg, rgba(223,22,131,.95), rgba(0,154,218,.65));
  opacity:.9;
}

/* Problem section */
.problem-section h2{ margin-bottom: 18px; }
.subhead{
  font-weight:900;
  font-size:18px;
  margin:18px 0 8px;
  color: var(--text);
}
.problem-panel{ padding:26px; }
.panel-title{
  margin:0 0 10px;
  font-weight:900;
  font-size:18px;
  letter-spacing:-.2px;
  color: rgba(31,35,32,.92);
}
.panel-text{ margin:0; font-size:16px; color: var(--muted); }
.panel-meta{ margin-top:12px; }

.list-clean{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap:12px;
}
.li-dot{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:700;
  color: rgba(31,35,32,.90);
}
.li-dot .pinkdot{
  width:10px;
  height:10px;
  margin-top:7px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(223,22,131,.12);
  flex:0 0 auto;
}

.statement{
  margin-top:18px;
  font-size: 1.10rem;
  font-weight: 500;
  opacity: 0.97;
  color: rgba(31,35,32,.92);
}
.statement .accent{ color: var(--accent); }
.accent-break{ display:inline; font-weight: 800; }
@media (min-width: 981px){
  .accent-break{ display:block; }
}

.small-muted{ font-size:14px; color: rgba(91,97,102,.90); }

/* Reviews page: intro text should match normal paragraph sizing (homepage) */
.reviews-intro{ font-size:16px; color: rgba(91,97,102,.90); }

/* Reviews filter tabs */
.reviews-filter{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:32px;
}
@media (max-width:600px){
  .reviews-filter{
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
  }
  .reviews-filter .filter-btn{
    white-space:nowrap;
    flex-shrink:0;
    font-size:.85rem;
    padding:6px 12px;
  }
}
.reviews-empty{
  padding:24px 0;
  color:rgba(91,97,102,.80);
  font-size:16px;
}

/* Section-lead typography */
.section-lead{
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}
.section-lead--italic{
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-top: 18px;
}
.meta-label{
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.link-brand{
  color: var(--brand);
  text-decoration: underline;
}
.legal-content h3{
  margin-top: 28px;
}

/* Cookie table */
.cookie-table{
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: 15px;
}
.cookie-table th,
.cookie-table td{
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.cookie-table th{
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}
.cookie-table tr:last-child td{
  border-bottom: none;
}
@media (max-width: 600px){
  .cookie-table{
    font-size: 13px;
  }
  .cookie-table th,
  .cookie-table td{
    padding: 8px 8px;
  }
}

/* Info */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(31,35,32,.70);
  margin-bottom: 10px;
}
/* Kicker kleur override in hero-secties */
.hero .kicker,
.hero--simple .kicker{
  color: rgba(245,247,250,.80);
}
.kicker .pilldot{
  height:10px;
  width:10px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(223,22,131,.12);
}

/* Newsletter */
.newsletter{
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  position:relative;
}
.newsletter::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  background: linear-gradient(180deg, rgba(223,22,131,.95), rgba(0,154,218,.65));
}
.newsletter-inner{
  padding: 30px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
  position:relative;
  z-index:1;
}

.form-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.input{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.12);
  font-size:15px;
  outline:none;
  background:#fff;
}
.input:focus{
  border-color: rgba(223,22,131,.40);
  box-shadow: 0 0 0 6px rgba(223,22,131,.10);
}
.helper{ font-size:13px; color: rgba(91,97,102,.90); margin-top:10px; }
.download-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color: rgba(31,35,32,.90);
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0,154,218,.08);
  border: 1px solid rgba(0,154,218,.18);
}
.download-link:hover{ border-color: rgba(223,22,131,.30); }

/* =============== Footer (nieuw, volledig) =============== */
footer{
  background:#0b0f12;
  color: rgba(245,247,250,.88);
  padding: 58px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer-title{
  font-weight:900;
  margin:0 0 12px;
  letter-spacing:-.2px;
  color: rgba(245,247,250,.92);
}
.footer-text{
  color: rgba(245,247,250,.72);
  font-size:14px;
  margin:0;
  line-height:1.55;
}
.footer-links{ display:grid; gap:10px; }
.footer-links a{
  color: rgba(245,247,250,.78);
  font-weight:650;
  font-size:14px;
  transition: color .2s ease, transform .2s ease;
  width: fit-content;
}
.footer-links a:hover{ color:#fff; transform: translateX(2px); }

.footer-contact{
  display:grid;
  gap:10px;
}
.footer-contact a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: rgba(245,247,250,.82);
  font-weight:800;
  font-size:14px;
  width: fit-content;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.footer-contact a:hover{
  transform: translateY(-2px);
  border-color: rgba(223,22,131,.35);
  background: rgba(255,255,255,.06);
}

.footer-kvk{
  margin-top:12px;
  font-size:13px;
  color: rgba(245,247,250,.60);
  line-height:1.55;
}

.footer-newsletter{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: calc(var(--radius) - 2px);
  padding:16px;
}
.footer-newsletter .input{
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.10);
}
.footer-newsletter .btn{
  width:100%;
}
.footer-newsletter .helper{
  color: rgba(245,247,250,.60);
}

.footer-bottom{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  color: rgba(245,247,250,.62);
  font-size:13px;
}
.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-legal{ display:flex; gap:18px; flex-wrap:wrap; }
.footer-legal a{
  color: rgba(245,247,250,.62);
  font-weight:650;
  font-size:13px;
  transition: color .2s ease;
}
.footer-legal a:hover{ color:#fff; }

.footer-bottom-inner{
  padding-right: 70px;
}

/* ============================= */

/* ============================= */
/* BBC layout tweaks             */
/* ============================= */
.bbc-side{ display:flex; flex-direction:column; gap:14px; }
.bbc-media{
  margin:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
.bbc-media img{ width:100%; height:220px; object-fit:cover; display:block; }

@media (min-width: 980px){
  .bbc-media img{ height:240px; }
}

/* Routes: 4 cards netjes */
#routes .sp-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px){
  #routes .sp-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  #routes .sp-grid{ grid-template-columns: 1fr; }
}


/* Reveal (FAIL-SAFE)            */
/* ============================= */
/* Default: zichtbare content, ook als JS faalt */
.reveal{
  opacity:1;
  transform:none;
}

/* Alleen als JS actief is, gebruiken we de animatie */
html.js .reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
html.js .reveal.visible{
  opacity:1;
  transform: translateY(0);
}

/* Stagger reveal: kinderen in een grid/rij animeren met vertraging */
html.js .reveal-stagger > *{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
}
html.js .reveal-stagger.visible > *{
  opacity: 1;
  transform: translateY(0);
}
html.js .reveal-stagger.visible > *:nth-child(1){ transition-delay: 0s; }
html.js .reveal-stagger.visible > *:nth-child(2){ transition-delay: 0.08s; }
html.js .reveal-stagger.visible > *:nth-child(3){ transition-delay: 0.16s; }
html.js .reveal-stagger.visible > *:nth-child(4){ transition-delay: 0.24s; }
html.js .reveal-stagger.visible > *:nth-child(5){ transition-delay: 0.32s; }
html.js .reveal-stagger.visible > *:nth-child(6){ transition-delay: 0.40s; }
html.js .reveal-stagger.visible > *:nth-child(n+7){ transition-delay: 0.48s; }

.delay-1{ transition-delay:.15s; }
.delay-2{ transition-delay:.30s; }
.delay-3{ transition-delay:.45s; }

/* Cookie banner */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  display:none;
}
.cookie-inner{
  width:min(var(--container), 92%);
  margin:0 auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
}
.cookie-text{
  font-size: 14px;
  color: rgba(31,35,32,.82);
  margin:0;
}
.cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.cookie-link{
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight:900;
  color: rgba(31,35,32,.86);
}
.cookie-link:hover{ color: rgba(223,22,131,.95); }

/* Footer: contact + nieuwsbrief (subtiel) */
.footer-meta{
  margin-top:14px;
  display:grid;
  gap:6px;
  font-size:13px;
  color: rgba(245,247,250,.62);
}
.footer-meta span{ opacity:.95; }

.footer-contact-list{
  display:grid;
  gap:10px;
}
.footer-contact-item{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:14px;
  color: rgba(245,247,250,.78);
  font-weight:650;
}
.footer-contact-item a{
  color: rgba(245,247,250,.78);
  font-weight:650;
}
.footer-contact-item a:hover{ color:#fff; }
.footer-contact-item .label{
  opacity:.75;
  font-weight:650;
}

.footer-note{
  margin-top:12px;
  font-size:13px;
  line-height:1.5;
  color: rgba(245,247,250,.55);
  max-width: 42ch;
}

/* Inline nieuwsbrief-form (desktop) */
.footer-form--inline{
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
}
.footer-form--inline .footer-input{
  padding:8px 10px;
  font-size:13px;
  border-radius:12px;
}
.footer-form--inline .footer-btn{
  padding:8px 10px;
  font-size:13px;
  border-radius:12px;
}

.footer-form{
  display:grid;
  gap:10px;
}
.footer-input{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  color: rgba(245,247,250,.92);
  font-size:14px;
  outline:none;
}
.footer-input::placeholder{ color: rgba(245,247,250,.55); }
.footer-input:focus{
  border-color: rgba(223,22,131,.35);
  box-shadow: 0 0 0 6px rgba(223,22,131,.10);
}
.footer-btn{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(0,154,218,.30);
  background: rgba(0,154,218,.92);
  color:#fff;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.footer-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}
.footer-form-note{
  margin-top:10px;
  font-size:12px;
  color: rgba(245,247,250,.55);
}
.footer-form-note a{
  color: rgba(245,247,250,.70);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-form-note a:hover{ color:#fff; }

/* =============== Responsive =============== */
@media (max-width: 980px){
  .nav-desktop{ display:none; }
  .header-cta{ display:none; }
  .hamburger{ display:flex; }

  .hero{
    min-height: 84vh;
    padding: 96px 0 60px;
  }
  .hero-bg{
    background-image: url("../img/ILB-Mobile-Hero-foto.webp");
    background-position: center top;
  }
  .hero::before{
    background:
      radial-gradient(700px 420px at 30% 22%, rgba(0,0,0,.55), transparent 62%),
      linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.12) 55%, rgba(0,0,0,.10) 100%);
  }
  .scroll-indicator{
    bottom:28px;
    transform:translateX(-50%) scale(.9);
  }

  .bbc-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sp-grid{ grid-template-columns: 1fr; }
  .sp-grid--horizontal .sp-card{ flex-direction:column; }
  .sp-grid--horizontal .sp-top{ flex-direction:column; gap:12px; }
  .sp-grid--horizontal .sp-reviewer{ flex-direction:row; align-items:center; min-width:unset; gap:12px; }
  .sp-grid--horizontal .sp-quote{ width:100%; }
  .grid-2{ grid-template-columns: 1fr; }
  .newsletter-inner{ grid-template-columns: 1fr; padding: 24px; }

  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .sp-avatar{ width:54px; height:54px; border-radius:16px; }
  .sp-quote{ font-size:16px; }
}

@media (max-width: 640px){
  footer{ padding: 46px 0 22px; }
  .footer-grid{ grid-template-columns: 1fr; gap:18px; }
  .footer-bottom-inner{ flex-direction:column; align-items:flex-start; gap:10px; padding-right:0; }
  .cookie-inner{ flex-direction:column; align-items:flex-start; }

  .hero h1{ font-size: clamp(30px, 8vw, 44px); }
  .hero p{ font-size: 16px; }

  .sp-avatar{ width:58px; height:58px; border-radius:16px; }
  .sp-quote{ font-size:16px; }
}

/* --- Active nav (current page) --- */
.nav-desktop a.active::after,
.nav-desktop .nav-link.active::after{
  background: rgba(223,22,131,.95);
  transform: scaleX(1);
}
.submenu a.active{
  background: rgba(223,22,131,.14);
  color: rgba(255,255,255,.96);
}
header.scrolled .submenu a.active{
  background: rgba(223,22,131,.10);
  color: rgba(24,26,28,.95);
}


/* --- Scroll hint (tap/chevron) + Back-to-top button --- */
.scroll-hint{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 70;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(18,22,24,.60);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.scroll-hint.show{
  opacity: 1;
  pointer-events: auto;
}
.scroll-hint svg{
  width: 18px;
  height: 18px;
  animation: hintBounce 1.2s ease-in-out infinite;
}
@keyframes hintBounce{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(4px); }
}

#backToTop{
  position: fixed;
  right: 50%;
  bottom: 52px;
  z-index: 70;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(18,22,24,.60);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(50%) translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
#backToTop.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}
#backToTop svg{ width:18px; height:18px; }

header.scrolled + main ~ #backToTop,
body.scrolled #backToTop{
  /* no-op; just keeps specificity sane */
}


/* Mobile/tablet: hide back-to-top, subtle scroll-hint */
@media (max-width: 980px) {
  #backToTop { display: none !important; }
  .scroll-hint{
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 32px;
    height: 32px;
    cursor: default;
  }
  .scroll-hint svg{
    color: rgba(0, 0, 0, 0.35);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
    animation: hintBounceMobile 1.2s ease-in-out infinite;
  }
  @keyframes hintBounceMobile{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(3px); }
  }
}

/* Hide old homepage mouse-scroll indicator (replaced by global scroll hint) */
.scroll-indicator{ display:none !important; }


/* Hero tagline (premium) */
.hero-tagline{
  margin-top:74px;
  font-size:22px;
  letter-spacing:.6px;
  font-weight:500;
  color: rgba(245,247,250,.92);
}

.hero-tagline b{
  font-weight:900;
  color: rgba(223,22,131,.95);
}

/* ============================= */
/* ROUTES section polish (buttons aligned + premium titles) */
/* ============================= */

#routes .sp-card{
  display:flex;
  flex-direction:column;
}

#routes .sp-card .sp-text{
  flex-grow:1;
}

#routes .sp-card .sp-actions{
  margin-top:auto;
}

/* stronger intro text above cards */
#routes .small-muted{
  font-size:18px;
  line-height:1.6;
  color: rgba(31,35,32,.78);
  font-weight:500;
}

/* premium card headings */
#routes .sp-title{
  font-size:20px;
  font-weight:900;
  letter-spacing:-.3px;
  color: var(--text);
  margin-bottom:10px;
}

#routes .sp-title::before{
  content:"Route";
  display:block;
  font-size:11px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  font-weight:900;
  color: var(--accent);
  margin-bottom:6px;
}

/* =============== Reviews page (long-form) =============== */
.reviews-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:22px; /* spacing from intro */
}

.review-item{
  display:grid;
  grid-template-columns:96px 1fr;
  grid-template-areas:
    "avatar header"
    "text   text";
  gap:10px 20px;
  padding:20px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.review-item:first-child{
  border-top:1px solid rgba(0,0,0,.08);
}

.review-avatar{
  grid-area:avatar;
  width:96px;
  height:96px;
  border-radius:18px;
  object-fit:cover;
  box-shadow: var(--shadow-soft);
}

.review-header{
  grid-area:header;
  display:flex;
  flex-direction:column;
  gap:6px;
  justify-content:center;
}

.review-type{
  margin-top:0;
}

.review-text{
  grid-area:text;
  color: var(--text);
  margin-top:0;
}

.review-text p{
  margin:0;
  font-size:17px;
  line-height:1.65;
}

@media (max-width: 720px){
  .review-item{
    grid-template-columns:72px 1fr;
    gap:8px 14px;
  }
  .review-avatar{
    width:72px;
    height:72px;
    border-radius:14px;
  }
  .review-text p{ font-size:16px; }
}


/* =============== Hero sub-pages (hero--simple) =============== */
.hero--simple{
  height: 60vh;
  min-height: 420px;
  max-height: 560px;
  padding: 130px 0 60px;
  overflow: hidden;
}
@media (max-width: 980px){
  .hero--simple{
    height: 50vh;
    min-height: 340px;
    max-height: 480px;
    padding: 100px 0 48px;
  }
}
@media (max-width: 640px){
  .hero--simple{
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 115px 0 60px;
  }
}

/* =============== Hero reveal bij page load (stagger) =============== */
@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

html.js .hero--simple .hero-inner .kicker{
  animation: heroFadeUp 0.7s ease 0.2s both;
}
html.js .hero--simple .hero-inner h1{
  animation: heroFadeUp 0.7s ease 0.35s both;
}
html.js .hero--simple .hero-inner p{
  animation: heroFadeUp 0.7s ease 0.5s both;
}
html.js .hero--simple .hero-inner .btn-row{
  animation: heroFadeUp 0.7s ease 0.65s both;
}
html.js .section--intro .hero-intro .kicker{
  animation: heroFadeUp 0.7s ease 0.8s both;
}
html.js .section--intro .hero-intro h2{
  animation: heroFadeUp 0.7s ease 0.87s both;
}
html.js .section--intro .hero-intro p{
  animation: heroFadeUp 0.7s ease 0.95s both;
}

/* =============== Hero intro (verplaatste hero-tekst) =============== */
.section--intro{
  padding: 32px 0 0;
}
.hero-intro{
  padding: 0;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text);
  line-height: 1.7;
  max-width: 72ch;
}
.hero-intro .kicker{
  margin-bottom: 12px;
}
.hero-intro p{
  margin: 0 0 16px;
}

/* =============== Info grid (over-ons) =============== */
.info-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 18px;
}
@media (max-width: 720px){
  .info-grid{ grid-template-columns: 1fr; }
}

.info-box{
  background:#fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.05);
  position:relative;
  overflow:hidden;
}
.info-box::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background: linear-gradient(180deg, rgba(223,22,131,.95), rgba(0,154,218,.65));
  opacity:.9;
}
.info-box h3{
  margin:0 0 12px;
  font-size:20px;
  font-weight:900;
  letter-spacing:-.3px;
  color: var(--text);
}

/* =============== Section: reduced top padding =============== */
.section--tight{ padding-top: 46px; }

/* =============== Service cards (sub-pages) =============== */
.service-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 720px){
  .service-grid{ grid-template-columns: 1fr; }
}

.service-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.05);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.service-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background: linear-gradient(180deg, rgba(223,22,131,.95), rgba(0,154,218,.65));
  opacity:.9;
}
.service-card::after{
  content:"";
  position:absolute;
  inset:auto -40% -60% -40%;
  height:60%;
  transform: rotate(-10deg);
  background: linear-gradient(90deg, rgba(223,22,131,.07), rgba(0,154,218,.06));
  opacity:.9;
  pointer-events:none;
}
.service-card h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.2px;
  color: var(--text);
}
.service-card p{
  font-size:15px;
  margin:0 0 16px;
  flex-grow:1;
}

/* =============== Feature grid (openwater) =============== */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 900px){
  .feature-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .feature-grid{ grid-template-columns: 1fr; }
}
.feature-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.05);
  position:relative;
  overflow:hidden;
}
.feature-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background: linear-gradient(180deg, rgba(223,22,131,.95), rgba(0,154,218,.65));
  opacity:.9;
}
.feature-card h3{
  margin:0 0 10px;
  font-size:17px;
  font-weight:900;
  letter-spacing:-.2px;
  color: var(--text);
}
.feature-card p{
  font-size:15px;
  margin:0;
  color: var(--muted);
}

/* Checklist (openwater) */
.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:700;
  color: rgba(31,35,32,.90);
}

/* =============== Contact page — forms, date cards, modal =============== */

/* Form layout */
.contact-form{ max-width:680px; }
.form-group{ margin-bottom:16px; }
.form-label{
  display:block;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
  color: var(--text);
}
.form-optional{ font-weight:400; color: var(--muted); }

.form-row-2col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media(max-width:640px){
  .form-row-2col{ grid-template-columns:1fr; }
}

/* Select styling (dropdown) */
select.input{
  appearance:none;
  -webkit-appearance:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b6166' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:38px;
  cursor:pointer;
}

/* Textarea */
textarea.input{
  resize:vertical;
  min-height:100px;
  font-family:inherit;
  line-height:1.55;
}
.form-row .input{
  flex:1 1 260px;
}
select.input,
textarea.input{
  display:block;
  width:100%;
  max-width:100%;
}

/* Checkbox */
.form-checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color: var(--text);
  cursor:pointer;
  line-height:1.45;
}
.form-checkbox input[type="checkbox"]{
  margin-top:3px;
  accent-color: var(--brand);
  width:18px;
  height:18px;
  flex-shrink:0;
}

/* Form feedback (success / error) */
.form-feedback{
  margin-top:16px;
  padding:14px 18px;
  border-radius:16px;
  font-size:15px;
  line-height:1.45;
}
.form-feedback--success{
  background: rgba(0,154,218,.08);
  border: 1px solid rgba(0,154,218,.20);
  color: var(--text);
}
.form-feedback--error{
  background: rgba(223,22,131,.08);
  border: 1px solid rgba(223,22,131,.20);
  color: var(--text);
}

/* Date cards */
.date-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}
@media(max-width:900px){
  .date-cards{ grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:600px){
  .date-cards{ grid-template-columns: 1fr; }
}

.date-card{
  background:#fff;
  border-radius: var(--radius);
  padding:26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.04);
  border-left:4px solid transparent;
  border-image: linear-gradient(180deg, var(--accent), var(--brand)) 1;
  display:flex;
  flex-direction:column;
  gap:6px;
  position:relative;
  overflow:hidden;
}
.date-card::after{
  content:"";
  position:absolute;
  inset:auto -40% -60% -40%;
  height:60%;
  transform: rotate(-10deg);
  background: linear-gradient(90deg, rgba(223,22,131,.07), rgba(0,154,218,.06));
  opacity:.9;
  pointer-events:none;
}
.date-card__date{
  font-size:18px;
  font-weight:900;
  color: var(--text);
}
.date-card__time{
  font-size:15px;
  color: var(--muted);
}
.date-card__location{
  font-size:14px;
  color: var(--muted);
}
.date-card__spots{
  font-size:14px;
  font-weight:700;
  color: var(--brand);
  margin-top:4px;
}
.date-card__cta{
  margin-top:12px;
  width:100%;
  text-align:center;
  font-size:14px;
  padding:12px 14px;
}

/* Contact info cards */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:22px;
}
@media(max-width:900px){
  .contact-cards{ grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px){
  .contact-cards{ grid-template-columns:1fr; }
}

.contact-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius);
  padding:26px;
  box-shadow: var(--shadow-soft);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration:none;
  color: var(--text);
  position:relative;
  overflow:hidden;
}
a.contact-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact-card::after{
  content:"";
  position:absolute;
  inset:auto -40% -60% -40%;
  height:60%;
  transform: rotate(-10deg);
  background: linear-gradient(90deg, rgba(223,22,131,.07), rgba(0,154,218,.06));
  opacity:.9;
  pointer-events:none;
}
.contact-card__icon{
  width:36px;
  height:36px;
  margin-bottom:6px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.contact-card__icon svg{
  width:36px;
  height:36px;
  color: var(--brand);
}
.contact-card__label{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color: var(--muted);
  font-weight:700;
}
.contact-card__value{
  font-size:17px;
  font-weight:700;
  color: var(--text);
}
.contact-card__value a{
  color:var(--brand);
  text-decoration:underline;
}

/* Modal */
.modal-overlay{
  position:fixed;
  inset:0;
  z-index:9000;
  background: rgba(11,15,18,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-overlay.active{
  opacity:1;
  visibility:visible;
}
.modal-card{
  background:#fff;
  border-radius: var(--radius);
  padding:36px 32px;
  max-width:520px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  transition: transform .25s ease;
}
.modal-overlay.active .modal-card{
  transform: translateY(0);
}
.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:36px;
  height:36px;
  border:none;
  background:none;
  font-size:26px;
  color: var(--muted);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition: background .15s ease;
}
.modal-close:hover{
  background: var(--surface);
}
.modal-card h3{
  font-size:20px;
  font-weight:900;
  margin:0 0 4px;
}
.modal-cursus{
  font-size:15px;
  color: var(--brand);
  font-weight:500;
  margin:0 0 22px;
}

/* =============== Price blocks =============== */
.price-block{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  margin:14px 0;
}
.price-block__amount{
  font-size:28px;
  font-weight:900;
  color:var(--brand);
  letter-spacing:-.5px;
}
.price-block__label{
  font-size:15px;
  color:var(--muted);
}
.price-block--small .price-block__amount{
  font-size:22px;
}

/* =============== Wedstrijdkalender =============== */

/* Filter tabs */
.kalender-filter{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.filter-btn{
  padding:8px 18px;
  border-radius:100px;
  border:2px solid var(--brand);
  background:transparent;
  color:var(--brand);
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:background .18s, color .18s;
}
.filter-btn:hover,
.filter-btn.active{
  background:var(--brand);
  color:#fff;
}

/* Month headers */
.event-month-header{
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  padding:22px 0 8px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:14px;
}

/* Event list */
.event-list{
  display:flex;
  flex-direction:column;
}

/* Event card */
.event-card{
  display:flex;
  gap:22px;
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  align-items:flex-start;
}
.event-card:last-child{
  border-bottom:none;
}

/* Date badge */
.event-card__date{
  flex:0 0 56px;
  text-align:center;
  background:var(--brand);
  border-radius:var(--radius);
  padding:10px 8px;
  color:#fff;
  min-width:56px;
}
.event-card__day{
  font-size:20px;
  font-weight:900;
  line-height:1.1;
}
.event-card__month{
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-top:3px;
}

/* Card body */
.event-card__body{
  flex:1;
  min-width:0;
}
.event-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:8px;
}
.event-tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  padding:2px 10px;
  border-radius:100px;
  letter-spacing:.04em;
}
.event-tag--triathlon{
  background:rgba(0,154,218,.18);
  color:var(--brand);
}
.event-tag--swim{
  background:rgba(223,22,131,.15);
  color:var(--accent);
}
.event-tag--land{
  background:rgba(255,255,255,.07);
  color:var(--muted);
}
.event-tag--lokaal{
  background:rgba(0,154,218,.12);
  color:var(--brand);
}
.event-tag--vakantie{
  background:rgba(255,200,0,.12);
  color:#c8a000;
}
.event-tag--special{
  background:rgba(255,255,255,.07);
  color:var(--muted);
}

.event-card__name{
  font-size:18px;
  font-weight:700;
  margin:0 0 4px;
  color:var(--text);
}
.event-card__location{
  font-size:13px;
  color:var(--muted);
  margin-bottom:8px;
}
.event-card__distances{
  font-size:13px;
  color:var(--muted);
  margin-bottom:10px;
  line-height:1.6;
}
.event-card__desc{
  font-size:14px;
  line-height:1.65;
  color:var(--text);
  margin-bottom:12px;
}

/* Small button variant */
.btn--small{
  padding:8px 18px;
  font-size:13px;
}

/* Mobile */
@media (max-width:520px){
  .event-card{
    flex-direction:column;
    gap:12px;
  }
  .event-card__date{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    padding:8px 14px;
  }
  .event-card__day{
    font-size:18px;
  }
  .event-card__month{
    margin-top:0;
  }
}

/* ── Floating WhatsApp button ── */
.fab-whatsapp{
  position: fixed;
  bottom: 18px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.fab-whatsapp:hover{
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.fab-whatsapp svg{
  display: block;
}

/* Zorg dat de knop niet over de cookie-banner valt */
.fab-whatsapp.fab--hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
}

@media (max-width: 600px){
  .fab-whatsapp{
    bottom: 14px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .fab-whatsapp svg{
    width: 24px;
    height: 24px;
  }
}

/* Portrait float (over-ons foto) */
.portrait-float {
  float: right;
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 16px 24px;
}

@media (max-width: 600px) {
  .portrait-float {
    float: none;
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 18px auto;
  }
}

/* Kalender event links */
.event-card__name a{
  color:inherit;
  text-decoration:none;
}
.event-card__name a:hover{
  color:var(--accent);
  text-decoration:underline;
}

/* Inline review-citaat op servicepagina's */
.inline-review-quote{
  border-left: 3px solid var(--brand);
  padding: 24px 32px;
  margin: 32px auto;
  max-width: 88%;
  background: rgba(0,120,173,.035);
  border-radius: var(--radius);
}
.inline-review-quote blockquote{
  margin: 0;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(31,35,32,.82);
}
.inline-review-quote .quote-author{
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
}
.inline-review-quote .quote-link{
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
}
.inline-review-quote .quote-link:hover{
  text-decoration: underline;
}
@media (max-width:600px){
  .inline-review-quote{
    max-width: 100%;
    padding: 18px 20px;
    margin: 24px 0;
  }
  .inline-review-quote blockquote{
    font-size: 16px;
  }
}

/* ============================= */
/* Responsive hero title — open water page */
/* ============================= */
/* Interim-fix: overal de korte titel; de lange brak op desktop naar 4 regels
   (botste met het logo, knoppen onder de vouw). */
.hero-title-short{ display:inline; }
.hero-title-full{ display:none; }

@media(max-width:1024px){
  .hero-title-short{ display:inline; }
  .hero-title-full{ display:none; }
}
