/* ==========================================================
   DAGGOES – Centrale stylesheet
   Alle styling gebundeld: style.css + mobileB.css + inline blocks
   ========================================================== */

/* =========================
   CSS VARIABELEN
   ========================= */
:root {
  --bg:     #0b0b0b;
  --panel:  #111;
  --text:   #ffffff;
  --muted:  #cfcfcf;
  --orange: #FF931E;
  --green:  #A5C270;
}

/* =========================
   RESET / BASIS
   ========================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Donkere formulierstijl voor dropdowns en invulvelden */
select,
textarea,
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]) {
  color-scheme: dark;
}

select {
  background-color: #141414 !important;
  color: #f0ede6 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

select:focus {
  border-color: rgba(165,194,112,.55) !important;
  box-shadow: 0 0 0 3px rgba(165,194,112,.12), inset 0 1px 0 rgba(255,255,255,.04);
}

select option {
  background: #141414;
  color: #f0ede6;
}

select option:checked,
select option:hover {
  background: #26331f;
  color: #ffffff;
}

.container  { width: 92%; max-width: 1100px; margin: 0 auto; }
.muted      { color: var(--muted); }
.mt-32      { margin-top: 32px; }

/* =========================
   ACHTERGROND
   ========================= */
.bg-gradient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(48rem 48rem at 12% 26%, rgba(255,147,30,.25), transparent 62%),
    radial-gradient(50rem 50rem at 88% 78%, rgba(165,194,112,.28), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.45));
  background-blend-mode: overlay;
  filter: saturate(120%) brightness(.95);
}

#bgfx {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .85;
}

/* =========================
   NAVIGATIE
   ========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 6px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.logo {
  width: 132px;
  height: auto;
  display: block;
  image-rendering: auto;
  transform: translateZ(0);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Open state bars */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links list */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

/* Auth dropdown */
.nav-auth { position: relative; }

.auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ffb65a);
  color: #111 !important;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow:
    0 8px 20px rgba(255,147,30,0.35),
    0 0 16px rgba(255,147,30,0.45),
    inset 0 0 4px rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}

.auth-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06) saturate(1.15);
  box-shadow:
    0 10px 26px rgba(255,147,30,0.55),
    0 0 22px rgba(255,147,30,0.65),
    inset 0 0 4px rgba(255,255,255,0.35);
}

.auth-btn:active {
  transform: translateY(0);
  box-shadow:
    0 0 14px rgba(255,147,30,0.45),
    inset 0 0 2px rgba(255,255,255,0.25);
}

.auth-btn svg { fill: #111; flex-shrink: 0; }

.auth-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  width: 220px;
  padding: 8px;
  display: none;
  z-index: 200;
}

.auth-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #eee;
  text-decoration: none;
  font-size: .95rem;
}

.auth-menu a:hover { background: rgba(255,255,255,0.06); }

.auth-menu .muted { font-size: .9rem; }

/* =========================
   VLAGGEN
   ========================= */
.flag-nl,
.flag-be {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  opacity: .55;
  transform: translateY(0);
  transition: opacity .2s ease, box-shadow .2s ease, transform .2s ease, filter .2s ease;
}

.flag-nl {
  background: linear-gradient(180deg,
    rgba(174,0,0,0.55),
    rgba(255,255,255,0.40),
    rgba(0,56,168,0.55));
}

.flag-be {
  background: linear-gradient(90deg,
    rgba(0,0,0,0.55),
    rgba(255,223,0,0.55),
    rgba(239,51,64,0.55));
}

.flag-active {
  opacity: 1 !important;
  box-shadow: 0 0 18px rgba(255,147,30,0.55);
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* =========================
   HERO
   ========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: min(760px, calc(100vh - 80px));
  margin-top: 26px;
  margin-bottom: 54px;
  padding: clamp(34px, 5vw, 64px);
  gap: clamp(34px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 68%, rgba(255,147,30,.28), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(165,194,112,.13), transparent 28%),
    linear-gradient(135deg, rgba(8,8,10,.96), rgba(18,13,9,.93) 48%, rgba(7,11,8,.96));
  box-shadow: 0 28px 90px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}

.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -115px;
  top: -120px;
  border: 1px solid rgba(255,255,255,.16);
  border-left-color: transparent;
  border-bottom-color: rgba(255,147,30,.18);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.035);
  pointer-events: none;
}

.hero-left  { flex: 0 1 580px; z-index: 2; text-align: left; max-width: 580px; }
.hero-right { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 22px;
  border: 1px solid rgba(165,194,112,.26);
  border-radius: 999px;
  background: rgba(165,194,112,.08);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255,147,30,.8);
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: .96;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.hero-logo-text {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  color: var(--orange);
  line-height: 1.1;
  margin: 4px 0 18px 0;
  text-align: left;
}

.sub {
  color: var(--green);
  font-size: 1.15rem;
  margin-top: 14px;
  margin-bottom: 1rem;
}

.hero-main-sub {
  color: var(--green);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 600px;
}

.hero-main-sub + .sub,
.hero-main-copy + p {
  display: none;
}

.hero-left p:not(.note):not(.sub):not(.hero-main-sub) {
  color: rgba(255,255,255,.76);
  line-height: 1.72;
  max-width: 580px;
}

