:root{
  --bg:#0b0613;
  --bg2:#0f0820;
  --card:#130a28;
  --card2:#170b33;
  --text:#f1ecff;
  --muted:rgba(241,236,255,.72);
  --muted2:rgba(241,236,255,.55);
  --line:rgba(241,236,255,.12);
  --accent:#b86bff;
  --accent2:#6f3bff;
  --good:#3ddc97;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html{
  overflow-x:hidden;
  width:100%;
  max-width:100%;
}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(184,107,255,.18), transparent 55%),
    radial-gradient(1000px 700px at 90% 20%, rgba(111,59,255,.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  position:relative;
  overflow-x:hidden;
  width:100%;
  max-width:100%;
}

a{color:inherit; text-decoration:none}
.container{
  width:min(1120px, 92%);
  margin:0 auto;
  padding:0 16px;
  max-width:100%;
}
@media (max-width: 768px){
  .container{
    padding:0 16px;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
  }
  html,body{
    overflow-x:hidden;
    width:100%;
    position:relative;
  }
  .header{
    max-width:100%;
    overflow-x:hidden;
    padding-top:70px;
  }
  .hero,.section{
    max-width:100%;
    overflow-x:hidden;
  }
  .nav{
    max-width:100%;
  }
  img{
    max-width:100%;
    height:auto;
  }
}

.game-banner{
  width:100%;
  max-width:100%;
  position:relative;
  z-index:999;
  margin-top:60px;
  padding:16px 0;
  background: 
    linear-gradient(135deg, rgba(184,107,255,.2), rgba(111,59,255,.15)),
    linear-gradient(180deg, rgba(19,10,40,.8), rgba(23,11,51,.6));
  border-bottom:1px solid rgba(184,107,255,.2);
  border-top:1px solid rgba(184,107,255,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
}

.game-banner-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding:16px 24px;
  border-radius:16px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(184,107,255,.15);
  position:relative;
  overflow:hidden;
}

.game-banner-link::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(184,107,255,.1), transparent);
  transition:left 0.5s ease;
}

.game-banner-link:hover::before{
  left:100%;
}

.game-banner-link:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(184,107,255,.3);
  transform:translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,107,255,.2), 0 0 20px rgba(111,59,255,.15);
}

.game-banner-icon-wrapper{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:90px;
  height:90px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(184,107,255,.25), rgba(111,59,255,.2));
  border:2px solid rgba(184,107,255,.3);
  box-shadow: 0 4px 15px rgba(184,107,255,.2), inset 0 1px 0 rgba(255,255,255,.1);
  flex-shrink:0;
}

.game-banner-icon{
  font-size:64px;
  display:none;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

.game-banner-img{
  height:56px;
  width:auto;
  border-radius:10px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

.game-banner-content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  flex:1;
  min-width:0;
}

.game-banner-badge{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:var(--text);
  font-size:10px;
  font-weight:700;
  padding:3px 8px;
  border-radius:6px;
  text-transform:uppercase;
  letter-spacing:0.5px;
  box-shadow: 0 2px 8px rgba(184,107,255,.3);
}

.game-banner-text{
  color:var(--text);
  font-weight:700;
  font-size:18px;
  line-height:1.2;
}

.game-banner-subtitle{
  color:var(--muted);
  font-size:13px;
  font-weight:500;
}

.game-banner-arrow-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:12px;
  background:rgba(184,107,255,.15);
  border:1px solid rgba(184,107,255,.25);
  flex-shrink:0;
  transition:all 0.3s ease;
}

.game-banner-arrow{
  color:var(--accent);
  font-size:24px;
  font-weight:700;
  transition:transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display:block;
}

.game-banner-link:hover .game-banner-arrow-wrapper{
  background:rgba(184,107,255,.25);
  border-color:rgba(184,107,255,.4);
  transform:scale(1.05);
}

.game-banner-link:hover .game-banner-arrow{
  transform:translateX(6px);
}

