/* ==============================
   PRIMETIME – Slide Layout CSS
============================== */
html {
  scroll-behavior: smooth;
}

/* Header offset voor alle slides */
.home-page .slide {
  scroll-margin-top: var(--header-h); /* bij anchors springen onder header */
}

/* ========== Algemene Slide Layout ========== */
.page-merken .slide {
  padding: clamp(80px, 10vh, 140px) 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;

  /* Animatie-opties toevoegen */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

.page-merken .slide.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-merken .slide-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== Titels & Teksten ========== */
.page-merken .slide-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #00ffff;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(0, 255, 255, 0.4);
  margin-bottom: 16px;
}


.page-merken .slide-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
}

.page-merken .intro-text {
  font-size: 1rem;
  color: #ccc;
}

/* =====================
   SLIDE 1 Styling
===================== */

#merken-intro {
  background:
    linear-gradient(rgba(10,10,20,0.6), rgba(10,10,20,0.8)),
    url('../images/achtergrondslide1.png') no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: clamp(80px, 10vh, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#merken-intro .pm-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), 0 0 50px rgba(255, 0, 122, 0.1);
}

#merken-intro .pm-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);

  /* ✅ standaard + prefixed in juiste volgorde */
  background-clip: text;
  -webkit-background-clip: text;

  /* ✅ transparant voor alle gevallen */
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 25px rgba(0,240,255,.35), 0 0 40px rgba(255,0,122,.25);
  line-height: 1.2;
}


#merken-intro .pm-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e6e6e6;
}



/* ===========================
   SLIDE 2 – Nieuwe structuur
=========================== */

#campagne-vergelijking {
  background:
    linear-gradient(rgba(10,10,20,0.6), rgba(10,10,20,0.8)),
    url('../images/achtergrondslide1.png') no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}

#campagne-vergelijking .slide-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), 0 0 50px rgba(255, 0, 122, 0.1);
}

#campagne-vergelijking .intro-text {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);

  /* ✅ eerst standaard property, dan prefixed */
  background-clip: text;
  -webkit-background-clip: text;

  /* ✅ kleur transparant voor beide gevallen */
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 25px rgba(0,240,255,.35), 0 0 40px rgba(255,0,122,.25);
  text-transform: uppercase;
  line-height: 1.3;
}


#campagne-vergelijking .type-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

#campagne-vergelijking .type-column {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#campagne-vergelijking .type-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0,240,255,.2), 0 0 30px rgba(255,0,122,.15);
}

#campagne-vergelijking .type-icon img {
  width: 60px;
  height: 60px;
}

#campagne-vergelijking .typewriter.question {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

#campagne-vergelijking .typewriter.answer {
  font-size: 0.95rem;
  color: #ccc;
}

#campagne-vergelijking .punchline-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 12px rgba(0,240,255,.3);
}

#campagne-vergelijking .slide-cta-button {
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#campagne-vergelijking .slide-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,240,255,.3), 0 0 30px rgba(255,0,122,.25);
}


/* ===========================
   SLIDE 3 – Het Live Podium
=========================== */

#merkbeleving-live {
  background:
    linear-gradient(rgba(10,10,20,0.7), rgba(10,10,30,0.7)),
    url('../images/achtergrondslide2.png') center center / cover no-repeat;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vh, 140px) 20px;
  box-sizing: border-box;
}

#merkbeleving-live .slide-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;

  /* 🔹 Veel luchtiger: subtiele overlay */
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);

  border-radius: 12px;

  /* 🔹 Minder harde glow */
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.08),
              0 0 24px rgba(255, 0, 122, 0.06);
}


#merkbeleving-live .slide-2-side-img {
  flex: 0 0 200px;   /* vaste breedte */
  max-width: 200px;
}

#merkbeleving-live .slide-2-side-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}

#merkbeleving-live .slide-2-text {
  flex: 1;
  max-width: 600px;
  width: 100%;
  text-align: left;
}

#merkbeleving-live .intro-text {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(0,240,255,.35), 0 0 40px rgba(255,0,122,.25);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 1rem;
}

#merkbeleving-live .slide-intro {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

#merkbeleving-live .slide-2-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

#merkbeleving-live .slide-2-text li {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 12px;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.15);
}

#merkbeleving-live .punchline-block {
  margin-top: 1.5rem;
}

#merkbeleving-live .cta-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 12px;
}

#merkbeleving-live .slide-cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#merkbeleving-live .slide-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,240,255,.3), 0 0 30px rgba(255,0,122,.25);
}

/* ===========================
   SLIDE 4 – Creator Impact
=========================== */
#creator-impact {
  background:
    linear-gradient(rgba(10,10,20,0.6), rgba(10,10,20,0.6)),
    url('../images/achtergrondslide2.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vh, 160px) 20px;
  box-sizing: border-box;
}

#creator-impact .slide-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,255,255,0.12),
              0 0 28px rgba(255,0,122,0.08);
}

#creator-impact .slide-visual img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(0,255,255,0.15);
}

#creator-impact .intro-text {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,240,255,.35), 0 0 32px rgba(255,0,122,.25);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 1rem;
}

#creator-impact .slide-intro {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 650px;
}

#creator-impact .cta-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 12px;
}

#creator-impact .slide-cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(0,255,255,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#creator-impact .slide-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,240,255,.3), 0 0 30px rgba(255,0,122,.25);
}

/* ===========================
   SLIDE 5 – Wat wij doen
=========================== */
#wat-wij-doen {
  background-color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vh, 180px) 20px;
  box-sizing: border-box;
}

#wat-wij-doen .slide-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,255,255,0.15),
              0 0 28px rgba(255,0,122,0.1);
}

#wat-wij-doen .slide-visual img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0,255,255,0.12);
}

#wat-wij-doen .slide-text-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

#wat-wij-doen .intro-text {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,240,255,.35), 0 0 28px rgba(255,0,122,.25);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

#wat-wij-doen .slide-intro {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

#wat-wij-doen .cta-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 12px;
}

#wat-wij-doen .slide-cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(0,255,255,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#wat-wij-doen .slide-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,240,255,.3),
              0 0 30px rgba(255,0,122,.25);
}

/* ===========================
   SLIDE 6 – Flow Pakketten
=========================== */
#flow-pakketten {
  background:
    linear-gradient(rgba(10,10,20,0.6), rgba(10,10,20,0.6)),
    url('../images/achtergrondslide6.png') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 14vh, 180px) 20px;
  box-sizing: border-box;
}

#flow-pakketten .slide-content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 0 22px rgba(0,255,255,0.2),
              0 0 30px rgba(255,0,122,0.15);
}

#flow-pakketten .intro-text {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,240,255,.35), 0 0 30px rgba(255,0,122,.25);
  text-transform: uppercase;
}

#flow-pakketten .slide-intro {
  font-size: 1.05rem;
  color: #ddd;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

#flow-pakketten .cta-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 12px;
}

#flow-pakketten .slide-cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(0,255,255,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#flow-pakketten .slide-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,240,255,.3),
              0 0 30px rgba(255,0,122,.25);
}

/* ========== Slide 6 - Formulier CTA (merken-nieuw) ========== */