.hero-image {
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 46% 54% 45% 55% / 38% 42% 58% 62%;
  filter: brightness(.82) contrast(1.12) saturate(1.12);
  opacity: .94;
  box-shadow: 0 0 70px rgba(255,147,30,0.24), 0 34px 90px rgba(0,0,0,.52);
  transition: all .8s ease;
}

.hero-right:hover .hero-image {
  transform: scale(1.03);
  opacity: 1;
  filter: brightness(1) saturate(1.2);
}

.highlight-orange { color: var(--orange); }

.hero-cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 12px;
}

.hero-cta-stack .btn {
  width: 404px;
  max-width: 100%;
  margin-top: 0;
  justify-content: center;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform .12s ease,
    box-shadow .12s ease,
    background .12s ease,
    border-color .12s ease;
  will-change: transform;
  cursor: pointer;
}

.btn:hover  { transform: translateY(-1px); filter: saturate(110%); }

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,147,30,0.25), 0 6px 18px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}

.btn:active { transform: scale(0.97) translateY(0); box-shadow: 0 4px 10px rgba(0,0,0,0.45); }

.btn--sm { padding: 8px 14px; border-radius: 10px; font-weight: 600; }

.btn--orange {
  background: var(--orange);
  color: #0b0b0b;
  box-shadow: 0 8px 22px rgba(255,147,30,0.22);
}

.btn--orange-outline {
  background: rgba(255,147,30,0.08);
  color: var(--orange);
  border-color: rgba(255,147,30,0.42);
  box-shadow: 0 8px 22px rgba(255,147,30,0.12);
}

.btn--orange-outline:hover {
  background: rgba(255,147,30,0.16);
  color: #ffb96b;
  border-color: rgba(255,147,30,0.72);
  box-shadow: 0 0 22px rgba(255,147,30,0.32);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}

.btn--ghost:hover { background: rgba(255,255,255,0.10); }

.btn--green {
  background: var(--green);
  color: #0b0b0b;
  box-shadow: 0 8px 20px rgba(165,194,112,0.22);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn--green:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08) saturate(1.25);
  box-shadow: 0 0 22px 6px rgba(255,147,30,0.45);
  border-color: rgba(255,255,255,0.1);
}

.btn--red {
  background: linear-gradient(135deg, #a875ff, #c7a3ff);
  color: #0b0b0b;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(168,117,255,0.22);
}

.btn--red:hover {
  filter: brightness(1.08) saturate(1.18);
  box-shadow: 0 0 22px 6px rgba(168,117,255,0.45);
  border-color: rgba(255,255,255,0.1);
}

/* Pulse-animatie: oranje */
.btn--attention {
  position: relative;
  isolation: isolate;
  margin-top: 32px;
}

.btn--attention::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(255,147,30,0.55);
  z-index: -1;
  animation: pulseGlow 2.2s ease-in-out infinite;
}

.btn--attention:hover { transform: translateY(-2px) scale(1.03); filter: brightness(1.05) saturate(1.25); }
.btn--attention:hover::before { box-shadow: 0 0 22px 4px rgba(255,147,30,0.5); animation: none; }

/* Pulse-animatie: groen */
.btn--glow-green {
  position: relative;
  isolation: isolate;
  margin-top: 16px;
}

.btn--glow-green::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(165,194,112,0.6);
  z-index: -1;
  animation: pulseGlowGreen 2.2s ease-in-out infinite;
}

.btn--glow-green:hover { transform: translateY(-2px) scale(1.03); filter: brightness(1.05) saturate(1.25); }
.btn--glow-green:hover::before { box-shadow: 0 0 22px 4px rgba(165,194,112,0.75); animation: none; }

/* Lichte pulse-variant voor de betaalknop */
.btn--attention-lite {
  position: relative;
  isolation: isolate;
}
.btn--attention-lite::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  box-shadow: 0 0 0 0 rgba(165,194,112,0.45);
  z-index: -1;
  animation: pulseGlowGreen 2.8s ease-in-out infinite;
}

.btn--ebook-glow {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  margin-top: 0;
}

.btn--ebook-glow::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  z-index: -1;
  animation: pulseGlowPurple 2.2s ease-in-out infinite;
}

.btn--ebook-glow:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05) saturate(1.25);
}

.btn--ebook-glow:hover::before {
  box-shadow: 0 0 22px 4px rgba(255,147,30,0.68);
  animation: none;
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 rgba(255,147,30,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(255,147,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,147,30,0); }
}

@keyframes pulseGlowGreen {
  0%   { box-shadow: 0 0 0 0 rgba(165,194,112,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(165,194,112,0); }
  100% { box-shadow: 0 0 0 0 rgba(165,194,112,0); }
}

@keyframes pulseGlowPurple {
  0%   { box-shadow: 0 0 0 0 rgba(255,147,30,0.52); }
  70%  { box-shadow: 0 0 0 14px rgba(255,147,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,147,30,0); }
}

/* =========================
   SECTIES / COPY
   ========================= */
.section {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.section.alt {
  background: linear-gradient(180deg,
    rgba(255,147,30,0.05),
    rgba(165,194,112,0.05));
}

.section h2,
.section h2.section-title,
h2.section-title {
  color: var(--orange);
  font-size: 1.8rem;
  margin-bottom: .8rem;
  text-shadow: 0 0 12px rgba(255,147,30,0.25);
}

.section p {
  color: var(--muted);
  max-width: 820px;
  margin: .6rem auto;
  font-size: 1rem;
  line-height: 1.7;
}

.section h3.section-title { color: var(--green); }
/* Pakketten titel expliciet groen */
#live-training .section-title,
#live-training h3.section-title { color: var(--green) !important; }

.soon-badge {
  font-size: .9rem;
  color: #fff;
  background: rgba(255,147,30,0.35);
  padding: 2px 8px;
  border-radius: 8px;
}

.lt-checklist {
  list-style: none;
  padding: 0;
  margin: 22px auto;
  max-width: 700px;
  text-align: left;
  color: var(--text);
  line-height: 1.8;
}

.lt-checklist li {
  position: relative;
  padding-left: 28px;
  margin: 6px 0;
}

.lt-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, var(--orange), rgba(255,147,30,0.35));
  box-shadow: 0 0 12px rgba(255,147,30,0.55);
}

