/* =============================================
   CUSTOM PROPERTIES — gedeeld designsysteem
   Overgenomen 1-op-1 uit index-seminar.html / index-mainstage.html
============================================= */
:root {
  --amber:       #C9933A;
  --amber-light: #E8B86D;
  --amber-dark:  #A67828;
  --black:       #111111;
  --dark:        #1C1C1C;
  --dark-2:      #2A2A2A;
  --grey-warm:   #F5F2ED;
  --grey-mid:    #888888;
  --white:       #FFFFFF;
  --text:        #222222;
  --text-light:  #555555;

  --font: 'Roboto', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --max-w: 900px;
  --max-w-wide: 1100px;

  --radius: 4px;
  --transition: 0.3s ease;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

/* =============================================
   UTILITIES
============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--max-w-wide);
}

.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--warm {
  background: var(--grey-warm);
}

.section--amber {
  background: var(--amber);
  color: var(--white);
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.section--dark .label,
.section--amber .label {
  color: var(--amber-light);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-light);
  max-width: 680px;
}

.section--dark .lead { color: #bbb; }

.text-center { text-align: center; }
.text-center .lead { margin-left: auto; margin-right: auto; }

/* =============================================
   FADE-IN ANIMATION
============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* =============================================
   BUTTON
============================================= */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--amber);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,147,58,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn--large {
  padding: 1.2rem 2.8rem;
  font-size: 1.1rem;
}

/* =============================================
   SITE HEADER — nieuw, gedeeld over alle pagina's
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__logo img {
  height: 34px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  white-space: nowrap;
}

.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] {
  color: var(--amber-light);
}

.site-header__nav .btn {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

.site-header__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.site-header__toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 720px) {
  .site-header__nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem var(--space-md) 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
  }

  .site-header__nav.open {
    display: flex;
  }

  .site-header__nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .site-header__nav .btn {
    margin-top: 1rem;
  }

  .site-header__toggle {
    display: block;
  }
}

/* =============================================
   SITE FOOTER — nieuw, gedeeld over alle pagina's
============================================= */
.site-footer {
  background: var(--black);
  color: #888;
  padding: var(--space-lg) 0 var(--space-md);
}

.site-footer__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.site-footer__brand img {
  height: 26px;
  margin-bottom: 0.75rem;
}

.site-footer__brand p {
  font-size: 0.85rem;
  max-width: 320px;
  line-height: 1.6;
}

.site-footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer__nav a {
  font-size: 0.85rem;
  color: #999;
  transition: color var(--transition);
}

.site-footer__nav a:hover {
  color: var(--amber-light);
}

.site-footer__bottom {
  max-width: var(--max-w-wide);
  margin: 2.5rem auto 0;
  padding: 1.5rem var(--space-md) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: #555;
}

/* =============================================
   HERO (generieke pagina-hero, sub-pagina's)
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero--compact {
  min-height: 60vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
}

.hero__bg--home {
  background-position: center 68%;
  opacity: 0.58;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.82) 0%, rgba(28,28,28,0.55) 100%);
  z-index: 0;
}

.hero__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(201,147,58,0.06), transparent);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 780px;
  padding: 2rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.hero h1 span {
  color: var(--amber-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.hero__byline {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--amber-light);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.hero__meta-item svg {
  width: 16px;
  height: 16px;
  fill: var(--amber-light);
  flex-shrink: 0;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.4) translateY(20px); }
}

/* =============================================
   ANNOUNCEMENT BAR
============================================= */
.announce-bar {
  background: var(--amber);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.announce-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce-bar a:hover {
  color: var(--black);
}

/* =============================================
   INTRO / TEKST + FOTO GRID
============================================= */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}

.intro__text p + p {
  margin-top: 1.1rem;
}

.intro__text h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.intro__closing {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.intro__photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.intro__photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 768px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro__photo img {
    height: 300px;
  }
}

