/**
 * KI ACADEMY - MODULE 01: GRUNDLAGEN
 * Premium Styles - Mindblowing Level
 */

/* ============================================
   PROGRESS BAR (Shared Component)
   ============================================ */
.module-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(244, 162, 97, 0.1);
  z-index: 1000;
}

.module-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #F4A261 0%, #E76F51 100%);
  width: 0%;
  transition: width 0.1s ease;
}

/* ============================================
   HERO M01 - Mirror Theme
   ============================================ */
.m01-hero {
  min-height: 100vh;
  padding: 180px 0 80px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

/* Smooth transition like M00 - no harsh gradient */

.m01-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.m01-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.m01-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 54, 59, 0.88) 0%,
    rgba(42, 54, 59, 0.75) 50%,
    rgba(91, 141, 239, 0.25) 100%
  );
  z-index: 1;
}

.m01-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
  margin: 0;
  margin-left: 8%;
  padding: 0 40px;
}

[data-theme="light"] .m01-hero-content {
  /* No glassmorphism background needed */
}

.m01-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.m01-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.m01-hero-title em {
  color: #60A5FA;
  font-style: normal;
}

.m01-hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.m01-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(91, 141, 239, 0.4);
}

.m01-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(244, 162, 97, 0.5);
}

.m01-hero-cta svg {
  transition: transform 0.3s ease;
}

.m01-hero-cta:hover svg {
  transform: translateY(3px);
}

/* ============================================
   IMAGE CROP FOR QUIZ SECTION
   ============================================ */
.image-crop-bottom {
  position: relative;
  overflow: hidden;
}

.image-crop-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Hide bottom 30% of image */
.image-crop-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, 
    rgba(253, 252, 247, 1) 0%, 
    rgba(253, 252, 247, 0.8) 50%,
    rgba(253, 252, 247, 0) 100%);
  pointer-events: none;
}

[data-theme="dark"] .image-crop-bottom::after {
  background: linear-gradient(to top, 
    rgba(30, 35, 45, 1) 0%, 
    rgba(30, 35, 45, 0.8) 50%,
    rgba(30, 35, 45, 0) 100%);
}

/* Alternative: just crop via CSS on image */
.quiz-image-container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
  max-height: 500px;
}

.quiz-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 768px) {
  .m01-hero {
    min-height: 100vh;
    padding: 100px 0 40px;
  }
  
  .m01-hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .quiz-image-container {
    border-radius: 16px;
    max-height: 350px;
  }
}
/* ============================================
   KI ACADEMY SENIOR - MODULE 01: GRUNDLAGEN
   ERWEITERUNG: Neue Komponenten (Option C)
   Hinzugefügt: 2026-03-19
   ============================================

   HINWEIS: Diese Datei erweitert module-styles-m01.css
   um neue Premium-Komponenten. Die ursprünglichen Styles
   bleiben unverändert erhalten.

   Architektur-Prinzipien:
   - Keine !important-Regeln
   - Natürliche CSS-Spezifität
   - Mobile-First Responsive Design
   - Dark Mode über [data-theme="dark"]

   ============================================ */

/* ============================================
   1. SPIEGEL-PRINZIP SECTION
   ============================================ */
.spiegel-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FDFCF7 0%, #F8F5F0 100%);
  position: relative;
}

/* Smooth transition from Hero */
.spiegel-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, 
    rgba(253, 252, 247, 0) 0%,
    rgba(253, 252, 247, 0.3) 30%,
    rgba(253, 252, 247, 0.7) 60%,
    #FDFCF7 100%);
  pointer-events: none;
  z-index: 10;
}

[data-theme="dark"] .spiegel-section::before {
  background: linear-gradient(to bottom, 
    rgba(15, 20, 30, 0) 0%,
    rgba(15, 20, 30, 0.3) 30%,
    rgba(15, 20, 30, 0.7) 60%,
    #1a1d24 100%);
}

.spiegel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spiegel-text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2A363B;
  margin-bottom: 24px;
  line-height: 1.3;
}

.spiegel-text h2 em {
  color: #F4A261;
  font-style: normal;
}