#contact-activatie {
  background:
    linear-gradient(rgba(10, 10, 20, 0.6), rgba(10, 10, 20, 0.6)),
    url('../images/achtergrondslide7.png') center center / cover no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: clamp(120px, 16vh, 200px);
  padding-bottom: clamp(120px, 16vh, 200px);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#contact-activatie .slide-content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#contact-activatie .slide-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(0,240,255,.35), 0 0 30px rgba(255,0,122,.25);
  text-transform: uppercase;
}


#contact-activatie .slide-intro {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #eaeaea;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1rem auto;
}

/* Contactformulier zelf */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}

/* Alleen tekstvelden/select/textarea full-width stylen */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Checkboxes resetten (niet full-width) */
.contact-form input[type="checkbox"] {
  width: auto;
  height: 18px;
  min-width: 18px;
  margin: 3px 0 0;   /* mooi uitlijnen met meerregelige labels */
  padding: 0;
  border: 0;
  background: transparent;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-color: #111;
}

.checkbox-label {
  margin-top: 20px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

.contact-form { text-align: left; }

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  text-align: left;
}

.checkbox-group div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: auto;
}

.checkbox-group label {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ccc;
  text-align: left;
  display: block;
}

.checkbox-group input[type="checkbox"] { margin-top: 2px; }

@media (max-width: 768px) {
  .checkbox-group { grid-template-columns: 1fr; }
  .checkbox-group div { width: auto; }
}


.checkbox-group label {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ccc;
}

/* CTA button */
.slide-cta-button {
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  color: #000;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0,255,255,.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
}

.slide-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,240,255,.3),
              0 0 30px rgba(255,0,122,.25);
  background: #00d4d4;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.hero-cta-group .tiktok-btn {
  min-width: 200px;
}

/* =========================
   Form Feedback – Merken
========================= */
.page-merken .form-feedback {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #00ffff; /* cyan accent */
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
}


/* =============== */
/* HOMEPAGE SLIDES */
/* =============== */

.header-spacer { height: 0,1rem; }  /* ⬅️ gelijk aan visuele headerhoogte */


/* Hero */
#home-welkom {
  position: relative; /* nodig voor .fold-fade */
  background:
    radial-gradient(ellipse farthest-corner at 50% 40%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.60) 60%, rgba(0,0,0,0.85) 100%),
    linear-gradient(rgba(10,10,20,0.7), rgba(10,10,30,0.7)),
    url('../images/HomeBG1.png') center center / cover no-repeat;
  min-height: 100vh;
  padding-bottom: clamp(80px, 12vh, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate; /* voorkomt onbedoelde blend met glows */
}

/* Hero content box */
#home-welkom .pm-content {
  max-width: 1200px; /* breder */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* meer ruimte tussen elementen */
  padding: 4rem 3rem; /* meer ademruimte */
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,255,255,0.15) 100%);
  border: 1px solid rgba(0,255,255,0.45);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow:
    0 0 36px rgba(0,255,255,0.4),
    0 0 70px rgba(255,0,122,0.3);
  position: relative;
  overflow: hidden;
}

#home-welkom .pm-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,240,255,0.12), transparent 60%),
              radial-gradient(circle at bottom right, rgba(255,0,122,0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

#home-welkom .pm-content > * {
  position: relative;
  z-index: 1;
}

#home-welkom .tiktok-btn {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  color: #fff !important;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  text-decoration: none !important;
  text-align: center;
  box-shadow: 0 0 18px rgba(0,240,255,0.35), 
              0 0 28px rgba(255,0,122,0.25);
  transition: all 0.3s ease;
}

#home-welkom .tiktok-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(0,240,255,0.55), 
              0 0 36px rgba(255,0,122,0.45);
}


/* Titel */
#home-welkom .pm-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.15;
  text-align: center;
  margin-bottom: 1.2rem;

  background: linear-gradient(90deg, #00f0ff, #ff007a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 20px rgba(0,240,255,.35), 0 0 32px rgba(255,0,122,.25);

  animation: fadeUpBounce 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}


/* PRIMETIME = cyaan-gericht */
#home-welkom .pm-title .primetime-word {
  display: block;
  font-size: 1.1em; /* 10% groter dan base */
  background: linear-gradient(90deg, #00f0ff 0%, #00bcd4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;

  /* extra stroke/outline voor leesbaarheid */
  -webkit-text-stroke: 1.2px rgba(0, 240, 255, 0.65); /* WebKit */
  text-shadow:
    0 0 6px rgba(0,240,255,0.55),
    0 0 12px rgba(0,240,255,0.45),
    0 0 28px rgba(255,0,122,0.35);
}


#home-welkom .pm-title .agency-word {
  display: block;
  font-size: 0.9em;   /* 10% kleiner dan de base */
  background: linear-gradient(90deg, #ff007a 0%, #ff4fa3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 12px rgba(255,0,122,0.45);
  font-weight: 700;   /* iets lichter voor rust */
}





/* iets meer drama op het eerste woord, tweede staat stabieler */
#home-welkom .pm-title .primetime-word {
  text-shadow: 0 0 22px rgba(0,255,255,0.8), 0 0 42px rgba(255,0,122,0.6);
  animation: glowPulse 2.4s ease-out;
}
#home-welkom .pm-title .agency-word {
  text-shadow: 0 0 18px rgba(0,255,255,0.6), 0 0 32px rgba(255,0,122,0.4);
}

/* Subline (claim) */
#home-welkom .pm-claim {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 500;
  color: #f0f4f7;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 1.4rem auto;
  line-height: 1.55;
  text-shadow: 0 0 4px rgba(0,0,0,0.35);
  animation: fadeUpSoft 1.6s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
  will-change: transform, opacity;
}
#home-welkom .pm-claim .highlight {
  color: #29d2da;
  font-weight: 600;
}

/* Intro */
#home-welkom .pm-intro {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 400;
  color: #cfd8dc;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeUpSoft 1.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
  will-change: transform, opacity;
}
#home-welkom .pm-intro .highlight {
  color: #ff4f8b;
  font-weight: 600;
}

/* Fade aan onderkant */
#home-welkom .fold-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(56px, 8vh, 96px);
  z-index: 1;
  pointer-events: none;
  opacity: .95;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 10, .35) 35%,
    rgba(0, 0, 20, .65) 65%,
    rgba(0, 0, 30, .92) 100%
  );
}

/* Divider naar volgende sectie */
.slide-fade-divider {
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,1));
}

/* ===== Animations ===== */
@keyframes glowPulse {
  0%   { text-shadow: 0 0 0 rgba(0,255,255,0), 0 0 0 rgba(255,0,122,0); }
  40%  { text-shadow: 0 0 28px rgba(0,255,255,1), 0 0 52px rgba(255,0,122,0.9); }
  100% { text-shadow: 0 0 18px rgba(0,255,255,0.6), 0 0 32px rgba(255,0,122,0.4); }
}

