:root {
  --gold: #C9A961;
  --gold-bright: #E0BD78;
  --gold-deep: #A8893F;
  --gold-soft: #F5EBD1;
  --gold-tint: #FAF4E3;
  
  --navy: #1A4A7A;
  --navy-deep: #0F3457;
  --navy-soft: #2A5C8F;
  
  --bg: #FAFAF7;
  --bg-card: #FFFFFF;
  --bg-warm: #FDF8EE;
  
  --ink: #1A4A7A;
  --ink-soft: #4B5563;
  --muted: #6B7280;
  --line: #E5E7EB;
  --line-gold: rgba(201, 169, 97, 0.2);
  
  --success: #059669;
  --warning: #D97706;
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px rgba(26, 74, 122, 0.06);
  --shadow: 0 4px 16px rgba(26, 74, 122, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 74, 122, 0.08);
  --shadow-gold: 0 8px 30px rgba(201, 169, 97, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'IBM Plex Sans Arabic', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: white; }

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

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   NUMO Logo
   ============================================ */
.numo-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.numo-logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.numo-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.numo-logo-text .ar {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
}

.numo-logo-text .divider {
  width: 1px;
  height: 16px;
  background: var(--gold);
  opacity: 0.4;
}

.numo-logo-tagline {
  font-size: 9px;
  color: var(--gold-deep);
  letter-spacing: 0.25em;
  margin-top: 2px;
  font-weight: 500;
}

.academy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-right: 8px;
}

/* ============================================
   Navigation
   ============================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.nav-logo-section {
  display: flex;
  align-items: center;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.2s;
}

.nav-back:hover {
  background: var(--bg-warm);
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--gold);
  color: white;
}

.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.btn-full {
  width: 100%;
}

/* ============================================
   HERO Section
   ============================================ */
#hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

#hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#hero .subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 24px;
}

#hero .description {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  position: relative;
}

.hero-stat-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: var(--line);
}

.hero-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Main Layout - Video + Sidebar
   ============================================ */
.main-section {
  padding: 40px 0 80px;
}

.layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ============================================
   Video Card (Main)
   ============================================ */
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.video-player::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 60%);
  border-radius: 50%;
}

.video-player::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 60%);
  border-radius: 50%;
}

.play-button {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
  cursor: pointer;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--gold-bright);
}

.play-button svg {
  width: 32px;
  height: 32px;
  color: white;
  margin-right: -4px;
}

.video-overlay-text {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  z-index: 2;
  color: white;
  text-align: right;
}