@media (max-width: 768px){
  .game-banner{
    margin-top:60px;
    padding:12px 0;
  }
  .game-banner-link{
    gap:14px;
    padding:12px 16px;
    border-radius:12px;
  }
  .game-banner-icon-wrapper{
    width:72px;
    height:72px;
    border-radius:14px;
  }
  .game-banner-icon{
    font-size:52px;
  }
  .game-banner-img{
    height:44px;
  }
  .game-banner-content{
    gap:3px;
  }
  .game-banner-badge{
    font-size:9px;
    padding:2px 6px;
  }
  .game-banner-text{
    font-size:15px;
  }
  .game-banner-subtitle{
    font-size:12px;
  }
  .game-banner-arrow-wrapper{
    width:38px;
    height:38px;
    border-radius:10px;
  }
  .game-banner-arrow{
    font-size:20px;
  }
}

.header{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  position:relative;
  z-index:1;
  padding-top:60px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 0;
  justify-content:center;
  border-bottom:1px solid var(--line);
  background: linear-gradient(180deg, rgba(19,10,40,.55), transparent);
}

.nav{
  display:block;
  width:100%;
  max-width:100%;
  position:relative;
}

.sticky-nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background: linear-gradient(180deg, rgba(19,10,40,.95), rgba(19,10,40,.85));
  backdrop-filter:blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding:12px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  width:100%;
  margin:0;
  display:block;
  will-change:transform;
}

.nav-content{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.nav-logo-wrapper{
  display:flex;
  align-items:center;
  padding:4px;
  border-radius:8px;
  transition:all 0.2s;
}
.nav-logo-wrapper:hover{
  background: rgba(255,255,255,.05);
}
.nav-logo-icon{
  width:44px;
  height:44px;
  display:block;
  border-radius:6px;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  flex:1;
}
.brand-mark{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(184,107,255,.9), rgba(111,59,255,.95));
  box-shadow: 0 10px 30px rgba(184,107,255,.15);
  font-weight:800;
}
.brand-text{display:flex; gap:6px; font-size:16px}
.muted{color:var(--muted)}
.small{font-size:13px; color:var(--muted2)}
.nav-links a{
  color:var(--muted);
  font-weight:600;
  padding:8px 14px;
  border-radius:10px;
  transition:all 0.2s;
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nav-links a:not(.btn):hover{
  color:var(--text);
  background: rgba(255,255,255,.05);
}
.nav-links a:not(.btn)::after{
  content:'';
  position:absolute;
  bottom:4px;
  left:14px;
  right:14px;
  height:2px;
  background: var(--accent);
  opacity:0;
  transition:opacity 0.2s;
  border-radius:2px;
}
.nav-links a:not(.btn):hover::after{
  opacity:0.5;
}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  padding: 26px 0 46px;
  align-items:center;
  width:100%;
  max-width:100%;
}
.hero-left,
.hero-right{
  width:100%;
  min-width:0;
}
@media (max-width: 900px){
  .hero{
    grid-template-columns:1fr;
    padding: 20px 0 30px;
    gap:24px;
  }
  .nav-links{gap:8px}
  .hero-logo{
    max-width:100%;
    margin:0 auto;
  }
  .brand{
    padding: 72px 0 16px 0;
  }
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.06;
  letter-spacing:-0.02em;
}
.grad{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{margin:0; font-size:17px; line-height:1.55; color:var(--muted)}

.cta-row{display:flex; gap:12px; margin:18px 0 14px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(184,107,255,.45);
  background: linear-gradient(135deg, rgba(184,107,255,.95), rgba(111,59,255,.95));
  box-shadow: 0 16px 40px rgba(111,59,255,.18);
  font-weight:800;
}
.btn:hover{filter:brightness(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  box-shadow:none;
  color:var(--text);
  font-weight:700;
}
.btn-small{padding:10px 12px; border-radius:12px; font-weight:800}

.trust{display:flex; gap:14px; flex-wrap:wrap; margin-top:14px}
.trust-item{display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:600; font-size:13px}
.dot{width:10px; height:10px; border-radius:99px; background: rgba(61,220,151,.9); box-shadow: 0 0 0 4px rgba(61,220,151,.12)}

.glass-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(19,10,40,.78), rgba(23,11,51,.55));
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card-top{display:flex; align-items:flex-start; justify-content:space-between; gap:14px}
.badge{
  font-size:12px; font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(184,107,255,.35);
  background: rgba(184,107,255,.10);
  color: var(--text);
}
.mini-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.mini{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:14px;
  padding:12px;
}
.mini-label{margin:0; color:var(--muted2); font-size:12px; font-weight:700}
.mini-value{margin:6px 0 0; font-size:18px; font-weight:800}

.divider{height:1px; background: var(--line); margin:14px 0}

.checklist{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.check{display:inline-grid; place-items:center; width:22px; height:22px; border-radius:8px; background: rgba(61,220,151,.12); color: rgba(61,220,151,.95); font-weight:900; margin-right:8px}
.checklist li{color:var(--muted); font-weight:600}

.section{
  padding:90px 0;
  position:relative;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
.section::before{
  content:'';
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(1120px, 92%);
  height:1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  margin-top:1px;
}
.section.alt::before{
  background: linear-gradient(90deg, transparent, rgba(184,107,255,.25), transparent);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:32px;
  flex-wrap:wrap;
  padding-bottom:20px;
  position:relative;
}
.section-head::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:2px;
  background: linear-gradient(90deg, var(--accent), rgba(184,107,255,.6), rgba(184,107,255,.3), transparent);
}
.section-number{
  display:inline-block;
  font-size:14px;
  font-weight:800;
  color:var(--accent);
  opacity:0.6;
  letter-spacing:0.05em;
  margin-bottom:6px;
}
h2{
  margin:0;
  font-size:32px;
  letter-spacing:-0.02em;
  font-weight:800;
  margin-top:4px;
}
.section-head p.muted{
  margin-top:8px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (max-width: 950px){ .grid{grid-template-columns:1fr} }

.app-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(19,10,40,.65), rgba(23,11,51,.45));
  border-radius:18px;
  padding:18px;
  box-shadow: 0 14px 44px rgba(0,0,0,.35);
}
.app-icon{font-size:22px}
.app-card h3{margin:10px 0 8px}
.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted); font-weight:600}
.bullets li{margin:6px 0}

