/* ============================================
   BOLLE JOS III — Blokken Jos
   Dark Criminal Theme Stylesheet
   ============================================ */

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

:root {
  /* Colors */
  --bg-darkest: #0a0a0b;
  --bg-dark: #121214;
  --bg-card: #1a1a1e;
  --bg-card-hover: #222228;
  --bg-light: #f5f3ef;
  --bg-light-alt: #ece8e0;
  --text-light: #f0ede8;
  --text-muted: #8a8a92;
  --text-dark: #1a1a1e;
  --text-dark-muted: #555;
  --accent-red: #c1121f;
  --accent-red-dark: #8a0a14;
  --accent-gold: #d4a017;
  --accent-gold-light: #e8b923;
  --accent-blue: #3a5a8a;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-display: "Oswald", sans-serif;
  --font-type: "Special Elite", monospace;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --section-pad: 6rem 0;
  --container-max: 1200px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition:
    background var(--t-med),
    border-color var(--t-med);
}

#navbar.scrolled {
  background: rgba(10, 10, 11, 0.97);
  border-bottom-color: rgba(230, 57, 70, 0.3);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-light);
}

.logo-bracket {
  color: var(--accent-red);
  font-weight: 300;
}

.logo-text em {
  color: var(--accent-red);
  font-style: normal;
  font-size: 0.85em;
  vertical-align: super;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-chapters-label {
  font-family: var(--font-type);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color var(--t-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width var(--t-med);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-red);
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 4px;
  font-weight: 600;
  transition:
    background var(--t-fast),
    transform var(--t-fast);
}

.nav-cta:hover {
  background: var(--accent-red-dark);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: all var(--t-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(230, 57, 70, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(212, 160, 23, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a0a0b 0%, #121214 50%, #0a0a0b 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.0195) 2px,
    rgba(255, 255, 255, 0.0195) 4px
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 8px rgba(230, 57, 70, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.title-line {
  display: block;
  position: relative;
  z-index: 2;
}

.title-line-1 {
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-iii {
  display: inline-block;
  margin-left: 0.04em;
  -webkit-text-fill-color: var(--accent-red);
  color: var(--accent-red);
  opacity: 0;
  transform: scale(10);
  animation: iiiFadeIn 6s ease forwards;
  animation-delay: 1s;
}

@keyframes iiiFadeIn {
  0% {
    opacity: 0;
    transform: scale(10);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.title-iii-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 7rem);
  background: linear-gradient(180deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}

.title-divider {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-red);
  margin: 1rem auto;
}

.title-line-2 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.title-line-3 {
  font-size: clamp(1rem, 3.5vw, 1.75rem);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-type);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: subtitleFadeIn 5s ease forwards;
  animation-delay: 7s;
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--t-med);
  border: none;
}

.btn-primary {
  background: var(--accent-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.btn-primary svg {
  transition: transform var(--t-fast);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--section-pad);
  position: relative;
}

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

.section-intro {
  background: var(--bg-darkest);
}

.section-cta {
  background:
    radial-gradient(
      ellipse at center,
      rgba(230, 57, 70, 0.08) 0%,
      transparent 60%
    ),
    var(--bg-darkest);
  text-align: center;
}

/* ---------- SECTION LABEL ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.label-line {
  width: 40px;
  height: 2px;
  background: var(--accent-red);
}

.label-text {
  font-family: var(--font-type);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent-red);
  text-transform: uppercase;
}

.section-label-light .label-text {
  color: var(--accent-gold);
}

.section-label-light .label-line {
  background: var(--accent-gold);
}

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

/* ---------- INTRO GRID ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.intro-grid-reverse .intro-image {
  order: -1;
}

.intro-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.intro-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.intro-text strong {
  color: var(--text-light);
}

/* ---------- INTRO LIST ---------- */
.intro-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intro-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-type);
  font-size: 0.95rem;
  color: var(--text-light);
}

.check {
  color: var(--accent-red);
  font-weight: 700;
}

/* ---------- PULL QUOTE ---------- */
.pull-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--accent-red);
  background: rgba(230, 57, 70, 0.05);
}

.pull-quote p {
  font-family: var(--font-type);
  font-size: 1.3rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.pull-quote cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

.pull-quote-dark {
  border-left-color: var(--accent-gold);
  background: rgba(212, 160, 23, 0.05);
}

/* ---------- FIGURE CARD ---------- */
.figure-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  transition:
    transform var(--t-med),
    border-color var(--t-med);
}

.figure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.3);
}