.spiegel-text p {
  color: #5D4037;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.spiegel-highlight {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1) 0%, rgba(244, 162, 97, 0.05) 100%);
  border-left: 4px solid #F4A261;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

.spiegel-highlight p {
  margin: 0;
  font-weight: 500;
  color: #2A363B;
}

/* Spiegel-Animation */
.mirror-animation {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.mirror-frame {
  position: relative;
  background: linear-gradient(135deg, #2A363B 0%, #1a2024 100%);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.mirror-glass {
  background: linear-gradient(180deg, rgba(244, 162, 97, 0.1) 0%, rgba(144, 169, 85, 0.05) 100%);
  border-radius: 16px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mirror-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.mirror-icon {
  font-size: 4rem;
  color: #F4A261;
  margin-bottom: 20px;
}

.mirror-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-align: center;
}

.mirror-label {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #F4A261;
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .spiegel-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mirror-animation {
    order: -1;
    max-width: 300px;
  }
}

/* ============================================
   2. KI-DETEKTIV SECTION
   ============================================ */
.detektiv-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
}

.detektiv-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.section-tag-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(244, 162, 97, 0.15);
  color: #E76F51;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title-premium {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2A363B;
  margin-bottom: 16px;
}

.section-subtitle-premium {
  color: #6B7280;
  font-size: 1.1rem;
  line-height: 1.6;
}

.detektiv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.detektiv-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.detektiv-card:hover {
  transform: translateY(-6px);
  border-color: #F4A261;
  box-shadow: 0 12px 40px rgba(244, 162, 97, 0.15);
}

.detektiv-card.active {
  border-color: #90A955;
  background: rgba(144, 169, 85, 0.05);
}

.detektiv-card i {
  font-size: 2.5rem;
  color: #F4A261;
  margin-bottom: 16px;
  display: block;
}

.detektiv-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #2A363B;
  margin-bottom: 8px;
}

.detektiv-card p {
  font-size: 0.9rem;
  color: #6B7280;
  margin: 0;
}

.detektiv-reveal {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  display: none;
}

.detektiv-reveal.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.detektiv-reveal i {
  font-size: 3rem;
  color: #90A955;
  margin-bottom: 16px;
}

.detektiv-reveal h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  color: #2A363B;
  margin-bottom: 12px;
}

.detektiv-reveal p {
  color: #5D4037;
  line-height: 1.7;
  margin-bottom: 20px;
}

.detektiv-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(144, 169, 85, 0.1);
  border-radius: 100px;
  color: #90A955;
  font-weight: 600;
}

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

/* ============================================
   3. MYTHEN-JAGD SECTION
   ============================================ */
.mythen-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
  color: #2A363B;
}

.mythen-section .section-tag-premium {
  background: rgba(244, 162, 97, 0.15);
  color: #E76F51;
}

.mythen-section .section-title-premium {
  color: #2A363B;
}

.mythen-section .section-subtitle-premium {
  color: #6B7280;
}

.mythen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.mythen-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mythen-card:hover {
  background: white;
  border-color: rgba(244, 162, 97, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.mythen-card.revealed {
  background: rgba(144, 169, 85, 0.08);
  border-color: rgba(144, 169, 85, 0.4);
}

.mythen-card.myth {
  border-left: 4px solid #E76F51;
}

.mythen-card.fact {
  border-left: 4px solid #90A955;
}

.mythen-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mythen-badge.myth-badge {
  background: rgba(231, 111, 81, 0.2);
  color: #E76F51;
}

.mythen-badge.fact-badge {
  background: rgba(144, 169, 85, 0.2);
  color: #90A955;
}

.mythen-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #2A363B;
}

.mythen-card p {
  color: #5D4037;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.mythen-card .reveal-text {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mythen-card.revealed .reveal-text {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .mythen-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   4. PARALLAX QUOTE SECTION
   ============================================ */
.parallax-quote-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 54, 59, 0.65) 0%,
    rgba(42, 54, 59, 0.55) 40%,
    rgba(42, 54, 59, 0.45) 70%,
    rgba(244, 162, 97, 0.15) 100%
  );
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 24px;
  text-align: center;
  color: white;
}

.parallax-content i {
  font-size: 3rem;
  color: #F4A261;
  margin-bottom: 24px;
  display: block;
}

.parallax-content blockquote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 24px;
}

.parallax-content blockquote em {
  color: #F4A261;
  font-style: normal;
}

.parallax-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}

/* ============================================
   5. QUIZ SECTION
   ============================================ */
.quiz-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
}

.quiz-question-card {
  max-width: 700px;
  margin: 0 auto 20px;
}

.quiz-question-card > div {
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.quiz-question-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.quiz-num {
  width: 32px;
  height: 32px;
  background: #F4A261;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.quiz-question-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #2A363B;
  margin: 0;
}

/* ============================================
   QUIZ SECTION - Premium M02 Design (Light Theme)
   ============================================ */

/* Section Background */
.section-quiz {
  padding: 120px 0;
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
  position: relative;
}

.section-quiz::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 162, 97, 0.3) 50%, transparent 100%);
}

/* Quiz Container */
.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Quiz Card - Glassmorphism Style */
.quiz-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quiz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #F4A261 0%, #E76F51 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.quiz-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.06);
}

.quiz-card:hover::before {
  transform: scaleY(1);
}

/* Quiz Card Header */
.quiz-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* Quiz Number Badge - Premium Style */
.quiz-card-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.quiz-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2A363B;
  margin: 0;
  line-height: 1.4;
}

/* Quiz Options - Premium Style */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1rem;
  color: #2A363B;
  position: relative;
  overflow: hidden;
}

