/* ============================================
   MODULE 05 - CHAIN OF THOUGHT
   Violett-Indigo Theme (#7C3AED)
   Sprint 2: Schritt-für-Schritt Denken
   ============================================ */

/* Module 5 Color Variables */
:root {
  --mod-05-primary: #7C3AED;
  --mod-05-secondary: #8B5CF6;
  --mod-05-tertiary: #A78BFA;
  --mod-05-accent: #8B5CF6;
  --mod-05-bg-1: rgba(124, 58, 237, 0.15);
  --mod-05-bg-2: rgba(139, 92, 246, 0.1);
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.module-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(124, 58, 237, 0.1);
  z-index: 1000;
}

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

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

/* Smooth transition from Hero to section */
.section-intro {
  position: relative;
}

.section-intro::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"] .section-intro::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%);
}

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

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

.m05-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(244, 162, 97, 0.25) 100%
  );
  z-index: 1;
}

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

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

.m05-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.m05-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #F8F5F0;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.m05-hero-title em {
  color: #A78BFA;
  font-style: normal;
}

.m05-hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: rgba(248, 245, 240, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.m05-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 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(124, 58, 237, 0.4);
  position: relative;
  overflow: hidden;
}

.m05-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.m05-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}

.m05-hero-cta:hover::before {
  transform: translateX(100%);
}

.m05-hero-cta i {
  transition: transform 0.3s ease;
}

.m05-hero-cta:hover i {
  transform: translateY(3px);
}

/* ============================================
   SECTION SHARED COMPONENTS
   ============================================ */
.section-intro,
.section-quiz,
.section-roadmap {
  padding: 120px 0;
  position: relative;
}

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

.section-tag-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8B5CF6;
  margin-bottom: 20px;
}

.section-title-premium {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2A363B;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.section-subtitle-premium {
  color: #6B7280;
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

/* ============================================
   SECTION 1: INTRO (Was sind System-Prompts?)
   ============================================ */
.section-intro {
  background: linear-gradient(180deg, #FDFCF7 0%, #F8F5F0 100%);
}

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

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Restaurant-Analogie als Hero-Card */
.analogy-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

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

.analogy-visual {
  text-align: center;
}

.analogy-icon {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 4rem;
  color: white;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.analogy-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2A363B;
  margin-bottom: 20px;
}

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

.analogy-content > p {
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

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

.analogy-example {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-left: 4px solid #7C3AED;
  padding: 24px;
  border-radius: 0 16px 16px 0;
}

.analogy-example strong {
  color: #8B5CF6;
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.analogy-example p {
  color: #5D4037;
  font-style: italic;
  line-height: 1.6;
}

[data-theme="dark"] .analogy-example p {
  color: rgba(248, 245, 240, 0.9);
}

/* ============================================
   PARALLAX QUOTE SECTIONS
   ============================================ */
.parallax-quote-section {
  position: relative;
  min-height: 60vh;
  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;
  z-index: 0;
}

.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%
  );
  z-index: 1;
}

[data-theme="dark"] .parallax-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 29, 36, 0.75) 0%,
    rgba(26, 29, 36, 0.65) 50%,
    rgba(26, 29, 36, 0.55) 100%
  );
}

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

.parallax-content i {
  font-size: 3.5rem;
  color: #7C3AED;
  margin-bottom: 30px;
  display: block;
  opacity: 0.9;
}

.parallax-content blockquote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.parallax-content blockquote em {
  color: #A78BFA;
  font-style: italic;
  position: relative;
}

/* Parallax Background Images for M04 */
.parallax-bg-m05-1 {
  background-image: url('../assets/images/sprints/m05_parallax_1.jpg');
}

.parallax-bg-m05-2 {
  background-image: url('../assets/images/sprints/m05_parallax_2.jpg');
}


/* ============================================
   SECTION 5: QUIZ - Premium Glassmorphism
   ============================================ */
.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(124, 58, 237, 0.3) 50%, transparent 100%);
}

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

.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, #7C3AED 0%, #8B5CF6 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 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.quiz-card-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 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(124, 58, 237, 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 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.quiz-option {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.quiz-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #7C3AED 0%, #8B5CF6 100%);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.quiz-option:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.03);
  padding-left: 28px;
}

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

.quiz-option.correct {
  border-color: #90A955;
  background: rgba(144, 169, 85, 0.15);
}

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

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

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

.quiz-option:disabled {
  pointer-events: none;
  opacity: 0.7;
}

.quiz-feedback {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 14px;
  display: none;
  animation: fadeIn 0.4s ease;
  position: relative;
  z-index: 1;
}

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

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

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

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