.lt-cta {
  color: var(--green);
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* =========================
   PRIJZEN / PAKKETTEN
   ========================= */
.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 32px;
}

.price-card {
  flex: 1 1 300px;
  background: rgba(17,17,17,0.55);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 24px rgba(255,147,30,0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .45s ease-out,
    transform .45s ease-out,
    box-shadow .25s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.price-card:hover { transform: translateY(-4px); box-shadow: 0 0 32px rgba(255,147,30,0.25); }

.price-card.featured {
  border-color: var(--orange);
  background: rgba(255,147,30,0.08);
  box-shadow: 0 0 32px rgba(255,147,30,0.2);
}

.price-card:last-child {
  border: 1px solid var(--green);
  box-shadow: 0 0 20px rgba(165,194,112,0.25);
}

.price-card:last-child:hover { box-shadow: 0 0 30px rgba(165,194,112,0.4); transform: translateY(-3px); }

.price-card h3   { color: var(--orange); font-size: 1.2rem; margin-bottom: 8px; }
.price-card .price { color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.price-card ul   { list-style: none; padding: 0; margin: 0; color: #ccc; }
.price-card li   { margin: 5px 0; }
.price-card .btn { margin-top: auto; align-self: center; }

.pricing-group-title {
  margin: 30px 0 14px;
  font-size: 1.05rem;
  color: var(--green);
  text-align: left;
}

.pricing--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.price-card.price-card--live {
  border-color: rgba(165,194,112,.34);
  background: linear-gradient(135deg, rgba(165,194,112,.10), rgba(255,147,30,.045));
  box-shadow: 0 0 26px rgba(165,194,112,.14);
}

.price-card.price-card--live h3,
.price-card.price-card--live .price { color: var(--green); }

.price-card.price-card--live-follow {
  border-color: rgba(255,147,30,.38);
  background: linear-gradient(135deg, rgba(255,147,30,.10), rgba(165,194,112,.055));
  box-shadow: 0 0 26px rgba(255,147,30,.15);
}

.price-card.price-card--digital {
  border-color: rgba(91,156,246,.34);
  background: linear-gradient(135deg, rgba(91,156,246,.12), rgba(255,255,255,.025));
  box-shadow: 0 0 26px rgba(91,156,246,.12);
}

.price-card.price-card--digital h3,
.price-card.price-card--digital .price { color: #5b9cf6; }

.price-card.price-card--digital-bundle {
  border-color: rgba(255,202,88,.42);
  background: linear-gradient(135deg, rgba(255,202,88,.12), rgba(255,147,30,.055));
  box-shadow: 0 0 26px rgba(255,202,88,.14);
}

.price-card.price-card--digital-bundle h3,
.price-card.price-card--digital-bundle .price { color: #ffc95a; }

.price-card.price-card--bundle-live {
  border-color: rgba(255,147,30,.36);
  background: linear-gradient(135deg, rgba(255,147,30,.11), rgba(165,194,112,.055));
  box-shadow: 0 0 28px rgba(255,147,30,.14);
}

.price-card.price-card--bundle-digital {
  border-color: rgba(91,156,246,.36);
  background: linear-gradient(135deg, rgba(91,156,246,.12), rgba(255,202,88,.065));
  box-shadow: 0 0 28px rgba(91,156,246,.14);
}

.price-card.price-card--bundle-live h3,
.price-card.price-card--bundle-live .price { color: var(--orange); }

.price-card.price-card--bundle-digital h3,
.price-card.price-card--bundle-digital .price { color: #8db8ff; }

.price-card.price-card--single-session {
  border-color: rgba(255,92,92,.40);
  background: linear-gradient(135deg, rgba(255,92,92,.13), rgba(255,147,30,.045));
  box-shadow: 0 0 28px rgba(255,92,92,.14);
}

.price-card.price-card--single-session h3,
.price-card.price-card--single-session .price { color: #ff7474; }

.price-card.price-card--live-follow h3,
.price-card.price-card--live-follow .price { color: var(--orange); }

.price-card--live > .btn,
.price-card--live-follow > .btn,
.price-card--digital > .btn,
.price-card--digital-bundle > .btn {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 14px 34px rgba(0,0,0,.22);
}

.price-card--live > .btn {
  background: linear-gradient(135deg, rgba(255,147,30,.34), rgba(255,147,30,.14));
  border-color: rgba(255,147,30,.50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 42px rgba(255,147,30,.18);
}

.price-card--live-follow > .btn {
  background: linear-gradient(135deg, rgba(165,194,112,.34), rgba(165,194,112,.14));
  border-color: rgba(165,194,112,.50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 42px rgba(165,194,112,.18);
}

.price-card--digital > .btn {
  background: linear-gradient(135deg, rgba(255,202,88,.34), rgba(255,202,88,.14));
  border-color: rgba(255,202,88,.50);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 42px rgba(255,202,88,.16);
}

.price-card--digital-bundle > .btn {
  background: linear-gradient(135deg, rgba(91,156,246,.36), rgba(91,156,246,.14));
  border-color: rgba(91,156,246,.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 42px rgba(91,156,246,.18);
}

.price-card--single-session > .btn {
  background: linear-gradient(135deg, rgba(255,92,92,.34), rgba(255,92,92,.12));
  border-color: rgba(255,92,92,.52);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 42px rgba(255,92,92,.16);
}

.price-card .btn-bundle-filled {
  color: #111;
  border: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.price-card--bundle-live .btn-bundle-filled {
  background: var(--orange);
}

.price-card--bundle-digital .btn-bundle-filled {
  background: var(--green);
}

.price-card--live > .btn:hover,
.price-card--live-follow > .btn:hover,
.price-card--digital > .btn:hover,
.price-card--digital-bundle > .btn:hover {
  filter: saturate(1.08) brightness(1.08);
  transform: translateY(-1px);
}

.price-card.price-card--live .app-tag,
.price-card.price-card--live-follow .app-tag,
.price-card.price-card--digital .app-tag,
.price-card.price-card--digital-bundle .app-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
}

.pricing--bundles {
  margin-top: 0;
}

@media (min-width: 1180px) {
  .pricing--split.pricing--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

/* =========================
   TRAINER-KAART
   ========================= */
.trainer {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,147,30,0.15);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 0 32px rgba(255,147,30,0.12);
  margin-top: 42px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .5s ease-out,
    transform .5s ease-out,
    box-shadow .25s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.trainer::before {
  content: "";
  position: absolute;
  inset: -20% -30% -30% -20%;
  z-index: -1;
  background:
    radial-gradient(50% 60% at 15% 20%, rgba(255,147,30,0.22), transparent 60%),
    radial-gradient(60% 70% at 85% 90%, rgba(255,147,30,0.12), transparent 65%);
  filter: saturate(110%);
}

.trainer-photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
  transition: transform .18s ease-out;
}

.trainer-text h3  { color: var(--green); margin: 0 0 10px; font-size: 1.35rem; }
.trainer-text p   { margin: 0 0 12px; color: #ddd; line-height: 1.7; }
.trainer-text strong { font-weight: 700; }

/* =========================
   CERTIFICAAT-SECTIE
   ========================= */
#certificaat { padding-top: 40px; }

.certificaat-card {
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,147,30,0.15);
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(255,147,30,0.05);
  padding: 26px;
  max-width: 880px;
  margin: 40px auto 0;
}

.certificaat-grid {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 28px;
  align-items: center;
}

.certificaat-text h3 { color: var(--green); margin: 0 0 10px 0; }
.certificaat-text p  { color: var(--muted); margin: 0 0 14px 0; line-height: 1.7; }

.certificaat-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 24px rgba(255,147,30,0.12);
  object-fit: cover;
  transform: scale(1.3);
  transform-origin: center center;
  margin-top: 15px;
  margin-bottom: 8px;
}

/* =========================
   STUDIO-SECTIE
   ========================= */
.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
}

.studio-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
}

/* =========================
   INSCHRIJF-FORMULIER
   ========================= */
.insch-title-center { text-align: center; }

.insch-subtext {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
  text-align: center;
}

.signup-form {
  background: rgba(17,17,17,0.55);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  box-shadow: 0 0 24px rgba(255,147,30,0.12);
  max-width: 880px;
  margin-inline: auto;
}

#inschrijven .signup-form {
  margin-top: 10px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 16px;
}

.grid2 .full { grid-column: 1 / -1; }

.signup-form label  { color: var(--green); font-weight: 600; }

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px;
  margin-top: 6px;
  font-family: inherit;
}

.hint { font-size: .9rem; opacity: .85; }

.form-section {
  margin: 6px 0 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

/* Foutmelding-box */
.form-errors {
  background: rgba(220,50,50,0.15);
  border: 1px solid rgba(220,50,50,0.4);
  border-radius: 10px;
  padding: 12px 16px;
  color: #ff9999;
  margin-bottom: 16px;
  text-align: left;
}

.form-errors ul { margin: 0; padding-left: 16px; }

/* Focus states */
.signup-form .grid2 > div:focus-within label,
.signup-form .full:focus-within label { color: var(--orange); }

.signup-form input:focus-visible,
.signup-form select:focus-visible,
.signup-form textarea:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow:
    0 0 0 1px rgba(255,147,30,0.7),
    0 0 18px rgba(255,147,30,0.32);
}

/* =========================
   ADDONS
   ========================= */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.addon {
  display: block;
  border-radius: 12px;
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  cursor: pointer;
  user-select: none;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    border-color .15s ease,
    background .15s ease;
  padding: 12px 14px;
}

.addon > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-body  { display: grid; gap: 4px; }
.addon-title { font-weight: 700; color: #fff; }
.addon-note  { color: var(--muted); font-size: .95rem; }

.addon:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.addon > input:checked + .addon-body { position: relative; }

.addon > input:checked + .addon-body::after {
  content: "";
  position: absolute;
  inset: -10px -12px;
  border-radius: 14px;
  box-shadow:
    0 0 0 2px rgba(255,147,30,0.45),
    0 0 22px rgba(255,147,30,0.25);
  pointer-events: none;
}

/* =========================
   FORMULIER – GECENTREERD BLOK
   ========================= */
.form-center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(255,147,30,0.08);
  padding: 36px 40px;
  max-width: 640px;
  margin: 60px auto 40px;
}

.form-center-inner { width: 100%; }
.form-item-wide    { width: 100%; }

.form-center-block select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 24px;
  font-family: inherit;
}

.form-center-block .addons-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.form-center-block .addon {
  width: 260px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  padding: 14px 16px;
}

.form-center-block .addon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,147,30,0.25);
}

.form-actions { text-align: center; margin-top: 28px; }

.btn--pay {
  width: 100%;
  max-width: 360px;
  font-size: 1.05rem;
  padding: 14px 0;
  margin: 0 auto;
  display: block;
}

/* =========================
   LAND SELECTOR (NL / BE)
   ========================= */
.land-wrapper {
  text-align: center;
  margin: 20px auto 28px;
}

.land-label {
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.seg {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.seg-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0,0,0,0.85);
  transition: transform 0.2s ease, width 0.2s ease, background 0.2s ease;
  z-index: 0;
}

.seg-slider--nl { background: linear-gradient(135deg, var(--orange), #ffb65a); }
.seg-slider--be { background: linear-gradient(135deg, var(--green), #c4dd8c); }

.seg input[type="radio"] { display: none !important; }

.seg label {
  position: relative;
  z-index: 1;
  padding: 7px 22px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.seg label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.7);
  transition: all 0.2s ease;
}

#land-nl:checked + label { background: rgba(255,147,30,0.85); color: #111; box-shadow: 0 0 26px rgba(255,147,30,0.4); }
#land-nl:checked + label::before { background: #111; box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px rgba(0,0,0,0.6); }

#land-be:checked + label { background: rgba(165,194,112,0.85); color: #111; box-shadow: 0 0 26px rgba(165,194,112,0.45); }
#land-be:checked + label::before { background: #111; box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px rgba(0,0,0,0.6); }

.seg label:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* Vlaggetjes in de toggle */
.seg .flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  margin-right: 6px;
  display: inline-block;
  box-shadow: 0 0 6px rgba(0,0,0,0.35);
  opacity: .55;
  transition: opacity .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* =========================
   BETAALMETHODEN
   ========================= */
.payment-methods {
  margin-top: 18px;
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
}

.payment-methods span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.payment-icons .pm {
  height: 26px;
  width: auto;
  display: block;
  filter: drop-shadow(0 5px 16px rgba(0,0,0,0.9));
  opacity: .92;
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}

.payment-icons .pm:hover {
  opacity: 1;
  transform: scale(1.06);
  filter: brightness(1.05) drop-shadow(0 0 6px rgba(255,147,30,0.35));
}

.payment-methods .muted { margin-top: 2px; }

@keyframes pmPop {
  0%   { transform: scale(0.9); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.payment-icons .pm-pop { animation: pmPop 0.5s ease-out; }

/* =========================
   DAGGOES APP SECTIE
   ========================= */
.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.app-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 0 10px;
}

.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.app-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.95rem;
}

.app-bullets li { display: flex; align-items: flex-start; gap: 8px; }
.app-bullets span { flex-shrink: 0; font-size: 1.1rem; }

.app-phones {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
  pointer-events: none;
  margin-left: 80px;
}

.phone-mock { display: flex; flex-direction: column; align-items: center; gap: 6px; transform-origin: center bottom; }
.phone-mock--left   { transform: translateY(18px) rotate(-10deg) scale(.94); opacity: .85; }
.phone-mock--middle { transform: translateY(0) scale(1); z-index: 2; }
.phone-mock--right  { transform: translateY(18px) rotate(9deg) scale(.94); opacity: .85; }

.phone-frame {
  position: relative;
  width: 170px;
  height: 340px;
  border-radius: 32px;
  padding: 10px;
  background: radial-gradient(circle at 0% 0%, rgba(255,147,30,0.6), rgba(0,0,0,0.95));
  box-shadow: 0 22px 40px rgba(0,0,0,0.85), 0 0 18px rgba(0,0,0,0.8);
  overflow: hidden;
}

.phone-frame--highlight { box-shadow: 0 26px 46px rgba(0,0,0,0.95), 0 0 30px rgba(255,147,30,0.55); }

.phone-screen { width: 100%; height: 100%; border-radius: 22px; object-fit: cover; display: block; }

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.8);
}

.phone-label         { font-size: 0.8rem; color: var(--muted); text-align: center; }
.phone-label--highlight { color: var(--green); font-weight: 600; }

/* =========================
   PRE-ORDER BLOK – APP
   ========================= */
.app-preorder { margin-top: 40px; }

.app-preorder-card {
  background: rgba(17,17,17,0.75);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 0 32px rgba(0,0,0,0.85);
  padding: 20px 20px 22px;
}

.app-preorder-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.app-preorder-copy { max-width: 720px; margin: 0 auto; }
.app-preorder-copy h3 { margin: 4px 0 6px; font-size: 1.25rem; color: var(--orange); text-shadow: 0 0 16px rgba(255,147,30,0.4); }
.app-preorder-copy p  { margin: 0 0 10px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.app-preorder-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 4px;
  font-size: 0.92rem;
  color: var(--text);
}

.app-preorder-cta {
  width: 100%;
  margin-top: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.app-price { text-align: center; }
.app-price-main { display: block; font-size: 1.6rem; font-weight: 700; color: #fff; }
.app-price-sub  { display: block; font-size: 0.85rem; color: var(--muted); }

.app-preorder-btn { min-width: 230px; justify-content: center; }

.app-timing { font-size: 0.85rem; color: var(--muted); }
.app-dot    { display: inline-block; margin: 0 4px; }

.app-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,147,30,0.18);
  border: 1px solid rgba(255,147,30,0.5);
  color: #ffd9b3;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.preorder-info {
  margin-top: 24px;
  padding: 22px 26px 26px;
  background: rgba(17,17,17,0.65);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 26px rgba(0,0,0,0.55);
}

.preorder-info h4 { margin: 0 0 12px; font-size: 1.15rem; font-weight: 700; color: var(--text); text-align: center; }

.preorder-info-list {
  margin: 0;
  padding-left: 26px;
  list-style: disc;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.preorder-info-list li::marker { color: var(--green); font-size: 1.3rem; }

/* =========================
   INVESTOR-SECTIE
   ========================= */
.funding-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-top: 18px;
}

/* =========================
   FAQ
   ========================= */
.faq {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,255,255,0.10);
}

.faq h4 { margin: 0 0 10px; color: var(--green); }

.faq details {
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px;
  margin: 10px 0;
}

.faq summary { cursor: pointer; font-weight: 700; color: #fff; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 10px 0 0; color: #ddd; line-height: 1.6; }

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--panel);
  padding: 22px 0;
  color: #9a9a9a;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-right a,
.footer-left a  { color: rgba(255,255,255,0.85); text-decoration: none; }

.footer-right a:hover,
.footer-left a:hover { color: #fff; text-decoration: underline; }

.footer-sep  { margin: 0 8px; opacity: .6; }
.footer-meta { opacity: .8; font-size: .92rem; }

/* =========================
   COOKIE BANNER
   ========================= */
.cookie-banner {
  display: none; /* shown by JS when no consent */
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  border-radius: 18px;
  background: rgba(17,17,17,0.97);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  padding: 18px 22px;
  backdrop-filter: blur(16px);
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cookie-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 40px);
  }
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-text p { margin: 6px 0 0; color: rgba(255,255,255,0.8); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.cookie-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.cookie-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin: 10px 0;
}

.cookie-row input { transform: scale(1.1); }
.cookie-panel-actions { display: flex; justify-content: flex-end; margin-top: 10px; }

/* =========================
   REVEAL ANIMATIE
   ========================= */
.reveal-in-view { opacity: 1; transform: translateY(0); }

/* =========================
   AUTH PAGINA'S (login / forgot / set-password)
   ========================= */
.auth-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 60px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(17,17,17,0.82);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,0,0,0.85), 0 0 28px rgba(255,147,30,0.18);
  padding: 28px 26px 30px;
  backdrop-filter: blur(14px);
}

.auth-card h1 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  color: var(--orange);
  text-shadow: 0 0 16px rgba(255,147,30,0.4);
  text-align: center;
}