.quiz-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #F4A261 0%, #E76F51 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.quiz-option:hover {
  border-color: rgba(244, 162, 97, 0.4);
  background: rgba(244, 162, 97, 0.03);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(244, 162, 97, 0.1);
}

.quiz-option:hover::before {
  transform: scaleY(1);
}

/* Quiz States */
.quiz-option.correct {
  border-color: #90A955;
  background: rgba(144, 169, 85, 0.08);
}

.quiz-option.correct::before {
  background: #90A955;
  transform: scaleY(1);
}

.quiz-option.wrong {
  border-color: #E76F51;
  background: rgba(231, 111, 81, 0.08);
}

.quiz-option.wrong::before {
  background: #E76F51;
  transform: scaleY(1);
}

.quiz-option.answered {
  pointer-events: none;
}

/* Quiz Feedback - Premium Style */
.quiz-feedback {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 16px;
  display: none;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.quiz-feedback.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.quiz-feedback.correct {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.12) 0%, rgba(144, 169, 85, 0.05) 100%);
  border-left: 4px solid #90A955;
  color: #2A363B;
}

.quiz-feedback.wrong {
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.1) 0%, rgba(231, 111, 81, 0.03) 100%);
  border-left: 4px solid #E76F51;
  color: #2A363B;
}

/* Quiz Result Box - Premium Style */
.quiz-result-box {
  display: none;
  padding: 40px 32px;
  background: white;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.quiz-result-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #90A955 0%, #F4A261 50%, #E76F51 100%);
}

.quiz-result-box.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.quiz-result-box i {
  font-size: 3.5rem;
  color: #90A955;
  margin-bottom: 20px;
  display: block;
}

.quiz-result-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2A363B;
  margin-bottom: 12px;
}

.quiz-result-text {
  color: #5D4037;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.quiz-result-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.quiz-badge {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.quiz-badge.success {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.15) 0%, rgba(144, 169, 85, 0.08) 100%);
  color: #90A955;
  border: 1px solid rgba(144, 169, 85, 0.2);
}

.quiz-badge.next {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.15) 0%, rgba(244, 162, 97, 0.08) 100%);
  color: #E76F51;
  border: 1px solid rgba(244, 162, 97, 0.2);
}

.quiz-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Legacy Quiz Styles (for compatibility) */
.quiz-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
}

.quiz-question-card {
  max-width: 700px;
  margin: 0 auto 20px;
}