.figure-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.figure-card:hover img {
  transform: scale(1.03);
}

.figure-card figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border-dark);
}

.figure-wide {
  max-width: 900px;
  margin: 2rem auto 0;
}

/* ---------- CHAPTER GRID ---------- */
.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.chapter-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.chapter-text .lead {
  font-size: 1.15rem;
  color: var(--text-light);
}

/* ---------- BLOCK LIST ---------- */
.block-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.block-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all var(--t-fast);
}

.block-list li:hover {
  background: var(--bg-card-hover);
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateX(4px);
}

.block-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.block-list-highlight {
  border-color: rgba(230, 57, 70, 0.4) !important;
  background: rgba(230, 57, 70, 0.08) !important;
}

.block-list-highlight strong {
  color: var(--accent-red);
}

.chapter-image-wrap {
  margin-top: 3rem;
}

.chapter-conclusion {
  margin-top: 2rem;
  font-family: var(--font-type);
  font-size: 1.1rem;
  color: var(--accent-gold);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- DOUBT LIST ---------- */
.doubt-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.doubt-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.doubt-cross {
  color: var(--text-muted);
  font-weight: 700;
  flex-shrink: 0;
}

.doubt-item-highlight {
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(230, 57, 70, 0.08);
  color: var(--text-light);
}

.doubt-check {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ---------- STEPS LIST ---------- */
.steps-list {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: step;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-left: 3px solid transparent;
  border-radius: 6px;
  transition: all var(--t-med);
  opacity: 0;
  transform: translateX(-20px);
}

.step-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.step-item:hover {
  border-left-color: var(--accent-red);
  background: var(--bg-card-hover);
  transform: translateX(8px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-red);
  min-width: 3rem;
}

.step-text {
  font-size: 1rem;
  color: var(--text-light);
}

.step-item-final {
  border-left-color: var(--accent-gold) !important;
  background: rgba(212, 160, 23, 0.08) !important;
}

.step-item-final .step-number {
  color: var(--accent-gold);
}

.step-item-red {
  border-left-color: var(--accent-red) !important;
  background: rgba(193, 18, 31, 0.08) !important;
}

.step-item-red .step-number {
  color: var(--accent-red);
}

.step-item-red .step-text {
  color: #fff;
}

/* ---------- BIG QUESTION ---------- */
.big-question {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.08),
    rgba(212, 160, 23, 0.05)
  );
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  text-align: center;
}

.big-question-label {
  font-family: var(--font-type);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.big-question-old {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 1.5rem;
}

.big-question-new {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--accent-red);
  line-height: 1.3;
  text-transform: uppercase;
}

/* ---------- PRIORITY CARDS ---------- */
.priority-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.priority-card {
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform var(--t-med);
}

.priority-card:hover {
  transform: translateY(-4px);
}

.priority-card-criminal {
  background: var(--bg-card);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.priority-card-citizen {
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.priority-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.priority-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.priority-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- CONTRAST BOX ---------- */
.contrast-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  margin-top: 2rem;
}

.contrast-item {
  text-align: center;
}

.contrast-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contrast-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.contrast-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

.contrast-note-blink {
  color: #fff;
  font-style: normal;
  animation: contrastBlink 0.8s ease 3;
  animation-delay: 1s;
}

@keyframes contrastBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.contrast-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
}

/* ---------- OEFENSET ---------- */
.oefenset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.oefenset-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.oefenset-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all var(--t-fast);
}

