/* CSS Document assets/css/layout.css */

/* assets/css/layout.css */
:root{
  --hdr-left:#0b0b0b;
  --hdr-right:#2b2f36;
  --text:#e9eef6;
  --text-dim: rgba(233,238,246,.85);
  --orange:#f57c1f;
  --orange-hover:#ff8b33;
  --shadow: 0 10px 30px rgba(0,0,0,.35);

  /* 1 bron voor grids */
  --grid-gap: 22px;

  /* Routes (primary vs secondary) */
  --rg-bg-primary: #47748e;
  --rg-bg-secondary: #b0cada; /* minder fel / rustiger */
  --rg-desc-primary: #ffffff;
  --rg-desc-secondary: rgba(15,23,42,.80);
}

*{ box-sizing:border-box; }

html, body{ width:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(90deg, #9e9e9eb0 0%, #ffffff 100%);
  color: var(--text);
  overflow-x: hidden;
}

/* =========================
   SHARED LAYOUT HELPERS
   ========================= */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

/* Default: 3 kolommen (desktop + tablet). Mobiel: 1 kolom. */
.grid-6{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
@media (max-width: 720px){
  .grid-6{ grid-template-columns: 1fr; }
}

/* Optioneel: als je ooit 2 kolommen op tablet wilt voor een andere sectie */
.grid-6--tablet-2{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px){
  .grid-6--tablet-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .grid-6--tablet-2{ grid-template-columns: 1fr; }
}

/* =========================
   HEADER
   ========================= */
.site-header{
  background: linear-gradient(90deg, var(--hdr-left) 0%, var(--hdr-right) 100%);
  box-shadow: var(--shadow);
  position:relative;
  z-index:10;
}

.site-header .inner{
  height:84px;
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:210px;
  text-decoration:none;
}

.brand img{ width:auto; display:block; }

/* Logo + badge default (desktop) */
.brand img:first-child{ height:60px; }
.brand-badge{ display:none; height:100px; }

nav.primary{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
}

nav.primary a{
  color: var(--text-dim);
  text-decoration:none;
  font-weight:600;
  letter-spacing:.2px;
  padding:10px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
  white-space:nowrap;
}

nav.primary a:hover,
nav.primary a:focus-visible{
  color: var(--text);
  border-color: rgba(255,255,255,.25);
  outline:none;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-width:220px;
}

.btn-quote{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: var(--orange);
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding:6px 16px;
  border-radius:10px;
  box-shadow: 0 10px 22px rgba(245,124,31,.25);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  white-space:nowrap;
}

.btn-quote:hover,
.btn-quote:focus-visible{
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(245,124,31,.28);
  outline:none;
}

.btn-quote svg{
  width:18px;
  height:18px;
  display:block;
  fill:#fff;
  opacity:.95;
}

/* =========================
   SUBNAV (compact menu bar)
   ========================= */
.px-subnav{
  background: linear-gradient(-200deg, rgb(12 12 12) 0%, rgb(207 207 207) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  position:relative;
  z-index:50;
}

.px-subnav__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
  height:20px;
  display:flex;
  align-items:center;
  gap:12px;
}

.px-subnav__toggle{
  height:20px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 10px;
  border:0;
  background: rgb(253 91 0);
  color: rgba(233,238,246,.92);
  cursor:pointer;
  font: 600 12px/20px system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.3px;
}

.px-subnav__burger{
  display:inline-flex;
  gap:3px;
  flex-direction:column;
}

.px-subnav__burger span{
  width:14px;
  height:2px;
  border-radius:2px;
  background: rgba(233,238,246,.92);
  display:block;
}

.px-subnav__desktop{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  height:20px;
  overflow:hidden;
}

.px-subnav__desktop a{
  color: rgba(233,238,246,.80);
  text-decoration:none;
  font: 600 12px/20px system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding:0 4px;
  white-space:nowrap;
}

.px-subnav__desktop a:hover{ color: rgba(233,238,246,1); }

.px-subnav__panel{
  position:absolute;
  left:0;
  right:0;
  top:20px;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  z-index:60;
}

.px-subnav__panelInner{
  max-width:1200px;
  margin:0 auto;
  padding:10px 18px 14px;
}

.px-menu{ list-style:none; margin:0; padding:0; }
.px-menu > li{ border-bottom: 1px solid rgba(255,255,255,.07); }

.px-menu a{
  display:block;
  padding:10px 6px;
  color: rgba(233,238,246,.92);
  text-decoration:none;
  font-weight:600;
}

.px-menu a:hover{ background: rgba(255,255,255,.06); }

.px-row{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
}

.px-row > a{
  flex: 1 1 auto;
  min-width:0;
}

.px-expand{
  flex: 0 0 34px;
  width:34px;
  height:34px;
  border-radius:10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(233,238,246,1);
  cursor:pointer;
  font-size:18px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.px-expand--dummy{
  pointer-events:none;
  cursor:default;
  opacity:.55;
  color: transparent;
}

.px-expand--dummy::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:99px;
  background: rgba(233,238,246,.40);
  display:block;
}

.px-sub{ list-style:none; margin:0; padding: 0 0 10px 16px; }
.px-sub a{
  font-weight:500;
  color: rgba(233,238,246,.82);
  padding:8px 6px;
}

/* Mobile: verberg desktop-rij in subnav */
@media (max-width: 900px){
  .px-subnav__desktop{ display:none; }
}

/* =========================
   HERO (top)
   ========================= */
.hero{ padding:0 18px 0; }
.hero > .hero-card{ max-width:1200px; margin:0 auto; }

.hero-card{
  position:relative;
  overflow:hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}

.hero-media{
  display:block;
  width:100%;
  height:420px;
  object-fit:cover;
  object-position:left center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:28px 36px;
  pointer-events:none;
}

.hero-box{
  pointer-events:auto;
  max-width:520px;
  padding:18px 18px 16px;
  border-radius:16px;
  background: rgb(255 255 255 / 37%);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  color:#0f172a !important;
}

.hero-title{
  margin:0;
  font-size:46px !important;
  line-height:1.05;
  letter-spacing:-0.6px;
  font-weight:800;
	color:#000 !important;
}

.hero-sub{
  margin:12px 0 18px;
  font-size:20px;
  line-height:1.35;
  color: rgba(15,23,42,.75);
  font-weight:500;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.btn-hero{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background: var(--orange);
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:18px;
  padding:12px 20px;
  border-radius:12px;
  box-shadow: 0 12px 26px rgba(245,124,31,.22);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  white-space:nowrap;
}

.btn-hero:hover,
.btn-hero:focus-visible{
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(245,124,31,.25);
  outline:none;
}

.btn-next{
  width:58px;
  height:46px;
  border-radius:12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.75);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}

.btn-next:hover,
.btn-next:focus-visible{
  transform: translateY(-1px);
  background: rgba(255,255,255,.92);
  outline:none;
}

.btn-next svg{
  width:22px;
  height:22px;
  fill: rgba(15,23,42,.8);
}

/* =========================
   ROUTES TITLE BAR
   ========================= */
.routes{
  max-width:1200px;
  margin:10px auto 6px;
  padding:0 18px;
}

.routes-card{
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
  padding:14px 18px;
  text-align:center;
  color:#0f172a;
}

.routes-title{
  margin:0;
  font-size:18px;
  line-height:1.3;
  font-weight:400;
  letter-spacing:.2px;
  color: rgba(15,23,42,.78);
}

/* =========================
   ROUTES GRID (cards)
   ========================= */
.routes-grid{
  max-width:1200px;
  margin:0 auto 26px;
  padding:0 18px;
}

.rg-card{
  position:relative;
  overflow:hidden;
  background: var(--rg-bg-primary);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  color:#0f172a;
  transition: transform .12s ease, box-shadow .12s ease;
}

.rg-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,.14);
}