.video-overlay-text .module-label {
  font-size: 12px;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.video-overlay-text h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.video-info {
  padding: 24px 28px;
}

.current-lesson {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.current-lesson-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.current-lesson h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.lesson-meta {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.lesson-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.progress-section {
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.progress-percent {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-deep);
  font-family: 'Inter', sans-serif;
}

.progress-bar {
  height: 10px;
  background: var(--gold-tint);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 100px;
  transition: width 1s ease-out;
}

.progress-text {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ============================================
   Sidebar (Right side in RTL = visually right)
   ============================================ */
.sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card.primary {
  background: linear-gradient(135deg, var(--gold-tint), var(--bg-warm));
  border-color: var(--line-gold);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.sidebar-title .icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.progress-ring-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
}

.progress-ring-bg, .progress-ring-fg {
  fill: none;
  stroke-width: 8;
}

.progress-ring-bg { stroke: var(--gold-tint); }
.progress-ring-fg {
  stroke: var(--gold);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dasharray 1s ease-out;
}

.progress-ring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-ring-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.progress-ring-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.next-lesson-box {
  background: white;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
}

.next-lesson-label {
  font-size: 11px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.next-lesson-title {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Sidebar Upgrade */
.upgrade-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.upgrade-card::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent 60%);
  border-radius: 50%;
}

.upgrade-card .sidebar-title {
  color: white;
  position: relative;
  z-index: 2;
}

.upgrade-card .sidebar-title .icon {
  background: var(--gold);
}

.upgrade-text {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

/* Achievements */
.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.achievement-item.earned {
  background: var(--gold-tint);
  border-color: var(--line-gold);
}

.achievement-item:not(.earned) {
  opacity: 0.5;
}

.achievement-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.achievement-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================
   Results Section
   ============================================ */
#results-section {
  padding: 60px 0;
  background: var(--bg-card);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-title .highlight {
  color: var(--gold-deep);
}

.section-subtitle {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: all 0.2s;
}

.result-item:hover {
  border-color: var(--gold);
  background: var(--bg-warm);
  transform: translateX(-4px);
}

.result-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.result-item span {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

/* ============================================
   Modules Section
   ============================================ */
#modules {
  padding: 80px 0;
}

.modules-list {
  max-width: 960px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.module-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
}

.module-header:hover {
  background: var(--bg-warm);
}

.module-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.module-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-deep);
}

.module-info {
  flex: 1;
}

.module-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.module-stats {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.module-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all 0.3s;
}

.module-card.open .module-toggle {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: rotate(180deg);
}

.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.module-card.open .module-body {
  max-height: 1000px;
}

.module-content {
  padding: 0 28px 24px;
}

.module-description {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--bg-warm);
  border-right: 3px solid var(--gold);
  border-radius: var(--radius);
}

.module-subtitle {
  font-size: 14px !important;
  color: var(--gold-deep) !important;
  font-weight: 600 !important;
  font-style: italic;
  line-height: 1.5;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-tint), var(--bg-warm));
  border: 1px solid var(--line-gold);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 20px;
}

.story-tag strong {
  color: var(--navy);
  font-weight: 700;
}

.story-icon {
  font-size: 22px;
  line-height: 1;
}

.lessons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.lesson-item:hover {
  border-color: var(--gold);
  transform: translateX(-2px);
}

.lesson-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.lesson-info {
  flex: 1;
}

.lesson-title {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.4;
}

.lesson-type {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lesson-type-badge {
  background: var(--gold-tint);
  color: var(--gold-deep);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.lesson-type-badge.quiz {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.lesson-type-badge.practice {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
}

.module-attachment {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 600;
}

.module-attachment svg {
  flex-shrink: 0;
}

/* ============================================
   Tools Section
   ============================================ */
#tools {
  padding: 80px 0;
  background: var(--bg-card);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all 0.2s;
}

.tool-item:hover {
  border-color: var(--gold);
  background: var(--bg-warm);
  transform: translateY(-2px);
}

.tool-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.tool-item span {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================
   Journey Next Section
   ============================================ */
#journey {
  padding: 80px 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.journey-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: right;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.3s;
}

.journey-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.journey-card:hover::before {
  opacity: 1;
}

.journey-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gold-tint);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-deep);
}

.journey-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.journey-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================
   Final CTA
   ============================================ */
#final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#final-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 60%);
  border-radius: 50%;
}

#final-cta::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

#final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

#final-cta h2 .highlight {
  color: var(--gold-bright);
}

#final-cta .lead {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 0;
  text-align: center;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.footer-text {
  font-size: 12px;
  opacity: 0.7;
}

/* ============================================
   Accessibility
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .sidebar-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  #hero { padding: 40px 0 30px; }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  
  .hero-stat::after { display: none !important; }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn { width: 100%; }
  
  .video-info { padding: 20px; }
  .current-lesson {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .sidebar {
    flex-direction: column;
  }
  
  .module-header {
    padding: 20px;
    flex-wrap: wrap;
  }
  
  .module-title { font-size: 17px; }
  .module-content { padding: 0 20px 20px; }
  
  .journey-grid {
    grid-template-columns: 1fr;
  }
  
  #modules, #tools, #journey, #final-cta {
    padding: 50px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}