@keyframes fadeUpBounce {
  0%   { opacity: 0; transform: translateY(60px) scale(0.98); }
  60%  { opacity: 1; transform: translateY(-8px) scale(1.02); }
  80%  { transform: translateY(4px) scale(0.995); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #home-welkom .pm-title,
  #home-welkom .pm-claim,
  #home-welkom .pm-intro { animation: none; }
}


/* ============================
   Slide 2: Merkenroute Preview
============================ */

#home-merken-preview {
  position: relative;
  background:
    linear-gradient(to bottom, rgba(10,10,30,0.85) 0%, rgba(0,0,0,0.92) 35%, rgba(0,0,20,0.95) 100%),
    url('../images/achtergrondslide-merken.png') center center / cover no-repeat;
  background-attachment: fixed; /* subtiel parallax effect */
  min-height: 100vh;
  padding-top: 7rem; /* match header offset */
  padding-bottom: clamp(80px, 10vh, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#home-merken-preview::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}


#home-merken-preview .pm-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 3rem 2rem;
  box-shadow: 0 0 32px rgba(0, 255, 255, 0.15);
  max-width: 1200px;
  width: 100%;
  text-align: left;
  flex: 1 1 460px;
}

#home-merken-preview .column-left {
  flex: 0 0 50%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#home-merken-preview .column-right {
  flex: 0 0 50%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


#home-merken-preview .column-left h2 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;              /* standaard */
  -webkit-background-clip: text;      /* nodig voor Chrome / Safari */
  color: transparent;                 /* fallback */
  -webkit-text-fill-color: transparent; /* nodig voor Chrome / Safari */
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.35),
               0 0 32px rgba(255, 0, 122, 0.25);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: .5px;
  text-align: left;
}



#home-merken-preview .pm-tekstblok {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

#home-merken-preview .column-left p {
  font-size: 1.1rem;
  color: #eee;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}


#home-merken-preview .tiktok-btn {
  display: inline-block;
  background: #00ffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 0rem;
  align-self: center;  /* ⬅️ zorgt voor centrering */
}

#home-merken-preview .tiktok-btn:hover {
  background: #00cccc;
}

#home-merken-preview .pm-heading-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

#home-merken-preview .pm-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00ffff;
  opacity: 0.75;
}

#home-merken-preview .pm-title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); /* 🔽 kleiner gemaakt */
  color: #00ffff;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0,255,255,0.2);
  margin: 0;
  text-align: left;
}

#home-merken-preview .column-right .primo-inner {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 👈 werkt nu dankzij vaste hoogte */
  align-items: center;
  padding: 2rem;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

#home-merken-preview .primo-topline {
  margin-bottom: 1rem;
}

#home-merken-preview .primo-intro {
  color: #00ffff;
  font-size: 1.15rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
  margin: 0;
}

#home-merken-preview .primo-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 300px;
  overflow: hidden;
}

#home-merken-preview .primo-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

#home-merken-preview .primo-inner .tiktok-btn {
  background: #00ffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

#home-merken-preview .primo-inner .tiktok-btn:hover {
  background: #00cccc;
}

/* 🔹 Slide: Merken – Wat wij doen */
#home-merken-diensten {
  background:
    linear-gradient(rgba(0, 0, 10, 0.6), rgba(5, 0, 20, 0.6)),
    url('../images/homemerkdienstenbg.png') center center / cover no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

#home-merken-diensten .pm-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.15);
}

#home-merken-diensten .diensten-intro {
  text-align: center;
}

#home-merken-diensten .pm-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00ffff;
  opacity: 0.75;
}

#home-merken-diensten .pm-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;               /* standaard */
  -webkit-background-clip: text;       /* Safari/Chrome */
  color: transparent;                  /* fallback */
  -webkit-text-fill-color: transparent;/* Safari/Chrome */
  text-shadow: 0 0 20px rgba(0,240,255,.35),
               0 0 32px rgba(255,0,122,.25);
  line-height: 1.15;
  letter-spacing: .5px;
  margin: 0.5rem 0 1.5rem;
  text-align: center; /* midden zoals andere secties */
}


#home-merken-diensten .pm-text {
  font-size: 1.1rem;
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#home-merken-diensten .diensten-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

#home-merken-diensten .dienst {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0,255,255,0.15);
  padding: 1.5rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; /* <-- fix voor vector center */
  height: 100%;
}


/* 🔹 Icon blocks */
#home-merken-diensten .dienst [class^="icon-"] {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}


/* 🔹 Screenshot blocks */
#home-merken-diensten .screenshot-data-match,
#home-merken-diensten .screenshot-live-format,
#home-merken-diensten .screenshot-gifting,
#home-merken-diensten .screenshot-ai-monitoring {
  width: 100%;
  max-height: 160px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
}

/* 🔹 Icons per dienst */
#home-merken-diensten .icon-data-match {
  background-image: url('../images/data-match.svg');
}

#home-merken-diensten .icon-live-format {
  background-image: url('../images/live-format.svg');
}

#home-merken-diensten .icon-gifting {
  background-image: url('../images/gifting.svg');
}

#home-merken-diensten .icon-ai-monitoring {
  background-image: url('../images/ai-dashboard.svg');
}

/* 🔹 Screenshots per dienst */
#home-merken-diensten .screenshot-data-match {
  background-image: url('../images/backstagedatamatch.png');
}

#home-merken-diensten .screenshot-live-format {
  background-image: url('../images/backstage-format.png');
}

#home-merken-diensten .screenshot-gifting {
  background-image: url('../images/backstage-gifting.png');
}

#home-merken-diensten .screenshot-ai-monitoring {
  background-image: url('../images/backstage-monitoring.png');
}

#home-merken-diensten .dienst [class^="screenshot-"] {
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  margin-top: auto;
  min-height: 160px;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
}


/* 🔹 Tekst per dienst */
#home-merken-diensten .dienst h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 0.5rem;
}

#home-merken-diensten .dienst p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

/* ============================
   Slide: Merken in de spotlight — COLOR+CTA revamp
   (werkt met jouw huidige HTML)
============================ */
#home-merken-showcase {
  background:
    linear-gradient(rgba(0, 8, 18, .72), rgba(4, 0, 20, .7)),
    url('../images/homemerkdienstenbg.png') center/cover no-repeat;
  min-height: 100vh;
  padding: 6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home-merken-showcase .brand-showcase{
  width:100%; max-width:1240px;
  background: rgba(0,0,0,.44);
  border-radius:18px; backdrop-filter: blur(10px);
  box-shadow: 0 0 28px rgba(0,255,255,.16);
  padding:3.2rem 2rem 2.6rem;
}

/* ===== Kop & intro ===== */
#home-merken-showcase .showcase-intro .pm-subtitle{
  color:#00ffff; letter-spacing:.1em; opacity:.95;
}

#home-merken-showcase .showcase-intro .pm-title {
  margin: .25rem 0 1rem;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg,#00f0ff 0%,#ff007a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 28px rgba(0, 240, 255, .25), 0 0 38px rgba(255, 0, 122, .2);
}

#home-merken-showcase .showcase-intro .pm-text {
  max-width: 860px;
  margin: 0 auto 1.3rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #e4edf0;
  line-height: 1.65;
  text-shadow: 0 0 6px rgba(0,0,0,.35);
}


/* ===== Sectoren: grote pill-cards met accentkleur per item ===== */
#home-merken-showcase .ideals-title{
  margin:1.2rem 0 1rem; color:#fff; font-size:1.5rem; opacity:.96;
}
#home-merken-showcase .ideal-list{
  list-style:none; display:flex; flex-wrap:wrap; justify-content:center;
  gap:1.05rem 1.1rem; margin:0 0 1.4rem; padding:0;
}
#home-merken-showcase .ideal-list li{
  --accent: #00ffff; /* default, wordt per item overschreven */
  position:relative; display:inline-flex; align-items:center; gap:.9rem;
  padding:1.05rem 1.5rem; border-radius:999px;
  color:#eaf6ff; font-weight:800; font-size:1.05rem; letter-spacing:.01em;
  background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.05));
  border:1px solid color-mix(in oklab, var(--accent) 35%, #ffffff 0%);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.25),
    0 6px 26px rgba(0,0,0,.25),
    0 0 24px color-mix(in oklab, var(--accent) 14%, transparent 86%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
#home-merken-showcase .ideal-list li:hover{
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--accent) 65%, #ffffff 0%);
  box-shadow:
    0 0 28px color-mix(in oklab, var(--accent) 35%, transparent 65%),
    inset 0 0 0 1px rgba(255,255,255,.10),
    0 10px 34px rgba(0,0,0,.28);
}