.auth-card p.auth-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 22px;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-form label { color: var(--green); font-weight: 600; font-size: 0.92rem; }

.auth-form input {
  width: 100%;
  margin-top: 6px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.auth-form input:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255,147,30,0.7), 0 0 18px rgba(255,147,30,0.28);
}

.auth-form button[type="submit"] { margin-top: 4px; width: 100%; }

.auth-links {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.auth-links a { color: var(--green); text-decoration: none; }
.auth-links a:hover { text-decoration: underline; }

.auth-notice {
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(255,147,30,0.08);
  border: 1px solid rgba(255,147,30,0.22);
  border-radius: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.5;
}

.auth-feedback {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}

.auth-feedback--ok  { background: rgba(165,194,112,0.15); border: 1px solid rgba(165,194,112,0.4); color: #b8e08a; }
.auth-feedback--err { background: rgba(220,50,50,0.15);   border: 1px solid rgba(220,50,50,0.4);   color: #ff9999; }

/* =========================
   DASHBOARD
   ========================= */
.dash-header {
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--orange);
  font-size: 1.1rem;
}

.brand .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(165,194,112,0.6);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  margin-top: 22px;
}

.dash-card {
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(255,147,30,0.12);
  padding: 18px;
}

.dash-card h3 { color: var(--green); margin: 0 0 10px; font-size: 1.15rem; }
.dash-muted   { color: #9aa; font-size: .95rem; }

.agenda-embed {
  width: 100%;
  height: 520px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* =========================
   CHECKOUT PAGINA'S
   ========================= */
.checkout-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.checkout-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 60px;
}

.checkout-card {
  width: 100%;
  max-width: 780px;
  background: rgba(17,17,17,0.8);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 32px rgba(0,0,0,0.9), 0 0 36px rgba(255,147,30,0.18);
  padding: 24px 24px 26px;
  backdrop-filter: blur(14px);
  margin: 0 auto;
}

.checkout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.checkout-header { margin-bottom: 18px; text-align: left; }

.checkout-header h1 {
  margin: 8px 0 6px;
  font-size: 1.6rem;
  color: var(--orange);
  text-shadow: 0 0 16px rgba(255,147,30,0.4);
}

.checkout-header p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.checkout-summary { margin-top: 22px; text-align: center; }

.checkout-summary h2 { margin: 0 0 10px; font-size: 1.15rem; color: #fff; }
.checkout-summary ul { list-style: none; padding: 0; margin: 12px 0 14px; color: #ddd; }

/* =========================
   FEEDBACK PAGINA'S (success / cancel)
   ========================= */
.feedback-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.feedback-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 60px;
}

.feedback-card {
  width: 100%;
  max-width: 520px;
  background: rgba(17,17,17,0.8);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 32px rgba(0,0,0,0.85);
  padding: 24px 22px 26px;
  text-align: center;
  backdrop-filter: blur(14px);
}

.feedback-card h1 { font-size: 1.65rem; margin: 6px 0 8px; }
.feedback-emoji   { font-size: 2.2rem; }
.feedback-card p  { margin: 6px 0; font-size: 0.95rem; color: var(--muted); }

.feedback-highlight { font-weight: 600; color: #fff; }

.feedback-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feedback-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Success: groene glow */
.feedback-card--green {
  box-shadow: 0 0 32px rgba(0,0,0,0.85), 0 0 32px rgba(165,194,112,0.35);
}

.feedback-card--green h1 { color: var(--green); text-shadow: 0 0 18px rgba(165,194,112,0.6); }

/* Cancel: oranje */
.feedback-card--orange h1 { color: var(--orange); text-shadow: 0 0 14px rgba(255,147,30,0.55); }

/* Succes box (training checkout) */
.success-box {
  max-width: 520px;
  margin: 80px auto 0;
  background: rgba(17,17,17,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  box-shadow: 0 0 32px rgba(0,0,0,0.45);
  padding: 34px 32px 42px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(165,194,112,0.15);
  border: 1px solid rgba(165,194,112,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 22px rgba(165,194,112,0.25);
}

.success-icon svg { width: 40px; height: 40px; fill: var(--green); }

/* =========================
   RESPONSIVE – TABLET (max 980px)
   ========================= */
@media (max-width: 980px) {
  /* Hamburger tonen */
  .nav-toggle { display: flex; }

  /* Nav links — animatie bij openen */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: -5%;
    right: -5%;
    background: rgba(11,11,11,0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 10;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .25s cubic-bezier(.16,1,.3,1), opacity .2s ease;
    pointer-events: none;
  }

  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: navSlideIn .25s cubic-bezier(.16,1,.3,1) forwards;
  }
  @keyframes navSlideIn {
    from { transform: translateY(-8px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a,
  .nav-links > li > button {
    display: block;
    width: 100%;
    padding: 12px 24px;
    text-align: left;
  }

  /* Auth dropdown in mobile menu */
  .nav-auth .auth-menu {
    position: static;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.4);
    padding: 6px 16px 10px;
  }

  /* Hero */
  .hero { flex-direction: column; text-align: center; padding: 46px 22px; min-height: auto; }
  .hero-left { text-align: center; max-width: 100%; }
  .hero-kicker { margin-left: auto; margin-right: auto; }
  .hero-image { max-width: 340px; border-radius: 44% 56% 48% 52% / 42% 42% 58% 58%; }
  .hero-cta-stack { align-items: center; width: 100%; }

  /* Grids */
  .trainer                 { grid-template-columns: 1fr; }
  .trainer-photo {
    width: min(58vw, 230px);
    margin: 0 auto 4px;
  }
  .trainer-photo img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 22%;
  }
  .certificaat-grid        { grid-template-columns: 1fr; text-align: center; }
  .certificaat-card        { padding: 20px; }
  .certificaat-image       { order: -1; }
  .certificaat-image img   { transform: scale(1.1); }
  .app-grid                { grid-template-columns: 1fr; }
  .app-phones              { margin-top: 20px; margin-left: 0; }
  .studio-grid             { grid-template-columns: 1fr !important; gap: 14px !important; }
  .funding-grid            { grid-template-columns: 1fr !important; gap: 14px !important; }
  .dash-grid               { grid-template-columns: 1fr; }

  /* Reveal: altijd zichtbaar op mobiel */
  .price-card,
  .trainer { opacity: 1 !important; transform: none !important; }

  /* Investor */
  #invest .funding-grid { grid-template-columns: 1fr !important; }
  #invest .card         { width: 100% !important; max-width: 100% !important; }

  /* Payment icons */
  .payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .payment-icons .pm {
    width: 44px !important;
    height: auto !important;
    max-height: 22px !important;
    object-fit: contain;
  }
}

/* =========================
   RESPONSIVE – MOBIEL (max 860px)
   ========================= */
@media (max-width: 860px) {
  html, body { overflow-x: hidden !important; }

  /* Hero: tekst voorop, oude rustige image als achtergrond */
  .hero { flex-direction: column !important; border-radius: 22px; margin-top: 12px; padding: 34px 18px 26px; }
  .hero-left { order: 1 !important; position: relative; overflow: visible; background: rgba(0,0,0,0.58); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 18px 16px; }
  .hero-left::before {
    content: "";
    position: absolute;
    inset: -18px -16px;
    background-image: url("../assets/bg-sheltie.jpg");
    background-size: cover;
    background-position: center;
    opacity: .11;
    filter: blur(0px) saturate(1.05);
    border-radius: 18px;
    pointer-events: none;
    z-index: -1;
  }
  .hero-right { display: none !important; }
  .hero h1 { font-size: clamp(2.35rem, 14vw, 4.2rem); color: #fff; text-shadow: 0 3px 22px rgba(0,0,0,.62); }
  .hero-main-sub { margin-left: auto; margin-right: auto; }
  .hero-left p:not(.note):not(.sub):not(.hero-main-sub) { font-size: .95rem; line-height: 1.62; }

  .hero-cta-stack .btn {
    width: min(404px, 100%);
  }

  img:not(.pm) { max-width: 100% !important; height: auto !important; }
  video        { max-width: 100% !important; height: auto !important; }

  .payment-icons { gap: 12px !important; }
  .payment-icons .pm { height: 22px !important; width: auto !important; max-width: 74px !important; }

  /* Land toggle */
  .seg { width: 100% !important; max-width: 420px; justify-content: space-between; }
  .seg label { flex: 1 1 0; justify-content: center; padding: 8px 10px !important; font-size: .95rem !important; }
  .seg .flag  { width: 20px !important; height: 14px !important; margin-right: 6px !important; }
}

/* =========================
   RESPONSIVE – KLEIN (max 640px)
   ========================= */
@media (max-width: 640px) {
  .addons-grid            { grid-template-columns: 1fr; }
  .addon                  { padding: 14px 16px; }
  .btn--pay               { width: 100%; max-width: none; }
  .form-center-block      { padding: 24px; margin: 40px auto 30px; }
  .form-center-block .addon { width: 100%; }
  #app.section            { overflow: visible; padding-bottom: 56px; }
  #app .app-grid          { gap: 22px; align-items: start; }
  #app .app-copy          { min-width: 0; }
  #app .app-copy p,
  #app .app-bullets       { font-size: .9rem; line-height: 1.65; }
  #app .app-phones        { width: 100%; margin: 22px auto 0; gap: 0; overflow: visible; }
  #app .phone-mock--left,
  #app .phone-mock--right { display: none; }
  #app .phone-mock--middle{ transform: none; width: min(230px, 74vw); margin: 0 auto; }
  #app .phone-frame       { width: 100%; height: auto; aspect-ratio: 1 / 2; max-height: 420px; }
  #app .app-waitlist-wrap { margin-top: 28px; padding: 22px 16px; width: 100%; }
  #app .waitlist-form     { flex-direction: column; align-items: stretch; }
  #app .waitlist-form input,
  #app .waitlist-form .btn{ width: 100%; min-width: 0; }
  .app-preorder-card      { padding: 18px 14px 16px; }
  .seg label              { padding: 6px 16px; font-size: .92rem; }
  .cookie-banner          { left: 10px; right: 10px; bottom: 10px; padding: 12px; border-radius: 14px; max-height: 42vh; overflow-y: auto; }
  .cookie-inner           { gap: 10px; align-items: flex-start; }
  .cookie-text p          { font-size: .84rem; line-height: 1.45; }
  .cookie-actions         { width: 100%; gap: 8px; }
  .cookie-actions .btn    { flex: 1 1 130px; min-height: 38px; padding: 8px 10px; font-size: .78rem; }
  .cookie-panel           { margin-top: 10px; padding-top: 10px; }
  .cookie-row             { padding: 8px; margin: 8px 0; }

  /* Footer */
  .footer                 { padding: 18px 0 !important; }
  .footer .container      { display: flex; flex-direction: column; gap: 10px; text-align: center; }
  .footer a               { display: inline-block; margin: 0 10px; }
}

@media (max-width: 520px) {
  .payment-icons    { gap: 16px; }
  .payment-icons .pm { height: 22px; }
}

/* =========================
   WIST JE DAT SECTIE
   ========================= */
.wjd-header {
  text-align: center;
  margin-bottom: 42px;
}

.wjd-eyebrow {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 10px;
  line-height: 1;
}

.wjd-header .section-title {
  margin-bottom: 12px;
}

/* Tweekolommenrij: afbeelding + featured */
.wjd-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

.wjd-image-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,147,30,0.20);
  box-shadow:
    0 0 40px rgba(255,147,30,0.12),
    0 12px 30px rgba(0,0,0,0.4);
  position: sticky;
  top: 90px;
}

.wjd-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.wjd-image-caption {
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Featured fact cards */
.wjd-featured {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wjd-feat-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(17,17,17,0.65);
  border: 1px solid rgba(255,147,30,0.18);
  box-shadow: 0 0 20px rgba(255,147,30,0.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.wjd-feat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,147,30,0.38);
  box-shadow: 0 6px 28px rgba(255,147,30,0.16);
}

.wjd-paw {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,147,30,0.10);
  border: 1px solid rgba(255,147,30,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
}

.wjd-feat-text {
  color: #ddd;
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

.wjd-feat-text strong {
  color: var(--orange);
  font-weight: 600;
}

.wjd-feat-text em {
  font-style: normal;
  color: var(--green);
}

/* Grid: overige feiten */
.wjd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.wjd-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(17,17,17,0.55);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 0.87rem;
  color: #c8c8c8;
  line-height: 1.6;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.wjd-card:hover {
  transform: translateY(-2px);
  border-color: rgba(165,194,112,0.28);
  box-shadow: 0 6px 20px rgba(165,194,112,0.10);
}

.wjd-card p { margin: 0; }

.wjd-card p strong {
  color: var(--orange);
  font-weight: 600;
}

.wjd-card p strong + * { color: #ddd; }

.wjd-num {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.7;
  letter-spacing: .04em;
  min-width: 20px;
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 860px) {
  .wjd-layout {
    grid-template-columns: 1fr;
  }
  .wjd-image-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
}

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