/* ============================================
   MODULE 06 - KREATIVITÄT - SPECIFIC COLORS
   Sage Green Theme (#90A955)
   ============================================ */

/* Module 6 Color Variables */
.module-page[data-module="06"] {
  --mod-06-primary: #90A955;
  --mod-06-secondary: #7A9048;
  --mod-06-tertiary: #B7CECE;
  --mod-06-bg-1: rgba(144, 169, 85, 0.15);
  --mod-06-bg-2: rgba(122, 144, 72, 0.1);
  --mod-06-bg-3: rgba(253, 252, 247, 0.8);
}

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

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

/* ============================================
   HERO M06
   ============================================ */
.m06-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%);
}

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

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

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

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

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

.m06-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: 30px;
}

.m06-hero-badge i {
  font-size: 1.2rem;
  color: #90A955;
}

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

.m06-hero-title em {
  color: #B7CECE;
  font-style: normal;
}

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

.m06-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #90A955 0%, #7A9048 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(144, 169, 85, 0.4);
  position: relative;
  overflow: hidden;
}

.m06-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(144, 169, 85, 0.5);
}

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

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

/* ============================================
   SECTION SHARED COMPONENTS
   ============================================ */
.section-intro,
.section-bilder,
.section-ideen,
.section-builder,
.section-texte,
.section-grenzen,
.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(144, 169, 85, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7A9048;
  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
   ============================================ */
.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;
}

.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, #90A955 0%, #7A9048 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(144, 169, 85, 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(144, 169, 85, 0.1) 0%, rgba(144, 169, 85, 0.05) 100%);
  border-left: 4px solid #90A955;
  padding: 24px;
  border-radius: 0 16px 16px 0;
}

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

.analogy-example ul {
  margin: 0;
  padding-left: 20px;
  color: #5D4037;
}

.analogy-example li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

/* ============================================
   SECTION 2: BILDER
   ============================================ */
.section-bilder {
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 50%, #F8F5F0 100%);
}

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

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

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

.bilder-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;
  border-top: 4px solid var(--card-color, #90A955);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

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

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

.bilder-card[data-bild="prompting"] { --card-color: #90A955; }
.bilder-card[data-bild="iterieren"] { --card-color: #E76F51; }
.bilder-card[data-bild="stile"] { --card-color: #F5D547; }

.bilder-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--card-color) 0%, var(--card-color) 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);
}

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

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

.bilder-card > p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.bilder-tip {
  padding: 12px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #5D4037;
  border-left: 3px solid var(--card-color);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.bilder-tip i {
  color: var(--card-color);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.bilder-warning {
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.1) 0%, rgba(231, 111, 81, 0.05) 100%);
  border: 2px solid rgba(231, 111, 81, 0.3);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.bilder-warning i {
  font-size: 1.5rem;
  color: #E76F51;
  flex-shrink: 0;
}

.bilder-warning > div {
  color: #5D4037;
  line-height: 1.6;
}

[data-theme="dark"] .bilder-warning > div {
  color: rgba(248, 245, 240, 0.9);
}

/* ============================================
   SECTION 3: IDEEN
   ============================================ */
.section-ideen {
  background: linear-gradient(180deg, #FDFCF7 0%, #F8F5F0 100%);
}

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

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

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

.ideen-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 cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

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

.ideen-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #90A955;
}

.ideen-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(144, 169, 85, 0.3);
}

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

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

.ideen-card > p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.6;
}

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

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-quote-section {
  position: relative;
  min-height: 75vh;
  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: #90A955;
  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-author {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
}

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

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

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

/* ============================================
   SECTION 4: BUILDER (INTERAKTIVES TOOL)
   ============================================ */
.section-builder {
  background: linear-gradient(180deg, #F8F5F0 0%, #FDFCF7 100%);
}

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

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

.builder-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"] .builder-workspace {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.builder-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.builder-select-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.builder-select-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2A363B;
}

[data-theme="dark"] .builder-select-group label {
  color: #F8F5F0;
}

.builder-select {
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.builder-select:focus {
  outline: none;
  border-color: #90A955;
  box-shadow: 0 0 0 4px rgba(144, 169, 85, 0.15);
}

[data-theme="dark"] .builder-select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #F8F5F0;
}

[data-theme="dark"] .builder-select option {
  background: #1a1d24;
  color: #F8F5F0;
}

.builder-output {
  background: linear-gradient(135deg, rgba(144, 169, 85, 0.08) 0%, rgba(144, 169, 85, 0.03) 100%);
  border: 2px solid rgba(144, 169, 85, 0.2);
  border-radius: 16px;
  padding: 24px;
}

.builder-output h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #7A9048;
  margin-bottom: 12px;
}

.builder-prompt-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2A363B;
  margin-bottom: 16px;
  min-height: 80px;
}

[data-theme="dark"] .builder-prompt-box {
  background: rgba(0,0,0,0.2);
  color: #F8F5F0;
}

.builder-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.builder-copy-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(144, 169, 85, 0.4);
}

.builder-copy-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

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

.texte-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

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

.texte-visual i {
  font-size: 8rem;
  color: #90A955;
  opacity: 0.8;
}

.texte-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.texte-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.texte-item i {
  font-size: 1.5rem;
  color: #90A955;
  flex-shrink: 0;
}

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

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

.texte-item p {
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

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

.grenzen-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 cubic-bezier(0.16, 1, 0.3, 1);
}

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

.grenzen-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #90A955;
}

.grenzen-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

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

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

.grenzen-card > p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.6;
}

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