/* Icon badge (groot) + ringglow */
#home-merken-showcase .ideal-list .ideal-icon{
  width:72px; height:72px; flex:0 0 72px; border-radius:14px;
  background-size:cover; background-position:center; background-repeat:no-repeat;
  position:relative; isolation:isolate;
}
#home-merken-showcase .ideal-list .ideal-icon::after{
  content:""; position:absolute; inset:-3px; border-radius:16px; z-index:-1;
  background: radial-gradient(60% 60% at 50% 50%, color-mix(in oklab, var(--accent) 38%, transparent 62%), transparent 70%);
  filter: blur(7px);
}

/* Icon sources (jouw PNG's) */
.icon-makeup  { background-image:url('../images/ideals/makeup.png'); }
.icon-fashion { background-image:url('../images/ideals/fashion.png'); }
.icon-snacks  { background-image:url('../images/ideals/snacks.png'); }
.icon-gadgets { background-image:url('../images/ideals/gadgets.png'); }
.icon-fitness { background-image:url('../images/ideals/fitness.png'); }
.icon-events  { background-image:url('../images/ideals/events.png'); }
.icon-beauty  { background-image:url('../images/ideals/beautypro.png'); }
.icon-home    { background-image:url('../images/ideals/home.png'); }

/* Accentkleuren per item (op li, via positie) */
#home-merken-showcase .ideal-list li:nth-child(1){ --accent:#ff4dc6; } /* make-up */
#home-merken-showcase .ideal-list li:nth-child(2){ --accent:#8a7bff; } /* fashion */
#home-merken-showcase .ideal-list li:nth-child(3){ --accent:#ffb300; } /* snacks */
#home-merken-showcase .ideal-list li:nth-child(4){ --accent:#34e3ff; } /* gadgets */
#home-merken-showcase .ideal-list li:nth-child(5){ --accent:#55f28a; } /* fitness */
#home-merken-showcase .ideal-list li:nth-child(6){ --accent:#b067ff; } /* events */
#home-merken-showcase .ideal-list li:nth-child(7){ --accent:#ff6bd6; } /* beauty pro */
#home-merken-showcase .ideal-list li:nth-child(8){ --accent:#3de2cf; } /* home */

/* ===== CTA — neon, en “plakken” op de onderregel ===== */
#home-merken-showcase .showcase-cta{ margin-top:.25rem; }
#home-merken-showcase .tiktok-btn {
  display: inline-block;
  background: #00ffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 0rem;
  align-self: center;
}
#home-merken-showcase .tiktok-btn:hover {
  background: #00cccc;
}

#home-merken-showcase .showcase-cta .cta-note {
  margin-top: 2rem;   /* i.p.v. -2px of 0 */
  color: #c9f2f6;
  font-weight: 700;
  letter-spacing: .01em;
  font-size: .98rem;
  line-height: 1.2;
}

/* ===== Partnermerken onderaan ===== */
#home-merken-showcase .brand-partners { 
  margin-top: 2.4rem; 
}
#home-merken-showcase .partners-title {
  color: #fff; 
  opacity: .95; 
  font-size: 1.4rem; 
  margin: 0 0 .8rem;
}

/* Marquee – één track, alles beweegt mee */
.brand-marquee {
  --logo-w: clamp(160px, 14vw, 240px);
  --logo-h: clamp(48px,  6vw,  96px);
  --logo-gap: clamp(16px, 4vw, 40px);
  --speed: 42s;

  overflow: hidden; 
  padding: .8rem 0 1rem;

  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.brand-track {
  display: flex; 
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  animation: marqueeScroll var(--speed) linear infinite;
}

/* Dubbele set – nodig voor naadloze loop */
.brand-track .track-set {
  display: flex; 
  align-items: center; 
  gap: var(--logo-gap);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Logo’s */
.brand-logo {
  width: var(--logo-w); 
  height: var(--logo-h);
  flex: 0 0 var(--logo-w);
  display: inline-block;
  background-size: contain; 
  background-position: center; 
  background-repeat: no-repeat;
  opacity: .95; 
  filter: drop-shadow(0 0 6px rgba(0,255,255,.18));
  transition: transform .2s ease, opacity .2s ease;
}
.brand-logo:hover { 
  transform: scale(1.055); 
  opacity: 1; 
}

/* PNG koppelingen */
.brand-techbey      { background-image:url('../images/techbey.png'); }
.brand-oriflame     { background-image:url('../images/oriflame.png'); }
.brand-nuskin       { background-image:url('../images/nuskin.png'); }
.brand-marykay      { background-image:url('../images/marykay.png'); }
.brand-amway        { background-image:url('../images/amway.png'); }
.brand-longrich     { background-image:url('../images/longrich.png'); }
.brand-qnet         { background-image:url('../images/qnet.png'); }
.brand-vestige      { background-image:url('../images/vestige.png'); }
.brand-stelladot    { background-image:url('../images/stelladot.png'); }
.brand-parklane     { background-image:url('../images/parklane.png'); }
.brand-dreamtrips   { background-image:url('../images/dreamtrips.png'); }
.brand-mwrlife      { background-image:url('../images/mwrlife.png'); }
.brand-vorwerk      { background-image:url('../images/vorwerk.png'); }
.brand-tupperware   { background-image:url('../images/tupperware.png'); }
.brand-pamperedchef { background-image:url('../images/pamperedchef.png'); }

/* TechBey groter maken */
.brand-techbey {
  background-image: url('../images/techbey.png');
  transform: scale(1.4);        /* 20% groter */
  z-index: 2;                   /* komt iets erboven */
}
.brand-techbey:hover {
  transform: scale(1.28);       /* bij hover nog een tikje extra */
}


/* ============================
   Slide 4: Creatorsroute Preview
============================ */

#home-creators-preview {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 20, 0.8)),
    url('../images/homemerkdienstenbg.png') center center / cover no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding-top: 6.4rem;
  padding-bottom: clamp(80px, 10vh, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home-creators-preview .pm-content {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 3rem 2.5rem 3rem 3rem;
  box-shadow: 0 0 32px rgba(0, 255, 255, 0.15);
  max-width: 1200px;
  width: 100%;
  text-align: left;

  /* 🔹 Kolommen rekken mee zodat CTA’s gelijk uitlijnen */
  align-items: stretch;
}

#home-creators-preview .column-left,
#home-creators-preview .column-right {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}

#home-creators-preview .column-right {
  max-width: 480px;
  padding-left: 1rem;
}

#home-creators-preview .pm-tekstblok {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

#home-creators-preview .column-right p {
  font-size: 1.1rem;
  color: #eee;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

/* 🔹 CTA-knoppen zakken automatisch onderin */
#home-creators-preview .tiktok-btn {
  margin-top: auto;
  display: inline-block;
  background: #00ffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  align-self: center;
  transition: background 0.3s ease;
}
#home-creators-preview .tiktok-btn:hover {
  background: #00cccc;
}