/* =============================================
   PROGRAMMA BLOKKEN
============================================= */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.program-block {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid var(--amber);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.program-block__number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.program-block h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.program-block p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =============================================
   VOOR WIE
============================================= */
.voor-wie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.voor-wie__card {
  padding: 2rem;
  border-radius: 8px;
}

.voor-wie__card--yes {
  background: #f0faf0;
  border-left: 4px solid #4caf50;
}

.voor-wie__card--no {
  background: #fdf5f5;
  border-left: 4px solid #e57373;
}

.voor-wie__card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.voor-wie__card--yes h3 { color: #2e7d32; }
.voor-wie__card--no h3  { color: #c62828; }

.voor-wie__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.voor-wie__card ul li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
  align-items: flex-start;
  line-height: 1.5;
}

.voor-wie__card--yes ul li::before {
  content: '✓';
  color: #4caf50;
  font-weight: 700;
  flex-shrink: 0;
}

.voor-wie__card--no ul li::before {
  content: '✗';
  color: #e57373;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .voor-wie__grid { grid-template-columns: 1fr; }
}

/* =============================================
   WAT ER SPEELT — LIST (pain points)
============================================= */
.pain-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pain-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pain-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.15rem;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-list__icon svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.pain-list strong {
  color: var(--white);
}

/* =============================================
   DRIE PIJLERS (Main Stage)
============================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid var(--amber);
}

.pillar .pillar__number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.pillar h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.pillar p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #ccc;
}

.check-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
}

/* =============================================
   HOE HET ERUITZIET (format-grid)
============================================= */
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.format-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.format-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.format-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-item__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.format-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.format-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.live-dagen-list {
  list-style: none;
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.live-dagen-list li {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.live-dagen-list li span {
  color: var(--amber-dark);
  font-weight: 700;
  margin-right: 0.4rem;
}

.format-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.format-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .format-grid { grid-template-columns: 1fr; }
  .format-photo { order: -1; }
  .format-photo img { height: 280px; }
}

/* =============================================
   OVER SYDNEY / WAAROM SYDNEY
============================================= */
.sydney-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.sydney-grid--compact {
  grid-template-columns: 1fr 380px;
  margin-top: 3rem;
}

.sydney-text p + p {
  margin-top: 1rem;
}

.sydney-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.sydney-stat {
  display: flex;
  flex-direction: column;
}

.sydney-stat__number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.sydney-stat__label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.section--dark .sydney-stat__label { color: #999; }

.sydney-photos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sydney-portrait {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.sydney-portrait img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 900px) {
  .sydney-grid,
  .sydney-grid--compact { grid-template-columns: 1fr; }
  .sydney-photos { order: -1; }
  .sydney-portrait img { height: 320px; }
}

/* Transformatieblok */
.transformation {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid #ddd;
}

.section--dark .transformation,
.section--warm .transformation {
  border-top-color: rgba(255,255,255,0.12);
}

.transformation__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1.25rem;
}

.transformation__photos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.transformation__photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.transformation__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.transformation__caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

.transformation__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.5rem;
}

.transformation__arrow svg {
  width: 40px;
  height: 40px;
  color: var(--amber);
}

.transformation__arrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .transformation__photos { grid-template-columns: 1fr; }
  .transformation__arrow { transform: rotate(90deg); }
  .transformation__arrow span { display: none; }
}

/* =============================================
   BEWIJSLAAG — cijfers + klanten (nieuw, home + over-sydney)
============================================= */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.proof-stat {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 1.75rem;
  border-bottom: 3px solid var(--amber);
  text-align: center;
}

.proof-stat__number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.proof-stat__label {
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.6rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
}

.client-list {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.client-list__item {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-light);
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
}

.section--dark .client-list__item,
.section--warm .client-list__item {
  border-color: rgba(0,0,0,0.08);
}

.section--dark .client-list__item {
  color: #ccc;
  border-color: rgba(255,255,255,0.15);
}

/* =============================================
   DE LADDER — home, seminar → main stage
============================================= */
.ladder {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 3rem;
}

.ladder__step {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 2.25rem;
  border-top: 3px solid var(--amber);
  display: flex;
  flex-direction: column;
}

.ladder__step-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
}

.ladder__step h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.ladder__step p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ladder__step .btn {
  align-self: flex-start;
}

.ladder__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.ladder__arrow svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .ladder {
    grid-template-columns: 1fr;
  }
  .ladder__arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
}