/* 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(124, 58, 237, 0.2) 50%, transparent 100%);
}

[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, #7C3AED 0%, #8B5CF6 100%);
}

[data-theme="dark"] .quiz-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

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

[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:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.08);
}

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

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

[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-color: rgba(144, 169, 85, 0.4);
  color: #F8F5F0;
}

[data-theme="dark"] .quiz-feedback.wrong {
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.15) 0%, rgba(231, 111, 81, 0.05) 100%);
  border-color: rgba(231, 111, 81, 0.4);
  color: #F8F5F0;
}

/* Mobile */
@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-container {
    padding: 0 16px;
  }
}

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

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

.container-premium {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-roadmap-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8B5CF6;
  margin-bottom: 20px;
}

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

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

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

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

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.roadmap-card.completed {
  border-color: rgba(144, 169, 85, 0.4);
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.08) 0%, white 100%);
}

.roadmap-card.current {
  border-color: rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, white 100%);
  transform: scale(1.02);
}

.roadmap-card.upcoming {
  opacity: 0.7;
}

.roadmap-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.roadmap-card.completed .roadmap-card-badge {
  background: rgba(144, 169, 85, 0.15);
  color: #7A9048;
}

.roadmap-card.current .roadmap-card-badge {
  background: rgba(124, 58, 237, 0.15);
  color: #8B5CF6;
}

.roadmap-card.upcoming .roadmap-card-badge {
  background: rgba(0,0,0,0.05);
  color: #6B7280;
}

.roadmap-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.roadmap-card.completed .roadmap-card-icon {
  background: rgba(144, 169, 85, 0.15);
  color: #7A9048;
}

.roadmap-card.current .roadmap-card-icon {
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.roadmap-card.upcoming .roadmap-card-icon {
  background: rgba(0,0,0,0.05);
  color: #6B7280;
}

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

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

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

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

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-final-cta {
  background: linear-gradient(180deg, #FDFCF7 0%, #F8F5F0 100%);
  padding: 100px 0;
}

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

.final-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

[data-theme="dark"] .final-cta-container {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.final-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.3);
}

.final-cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #2A363B;
  margin-bottom: 16px;
}

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

.final-cta-text {
  color: #6B7280;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  margin-bottom: 24px;
}

.btn-final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.final-cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

.final-cta-divider {
  color: rgba(0,0,0,0.2);
}

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

/* ============================================
   BOTTOM NAVIGATION
   ============================================ */
.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;
}

.bottom-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(124, 58, 237, 0.4);
  color: #7C3AED;
}

/* nav-next button styled like other buttons - transparent (consistent with M00) */

.bottom-nav-btn.home {
  background: rgba(244, 162, 97, 0.15);
  border-color: rgba(244, 162, 97, 0.3);
  color: #F4A261;
}

.bottom-nav-btn.home:hover {
  background: rgba(244, 162, 97, 0.25);
}

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

.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, #7C3AED 0%, #8B5CF6 100%);
  border-radius: 3px;
  transition: width 0.3s ease;
}

body.module-page {
  padding-bottom: 100px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #7C3AED;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 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: #8B5CF6;
  transform: translateY(-3px);
}

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

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .analogy-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .analogy-icon {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .section-intro,
  .section-quiz,
  .section-roadmap {
    padding: 80px 0;
  }
  
  .m05-hero {
    min-height: 100vh;
    padding: 100px 0 40px;
  }
  
  .m05-hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .m05-hero-subtitle {
    font-size: 1rem;
    padding: 0 16px;
  }
  
  .m05-hero-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .m05-hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .parallax-quote-section {
    min-height: 50vh;
  }
  
  .parallax-content blockquote {
    font-size: 1.4rem;
  }
  
  .bottom-nav-senior {
    padding: 8px 12px;
  }
  
  .bottom-nav-btn {
    min-width: 56px;
    min-height: 48px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .bottom-nav-btn i {
    font-size: 1.2rem;
  }
  
  .back-to-top {
    bottom: 100px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  .bottom-nav-btn {
    min-width: 48px;
    padding: 6px 8px;
  }
  
  .bottom-nav-btn span {
    font-size: 0.7rem;
  }
}

/* Touch-optimierte Buttons */
@media (max-width: 768px) {
  .quiz-option {
    min-height: 48px;
    padding: 12px 20px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .bottom-nav-btn {
    border-width: 2px;
  }
  
  .bottom-nav-btn.nav-next {
    border: 2px solid #fff;
  }
  
  .quiz-option {
    border-width: 2px;
  }
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] .m05-hero::after {
  background: linear-gradient(to bottom, 
    rgba(42, 54, 59, 0) 0%, 
    rgba(42, 54, 59, 0.4) 60%,
    rgba(26, 29, 36, 1) 100%);
}

[data-theme="dark"] .m05-hero-title {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .bottom-nav-senior {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
}

[data-theme="dark"] .back-to-top {
  background: #7C3AED;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

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

[data-theme="dark"] .roadmap-card.completed {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.15) 0%, rgba(255,255,255,0.05) 100%);
}

[data-theme="dark"] .roadmap-card.current {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(255,255,255,0.05) 100%);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .bottom-nav-senior,
  .back-to-top,
  .module-progress {
    display: none !important;
  }
  
  body.module-page {
    padding-bottom: 0;
  }
}

/* ============================================
   BOTTOM NAVIGATION - Senior Premium (from M02)
   ============================================ */
.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);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.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;
}