#home-creators-preview .primo-inner {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

#home-creators-preview .primo-topline {
  margin-bottom: 1rem;
}

#home-creators-preview .primo-intro {
  color: #00ffff;
  font-size: 1.35rem; /* ⬆ groter gemaakt */
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.25);
  margin: 0;
}

#home-creators-preview .column-right h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem); /* ⬇ kleiner gemaakt */
  margin-bottom: 1rem;
  font-weight: 800;
  text-align: left;
  background: linear-gradient(90deg,#00f0ff 0%,#ff4fa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,240,255,.25),0 0 28px rgba(255,79,160,.2);
}


#home-creators-preview .primo-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 300px;
  overflow: hidden;
  width: 100%;
}

#home-creators-preview .primo-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================
   Slide 5: Creators Showcase
============================ */

#home-creators-showcase {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(10, 0, 20, 0.8)),
    url('../images/achtergrond-creatorshowcase.png') center center / cover no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home-creators-showcase .pm-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(255, 0, 255, 0.08);
  padding: 3rem;
}

.showcase-intro .pm-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.35),
               0 0 32px rgba(255, 0, 122, 0.25);
  line-height: 1.15;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}


/* 🔁 Auto-scroll marquee (links → rechts) */
#home-creators-showcase .creator-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

#home-creators-showcase .marquee-track {
  display: inline-flex;
  align-items: stretch;
  gap: 2rem;
  width: max-content;  /* ⬅️ maakt track zo breed als nodig */
  will-change: transform;
  animation: creatorsScrollRight var(--marquee-duration, calc(var(--card-count) * 6s)) linear infinite;

}


@keyframes creatorsScrollRight {
  0%   { transform: translateX(-50%); }  /* start op Set B */
  100% { transform: translateX(0%); }    /* eindigt op Set A */
}


/* 🧱 Gestandaardiseerde kaart */
#home-creators-showcase .marquee-track .creator-card {
  flex: 0 0 260px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 0, 255, 0.15);
  border-radius: 14px;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-height: 320px;   /* compacter, geen background image header meer */
  position: relative;
}

/* 👤 Ronde profielfoto (generiek voor alle creators) */
.creator-card .creator-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0.25rem auto 0.75rem;
  background-size: cover;
  background-position: center;
  border: 3px solid #ff00cc;
  box-shadow: 0 0 12px rgba(255,0,255,0.3);
}

/* 🔤 Titels & metrics */
.creator-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff00cc;
  margin: 0.25rem 0 0.25rem;
}

.creator-card h4 a {
  color: #ff00cc;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.creator-card h4 a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
}

.creator-card .creator-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* 🖼️ Per‑creator alleen de foto toewijzen (1 regel per creator) */
.creator-card.creator-latu .creator-photo  { background-image: url('../images/creator-latu.png'); }
.creator-card.creator-boerenrapper .creator-photo { background-image: url('../images/creator-boerenrapper.png'); }
.creator-card.creator-ibeaubelle2 .creator-photo { background-image: url('../images/creator-ibeaubelle2.png'); }
.creator-card.creator-jentevandijk .creator-photo { background-image: url('../images/creator-jentevandijk.png'); }
.creator-card.creator-1islandgirl .creator-photo { background-image: url('../images/creator-1islandgirl.png'); }
.creator-card.creator-dindin .creator-photo { background-image: url('../images/creator-dindin.png'); }
.creator-card.creator-rickgreyy .creator-photo { background-image: url('../images/creator-rickgreyy.png'); }
.creator-card.creator-esmaevcii .creator-photo { background-image: url('../images/creator-esmaevcii.png'); }
.creator-card.creator-shellyhxx .creator-photo { background-image: url('../images/creator-shellyhxx.png'); }
.creator-card.creator-frannie320 .creator-photo { background-image: url('../images/creator-frannie320.png'); }
.creator-card.creator-nouraely .creator-photo { background-image: url('../images/creator-nouraely.png'); }
.creator-card.creator-mariasyria13 .creator-photo { background-image: url('../images/creator-mariasyria13.png'); }
.creator-card.creator-sjaakofficial .creator-photo { background-image: url('../images/creator-sjaakofficial.png'); }
.creator-card.creator-alleenmaarlove1 .creator-photo { background-image: url('../images/creator-alleenmaarlove1.png'); }
.creator-card.creator-247ontheroad .creator-photo { background-image: url('../images/creator-247ontheroad.png'); }
.creator-card.creator-megandwx .creator-photo { background-image: url('../images/creator-megandwx.png'); }
.creator-card.creator-rs6queennn6 .creator-photo { background-image: url('../images/creator-rs6queennn6.png'); }
.creator-card.creator-ouaeyyy .creator-photo { background-image: url('../images/creator-ouaeyyy.png'); }
.creator-card.creator-wesleyw3z .creator-photo { background-image: url('../images/creator-wesleyw3z.png'); }
.creator-card.creator-n0nii242 .creator-photo { background-image: url('../images/creator-n0nii242.png'); }
.creator-card.creator-danibanani85 .creator-photo { background-image: url('../images/creator-danibanani85.png'); }
.creator-card.creator-lifewithshelley .creator-photo { background-image: url('../images/creator-lifewithshelley.png'); }
.creator-card.creator-justme103 .creator-photo { background-image: url('../images/creator-justme103.png');}
.creator-card.creator-adelaar92 .creator-photo { background-image: url('../images/creator-adelaar92.png'); }
.creator-card.creator-yasminnl24 .creator-photo { background-image: url('../images/creator-yasminnl24.png'); }
.creator-card.creator-clautje .creator-photo { background-image: url('../images/creator-clautje.png'); }
.creator-card.creator-daisyalisonvk .creator-photo { background-image: url('../images/creator-daisyalisonvk.png'); }
.creator-card.creator-niientje .creator-photo { background-image: url('../images/creator-niientje.png'); }
.creator-card.creator-honderdpuntjes .creator-photo { background-image: url('../images/creator-honderdpuntjes.png'); }
.creator-card.creator-ricovberlo .creator-photo { background-image: url('../images/creator-ricovberlo.png'); }
.creator-card.creator-chamaliaaaaaaa .creator-photo { background-image: url('../images/creator-chamaliaaaaaaa.png'); }
.creator-card.creator-sansounxo .creator-photo { background-image: url('../images/creator-sansounxo.png'); }


/* ➕ nieuwe creators: .creator-card.creator-<handle> .creator-photo { background-image: url('../images/creator-<handle>.png'); } */

/* 🖱️ Hover = pauze (desktop) */
@media (hover: hover) and (pointer: fine) {
  #home-creators-showcase .creator-marquee:hover .marquee-track {
    animation-play-state: paused;
  }
}

/* ♿️ Toegankelijkheid */
@media (prefers-reduced-motion: reduce) {
  #home-creators-showcase .marquee-track {
    animation: none;
    transform: none;
  }
}