/* Slideshow styles */
.slideshow-container{
  margin-top:14px;
  position:relative;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(0,0,0,.2);
  -webkit-tap-highlight-color:transparent;
}
.slideshow-wrapper{
  position:relative;
  width:100%;
  aspect-ratio: 16/9;
  overflow:hidden;
  touch-action:pan-y;
}
@media (max-width: 768px){
  .slideshow-container{
    margin-top:12px;
    border-radius:12px;
  }
  .slideshow-wrapper{
    aspect-ratio: 4/3;
  }
  .slideshow-controls{
    padding:10px;
    gap:8px;
  }
  .slideshow-btn{
    width:36px;
    height:36px;
    font-size:18px;
  }
  .slideshow-dots{
    gap:6px;
  }
  .slideshow-dots .dot{
    width:6px;
    height:6px;
  }
  .slideshow-dots .dot.active{
    width:8px;
    height:8px;
  }
}
.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0;
  transition:opacity 0.5s ease-in-out;
  background: rgba(0,0,0,.3);
}
.slide.active{
  opacity:1;
  z-index:1;
}
.slideshow-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:12px;
  background: rgba(0,0,0,.3);
  border-top:1px solid var(--line);
}
.slideshow-btn{
  width:32px;
  height:32px;
  border-radius:8px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s;
}
.slideshow-btn:hover{
  background: rgba(184,107,255,.15);
  border-color: rgba(184,107,255,.35);
}
.slideshow-dots{
  display:flex;
  gap:8px;
  align-items:center;
}
.slideshow-dots .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: rgba(255,255,255,.2);
  cursor:pointer;
  transition:all 0.2s;
}
.slideshow-dots .dot.active{
  background: var(--accent);
  width:10px;
  height:10px;
}

/* LIGHTBOX BASIS */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.75);
  z-index: 9999;
}

.lightbox.active{
  display: flex;
}

/* INHOUD */
.lightbox-content{
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 85vh;
}

.lightbox-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
  position: relative;
}