/* Secondary route cards: minder fel (via class op card, niet inline) */
.rg-card--secondary{
  background: var(--rg-bg-secondary);
}
.rg-card--secondary .rg-desc{
  color: var(--rg-desc-secondary);
  font-weight:700;
}

.rg-top{
  padding:16px 16px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background: linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.60) 100%);
}

.rg-label{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:22px;
  font-weight:700;
  letter-spacing:-0.2px;
  color: rgba(15,23,42,.90);
}

.rg-icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--orange);
}

.rg-icon svg{
  width:28px;
  height:28px;
  fill: currentColor;
}

.rg-arrow{
  width:34px;
  height:34px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  color: rgba(15,23,42,.70);
}

.rg-arrow svg{
  width:18px;
  height:18px;
  fill: currentColor;
}

.rg-body{ padding:0 16px 10px 0; }

.rg-desc{
  margin:0 0 12px;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  color: var(--rg-desc-primary);
  min-height:38px;
  text-align:center;
}

.rg-img{
  width:100%;
  height:170px;
  object-fit:contain;
  display:block;
  padding:6px 8px;
  filter: saturate(1.02) contrast(1.02);
}

.rg-foot{
  padding:0 5px 16px 16px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
}

.rg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background: var(--orange);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:10px 14px;
  border-radius:12px;
  box-shadow: 0 10px 22px rgba(245,124,31,.20);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  white-space:nowrap;
}