/* =========================
   Home: Finale CTA slide
========================= */
#home-finale-cta{
  background:
    linear-gradient(rgba(0, 0, 10, 0.6), rgba(5, 0, 20, 0.6)),
    url('../images/HomeBG2.png') center center / cover no-repeat;
  min-height: 100vh;                         /* gelijk aan andere slides */
  padding-top: 6.4rem;
  padding-bottom: clamp(80px, 10vh, 140px);
  display:flex; align-items:center; justify-content:center; text-align:center;
}

#home-finale-cta .finale-wrap{
  max-width: 1200px; width: 100%;
  margin: 0 1.5rem;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 0 32px rgba(0, 255, 255, 0.15);
  border: 1px solid rgba(0, 255, 255, 0.15);
  padding: 3.2rem 2.2rem;                    /* iets meer padding */
}

/* Intro blok – meer ademruimte en consistente breedte */
#home-finale-cta .finale-intro{
  max-width: 900px;
  margin: 0 auto 1.6rem;                     /* ruimte onder intro */
}

#home-finale-cta .pm-title{
  margin: 0 0 1.2rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;                 /* standaard */
  -webkit-background-clip: text;         /* WebKit fix */
  color: transparent;                    /* fallback */
  -webkit-text-fill-color: transparent;  /* WebKit fix */
  text-shadow: 0 0 20px rgba(0,240,255,.35), 0 0 32px rgba(255,0,122,.25);
  line-height: 1.15;
  letter-spacing: .5px;
}


#home-finale-cta .pm-text{
  color:#E0EAF2;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto 1.0rem;                     /* gelijkmatige ritme */
}

/* Buttons – meer afstand, underline weg */
.finale-cta-buttons{
  display:flex; gap:1.25rem; justify-content:center; flex-wrap:wrap;
  margin: 1.4rem 0 .9rem;                    /* meer afstand tot tekst */
}

.finale-cta-buttons .tiktok-btn{
  text-decoration: none !important;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: all 0.25s ease;
}

.finale-cta-buttons .tiktok-btn:hover{
  text-decoration: none !important;
}

/* Ghost variant laat je al goed stylen; laten zo */
.tiktok-btn.tiktok-btn--ghost{
  background: transparent; color:#eaf6ff;
  border:1px solid rgba(255,255,255,.25);
  font-weight:800; padding:.85rem 1.6rem; border-radius:12px;
  text-decoration:none; display:inline-block;
  transition: border-color .2s ease, transform .12s ease, background .2s ease;
}
.tiktok-btn.tiktok-btn--ghost:hover{
  border-color:#fff; background: rgba(255,255,255,.06); transform: translateY(-1px);
}

/* Secondary link – klein beetje ruimte en rustig kleurgebruik */
.finale-secondary{
  margin-top: .6rem;
  color:#bfe9ef; font-weight:700;
}
.finale-secondary .text-link{ color:#00ffff; text-decoration:underline; }

/* =========================
   Footer – structuur + stijl
========================= */
.site-footer {
  background:
    linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,10,.96)),
    radial-gradient(70% 120% at 10% 0%, rgba(0,255,255,.08), transparent 60%),
    radial-gradient(60% 100% at 90% 20%, rgba(255,0,204,.08), transparent 60%);
  color: #d6e8ef;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative; /* separator */
  font-family: 'Orbitron', sans-serif;
}

.site-footer .footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}

.footer-col { display: flex; flex-direction: column; gap: .75rem; }

.footer-brand { grid-column: span 3; align-items: center; text-align: center; }
.footer-nav   { grid-column: span 3; }
.footer-legal { grid-column: span 3; }
.footer-contact { grid-column: span 3; }

/* Logo */
#site-footer .footer-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 260px !important;   /* desktop cap */
  max-height: 64px !important;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,255,255,.25));
}

/* Slogan */
.footer-tagline {
  text-align: center;
  color: #dfeef5;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

/* TikTok follow */
.footer-social-single { text-align: center; }
.footer-social-single a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  color: #00ffff;
  font-size: 1.05rem;
  text-decoration: none;
}
.footer-social-single a:hover span { text-decoration: underline; }
.footer-social-icon {
  width: 24px; height: 24px; object-fit: contain;
}

/* Titels */
.footer-title {
  font-weight: 800;
  color: #fff;
  margin: 0 0 .5rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Linklijsten */
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .45rem;
}
.footer-links a {
  color: #d6e8ef; text-decoration: none;
  transition: color .2s ease, text-shadow .2s ease;
}
.footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0,255,255,.35);
}

/* Contact */
.footer-address { font-style: normal; line-height: 1.5; }
.footer-address a { color: #eaf6ff; text-decoration: none; }
.footer-address a:hover { text-decoration: underline; }

/* KvK / BTW */
.footer-meta {
  list-style: none; padding: 0; margin: .5rem 0 0;
  color: #a8c7ce; display: flex; flex-direction: column; gap: .2rem;
}
.footer-meta .meta-label { font-weight: 600; margin-right: .25rem; }

/* CTA */
.footer-cta { margin-top: .8rem; }

/* Onderbalk */
.footer-bottom {
  max-width: 1220px;
  margin: 1.4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  color: #a7c2c9;
  font-size: .9rem;
}

/* Separator lijn */
.site-footer:after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 3.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

/* Cookie knop */
.cookie-settings {
  appearance: none; background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #eaf6ff; border-radius: 6px;
  padding: .35rem .6rem; cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.cookie-settings:hover { background: rgba(255,255,255,.07); border-color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .site-footer .footer-inner { grid-template-columns: repeat(6, 1fr); }
  .footer-brand   { grid-column: span 6; }
  .footer-nav     { grid-column: span 3; }
  .footer-legal   { grid-column: span 3; }
  .footer-contact { grid-column: span 6; }
  #site-footer .footer-logo {
    max-width: 220px !important;
    max-height: 56px !important;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-inner { grid-template-columns: 1fr; }
  .footer-col { grid-column: auto; }
  .footer-bottom { font-size: .85rem; }
  #site-footer .footer-logo {
    max-width: 180px !important;
    max-height: 52px !important;
  }
}



/* =========================
   CREATOR-PAGE (denk ik)
========================= */

#home-creators {
  background: linear-gradient(to right, rgba(20,20,30,0.9), rgba(10,10,20,0.9));
  min-height: 100vh;
  padding: clamp(80px, 10vh, 140px) 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


/* =========================
   Bedankt Merk Styling
========================= */
.bedankt-page {
  background-color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.bedankt-container {
  max-width: 700px;
}

.bedankt-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #00ffff;
  text-shadow: 0 0 16px rgba(0, 255, 255, 0.4);
  margin-bottom: 24px;
}

.bedankt-text {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 40px;
}

.slide-cta-button {
  background-color: #00ffff;
  color: #000;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
  transition: transform 0.2s ease;
}

.slide-cta-button:hover {
  transform: scale(1.05);
  background-color: #00dada;
}

@media (max-width: 425px) {
  #campagne-vergelijking {
    padding-top: 140px; /* 👈 extra ademruimte */
  }
}

/* ========================================
   PRIMETIME – Creators Page Styling
   Slides 1 (Intro) & 2 (Roadmap)
   Thema: Warme Creator Glow (pink + orange)
======================================== */


/* ============================
   Slide 1 – Creator Intro
============================ */
#creator-intro {
  background:
    linear-gradient(rgba(10, 10, 20, 0.65), rgba(10, 10, 30, 0.65)),
    url('../images/Creatorsachtergrond.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: clamp(100px, 14vh, 180px);
  padding-bottom: clamp(100px, 14vh, 180px);
}