/* ============================================
   SECTION 7: 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(144, 169, 85, 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, #90A955 0%, #7A9048 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, #90A955 0%, #7A9048 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(144, 169, 85, 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, #90A955 0%, #7A9048 100%);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.quiz-option:hover {
  border-color: rgba(144, 169, 85, 0.4);
  background: rgba(144, 169, 85, 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(144, 169, 85, 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, #90A955 0%, #7A9048 100%);
}

[data-theme="dark"] .quiz-card:hover {
  border-color: rgba(144, 169, 85, 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(144, 169, 85, 0.4);
  background: rgba(144, 169, 85, 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 8: 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(144, 169, 85, 0.15);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7A9048;
  margin-bottom: 16px;
}

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

[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: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.roadmap-card:hover {
  transform: translateY(-8px);
}

.roadmap-card.completed {
  background: rgba(144, 169, 85, 0.08);
  border-color: rgba(144, 169, 85, 0.3);
}

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

.roadmap-card.upcoming {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
  opacity: 0.8;
}

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

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

.roadmap-card.current .roadmap-card-badge {
  background: #F4A261;
  color: white;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.roadmap-card.upcoming .roadmap-card-badge {
  background: #6B7280;
  color: white;
}

.roadmap-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s;
}

.roadmap-card.completed .roadmap-card-icon {
  background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
  box-shadow: 0 10px 30px rgba(144, 169, 85, 0.3);
}

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

.roadmap-card.upcoming .roadmap-card-icon {
  background: rgba(0, 0, 0, 0.06);
}

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

.roadmap-card.upcoming .roadmap-card-icon i {
  color: #6B7280;
}

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

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

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

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

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

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

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

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

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

.section-final-cta {
  padding: 100px 0;
}

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

[data-theme="dark"] .final-cta-container {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.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 30px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(144, 169, 85, 0.3);
}

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

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

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

[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: 20px 40px;
  background: linear-gradient(135deg, #90A955 0%, #7A9048 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(144, 169, 85, 0.4);
  border: 2px solid rgba(255,255,255,0.1);
}

.btn-final-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(144, 169, 85, 0.5);
}

.final-cta-links {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.final-cta-divider {
  color: rgba(0,0,0,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;
  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.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.module-page {
  padding-bottom: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-premium {
  background: linear-gradient(180deg, #2A363B 0%, #1a2024 100%);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #F8F5F0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-license {
  color: rgba(248, 245, 240, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

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

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

.footer-nav a {
  color: rgba(248, 245, 240, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  color: rgba(248, 245, 240, 0.4);
  font-size: 0.85rem;
}

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .bilder-grid,
  .grenzen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ideen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quiz-grid {
    grid-template-columns: 1fr;
  }
  
  .texte-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .m06-hero {
    min-height: 100vh;
    padding: 100px 0 40px;
  }
  
  .m06-hero-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .section-intro,
  .section-bilder,
  .section-ideen,
  .section-builder,
  .section-texte,
  .section-grenzen,
  .section-quiz,
  .section-roadmap,
  .section-final-cta {
    padding: 80px 0;
  }
  
  .final-cta-container {
    padding: 40px 24px;
    margin: 0 16px;
  }
  
  .roadmap-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .analogy-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  
  .bilder-grid,
  .ideen-grid,
  .grenzen-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 40px;
  }
  
  .builder-controls {
    grid-template-columns: 1fr;
  }
  
  .bottom-nav-senior {
    padding: 10px 12px;
  }
  
  .bottom-nav-btn {
    min-width: 48px;
    min-height: 48px;
    padding: 6px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
  }
  
  .bottom-nav-btn i {
    font-size: 1.2rem;
  }
  
  .bottom-nav-btn span {
    display: none;
  }
  
  .bottom-nav-progress {
    max-width: 80px;
    min-width: 60px;
    padding: 0 4px;
  }
}

@media (max-width: 480px) {
  .section-title-premium {
    font-size: 1.8rem;
  }
  
  .m06-hero-title {
    font-size: 2rem;
  }
  
  .analogy-icon {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }
  
  .builder-workspace {
    padding: 24px;
  }
  
  .bottom-nav-senior {
    padding: 8px 10px;
  }
  
  .bottom-nav-inner {
    gap: 4px;
  }
  
  .bottom-nav-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 4px 6px;
    font-size: 0.65rem;
  }
  
  .bottom-nav-btn i {
    font-size: 1.1rem;
  }
  
  .bottom-nav-progress {
    max-width: 60px;
    min-width: 50px;
  }
}

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

[data-theme="dark"] .section-tag-premium {
  background: rgba(144, 169, 85, 0.2);
  border: 1px solid rgba(144, 169, 85, 0.3);
}

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

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

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

/* ============================================
   LIGHT MODE
   ============================================ */
[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(144, 169, 85, 0.1);
  border-color: rgba(144, 169, 85, 0.4);
  color: #7A9048;
}

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

/* ============================================
   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 .bilder-container,
body.classroom-mode .ideen-container,
body.classroom-mode .builder-container,
body.classroom-mode .texte-container,
body.classroom-mode .grenzen-container,
body.classroom-mode .quiz-container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

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

body.classroom-mode .m06-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 .bilder-card h4,
body.classroom-mode .ideen-card h4,
body.classroom-mode .grenzen-card h4 {
  font-size: 1.5rem;
}

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 .m06-hero-badge,
body.classroom-mode .section-tag-premium {
  font-size: 1.1rem;
  padding: 14px 28px;
}

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

body.classroom-mode .builder-select {
  font-size: 1.2rem;
  padding: 18px 24px;
}

/* ============================================
   NO-JS FALLBACK
   ============================================ */
.reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

/* ============================================
   BACK TO TOP BUTTON (Sage Green Theme)
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #90A955;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(144, 169, 85, 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: #7A9048;
  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: #90A955;
}

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