/* =============================================
   PRAKTISCHE INFO / INFO-CARDS
============================================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 1.75rem;
  border-bottom: 3px solid var(--amber);
}

.info-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(201,147,58,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--amber);
}

.info-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}

.info-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.info-card p {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.5;
}

.info-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(201,147,58,0.1);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  color: var(--amber-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* =============================================
   INVESTERING / PRICING CARD
============================================= */
.pricing-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 3rem;
  max-width: 620px;
  margin: 2.5rem auto 0;
  text-align: center;
  box-shadow: 0 24px 72px rgba(0,0,0,0.15);
  border: 1px solid rgba(201,147,58,0.3);
}

.pricing-card .pricing-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.pricing-card .pricing-card__price {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.pricing-card .pricing-card__sub {
  font-size: 1rem;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.pricing-card p {
  font-size: 0.95rem;
  color: #bbb;
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card .pricing-card__price { font-size: 4rem; }
}

/* =============================================
   STAPPEN (hoe het werkt)
============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.75rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.step__note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.step__note strong {
  color: var(--text);
  font-style: normal;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* =============================================
   FAQ
============================================= */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e8e8e8;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__question:hover {
  color: var(--amber);
}

.faq-item__arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--amber);
  font-size: 1.2rem;
}

.faq-item.open .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer p {
  padding-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  text-align: center;
}

.testimonials .label,
.testimonials h2 {
  text-align: center;
}

.testimonial-video {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 3rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  background: var(--dark);
}

.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--dark);
  cursor: pointer;
  overflow: hidden;
}

.video-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.video-facade:hover .video-facade__thumb {
  transform: scale(1.04);
  opacity: 0.85;
}

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  transition: background 0.25s ease, transform 0.25s ease;
}

.video-facade:hover .video-facade__play {
  background: var(--amber-dark);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-facade__play svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
  margin-left: 3px;
}

.testimonial-score {
  margin: 3.5rem auto 0;
}

.testimonial-score__number {
  font-size: clamp(3.5rem, 9vw, 5rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.testimonial-score__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 820px;
  margin: 3rem auto 0;
  text-align: left;
}

.testimonial-card {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.testimonial-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--amber);
  flex-shrink: 0;
}

.testimonial-card__rating svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
}

.testimonial-card__quote {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FINALE CTA
============================================= */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.cta-section .lead {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-section__disclaimer {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* CTA met foto + tekst naast elkaar (Main Stage) */
.cta-section--split {
  background: var(--dark);
  color: var(--white);
  text-align: left;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.cta-photo {
  border-radius: 8px;
  overflow: hidden;
}

.cta-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
}

.cta-content h2 {
  margin-bottom: 1rem;
  text-align: left;
}

.cta-content .lead {
  color: #bbb;
  margin-bottom: 2.5rem;
  text-align: left;
  margin-left: 0;
}

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-photo { order: -1; }
  .cta-photo img { height: 340px; }
}

/* Twee CTA's naast elkaar (Home) */
.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cta-duo__card {
  background: var(--dark-2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: left;
  border-top: 3px solid var(--amber);
}

.cta-duo__card .label { margin-bottom: 0.75rem; }

.cta-duo__card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-duo__card p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .cta-duo { grid-template-columns: 1fr; }
}

/* =============================================
   FORMULIER (algemeen)
============================================= */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #bbb;
}

.form-field input,
.form-field textarea {
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.1);
}

.form__disclaimer {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}

.form__disclaimer a,
.form__privacy a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form__privacy {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #999;
  margin: 0;
}

