/* Modern Web Academy AI/LLM Engineer Landing Page CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #090d16;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(99, 102, 241, 0.4);
  
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --accent-coral: #fd695a;
  --accent-coral-hover: #e05345;
  --accent-cyan: #06b6d4;
  --accent-purple: #a855f7;
  --accent-amber: #f59e0b;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.35);
  --shadow-coral: 0 0 30px rgba(253, 105, 90, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glows */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(253, 105, 90, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Grid Pattern Overlay */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--accent-coral);
  background: linear-gradient(135deg, var(--accent-coral) 0%, #ff8a75 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 720px;
  margin: 16px auto 0 auto;
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-coral {
  background: var(--accent-coral);
  color: #fff;
  box-shadow: 0 4px 20px rgba(253, 105, 90, 0.4);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(99, 102, 241, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ----------------------------------------------------
   HEADER & NAVBAR
   ---------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--primary) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(253, 105, 90, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--accent-coral);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 290px;
  height: 100vh;
  background: #0f172a;
  border-left: 1px solid var(--border-glow);
  padding: 80px 24px 36px 24px;
  z-index: 999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--accent-coral);
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(253, 105, 90, 0.12);
  border: 1px solid rgba(253, 105, 90, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-coral);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--accent-coral);
  border-radius: 50%;
  animation: pulseRing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffa398;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  min-height: 8.5rem; /* Reserve exact height for title to prevent layout shifts */
}

.typed-text {
  color: var(--accent-coral);
  border-bottom: 3px solid var(--accent-coral);
  display: inline-block;
  min-width: 240px;
  min-height: 1.2em;
  line-height: 1.2;
  padding-bottom: 2px;
  vertical-align: bottom;
}

.typed-text::after {
  content: '|';
  color: var(--accent-coral);
  font-weight: 400;
  animation: blinkCursor 0.8s infinite;
  margin-left: 2px;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.spec-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.spec-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Interactive AI Demo Widget in Hero */
.ai-widget-card {
  background: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.ai-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.ai-widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.ai-preset-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.chip-btn:hover, .chip-btn.active {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
  color: #fff;
}

.ai-console-output {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-height: 180px;
  font-family: monospace;
  font-size: 0.85rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  overflow-y: auto;
  max-height: 220px;
}

.prompt-log { color: #818cf8; margin-bottom: 8px; }
.rag-log { color: #38bdf8; margin-bottom: 8px; font-style: italic; }
.response-log { color: #f1f5f9; }

.ai-input-bar {
  display: flex;
  gap: 8px;
}

.ai-input-field {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: 0.875rem;
  outline: none;
}

.ai-input-field:focus {
  border-color: var(--primary);
}

/* ----------------------------------------------------
   TOP REASONS SECTION
   ---------------------------------------------------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-card {
  position: relative;
}

.reason-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 16px;
  right: 24px;
}

.reason-icon {
  width: 52px;
  height: 52px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.reason-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.reason-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.reasons-highlight-box {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(253, 105, 90, 0.15) 100%);
  border: 1px solid rgba(253, 105, 90, 0.3);
  padding: 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 24px;
}

.highlight-emoji { font-size: 2.5rem; }

.highlight-text p {
  color: #f1f5f9;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ----------------------------------------------------
   MENTOR SECTION
   ---------------------------------------------------- */
.mentor-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.mentor-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.mentor-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.mentor-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.mentor-name { font-size: 1.25rem; }
.mentor-role { color: var(--accent-coral); font-size: 0.875rem; font-weight: 600; }

.mentor-quote {
  font-size: 1.15rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent-coral);
  padding-left: 20px;
  font-style: italic;
}

.mentor-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.mentor-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mentor-bullet-list li span { color: var(--accent-coral); }

/* ----------------------------------------------------
   LEARNING FORMAT
   ---------------------------------------------------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  text-align: center;
  padding: 36px 24px;
}

.format-icon {
  width: 64px;
  height: 64px;
  background: rgba(253, 105, 90, 0.1);
  border: 1px solid rgba(253, 105, 90, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px auto;
  color: var(--accent-coral);
}

.format-title { font-size: 1.2rem; margin-bottom: 10px; }
.format-desc { color: var(--text-muted); font-size: 0.9rem; }

/* ----------------------------------------------------
   CURRICULUM PROGRAM SECTION
   ---------------------------------------------------- */
.curriculum-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.accordion-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-number {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glow);
}

.module-title { font-size: 1.15rem; color: #fff; }

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  padding: 0 24px 24px 24px;
}

.module-topics-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.module-topics-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-topics-list li::before {
  content: '✦';
  color: var(--accent-coral);
  font-size: 0.8rem;
}

/* ----------------------------------------------------
   RESULTS & CERTIFICATE
   ---------------------------------------------------- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: #e2e8f0;
  font-size: 0.95rem;
}

.outcome-check {
  color: #34d399;
  font-size: 1.2rem;
  line-height: 1;
}

.certificate-card {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--accent-amber);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.2);
}

.cert-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-amber) 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.cert-org { font-size: 0.85rem; color: var(--accent-amber); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.cert-title { font-size: 1.6rem; margin: 12px 0 8px 0; }
.cert-holder { font-size: 1.1rem; color: var(--text-muted); text-decoration: underline; text-decoration-color: var(--primary); }

/* ----------------------------------------------------
   HIRING PARTNERS
   ---------------------------------------------------- */
.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.partner-logo-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.partner-logo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ----------------------------------------------------
   REVIEWS & PRICING
   ---------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.author-info h4 { font-size: 0.95rem; }
.author-info p { font-size: 0.75rem; color: var(--text-dim); }

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.popular {
  border-color: var(--accent-coral);
  box-shadow: var(--shadow-coral);
}

.popular-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--accent-coral);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-header { margin-bottom: 24px; }
.pricing-name { font-size: 1.75rem; margin-bottom: 8px; }
.pricing-duration { color: var(--accent-coral); font-size: 0.9rem; font-weight: 600; }
.pricing-price { font-size: 2.75rem; font-weight: 800; color: #fff; margin: 16px 0; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li span { color: #34d399; }

/* ----------------------------------------------------
   MODAL & FOOTER
   ---------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-box {
  background: #0f172a;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.footer {
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-coral);
  color: #fff;
}

/* Consultation Section */
.consultation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.consultation-info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consultation-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultation-benefits-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.consultation-benefits-list li strong {
  color: #fff;
}

.consultation-stat-box {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 10px;
}

.stat-num-highlight {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-coral);
}

.stat-num-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Responsive Breakdown */
@media (max-width: 992px) {
  .hero-grid, .mentor-grid, .results-grid, .consultation-grid { grid-template-columns: 1fr; gap: 40px; }
  .reasons-grid, .format-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .partners-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.75rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .reasons-grid, .format-grid, .reviews-grid { grid-template-columns: 1fr; }
  .hero-specs-grid { grid-template-columns: 1fr 1fr; }
  .partners-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