.rg-btn:hover,
.rg-btn:focus-visible{
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(245,124,31,.24);
  outline:none;
}

.rg-btn svg{
  width:16px;
  height:16px;
  fill:#fff;
}

/* =========================
   USP BLOCKS (6 items)
   ========================= */
.usp{
  max-width:1200px;
  margin:0 auto 26px;
  padding:0 18px;
}

.usp__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 8px;
  min-width:0;
  background:#fff;
  border: 1px solid #f57c1f;
  border-radius:16px;
}

.usp__icon{
  width:100px;
  height:100px;
  flex: 0 0 100px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.usp__icon img{
  width:100px;
  height:100px;
  object-fit:contain;
  display:block;
}

.usp__text{
  min-width:0;
  flex: 1 1 auto;
}

.usp__title{
  margin:0 0 4px;
  font-size:16px;
  line-height:1.1;
  font-weight:800;
  color:#0f172a;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.usp__desc{
  margin:0;
  font-size:12px;
  line-height:1.2;
  font-weight:400;
  color: rgba(15,23,42,.70);
}

.usp__go{
  flex: 0 0 44px;
  width:44px;
  height:44px;
  border-radius:999px;
  border: 1px solid #000;
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}

.usp__go:hover{
  transform: translateY(-1px);
  opacity:.92;
  background:#E9E9E9;
}

.usp__go:active{
  transform: translateY(0);
  opacity:.88;
}

.usp__go:focus-visible{
  outline: 2px solid rgba(245,124,31,.55);
  outline-offset: 3px;
}

.usp__go svg{
  width:18px;
  height:18px;
  fill:#000;
  display:block;
}

/* =========================
   SECTION 7: BOTTOM HERO (altijd volledig zichtbaar + full width)
   ========================= */
.bottom-hero{
  margin:18px 0 0;
  width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.02) 100%);
}

.bottom-hero__media{
  width:100%;
  display:block;
  object-fit: contain;
  object-position:bottom;
  background: transparent;
  filter: saturate(1.05) contrast(1.02);
}

/* =========================
   RESPONSIVE (overig)
   ========================= */
@media (max-width: 900px){
  nav.primary{ gap:22px; }
  .brand{ min-width:180px; }
  .cta{ min-width:190px; }
  .hero-media{ height:380px; }
  .hero-title{ font-size:38px !important; }
}

@media (max-width: 720px){
  .site-header .inner{
    height:auto;
    padding:14px 16px;
    flex-wrap:wrap;
    gap:12px;
  }

  .brand{
    order:1;
    width:100%;
    min-width:0;
    justify-content:center;
    flex: 0 0 100%;
    gap:10px;
    margin-bottom:-30px;
  }

  .brand-badge{ display:block; height:70px; }
  .cta{ display:none; }

  nav.primary{
    order:2;
    width:100%;
    flex: 0 0 100%;
    justify-content:center;
    gap:18px;
    padding-top:6px;
    overflow:auto;
  }

  .hero{ margin-top:14px; }
  .hero-media{ height:360px; }
  .hero-overlay{ justify-content:center; padding:18px; }
  .hero-box{ max-width:100%; }
  .hero-title{ font-size:34px !important; }
  .hero-sub{ font-size:18px; }

  .routes{ margin-top:6px; }
  .routes-title{ font-size:16px; }

  .rg-img{ height:150px; }
  .usp__title{ white-space:normal; }
}

@media (max-width: 420px){
  .hero-media{ height:320px; }
  .hero-title{ font-size:30px !important; }
  .btn-hero{ width:100%; }
  .btn-next{ width:100%; height:44px; }
  .routes-card{ padding:12px 14px; }
}

/* =========================
   FOOTER (new)
   ========================= */
.px-footer{ margin-top:0; }