.form__feedback {
  min-height: 1.5em;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form__feedback--success { color: #81c784; }
.form__feedback--error { color: #ef9a9a; }

.form button:disabled,
.waitlist__form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.intake-form {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .intake-form { padding: 1.25rem; }
}

/* =============================================
   WAITLIST SECTIE
============================================= */
.waitlist {
  text-align: center;
}

.waitlist h2 {
  margin-bottom: 0.8rem;
}

.waitlist p {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.section--dark .waitlist p { color: #bbb; }

.waitlist__form {
  display: flex;
  gap: 0.6rem;
  max-width: 460px;
  margin: 0 auto;
}

.waitlist__form input {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease;
  outline: none;
  min-width: 0;
}

.waitlist__form input:focus {
  border-color: var(--amber);
}

.waitlist__form input::placeholder {
  color: #999;
}

.waitlist__form button {
  flex-shrink: 0;
  padding: 0.85rem 1.6rem;
}

.waitlist__feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.waitlist__feedback--success { color: #2e7d32; }
.waitlist__feedback--error   { color: #c62828; }
.section--dark .waitlist__feedback--success { color: #81c784; }
.section--dark .waitlist__feedback--error   { color: #ef9a9a; }

@media (max-width: 540px) {
  .waitlist__form { flex-direction: column; }
  .waitlist__form button { width: 100%; }
}

/* =============================================
   FOOTER (pagina-brede afsluiting Main Stage-stijl)
============================================= */
.footer {
  background: var(--black);
  color: #777;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

.footer strong {
  color: var(--amber);
}

/* =============================================
   RESPONSIVE — algemeen
============================================= */
@media (max-width: 900px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4.5rem;
    --space-lg: 2.5rem;
  }

  .program-grid { grid-template-columns: 1fr; }

  .hero__meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --space-xl: 3.5rem;
    --space-lg: 2rem;
    --space-md: 1.25rem;
  }

  body { font-size: 16px; }

  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card .pricing-card__price { font-size: 4rem; }
  .hero h1 { font-size: 2.4rem; }
}

/* =============================================
   PRIVACY EN VOORWAARDEN
============================================= */
.legal-hero {
  padding: 6rem 0 4rem;
  background: var(--dark);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
}

.legal-hero p {
  max-width: 700px;
  color: #bbb;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  line-height: 1.75;
}

.legal-content ul {
  margin: 0.75rem 0 1.5rem 1.25rem;
}

.legal-content a {
  color: var(--amber-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--warm);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* =============================================
   SEMINAR TICKETMODAL
============================================= */
body.ticket-modal-open { overflow: hidden; }

.experience-options {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 1.25rem;
}

.experience-options .btn {
  justify-content: flex-start;
  text-align: left;
  white-space: normal;
}

.experience-skip { margin-top: 1.5rem; }

.ticket-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 1.5rem;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.78);
  align-items: flex-start;
  justify-content: center;
}

.ticket-modal-overlay.open { display: flex; }

.ticket-modal {
  position: relative;
  width: min(100%, 560px);
  margin: auto 0;
  padding: 2.5rem;
  border: 1px solid rgba(201, 147, 58, 0.3);
  border-radius: 12px;
  background: var(--dark);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  color: var(--white);
}

.ticket-modal__eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--amber-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ticket-modal h2 {
  padding-right: 2rem;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.ticket-modal__sub {
  margin-top: 0.55rem;
  color: var(--amber-light);
  font-size: 0.92rem;
  font-weight: 500;
}

.ticket-modal__intro {
  margin: 1rem 0 1.5rem;
  color: #c7c7c7;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ticket-modal__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
}

.ticket-modal__close:hover,
.ticket-modal__close:focus-visible { background: rgba(255, 255, 255, 0.16); }

.ticket-field { margin-bottom: 1rem; }

.ticket-field > label,
.ticket-field legend {
  display: block;
  margin-bottom: 0.4rem;
  color: #e2e2e2;
  font-size: 0.9rem;
  font-weight: 700;
}

.ticket-field > label span {
  color: #999;
  font-weight: 400;
}

.ticket-field input[type="text"],
.ticket-field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  outline: none;
  background: var(--dark-2);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
}

.ticket-field input[type="text"]:focus,
.ticket-field input[type="email"]:focus { border-color: var(--amber); }

.ticket-field--radios {
  padding: 0;
  border: 0;
}

.ticket-radio {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--dark-2);
  color: #ddd;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ticket-radio:hover,
.ticket-radio:has(input:checked) {
  border-color: var(--amber);
  background: rgba(201, 147, 58, 0.12);
}

.ticket-radio input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  accent-color: var(--amber);
}

.ticket-modal__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.ticket-modal__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.ticket-modal__feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid #e57373;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(229, 115, 115, 0.12);
  color: #ffb2b2;
  font-size: 0.9rem;
}

.ticket-modal__feedback--error { display: block; }

.ticket-modal__privacy {
  margin-top: 1rem;
  color: #999;
  font-size: 0.78rem;
  line-height: 1.55;
}

.ticket-modal__privacy a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .btn--large { width: 100%; text-align: center; }
  .ticket-modal-overlay { padding: 0.75rem; }
  .ticket-modal { padding: 2rem 1.25rem 1.5rem; }
}