/* nav-next button styled like other buttons - transparent (consistent with M00) */

.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;
}

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

/* ============================================
   MOBILE ANPASSUNGEN - Bottom Navigation
   ============================================ */
@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;
  }
}

/* Print */
@media print {
  .bottom-nav-senior {
    display: none !important;
  }
  
  body.module-page {
    padding-bottom: 0;
  }
}

/* ============================================
   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;
}

/* Light Mode: Reduced hero overlay opacity */
[data-theme="light"] .m05-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%
  );
}


/* ============================================
   NO-JS FALLBACK - Content always visible
   ============================================ */
/* If JavaScript is disabled or fails to load, ensure content is visible */
.reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
}

/* Reduced motion preference should also show content immediately */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================
   M05 SPECIFIC STYLES - Schritte & Visualizer
   ============================================ */

/* Section Bausteine (5 Schritte) */
.section-bausteine {
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 50%, #F8F5F0 100%);
  padding: 120px 0;
}

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

.bausteine-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Bausteine Grid - 5 Karten */
.bausteine-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.baustein-card {
  background: white;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  border-top: 4px solid var(--card-color, #7C3AED);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.baustein-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--card-color, #7C3AED);
}

/* Jeder Baustein hat eigene Akzentfarbe - Indigo Theme */
.baustein-card[data-schritt="verstehen"] { --card-color: #7C3AED; }
.baustein-card[data-schritt="sammeln"] { --card-color: #8B5CF6; }
.baustein-card[data-schritt="zwischen"] { --card-color: #A78BFA; }
.baustein-card[data-schritt="verknuepfen"] { --card-color: #5B8DEF; }
.baustein-card[data-schritt="fazit"] { --card-color: #3B82F6; }

.baustein-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--card-color) 0%, var(--card-color)dd 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.baustein-card > p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.baustein-example {
  padding: 12px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #5D4037;
  border-left: 3px solid var(--card-color);
  font-style: italic;
}

[data-theme="dark"] .baustein-example {
  background: rgba(255,255,255,0.05);
  color: rgba(248, 245, 240, 0.8);
}

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

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

.builder-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.visualizer-toggle {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.visualizer-btn {
  padding: 14px 28px;
  background: rgba(0,0,0,0.05);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.3s ease;
}

[data-theme="dark"] .visualizer-btn {
  background: rgba(255,255,255,0.05);
  color: rgba(248, 245, 240, 0.7);
}

.visualizer-btn:hover {
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

.visualizer-btn.active {
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.visualizer-workspace {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

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

/* Comparison View */
.comparison-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comparison-card {
  background: rgba(0,0,0,0.03);
  border-radius: 16px;
  padding: 24px;
  border: 2px solid transparent;
}

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

.comparison-card.simple {
  border-color: rgba(231, 111, 81, 0.3);
}

.comparison-card.cot {
  border-color: rgba(124, 58, 237, 0.3);
}

.comparison-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-card.simple h4 {
  color: #E76F51;
}

.comparison-card.cot h4 {
  color: #7C3AED;
}

.problem-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(231, 111, 81, 0.15);
  border: 1px solid rgba(231, 111, 81, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: #E76F51;
  font-weight: 600;
  margin-bottom: 12px;
}

.prompt-text {
  font-style: italic;
  color: #5D4037;
  line-height: 1.6;
  padding: 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  border-left: 4px solid #E76F51;
}

[data-theme="dark"] .prompt-text {
  color: rgba(248, 245, 240, 0.9);
  background: rgba(0,0,0,0.2);
}

/* CoT Steps */
.cot-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cot-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 12px;
  border-left: 3px solid #7C3AED;
}

.cot-step.highlight {
  background: rgba(124, 58, 237, 0.15);
  border-left-width: 4px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.cot-step p {
  margin: 0;
  font-size: 0.95rem;
  color: #2A363B;
  line-height: 1.5;
}

[data-theme="dark"] .cot-step p {
  color: rgba(248, 245, 240, 0.9);
}

/* Flow Steps */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-step {
  background: rgba(124, 58, 237, 0.08);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #7C3AED;
}

.step-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.flow-step p {
  margin: 0;
  font-size: 0.95rem;
  color: #2A363B;
}

[data-theme="dark"] .flow-step p {
  color: rgba(248, 245, 240, 0.9);
}

/* Responsive */
@media (max-width: 1200px) {
  .bausteine-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bausteine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .baustein-card {
    padding: 24px 16px;
  }
  
  .comparison-view {
    grid-template-columns: 1fr;
  }
  
  .visualizer-toggle {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .bausteine-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto 40px;
  }
}


/* ============================================
   SECTION: PRAXISBEISPIELE (Examples)
   ============================================ */
.section-examples {
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
  padding: 120px 0;
}

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

.examples-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.examples-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Example Cards */
.example-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

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

.example-header {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-bottom: 2px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
}

.example-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.example-icon i {
  font-size: 1.5rem;
  color: white;
}

.example-header h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2A363B;
  margin: 0;
}

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

/* CoT Example Flow */
.cot-example-flow {
  padding: 32px;
}

.flow-problem {
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.08) 0%, rgba(231, 111, 81, 0.03) 100%);
  border: 2px solid rgba(231, 111, 81, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.flow-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #E76F51;
  color: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.flow-label.solution {
  background: #90A955;
}

.flow-problem p {
  margin: 0;
  color: #5D4037;
  font-size: 1.05rem;
  line-height: 1.6;
}

[data-theme="dark"] .flow-problem p {
  color: rgba(248, 245, 240, 0.9);
}

/* Flow Steps */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.flow-step {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.03) 100%);
  border-left: 4px solid #7C3AED;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
}

.step-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  color: white;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.flow-step p {
  margin: 0;
  color: #2A363B;
  font-size: 1rem;
  line-height: 1.6;
}

[data-theme="dark"] .flow-step p {
  color: rgba(248, 245, 240, 0.9);
}

/* Flow Solution */
.flow-solution {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.1) 0%, rgba(144, 169, 85, 0.05) 100%);
  border: 2px solid rgba(144, 169, 85, 0.3);
  border-radius: 16px;
  padding: 24px;
}

.flow-solution p {
  margin: 0;
  color: #2A363B;
  font-size: 1.05rem;
  line-height: 1.6;
}

[data-theme="dark"] .flow-solution p {
  color: rgba(248, 245, 240, 0.9);
}

.flow-solution strong {
  color: #7C3AED;
}

/* Responsive */
@media (max-width: 768px) {
  .section-examples {
    padding: 80px 0;
  }
  
  .examples-container {
    padding: 0 16px;
  }
  
  .example-header {
    padding: 20px 24px;
  }
  
  .cot-example-flow {
    padding: 24px;
  }
  
  .flow-step {
    padding: 16px 20px;
  }
}


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

body.classroom-mode .container-premium,
body.classroom-mode .intro-container,
body.classroom-mode .bausteine-container,
body.classroom-mode .builder-container,
body.classroom-mode .examples-container,
body.classroom-mode .quiz-container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

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

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

body.classroom-mode .section-title-premium {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
}

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

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

body.classroom-mode .baustein-card h4,
body.classroom-mode .example-card h4 {
  font-size: 1.5rem;
}

body.classroom-mode .baustein-card > p,
body.classroom-mode .example-card p {
  font-size: 1.15rem;
}

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

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

body.classroom-mode .m05-hero-badge,
body.classroom-mode .section-tag-premium {
  font-size: 1.1rem;
  padding: 14px 28px;
}

body.classroom-mode .btn-final-cta,
body.classroom-mode .m05-hero-cta {
  font-size: 1.3rem;
  padding: 22px 44px;
}

body.classroom-mode .visualizer-btn {
  font-size: 1.2rem;
  padding: 18px 32px;
}

body.classroom-mode .flow-step p,
body.classroom-mode .cot-step p {
  font-size: 1.2rem;
}

body.classroom-mode .step-badge {
  font-size: 0.9rem;
  padding: 6px 16px;
}