.lightbox-slide{
  display: none;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox-slide.active{
  display: block;
}

/* GROEPEN */
.lightbox-slide-group{
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}

.lightbox-slide-group.active{
  display: block;
}

/* KNOPPEN */
.lightbox-close{
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 34px;
  line-height: 34px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-prev,
.lightbox-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  border: 0;
  color: #fff;
  font-size: 40px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10001;
}

.lightbox-prev{ left: 12px; }
.lightbox-next{ right: 12px; }

/* DOTS */
.lightbox-dots{
  margin-top: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.lightbox-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}

.lightbox-dot.active{
  background: rgba(255,255,255,.95);
}
@media (max-width: 768px){
  .lightbox-prev,
  .lightbox-next{
    width:44px;
    height:44px;
    font-size:28px;
  }
  .lightbox-prev{
    left:8px;
  }
  .lightbox-next{
    right:8px;
  }
  .lightbox-close{
    width:40px;
    height:40px;
    font-size:28px;
    top:12px;
    right:12px;
  }
  .lightbox-content{
    width:95%;
    max-height:95vh;
  }
  .lightbox-wrapper{
    max-height:75vh;
  }
  .lightbox-slide{
    max-height:75vh;
  }
  .lightbox-dots{
    padding:10px;
    gap:10px;
  }
  .section{
    padding:50px 0;
  }
  .section-head{
    margin-bottom:24px;
    padding-bottom:16px;
  }
  h2{
    font-size:24px;
  }
  .app-card{
    padding:16px;
  }
  .app-card h3{
    font-size:18px;
    margin:8px 0 6px;
  }
  .app-card p.muted{
    font-size:14px;
    line-height:1.5;
  }
  .bullets{
    font-size:13px;
    padding-left:16px;
  }
  .hero{
    padding:20px 0 30px;
  }
  h1{
    font-size:28px;
    line-height:1.1;
  }
  .lead{
    font-size:16px;
    line-height:1.5;
  }
  .nav{
    padding:16px 0;
  }
  .nav-links{
    gap:6px;
    flex-wrap:wrap;
  }
  .nav-links a{
    padding:6px 10px;
    font-size:13px;
  }
  .nav-links a.btn-small{
    padding:8px 12px;
    font-size:13px;
  }
  .trust{
    gap:10px;
    margin-top:12px;
    flex-direction:column;
  }
  .trust-item{
    font-size:12px;
  }
  .cta-row{
    gap:10px;
    margin:16px 0 12px;
    flex-direction:column;
  }
  .cta-row .btn{
    width:100%;
    justify-content:center;
  }
  .btn{
    padding:12px 16px;
    font-size:14px;
  }
  .container{
    padding:0 16px;
  }
  .feature{
    padding:14px;
  }
  .feature h3{
    font-size:16px;
  }
  .note{
    padding:12px 14px;
    font-size:13px;
  }
}

.note{
  margin-top:16px;
  border:1px dashed rgba(184,107,255,.35);
  background: rgba(184,107,255,.07);
  border-radius:18px;
  padding:14px 16px;
  color: var(--muted);
  font-weight:600;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (max-width: 950px){ .grid-3{grid-template-columns:1fr} }

.feature{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:18px;
  padding:16px;
}
.feature h3{margin:0 0 6px}

.steps{display:grid; gap:12px}
.step{
  display:flex; gap:12px;
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.03);
  padding:16px;
}
.step-nr{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(184,107,255,.12);
  border:1px solid rgba(184,107,255,.35);
  font-weight:900;
}

.pricing{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
@media (max-width: 950px){ .pricing{grid-template-columns:1fr} }

.pricing-card{
  border:1px solid var(--line);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(19,10,40,.65), rgba(23,11,51,.45));
  padding:18px;
  box-shadow: 0 14px 44px rgba(0,0,0,.35);
}
.pricing-card.highlight{
  border-color: rgba(184,107,255,.35);
  background: linear-gradient(180deg, rgba(184,107,255,.10), rgba(23,11,51,.45));
}
.price-list{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.price-list li{display:flex; justify-content:space-between; gap:12px; color:var(--muted); font-weight:700}
.price-list strong{color:var(--text)}
.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.chip{
  font-size:12px; font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
@media (max-width: 950px){ .contact-grid{grid-template-columns:1fr} }

.contact-card{
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.03);
  padding:18px;
}
.form{display:grid; gap:12px; margin-top:10px}
label{display:grid; gap:8px; color:var(--muted); font-weight:700; font-size:13px}
input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.22);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(184,107,255,.55);
  box-shadow: 0 0 0 4px rgba(184,107,255,.14);
}
.footer{
  padding:18px 0 6px;
  text-align:center;
  border-top:1px solid var(--line);
  margin-top:18px;
}
.footer-cta{
  margin-bottom:24px;
  display:flex;
  justify-content:center;
}
.footer-cta .btn{
  font-size:16px;
  padding:14px 24px;
}