.quiz-question-card > div {
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.quiz-question-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.quiz-num {
  width: 32px;
  height: 32px;
  background: #F4A261;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.quiz-question-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #2A363B;
  margin: 0;
}

.quiz-result {
  display: none;
  padding: 32px;
  background: rgba(144, 169, 85, 0.15);
  border-radius: 20px;
  border-left: 4px solid #90A955;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quiz-result.show {
  display: block;
}

.quiz-result {
  display: none;
  padding: 32px;
  background: rgba(144, 169, 85, 0.15);
  border-radius: 20px;
  border-left: 4px solid #90A955;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quiz-result.show {
  display: block;
}

/* ============================================
   6. BOTTOM NAVIGATION - Senior
   ============================================ */
.bottom-nav-senior {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2A363B 0%, #1a2024 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  min-width: 64px;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.bottom-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 162, 97, 0.4);
  color: #F4A261;
}

.bottom-nav-btn i {
  font-size: 1.4rem;
}

.bottom-nav-btn.nav-next {
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  color: white;
  border-color: transparent;
  flex-direction: column;
  gap: 4px;
}

.bottom-nav-btn.nav-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.bottom-nav-btn.home {
  background: rgba(144, 169, 85, 0.15);
  border-color: rgba(144, 169, 85, 0.3);
  color: #90A955;
}

.bottom-nav-btn.home:hover {
  background: rgba(144, 169, 85, 0.25);
}

.bottom-nav-progress {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  max-width: 200px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F4A261 0%, #E76F51 100%);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #F8F5F0;
}

.progress-sprint {
  font-size: 0.75rem;
  color: rgba(248, 245, 240, 0.6);
}

/* Body Padding für Bottom Nav */
body.module-page {
  padding-bottom: 100px;
}

/* ============================================
   7. DARK MODE - Module 01 Spezifisch
   ============================================ */

/* Spiegel-Prinzip Dark Mode */
[data-theme="dark"] .spiegel-section {
  background: linear-gradient(180deg, #1a1d24 0%, #12151c 100%);
}

[data-theme="dark"] .spiegel-section::before {
  background: linear-gradient(to bottom, rgba(42, 54, 59, 0) 0%, #1a1d24 100%);
}

[data-theme="dark"] .spiegel-text h2 {
  color: #F8F5F0;
}

[data-theme="dark"] .spiegel-text p {
  color: rgba(248, 245, 240, 0.8);
}

[data-theme="dark"] .spiegel-highlight {
  background: rgba(244, 162, 97, 0.1);
  border-left-color: #F4A261;
}

[data-theme="dark"] .spiegel-highlight p {
  color: #F8F5F0;
}

[data-theme="dark"] .mirror-frame {
  background: linear-gradient(135deg, #1a2024 0%, #0d1016 100%);
}

[data-theme="dark"] .mirror-glass {
  background: linear-gradient(180deg, rgba(244, 162, 97, 0.05) 0%, rgba(144, 169, 85, 0.03) 100%);
}

/* KI-Detektiv Dark Mode */
[data-theme="dark"] .detektiv-section {
  background: linear-gradient(180deg, #12151c 0%, #1a1d24 100%);
}

[data-theme="dark"] .detektiv-section .section-subtitle-premium {
  color: rgba(248, 245, 240, 0.7);
}

[data-theme="dark"] .detektiv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .detektiv-card:hover {
  border-color: rgba(244, 162, 97, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .detektiv-card.active {
  background: rgba(144, 169, 85, 0.1);
  border-color: rgba(144, 169, 85, 0.4);
}

[data-theme="dark"] .detektiv-card h4 {
  color: #F8F5F0;
}

[data-theme="dark"] .detektiv-card p {
  color: rgba(248, 245, 240, 0.6);
}

[data-theme="dark"] .detektiv-reveal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .detektiv-reveal h3 {
  color: #F8F5F0;
}

[data-theme="dark"] .detektiv-reveal p {
  color: rgba(248, 245, 240, 0.8);
}

/* Mythen-Jagd Dark Mode */
[data-theme="dark"] .mythen-section {
  background: linear-gradient(135deg, #1a1d24 0%, #12151c 100%);
  color: #F8F5F0;
}

[data-theme="dark"] .mythen-section .section-tag-premium {
  background: rgba(244, 162, 97, 0.2);
  color: #F4A261;
}

[data-theme="dark"] .mythen-section .section-title-premium {
  color: #F8F5F0;
}

[data-theme="dark"] .mythen-section .section-subtitle-premium {
  color: rgba(248, 245, 240, 0.7);
}

[data-theme="dark"] .mythen-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

[data-theme="dark"] .mythen-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 162, 97, 0.3);
}

[data-theme="dark"] .mythen-card.revealed {
  background: rgba(144, 169, 85, 0.1);
  border-color: rgba(144, 169, 85, 0.3);
}

[data-theme="dark"] .mythen-card h4 {
  color: #F8F5F0;
}

[data-theme="dark"] .mythen-card p {
  color: rgba(248, 245, 240, 0.7);
}

[data-theme="dark"] .mythen-card .reveal-text {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Quiz Dark Mode */
[data-theme="dark"] .quiz-section {
  background: linear-gradient(180deg, #12151c 0%, #1a1d24 100%);
}

[data-theme="dark"] .quiz-section .section-subtitle-premium {
  color: rgba(248, 245, 240, 0.7);
}

[data-theme="dark"] .quiz-question-card > div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .quiz-question-card h4 {
  color: #F8F5F0;
}

/* ============================================
   QUIZ DARK MODE - Premium M02 Design
   ============================================ */

/* Section Dark Mode */
[data-theme="dark"] .section-quiz {
  background: linear-gradient(180deg, #12151c 0%, #1a1d24 100%);
}

[data-theme="dark"] .section-quiz::before {
  background: linear-gradient(90deg, transparent 0%, rgba(244, 162, 97, 0.2) 50%, transparent 100%);
}

/* Quiz Card Dark Mode */
[data-theme="dark"] .quiz-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .quiz-card::before {
  background: linear-gradient(180deg, #F4A261 0%, #E76F51 100%);
}

[data-theme="dark"] .quiz-card:hover {
  border-color: rgba(244, 162, 97, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 24px 64px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .quiz-card-title {
  color: #F8F5F0;
}

/* Quiz Option Dark Mode */
[data-theme="dark"] .quiz-option {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: #F8F5F0;
}

[data-theme="dark"] .quiz-option::before {
  background: linear-gradient(180deg, #F4A261 0%, #E76F51 100%);
}

[data-theme="dark"] .quiz-option:hover {
  border-color: rgba(244, 162, 97, 0.4);
  background: rgba(244, 162, 97, 0.08);
}

[data-theme="dark"] .quiz-option.correct {
  border-color: #90A955;
  background: rgba(144, 169, 85, 0.1);
}

[data-theme="dark"] .quiz-option.correct::before {
  background: #90A955;
}

[data-theme="dark"] .quiz-option.wrong {
  border-color: #E76F51;
  background: rgba(231, 111, 81, 0.1);
}

[data-theme="dark"] .quiz-option.wrong::before {
  background: #E76F51;
}

/* Quiz Feedback Dark Mode */
[data-theme="dark"] .quiz-feedback.correct {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.15) 0%, rgba(144, 169, 85, 0.05) 100%);
  border-left-color: #90A955;
  color: #E8E4DC;
}

[data-theme="dark"] .quiz-feedback.wrong {
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.12) 0%, rgba(231, 111, 81, 0.04) 100%);
  border-left-color: #E76F51;
  color: #E8E4DC;
}

/* Quiz Result Box Dark Mode */
[data-theme="dark"] .quiz-result-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .quiz-result-box::before {
  background: linear-gradient(90deg, #90A955 0%, #F4A261 50%, #E76F51 100%);
}

[data-theme="dark"] .quiz-result-title {
  color: #F8F5F0;
}

[data-theme="dark"] .quiz-result-text {
  color: rgba(248, 245, 240, 0.8);
}

[data-theme="dark"] .quiz-badge.success {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.2) 0%, rgba(144, 169, 85, 0.1) 100%);
  border-color: rgba(144, 169, 85, 0.3);
}

[data-theme="dark"] .quiz-badge.next {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.2) 0%, rgba(244, 162, 97, 0.1) 100%);
  border-color: rgba(244, 162, 97, 0.3);
}

/* Legacy Dark Mode Support */
[data-theme="dark"] .quiz-section {
  background: linear-gradient(180deg, #12151c 0%, #1a1d24 100%);
}

[data-theme="dark"] .quiz-section .section-subtitle-premium {
  color: rgba(248, 245, 240, 0.7);
}

[data-theme="dark"] .quiz-question-card > div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .quiz-question-card h4 {
  color: #F8F5F0;
}

[data-theme="dark"] .quiz-result {
  background: rgba(144, 169, 85, 0.1);
}

/* Bottom Nav Dark Mode */
[data-theme="dark"] .bottom-nav-senior {
  background: linear-gradient(180deg, #1a1d24 0%, #0d1016 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .bottom-nav-btn {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(248, 245, 240, 0.8);
}

[data-theme="dark"] .bottom-nav-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(244, 162, 97, 0.3);
  color: #F4A261;
}

[data-theme="dark"] .bottom-nav-btn.home {
  background: rgba(144, 169, 85, 0.1);
  border-color: rgba(144, 169, 85, 0.25);
  color: #90A955;
}

[data-theme="dark"] .progress-bar {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .progress-text {
  color: #F8F5F0;
}

[data-theme="dark"] .progress-sprint {
  color: rgba(248, 245, 240, 0.5);
}

/* ============================================
   8. MOBILE ANPASSUNGEN - M02 Optimized Styles
   ============================================ */
@media (max-width: 768px) {
  .bottom-nav-senior {
    padding: 10px 12px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .bottom-nav-inner {
    gap: 8px;
  }
  
  .bottom-nav-btn {
    min-width: 56px;
    min-height: 52px;
    padding: 6px 10px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  
  .bottom-nav-btn i {
    font-size: 1.2rem;
  }
  
  .bottom-nav-btn span {
    display: none;
  }
  
  .bottom-nav-progress {
    max-width: 100px;
    min-width: 60px;
    padding: 0 4px;
  }
}

@media (max-width: 480px) {
  .bottom-nav-senior {
    padding: 8px 10px;
  }
  
  .bottom-nav-inner {
    gap: 6px;
  }
  
  .bottom-nav-btn {
    min-width: 48px;
    min-height: 48px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }
  
  .bottom-nav-btn i {
    font-size: 1.1rem;
  }
  
  .bottom-nav-progress {
    max-width: 80px;
    min-width: 50px;
  }
}

@media (max-width: 380px) {
  .bottom-nav-inner {
    gap: 4px;
  }
  
  .bottom-nav-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 4px 6px;
  }
  
  .bottom-nav-progress {
    max-width: 60px;
    min-width: 40px;
  }
}

/* ============================================
   9. ANIMATIONEN
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================
   SECTION BACKGROUNDS - Light/Dark Mode
   (Hinzugefügt: Ersetzt inline-Styles)
   ============================================ */

/* Light Mode Sections */
.section-light {
  padding: 100px 0;
}

.section-wie-ki-lernt {
  background: linear-gradient(180deg, #FDFCF7 0%, #F8F5F0 100%);
}

.section-quiz {
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
}

.section-final-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, #FDFCF7 0%, #F8F5F0 100%);
}

/* Dark Mode Sections */
[data-theme="dark"] .section-wie-ki-lernt {
  background: linear-gradient(180deg, #1a1d24 0%, #12151c 100%);
}

[data-theme="dark"] .section-quiz {
  background: linear-gradient(180deg, #12151c 0%, #1a1d24 100%);
}

[data-theme="dark"] .section-final-cta {
  background: linear-gradient(180deg, #1a1d24 0%, #12151c 100%);
}

/* Footer Dark Mode */
[data-theme="dark"] .main-footer {
  background: #1a1d24;
}

/* ============================================
   CLASSROOM MODE
   ============================================ */
body.classroom-mode {
  font-size: 1.35rem;
  line-height: 1.7;
}

body.classroom-mode .container-premium {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

body.classroom-mode .m01-hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
}

body.classroom-mode .m01-hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

body.classroom-mode .section-title-premium {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

body.classroom-mode .section-subtitle-premium {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

body.classroom-mode p,
body.classroom-mode li {
  font-size: 1.25rem;
  line-height: 1.8;
}

body.classroom-mode .detektiv-card h4,
body.classroom-mode .mythen-card h4 {
  font-size: 1.4rem;
}

body.classroom-mode .detektiv-card p,
body.classroom-mode .mythen-card p {
  font-size: 1.15rem;
}

body.classroom-mode .quiz-option {
  font-size: 1.2rem;
  padding: 20px 24px;
}

body.classroom-mode .mirror-text {
  font-size: 2rem;
}

body.classroom-mode .parallax-content blockquote {
  font-size: clamp(2rem, 5vw, 3rem);
}

body.classroom-mode .m01-hero-badge,
body.classroom-mode .section-tag-premium {
  font-size: 1.1rem;
  padding: 12px 24px;
}

body.classroom-mode .btn-final-cta,
body.classroom-mode .m01-hero-cta {
  font-size: 1.3rem;
  padding: 20px 40px;
}

body.classroom-mode .classroom-toggle {
  background: #90A955;
  color: white;
}

/* ============================================
   SECTION: SPRINT ROADMAP (Dark Background)
   ============================================ */
.section-roadmap {
  padding: 100px 0;
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
}

[data-theme="dark"] .section-roadmap {
  background: linear-gradient(135deg, #1a1d24 0%, #12151c 100%);
}

[data-theme="dark"] .section-roadmap-title {
  color: #F8F5F0;
}

[data-theme="dark"] .section-roadmap-subtitle {
  color: rgba(248, 245, 240, 0.7);
}

[data-theme="dark"] .roadmap-card {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

[data-theme="dark"] .roadmap-card.completed {
  background: rgba(144, 169, 85, 0.15);
  border-color: rgba(144, 169, 85, 0.3);
}

[data-theme="dark"] .roadmap-card.current {
  background: rgba(244, 162, 97, 0.15);
  border-color: #F4A261;
}

[data-theme="dark"] .roadmap-card.locked {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .roadmap-card.locked .roadmap-card-icon {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .roadmap-card.locked .roadmap-card-icon i {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .roadmap-card-title {
  color: #F8F5F0;
}

[data-theme="dark"] .roadmap-card.locked .roadmap-card-title {
  color: rgba(248, 245, 240, 0.8);
}

[data-theme="dark"] .roadmap-card-desc {
  color: rgba(248, 245, 240, 0.6);
}

[data-theme="dark"] .roadmap-card.locked .roadmap-card-desc {
  color: rgba(248, 245, 240, 0.5);
}

[data-theme="dark"] .roadmap-card-next {
  color: rgba(248, 245, 240, 0.4);
}

.section-roadmap-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-roadmap-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(244, 162, 97, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #F4A261;
  margin-bottom: 16px;
}

.section-roadmap-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #2A363B;
  margin-bottom: 12px;
}

.section-roadmap-subtitle {
  color: #6B7280;
  font-size: 1rem;
}

/* Roadmap Grid */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-card {
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  position: relative;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.roadmap-card.completed {
  background: rgba(144, 169, 85, 0.1);
  border: 2px solid rgba(144, 169, 85, 0.4);
}

.roadmap-card.current {
  background: rgba(244, 162, 97, 0.1);
  border: 2px solid #F4A261;
  box-shadow: 0 8px 30px rgba(244, 162, 97, 0.15);
}

.roadmap-card.locked {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0.7;
}

.roadmap-card-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.roadmap-card.completed .roadmap-card-badge {
  background: #90A955;
  color: white;
}

.roadmap-card.current .roadmap-card-badge {
  background: #F4A261;
  color: white;
}

.roadmap-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.roadmap-card.completed .roadmap-card-icon {
  background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
}

.roadmap-card.current .roadmap-card-icon {
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  box-shadow: 0 8px 30px rgba(244, 162, 97, 0.4);
}

.roadmap-card.locked .roadmap-card-icon {
  background: rgba(0, 0, 0, 0.08);
}

.roadmap-card-icon i {
  font-size: 1.6rem;
  color: white;
}

.roadmap-card.locked .roadmap-card-icon i {
  color: rgba(42, 54, 59, 0.4);
}

.roadmap-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #2A363B;
  margin-bottom: 4px;
}

.roadmap-card.locked .roadmap-card-title {
  color: rgba(42, 54, 59, 0.6);
}

.roadmap-card-desc {
  color: #6B7280;
  font-size: 0.85rem;
  margin: 0 0 12px;
}

.roadmap-card.locked .roadmap-card-desc {
  color: rgba(42, 54, 59, 0.5);
}

.roadmap-card-link {
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.roadmap-card.completed .roadmap-card-link {
  color: #90A955;
}

.roadmap-card-next {
  color: rgba(42, 54, 59, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
  
  .section-roadmap {
    padding: 60px 0;
  }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-final-cta {
  padding: 80px 0;
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  text-align: center;
}

[data-theme="dark"] .final-cta-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.final-cta-icon i {
  font-size: 2.5rem;
  color: white;
}

.final-cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #2A363B;
  margin-bottom: 12px;
}

[data-theme="dark"] .final-cta-title {
  color: white;
}

.final-cta-text {
  color: #6B7280;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .final-cta-text {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta-links {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-links a {
  color: #6B7280;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.final-cta-links a:hover {
  color: #F4A261;
}

.final-cta-divider {
  color: #D1D5DB;
}

@media (max-width: 768px) {
  .final-cta-container {
    padding: 32px 24px;
    margin: 0 16px;
  }
  
  .final-cta-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .final-cta-divider {
    display: none;
  }
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.footer-premium {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .footer-premium {
  border-top-color: rgba(255, 255, 255, 0.08);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand span {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-text a {
  color: #F4A261;
  text-decoration: none;
}

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

.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #F4A261;
}

.footer-copyright {
  color: #9CA3AF;
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 40px 16px 24px;
  }
  
  .footer-nav {
    gap: 16px;
  }
  
  .footer-nav a {
    font-size: 0.85rem;
  }
}

/* ============================================
   UTILITY: SPACING
   ============================================ */
.spacing-bottom-md {
  padding-bottom: 60px;
}

/* ============================================
   COMPONENT: IMAGE CAPTION
   ============================================ */
.image-caption-box {
  background: linear-gradient(135deg, #2A363B 0%, #1a2024 100%);
  padding: 20px 24px;
  text-align: center;
}

.image-caption-box p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 0.95rem;
}

.image-caption-box i {
  color: #F4A261;
  margin-right: 8px;
}

[data-theme="dark"] .image-caption-box {
  background: linear-gradient(135deg, #1a2024 0%, #12151c 100%);
}

/* ============================================
   COMPONENT: LEARNING STEPS
   ============================================ */
.learning-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.learning-step-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

[data-theme="dark"] .learning-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.learning-step-card.blue {
  border-top: 4px solid #5B8DEF;
}

.learning-step-card.orange {
  border-top: 4px solid #F4A261;
}

.learning-step-card.red {
  border-top: 4px solid #E76F51;
}

.learning-step-card.green {
  border-top: 4px solid #90A955;
}

.learning-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.learning-step-card.blue .learning-step-icon {
  background: linear-gradient(135deg, #5B8DEF 0%, #4A7DE0 100%);
}

.learning-step-card.orange .learning-step-icon {
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
}

.learning-step-card.red .learning-step-icon {
  background: linear-gradient(135deg, #E76F51 0%, #D65A3B 100%);
}

.learning-step-card.green .learning-step-icon {
  background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
}

.learning-step-icon i {
  font-size: 1.8rem;
  color: white;
}

.learning-step-number {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.learning-step-card.blue .learning-step-number {
  color: #5B8DEF;
}

.learning-step-card.orange .learning-step-number {
  color: #F4A261;
}

.learning-step-card.red .learning-step-number {
  color: #E76F51;
}

.learning-step-card.green .learning-step-number {
  color: #90A955;
}

.learning-step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: #2A363B;
  margin-bottom: 8px;
}

[data-theme="dark"] .learning-step-title {
  color: white;
}

.learning-step-desc {
  font-size: 0.9rem;
  color: #6B7280;
  margin: 0;
}

[data-theme="dark"] .learning-step-desc {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .learning-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
}

/* ============================================
   COMPONENT: INFO BOX
   ============================================ */
.info-box-green {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.1) 0%, rgba(144, 169, 85, 0.05) 100%);
  border-radius: 20px;
  border-left: 4px solid #90A955;
}

.info-box-green p {
  margin: 0;
  color: #5D4037;
  font-size: 1.1rem;
  line-height: 1.7;
}

.info-box-green i {
  color: #90A955;
  margin-right: 8px;
}

[data-theme="dark"] .info-box-green {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.15) 0%, rgba(144, 169, 85, 0.08) 100%);
}

[data-theme="dark"] .info-box-green p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .info-box-green {
    margin: 40px 16px 0;
    padding: 24px;
  }
}

/* ============================================
   QUIZ MOBILE STYLES
   ============================================ */
@media (max-width: 768px) {
  .section-quiz {
    padding: 80px 0;
  }
  
  .quiz-card {
    padding: 24px;
    margin: 0 16px 20px;
    border-radius: 20px;
  }
  
  .quiz-card-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1rem;
  }
  
  .quiz-card-title {
    font-size: 1.1rem;
  }
  
  .quiz-option {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  
  .quiz-result-box {
    padding: 28px 24px;
    margin: 0 16px;
  }
  
  .quiz-result-title {
    font-size: 1.3rem;
  }
  
  .quiz-container {
    padding: 0 16px;
  }
}

/* ============================================
   UTILITY: REVEAL IMAGE CONTAINER
   ============================================ */
.reveal-image-container {
  max-width: 900px;
  margin: 60px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.reveal-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .reveal-image-container {
    margin: 40px 16px 0;
    border-radius: 16px;
  }
}


/* ============================================
   UTILITY: ICONS
   ============================================ */
.icon-accent {
  color: #F4A261;
  margin-right: 8px;
}

.icon-spaced {
  margin-right: 6px;
}

/* ============================================
   PARALLAX QUOTE
   ============================================ */
.parallax-quote-icon {
  font-size: 3rem;
  color: #F4A261;
  margin-bottom: 24px;
  display: block;
}

/* ============================================
   REVEAL IMAGE CONTAINER VARIANTS
   ============================================ */
.reveal-image-container-mt {
  margin-top: 60px;
}

.reveal-image-container-lg {
  max-width: 1000px;
}

/* ============================================
   PARALLAX BACKGROUND
   ============================================ */
.parallax-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  transform: scale(1.1);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 54, 59, 0.55) 0%,
    rgba(42, 54, 59, 0.45) 50%,
    rgba(42, 54, 59, 0.35) 100%
  );
}

/* ============================================
   INFO BOX ICON
   ============================================ */
.info-box-green i {
  color: #90A955;
  margin-right: 8px;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F4A261 0%, #E76F51 100%);
  border-radius: 100px;
  transition: width 0.5s ease;
}


/* ============================================
   DARK MODE: NEW COMPONENTS
   ============================================ */

/* Quiz Card */
[data-theme="dark"] .quiz-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .quiz-card-title {
  color: white;
}

[data-theme="dark"] .quiz-result-title {
  color: white;
}

[data-theme="dark"] .quiz-result-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Learning Step Cards */
[data-theme="dark"] .learning-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .learning-step-title {
  color: white;
}

[data-theme="dark"] .learning-step-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Final CTA */
[data-theme="dark"] .final-cta-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .final-cta-title {
  color: white;
}

[data-theme="dark"] .final-cta-text {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PARALLAX QUOTE SECTION
   ============================================ */
.parallax-quote-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.1);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 54, 59, 0.55) 0%,
    rgba(42, 54, 59, 0.45) 50%,
    rgba(42, 54, 59, 0.35) 100%
  );
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 60px 24px;
  text-align: center;
  color: white;
}

.parallax-content blockquote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 24px;
}

.parallax-content blockquote em {
  color: #F4A261;
  font-style: normal;
}

.parallax-author {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }
}




/* ============================================
   FOOTER LICENSE (wie Modul 00)
   ============================================ */
.footer-license {
  color: #6B7280;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-license a {
  color: #F4A261;
  text-decoration: none;
}

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

[data-theme="dark"] .footer-license {
  color: rgba(240, 244, 248, 0.7);
}

[data-theme="dark"] .footer-copyright {
  color: rgba(240, 244, 248, 0.5);
}


/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #F4A261;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(244, 162, 97, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #E76F51;
  transform: translateY(-3px);
}

.back-to-top svg {
  color: white;
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    display: none;
  }
}

[data-theme="dark"] .back-to-top {
  background: #F4A261;
  color: #1A202C;
}

[data-theme="dark"] .back-to-top:hover {
  background: #E76F51;
}


/* ============================================
   BOTTOM NAV - Light Mode Support
   ============================================ */
[data-theme="light"] .bottom-nav-senior {
  background: linear-gradient(180deg, #FDFCF7 0%, #F5F0E8 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .bottom-nav-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #5D4037;
}

[data-theme="light"] .bottom-nav-btn:hover {
  background: rgba(244, 162, 97, 0.1);
  border-color: rgba(244, 162, 97, 0.4);
  color: #E76F51;
}

[data-theme="light"] .bottom-nav-btn.home {
  background: rgba(144, 169, 85, 0.1);
  border-color: rgba(144, 169, 85, 0.3);
  color: #5D4037;
}

[data-theme="light"] .bottom-nav-btn.home:hover {
  background: rgba(144, 169, 85, 0.2);
  color: #5D4037;
}

[data-theme="light"] .bottom-nav-progress-bar {
  background: linear-gradient(90deg, #F4A261 0%, #E76F51 100%);
}

/* Light Mode: Reduced hero overlay opacity */
[data-theme="light"] .m01-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(42, 54, 59, 0.35) 0%,
    rgba(42, 54, 59, 0.25) 50%,
    rgba(244, 162, 97, 0.15) 100%
  );
}