.oefenset-check {
  color: #2ecc71;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.oefenset-sub {
  margin-top: 0.4rem;
  margin-left: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.oefenset-list li:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.lego-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.lego-dot-white {
  background: #e8e8e8;
}
.lego-dot-red {
  background: var(--accent-red);
}
.lego-dot-yellow {
  background: #f1c40f;
}
.lego-dot-gold {
  background: var(--accent-gold);
  box-shadow: 0 0 8px rgba(212, 160, 23, 0.4);
}
.lego-dot-green {
  background: #2ecc71;
}
.lego-dot-blue {
  background: var(--accent-blue);
}

.oefenset-banner {
  margin-top: 4rem;
  border-radius: 8px;
  width: 100%;
  max-width: 1521px;
  margin-left: auto;
  margin-right: auto;
}

.oefenset-banner img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* ---------- BLOKJE CENTERED ---------- */

.label-text-red {
  color: var(--accent-red) !important;
}
.section-label-center {
  justify-content: center;
}

.section-title-center {
  text-align: center;
}

.blokje-centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.blokje-text {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.block-list-centered {
  max-width: 500px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.block-list-cross .block-cross {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- OEFENSET DETAILS ---------- */
.oefenset-details {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.oefenset-detail-item {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--accent-red);
  border-radius: 6px;
}

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

.oefenset-detail-item strong {
  color: var(--text-light);
}

/* ---------- OM-POP ---------- */
.om-pop-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-dark);
}

.om-pop-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.om-pop-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.om-pop-faces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.om-pop-face {
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-med);
}

.om-pop-face:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-red);
  transform: translateY(-4px) scale(1.03);
}

.face-emoji {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  transition: transform var(--t-fast);
}

.om-pop-face:hover .face-emoji {
  transform: scale(1.2) rotate(5deg);
}

.face-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.om-pop-quote {
  text-align: center;
  padding: 1.5rem;
  background: rgba(230, 57, 70, 0.05);
  border-radius: 8px;
}

.om-pop-quote p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.om-pop-quote blockquote {
  font-family: var(--font-type);
  font-size: 1.1rem;
  color: var(--accent-red);
  font-style: italic;
}

/* ---------- MILJARD ---------- */
.miljard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.miljard-text .lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.miljard-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.miljard-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.miljard-list li {
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all var(--t-fast);
}

.miljard-list li:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.miljard-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  text-align: center;
}

.stat-card-secondary {
  border-color: rgba(212, 160, 23, 0.2);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card-secondary .stat-value {
  color: var(--accent-gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.miljard-image-wrap {
  margin: 3rem 0;
}

.miljard-conclusion {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
}

.miljard-conclusion p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.miljard-punch {
  font-family: var(--font-body);
  font-size: 1.2rem !important;
  color: #fff !important;
  font-style: normal;
  font-weight: 600;
}

/* ---------- CTA SECTION ---------- */
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-scenes {
  text-align: left;
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
}

.cta-scenes h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.scenes-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scenes-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.scene-bullet {
  color: var(--accent-red);
  font-weight: 700;
}

.cta-slogan {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.1),
    rgba(212, 160, 23, 0.05)
  );
  border-radius: 12px;
}

.slogan-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.4;
}

.slogan-line-gradient {
  background: linear-gradient(180deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-bolle-jos-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 0%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2.5rem 0 1.5rem;
  text-align: center;
}

.cta-full-image {
  margin: 2.5rem auto;
  max-width: 100%;
}

.cta-full-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.cta-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-badge {
  padding: 0.6rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cta-badge-netflix {
  border-color: var(--border-dark);
  color: var(--text-muted);
  font-family: var(--font-type);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cta-netflix-text {
  font-family: var(--font-type);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.cta-producer-text {
  font-family: var(--font-type);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.cta-email-text {
  font-family: var(--font-type);
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ---------- BOTTOM EMAIL ---------- */
.bottom-email {
  text-align: center;
  padding: 2rem 0;
  background: var(--bg-darkest);
}

.bottom-email-link {
  font-family: var(--font-type);
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--t-fast);
}

.bottom-email-link:hover {
  color: var(--accent-red);
}

.cta-image {
  margin-top: 2rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--accent-red);
}

.footer-producer {
  text-align: right;
}

.footer-producer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-producer a {
  color: var(--accent-gold);
  font-weight: 600;
}

.footer-producer a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--accent-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--t-med);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--accent-red-dark);
  transform: translateY(-4px);
}

/* ---------- OM-POP MODAL ---------- */
.om-pop-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-med);
}