/* Logo assets */
.brand-logo{
  width:38px;
  height:38px;
  border-radius:12px;
  display:block;
  box-shadow: 0 10px 30px rgba(184,107,255,.15);
}
.hero-logo{
  width:100%;
  max-width: 520px;
  margin: 0 auto 14px auto;
  display:block;
  opacity: .95;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.55));
}
@media (max-width: 900px){
  .hero-logo{max-width: 440px;}
}

/* Hero Slideshow Styles - Video-like in hero-right */
.hero-slideshow{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1;
  overflow: hidden;
}
.hero-slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: none;
}
.hero-slide.active{
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide-images{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  width: 100%;
  flex: 1;
  align-content: center;
}
.hero-slide-img{
  max-width: 140px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  animation: fadeInScale 0.6s ease-out;
}
/* Specifieke styling voor Slide 1 (grotere foto) */
.hero-slide[data-slide="0"] .hero-slide-img{
  max-width: 90%;
  max-height: 70%;
}
.hero-slide[data-slide="0"] .hero-slide-images{
  flex: 0 1 auto;
  margin-bottom: -69px;
}
.hero-slide[data-slide="0"] .hero-slide-text h2{
  font-size: clamp(14px, 1.8vw, 20px);
}
.hero-slide[data-slide="0"] .hero-slide-text p{
  font-size: clamp(12px, 1.3vw, 14px);
}
/* Specifieke styling voor Slide 2 (grotere foto's) */
.hero-slide[data-slide="1"] .hero-slide-img{
  max-width: 220px;
  max-height: 160px;
}
/* Specifieke styling voor Slide 3 (grotere foto) */
.hero-slide[data-slide="2"] .hero-slide-img{
  max-width: 90%;
  max-height: 75%;
}
.hero-slide[data-slide="2"] .hero-slide-images{
  margin-bottom: -55px;
}
.hero-slide[data-slide="2"] .hero-slide-text h2{
  font-size: clamp(14px, 1.8vw, 20px);
}
.hero-slide[data-slide="2"] .hero-slide-text p{
  font-size: clamp(12px, 1.3vw, 14px);
}
.hero-slide-logo{
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 30px rgba(184,107,255,.2));
  animation: fadeInScale 0.6s ease-out;
}
.hero-slide-text{
  text-align: center;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-slide-text h2{
  margin: 0 0 8px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 800;
}
.hero-slide-text p{
  margin: 0;
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

@keyframes fadeInScale{
  from{
    opacity: 0;
    transform: scale(0.95);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp{
  from{
    opacity: 0;
    transform: translateY(15px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px){
  .hero-slideshow{
    max-width: 440px;
    margin: 0 auto 14px auto;
  }
  .hero-slide{
    padding: 16px;
  }
  .hero-slide-images{
    gap: 10px;
    margin-bottom: 16px;
  }
  .hero-slide-img{
    max-width: 120px;
    max-height: 80px;
  }
  .hero-slide[data-slide="0"] .hero-slide-img{
    max-width: 85%;
    max-height: 55%;
  }
  .hero-slide[data-slide="0"] .hero-slide-images{
    margin-bottom: 6px;
  }
  .hero-slide[data-slide="0"] {
    padding-top: 20px;
  }
  .hero-slide-text h2{
    font-size: 18px;
    margin-bottom: 6px;
  }
  .hero-slide-text p{
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .hero-slide-img{
    max-width: 120px;
    max-height: 80px;
  }
  .hero-slide[data-slide="0"] .hero-slide-img{
    max-width: 90%;
    max-height: 50%;
  }
  .hero-slide[data-slide="0"] .hero-slide-images{
    margin-bottom: -104px;
  }
  .hero-slide[data-slide="0"] {
    padding-top: 16px;
  }
}