.px-footer__top{
  background: linear-gradient(180deg, #0b0b0b 0%, #0b0b0b 75%, #151515 100%);
  color:#fff;
  padding:34px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.px-footer__bottom{
  background:#151515;
  color: rgba(255,255,255,.85);
  border-top: 1px solid rgba(255,255,255,.08);
}

.px-footer__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

.px-footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
  gap:22px;
  align-items:start;
}

@media (max-width: 900px){
  .px-footer__inner{ grid-template-columns: 1fr 1fr; }
  .px-footer__brand{ grid-column: 1 / -1; }
}
@media (max-width: 720px){
  .px-footer__inner{ grid-template-columns: 1fr; }
}

.px-footer__brand{ min-width:0; }

.px-footer__brandLink{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
  margin-bottom:14px;
}

.px-footer__logo{
  height:40px;
  width:auto;
  display:block;
}

.px-footer__badge{
  height:54px;
  width:auto;
  display:block;
}

@media (max-width: 720px){
  .px-footer__brandLink{ justify-content:flex-start; flex-wrap:wrap; }
  .px-footer__badge{ height:46px; }
}

.px-footer__about{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color: rgba(255,255,255,.82);
}

.px-footer__about a{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  border-bottom: 1px solid rgba(245,124,31,.35);
}

.px-footer__about a:hover{
  border-bottom-color: rgba(245,124,31,.75);
}

.px-footer__col{ min-width:0; }

.px-footer__title{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.2px;
  font-weight:800;
  color:#fff;
}

.px-footer__menu{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.px-footer__menu a{
  color: rgba(255,255,255,.84);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
}

.px-footer__menu a:hover{
  color:#fff;
  text-decoration: underline;
  text-decoration-color: rgba(245,124,31,.9);
}

.px-footer__contact{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.px-footer__contactName{
  font-weight:800;
  color:#fff;
  margin-bottom:4px;
}

.px-footer__contactText{
  color: rgba(255,255,255,.80);
  font-size:13px;
  line-height:1.45;
}

.px-footer__contactLink{
  display:inline-block;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
}

.px-footer__contactLink:hover{
  text-decoration: underline;
  text-decoration-color: rgba(245,124,31,.9);
}

.px-footer__fineLink a{
  color: rgba(255,255,255,.65);
  font-size:12px;
  text-decoration:none;
}

.px-footer__fineLink a:hover{ color: rgba(255,255,255,.9); }

.px-footer__bottomInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

@media (max-width: 720px){
  .px-footer__bottomInner{
    flex-direction:column;
    align-items:flex-start;
  }
}

.px-footer__legal{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.px-footer__legal a{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight:700;
  font-size:12px;
}

.px-footer__legal a:hover{
  color:#fff;
  text-decoration: underline;
  text-decoration-color: rgba(245,124,31,.9);
}

.px-footer__copy{
  color: rgba(255,255,255,.72);
  font-size:12px;
  white-space:normal;
}

.px-footer__copy a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:700;
}

.px-footer__copy a:hover{
  color:#fff;
  text-decoration: underline;
  text-decoration-color: rgba(245,124,31,.9);
}

/* Voeg toe aan assets/css/layout.css (generiek, herbruikbaar) */

.px-hero { padding: 34px 0; }
.px-hero__inner { display: grid; gap: 18px; align-items: center; }
.px-hero__media { min-height: 220px; }
.px-media-ph {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.px-lead { font-size: 1.05rem; opacity: .92; max-width: 62ch; }
.px-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.px-content { padding: 26px 0; }
.px-content__grid { display: grid; gap: 18px; }
.px-points { display: grid; gap: 12px; }
.px-point { padding: 14px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }

.px-cards, .px-usps, .px-links, .px-faq { padding: 26px 0; }
.px-sub { opacity: .9; max-width: 70ch; }

.px-grid-3 { display: grid; grid-template-columns: 1fr; gap: 14px; }
.px-card, .px-usp {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.px-card__link { display: inline-block; margin-top: 10px; text-decoration: none; font-weight: 700; }

.px-cta { padding: 26px 0; }
.px-cta__box {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(245,124,31,.10);
  border: 1px solid rgba(245,124,31,.22);
}
.px-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.px-linkcard {
  display: block;
  padding: 16px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
}

.px-faq__item {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
  margin: 10px 0;
}
.px-faq__item > summary { cursor: pointer; font-weight: 800; }
.px-faq__body { padding: 10px 2px 2px; opacity: .92; }

/* Responsive */
@media (min-width: 860px){
  .px-hero__inner { grid-template-columns: 1.15fr .85fr; gap: 22px; }
  .px-content__grid { grid-template-columns: 1.15fr .85fr; gap: 22px; }
  .px-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .px-cta__box { grid-template-columns: 1.2fr .8fr; }
}
/* Zorg dat de subnav een stacking context heeft */
.px-subnav{
  position: relative;
  z-index: 5000;
}

/* Het uitklappanel moet boven alles liggen */
.px-subnav__panel{
  position: absolute;   /* of fixed als je wilt dat hij over de pagina heen valt */
  left: 0;
  right: 0;
  top: 100%;
  z-index: 6000;
}

/* Slider/banner expliciet lager zetten (als die bovenop blijft liggen) */
.banner, .slider-wrapper, .slider, .slide{
  position: relative;
  z-index: 1;
}