#creator-intro .slide-content {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 0 28px rgba(255, 32, 140, 0.35),
              0 0 40px rgba(255, 123, 57, 0.25);
}

#creator-intro .slide-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;

  /* Gradient text (cross-browser) */
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 18px rgba(255, 32, 140, 0.35),
               0 0 26px rgba(255, 123, 57, 0.25);
}


#creator-intro .slide-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  text-shadow: 0 2px 6px rgba(0,0,0,.45);
}


/* ============================
   Slide 2 – Creator Roadmap
============================ */
#creator-roadmap {
  background:
    linear-gradient(rgba(10,10,20,.55), rgba(10,10,30,.65)),
    url('../images/wordcreatorBG.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(100px, 14vh, 180px);
  padding-bottom: clamp(100px, 14vh, 180px);
}

#creator-roadmap .slide-content {
  position: relative;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: min(92vw, 820px);
  margin: 0 auto;
  box-shadow: 0 0 24px rgba(0,0,0,.35);
}

#creator-roadmap .slide-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;

  /* Gradient text (cross-browser safe) */
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 12px rgba(255, 32, 140, 0.35),
               0 0 18px rgba(255, 123, 57, 0.25);
  text-align: center;
}


#creator-roadmap .slide-intro {
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  color: #f5f5f5;
  text-align: center;
  opacity: .95;
  margin-bottom: 1rem;
}


/* Wrapper + achtergrond */
#creator-roadmap .roadmap-wrapper {
  position: relative;
  max-width: min(92vw, 760px);
  margin: 1.5rem auto 0;
  border-radius: 24px;
  overflow: hidden;
}

#creator-roadmap .roadmap-wrapper::before {
  content:"";
  position:absolute; inset:0;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.45)),
    var(--rm-bg) center/cover no-repeat;
  z-index:0;
}


/* Navigatiepijlen */
#creator-roadmap .roadmap-nav {
  position:absolute;
  top:50%; transform: translateY(-50%);
  width:52px; height:52px;
  border-radius:50%;
  background: rgba(255, 32, 140, 0.2);
  border: 2px solid rgba(255, 123, 57, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  cursor: pointer; z-index: 3;
  font-size: 24px; line-height: 1;
  transition: all .2s ease;
  box-shadow: 0 0 18px rgba(255, 32, 140, 0.25),
              0 0 24px rgba(255, 123, 57, 0.2);
}
#creator-roadmap .roadmap-nav:hover {
  background: rgba(255, 32, 140, 0.35);
  border-color: rgba(255, 123, 57, 0.55);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 28px rgba(255, 32, 140, 0.45),
              0 0 38px rgba(255, 123, 57, 0.35);
}
#creator-roadmap .roadmap-nav:focus-visible {
  outline: 2px solid #ff208c;
  outline-offset: 3px;
}
#prev-roadmap{ left:12px; }
#next-roadmap{ right:12px; }
@media (max-width:640px){
  #prev-roadmap{ left:6px; }
  #next-roadmap{ right:6px; }
}


/* Roadmap track + kaarten */
#creator-roadmap .roadmap-slide {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  transition: transform .45s ease;
}

.rm-card {
  position: relative;
  flex: 0 0 100%;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}
.rm-card::before { content:""; display:block; padding-bottom:100%; }


/* Inhoud per kaart */
.rm-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px;
}


/* Grote nummering */
.rm-step {
  font: 900 clamp(120px, 18vw, 180px)/.82 'Orbitron', Inter, system-ui, Arial, sans-serif;

  /* Gradient text (cross-browser safe) */
  background: linear-gradient(180deg, #ff208c, #ff7b39);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 10px 30px rgba(255, 32, 140, 0.35),
               0 12px 40px rgba(255, 123, 57, 0.25);
}



/* Titels + tekst */
.rm-title {
  margin: 0;
  font-family: 'Poppins', Inter, system-ui, Arial, sans-serif;
  font-weight: 800;

  /* Gradient text (cross-browser safe) */
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 12px rgba(255, 32, 140, 0.35),
               0 0 18px rgba(255, 123, 57, 0.25);
  line-height: 1.05;
  letter-spacing: .3px;
}


.rm-text {
  max-width: 44ch;
  color: #f5f5f5;
  font-family: 'Roboto', Inter, system-ui, Arial, sans-serif;
  font-size: clamp(15.5px, 2.2vw, 19px);
  line-height: 1.52;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
  opacity: .95;
}


/* Logo */
.rm-logo {
  position: absolute; right: 24px; bottom: 24px;
  width: min(24%, 200px);
  height: auto;
  opacity: .9;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
}
@media (max-width: 900px){
  .rm-logo { width: min(28%, 160px); }
}
@media (max-width: 600px){
  .rm-logo { width: min(34%, 140px); right:18px; bottom:18px; }
}


/* Accent helpers */
.tint-cyan { color:#00e4ff; }
.tint-pink { color:#ff208c; }



/* ========================================
   CREATOR SLIDE 3 – WAAROM PRIMETIME
======================================== */
#creator-waarom {
  background:
    linear-gradient(rgba(10, 10, 20, 0.65), rgba(10, 10, 30, 0.65)),
    url('../images/Creatorsachtergrond3.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vh, 180px) 20px;
}

#creator-waarom .slide-content {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  box-shadow: 0 0 28px rgba(255, 32, 140, 0.35),
              0 0 40px rgba(255, 123, 57, 0.25);
}

#creator-waarom .slide-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;

  /* Gradient text cross-browser */
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 18px rgba(255, 32, 140, 0.35),
               0 0 26px rgba(255, 123, 57, 0.25);
}

#creator-waarom .slide-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}


/* ========================================
   CREATOR SLIDE 4 – AANMELDEN
======================================== */
#creator-aanmelden {
  background:
    linear-gradient(rgba(10, 10, 20, 0.65), rgba(10, 10, 20, 0.65)),
    url('../images/achtergrondslide6.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vh, 180px) 20px;
}

#creator-aanmelden .slide-content {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 28px rgba(255, 32, 140, 0.25),
              0 0 38px rgba(255, 123, 57, 0.2);
}

#creator-aanmelden .slide-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;

  /* Gradient text cross-browser */
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 16px rgba(255, 32, 140, 0.35),
               0 0 24px rgba(255, 123, 57, 0.25);
}

#creator-aanmelden .slide-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 24px;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.centered-button {
  margin-top: 1rem;
}


/* ========================================
   CREATOR SLIDE 5 – AANMELDFORMULIER
======================================== */
#creator-form {
  background:
    linear-gradient(rgba(10, 10, 20, 0.65), rgba(10, 10, 20, 0.65)),
    url('../images/Creatorsachtergrond5.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vh, 180px) 20px;
}

#creator-form .slide-content {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 0 28px rgba(255, 32, 140, 0.25),
              0 0 38px rgba(255, 123, 57, 0.2);
}

#creator-form .slide-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;

  /* Gradient text cross-browser */
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 16px rgba(255, 32, 140, 0.35),
               0 0 22px rgba(255, 123, 57, 0.25);
}

#creator-form .slide-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

/* Form fields */
#creator-form .contact-form input {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background: rgba(20,20,20,.85);
  color: #fff;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