.om-pop-modal.active {
  opacity: 1;
  visibility: visible;
}

.om-pop-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.om-pop-modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 450px;
  margin: 1rem;
  transform: scale(0.9);
  transition: transform var(--t-med);
}

.om-pop-modal.active .om-pop-modal-content {
  transform: scale(1);
}

.om-pop-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--t-fast);
}

.om-pop-modal-close:hover {
  color: var(--accent-red);
}

.om-pop-modal-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.om-pop-modal-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.om-pop-modal-quote {
  font-family: var(--font-type);
  font-size: 1.1rem;
  color: var(--accent-red);
  font-style: italic;
  padding: 1rem;
  background: rgba(230, 57, 70, 0.05);
  border-radius: 8px;
}

/* ---------- FULL-WIDTH TEXT (no image) ---------- */
.intro-text-full {
  max-width: 800px;
  margin: 0 auto;
}

.oefenset-content-full {
  max-width: 700px;
  margin: 0 auto;
}

.oefenset-title-center {
  text-align: center;
}

.oefenset-title-main {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
}

.oefenset-title-sub {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
}

.oefenset-divider {
  width: 80px;
  height: 3px;
  background: var(--accent-red);
  margin: 1.5rem auto 2rem;
  border-radius: 2px;
}

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

.oefenset-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oefenset-centered .oefenset-list {
  width: 100%;
  max-width: 500px;
}

.oefenset-centered .oefenset-banner {
  width: 100%;
  max-width: 1521px;
  margin-top: 4rem;
}

/* ---------- HERO FEATURE IMAGE ---------- */
.hero-feature-image {
  max-width: 700px;
  margin: 2.5rem auto 0;
  border: 3px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero-feature-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* ---------- EXPORTLAND ---------- */
.exportland-content {
  max-width: 800px;
  margin: 0 auto;
}

.exportland-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.exportland-content .lead strong {
  color: var(--accent-red);
}

.exportland-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.exportland-content strong {
  color: var(--text-light);
}

.pull-quote-export {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--accent-gold);
  background: rgba(212, 160, 23, 0.05);
}

.pull-quote-export p {
  font-family: var(--font-type);
  font-size: 1.25rem;
  color: var(--accent-gold);
  font-style: italic;
  margin-bottom: 0;
}

.export-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.export-list li {
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all var(--t-fast);
}

.export-list li:hover {
  background: var(--bg-card-hover);
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateX(4px);
}

.export-list-highlight {
  border-color: rgba(230, 57, 70, 0.4) !important;
  background: rgba(230, 57, 70, 0.08) !important;
  color: var(--text-light) !important;
}

.export-punch {
  font-family: var(--font-display);
  font-size: 1.5rem !important;
  text-transform: uppercase;
  color: var(--text-light) !important;
}

.export-punch-highlight {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: none;
}

.export-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.1),
    rgba(212, 160, 23, 0.05)
  );
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  text-align: center;
}

.export-cta-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.export-cta-subtitle {
  font-family: var(--font-type);
  font-size: 1.15rem;
  color: var(--accent-gold);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.export-cta-includes {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.export-cta-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  background: rgba(230, 57, 70, 0.08);
  border-radius: 8px;
}

/* ---------- ROUTE INDICATOR ---------- */
.route-indicator {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-type);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.route-arrow {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  animation: routeBounce 2s ease infinite;
  margin-left: 0.3rem;
}

@keyframes routeBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-dark);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--t-med);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: flex;
  }

  .intro-grid,
  .intro-grid-reverse,
  .chapter-grid,
  .oefenset-grid,
  .miljard-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-grid-reverse .intro-image {
    order: 0;
  }

  .priority-cards {
    grid-template-columns: 1fr;
  }

  .contrast-box {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contrast-divider {
    width: 60px;
    height: 1px;
  }

  .om-pop-faces {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-producer {
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 500px) {
  .om-pop-faces {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-scenes {
    padding: 1.25rem;
  }
}

/* ---------- PRINT ---------- */
@media print {
  #navbar,
  #backToTop,
  .hero-scroll,
  .nav-toggle {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