#creator-form .contact-form input:focus {
  outline: none;
  border-color: #ff208c;
  box-shadow: 0 0 12px rgba(255, 32, 140, 0.35),
              0 0 18px rgba(255, 123, 57, 0.25);
}

#creator-form .contact-form input::placeholder {
  color: #aaa;
}

/* CTA button */
#creator-form .slide-cta-button {
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 18px rgba(255, 32, 140, 0.35),
              0 0 24px rgba(255, 123, 57, 0.25);
}

#creator-form .slide-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(255, 32, 140, 0.45),
              0 0 38px rgba(255, 123, 57, 0.35);
}


/* =========================
   Bedankpagina – Algemene layout
========================= */
.bedankt-page {
  background:
    linear-gradient(rgba(10, 10, 20, 0.6), rgba(10, 10, 30, 0.6)),
    url('../images/Creatorsachtergrond3.png') center center / cover no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vh, 180px) 20px;
}

/* =========================
   Container
========================= */
.bedankt-container {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 24px rgba(0, 255, 255, 0.25),
              0 0 48px rgba(255, 0, 122, 0.15);
  animation: fadeInUp 0.8s ease-out;
}

/* =========================
   Bedankpagina Titel
========================= */
.bedankt-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #00f0ff, #ff007a);
  background-clip: text;             /* ✅ standaard eigenschap */
  -webkit-background-clip: text;     /* ✅ nodig voor Chrome/Safari */
  color: transparent;                /* ✅ fallback */
  -webkit-text-fill-color: transparent; /* ✅ WebKit */
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.35),
               0 0 32px rgba(255, 0, 122, 0.25);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: .5px;
}


/* =========================
   Tekst
========================= */
.bedankt-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e6e6e6;
  margin-bottom: 2rem;
}

/* =========================
   CTA-knop
========================= */
.bedankt-container .slide-cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #ff208c, #ff7b39);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .4px;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(255, 32, 140, 0.4),
              0 0 28px rgba(255, 123, 57, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bedankt-container .slide-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 32, 140, 0.6),
              0 0 32px rgba(255, 123, 57, 0.35);
}

/* =========================
   Animatie
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Mobiel (≤ 768px)
========================= */
@media (max-width: 768px) {
  /* Slides: stacken en centreren */
  .slide-content,
  .slide-inner,
  .pm-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }

  /* Preview slides (Merken + Creators) */
  .preview-slide .pm-content {
    flex-direction: column !important;
    padding: 1.5rem 1rem !important;
    gap: 1.5rem !important;
  }

  .preview-slide .column-left,
  .preview-slide .column-right,
  .preview-slide .primo-inner {
    max-width: 100% !important;
    flex: 1 1 100% !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .preview-slide .pm-heading-group {
    margin-bottom: 0.5rem !important;
  }

  .preview-slide .primo-inner {
    margin-top: 1rem;
  }
  .preview-slide .primo-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    display: block;
  }

  /* Hero sectie (Home) */
  #home-welkom {
  padding-top: var(--header-h, 5rem);   /* ruimte voor header */
  padding-bottom: 1.5rem;               /* compact naar slide 2 */
  min-height: calc(100vh - var(--header-h, 5rem));
  display: flex;
  align-items: center;
  justify-content: center;
  }

  #home-welkom .pm-content {
  margin-top: 0;                        /* negatieve marge weghalen */
  gap: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,255,255,0.15) 100%);
  box-shadow: 0 0 24px rgba(0,255,255,0.25), 0 0 48px rgba(255,0,122,0.25);
  padding: 2rem 1.5rem;                 /* extra binnenruimte */
  width: 100%;
  max-width: 92%;
  }



  #home-welkom .tiktok-btn {
    width: 100% !important;
    max-width: 280px;
    margin: 1rem auto 0;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }


  #home-welkom h1,
  #home-welkom .pm-title {
    font-size: clamp(2.2rem, 7vw, 2.8rem) !important;
    line-height: 1.1 !important;
    letter-spacing: .5px;
    font-weight: 800 !important;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(0,240,255,.35), 0 0 20px rgba(255,0,122,.25);
  }

  #home-welkom .pm-intro,
  #home-welkom .pm-claim {
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    font-weight: 500;
    max-width: 90%;
    margin: 0 auto;
    color: #f0f0f0;
  }

  #home-welkom {
    padding-bottom: 1.5rem;
  }
  #home-welkom .pm-content {
    margin-top: 0; /* geen negatieve margin meer nodig */
  }

  /* Titels kleiner */
  h1, h2, .slide-title, .pm-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }

  /* Teksten compacter */
  .pm-intro,
  .pm-claim,
  .slide-intro,
  .pm-text,
  p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  /* CTA-knoppen compacter en consistent */
  .preview-slide .tiktok-btn,
  .preview-slide .slide-cta-button {
    display: block;
    width: 100% !important;
    max-width: 260px;
    margin: 1rem auto;
    font-size: 0.9rem !important;
    padding: 0.65rem 1rem !important;
    border-radius: 8px !important;
  }

  /* Tweede CTA (onderscheidend van eerste) */
  .preview-slide .primo-inner .tiktok-btn {
    background: linear-gradient(90deg, #ff007a, #ff4fbf) !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 0 16px rgba(255,0,122,0.45), 0 0 22px rgba(255,0,200,0.35);
    transform: translateZ(0);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .preview-slide .primo-inner .tiktok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255,0,122,0.6), 0 0 32px rgba(255,0,200,0.45);
  }



  /* Formulieren */
  .contact-form {
    padding: 1.25rem !important;
  }
  .checkbox-group {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Showcase cards (creators) */
  .creator-card {
    flex: 0 0 220px !important;
    min-height: 280px !important;
  }
}

/* ============= HERO RESPONSIVE FIXES ============= */

/* Laptops */
@media (min-width: 1024px) and (max-width: 1440px) {
  #home-welkom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 2.5rem;
  }
  #home-welkom .pm-content {
    max-width: 880px;       /* ⬅️ compacter dan desktop */
    padding: 2.5rem 2rem;   /* ⬅️ minder padding */
    gap: 1.5rem;            /* ⬅️ minder spacing */
    margin-top: 0;
    transform: none;
  }
  #home-welkom .pm-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
  }

  #home-welkom .pm-title .primetime-word,
  #home-welkom .pm-title .agency-word {
    display: inline-block;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
  }

  #home-welkom .pm-claim,
  #home-welkom .pm-intro {
    font-size: 1rem;        /* ⬅️ tekst compacter */
    line-height: 1.45;
  }
}


/* Grote schermen (breedbeeld >1441px) */
@media (min-width: 1441px) {
  #home-welkom {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem; /* alleen zijmarges */
  }

  #home-welkom .pm-content {
    max-width: 1280px;     /* bredere box */
    padding: 3rem 2.5rem;  /* wat meer binnenruimte */
    transform: translateY(-2vh); /* optisch iets hoger */
  }

  #home-welkom .pm-title {
    font-size: clamp(3rem, 4vw, 4.2rem);
  }

  #home-welkom .pm-title .primetime-word {
    display: inline-block;
    background: linear-gradient(90deg, #00f0ff 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  #home-welkom .pm-title .agency-word {
    display: inline-block;
    background: linear-gradient(90deg, #ff007a 0%, #ff4fa3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }


  #home-welkom .pm-claim,
  #home-welkom .pm-intro {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

