/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --border: rgba(255,255,255,0.08);
  --text: #f0f0f5;
  --text-muted: #9ca3af;
  --purple: #8b5cf6;
  --indigo: #6366f1;
  --blue: #3b82f6;
  --pink: #ec4899;
  --green: #22c55e;
  --orange: #f97316;
  --teal: #14b8a6;
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  --gradient-btn: linear-gradient(135deg, #4f46e5, #7c3aed);
  --glow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5); }

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

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple);
}
.btn-outline-purple:hover { background: rgba(139, 92, 246, 0.1); transform: translateY(-2px); }

.btn-gradient {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.45);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.6);
  background: linear-gradient(135deg, #5b52f0, #8b4ff0);
}

.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header.scrolled { background: rgba(10, 10, 15, 0.97); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-icon { width: 40px; height: 40px; }
.logo-icon svg { width: 100%; height: 100%; }

.logo-name {
  display: block;
  font-weight: 800;
  font-size: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--text); }

.header-actions { display: flex; gap: 10px; flex-shrink: 0; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 110px 0 60px;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.badge-launch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.rocket { animation: rocketBounce 2s ease-in-out infinite; }

@keyframes rocketBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight-career { color: #a5b4fc; font-weight: 600; }
.hl-purple { color: #c084fc; }
.hl-blue { color: #60a5fa; }
.hl-orange { color: #fb923c; }
.hl-pink { color: #f472b6; }
.hl-green { color: #4ade80; }
.hl-teal { color: #2dd4bf; }

.hero-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.25s both;
}

.service-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  animation: iconFloat 3s ease-in-out infinite;
}

.svc-icon:nth-child(2) { animation-delay: 0.3s; }
.svc-icon:nth-child(3) { animation-delay: 0.6s; }
.svc-icon:nth-child(4) { animation-delay: 0.9s; }
.svc-icon:nth-child(5) { animation-delay: 1.2s; }
.svc-icon:nth-child(6) { animation-delay: 1.5s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.svc-icon:hover {
  transform: translateY(-8px) scale(1.1);
  border-color: var(--purple);
  box-shadow: var(--glow-purple);
}

.svc-icon::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.svc-icon:hover::after { opacity: 1; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-bar .check {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* Hero Image with Animations */
.hero-center {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  animation: heroBreath 5s ease-in-out infinite;
}

@keyframes heroBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Animated Sticky Notes Overlay */
.sticky-notes-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sticky-note {
  position: absolute;
  background: rgba(255, 220, 100, 0.85);
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 3px;
  transform-origin: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 0.5px;
  animation: noteFloat 4s ease-in-out infinite;
}

.sn1 { top: 15%; left: 5%; transform: rotate(-12deg); animation-delay: 0s; }
.sn2 { top: 25%; right: 8%; transform: rotate(8deg); animation-delay: 0.5s; background: rgba(255, 180, 180, 0.9); }
.sn3 { top: 45%; left: 3%; transform: rotate(-5deg); animation-delay: 1s; }
.sn4 { bottom: 35%; right: 5%; transform: rotate(6deg); animation-delay: 1.5s; font-size: 7px; background: rgba(255, 200, 200, 0.9); }
.sn5 { bottom: 20%; left: 8%; transform: rotate(-8deg); animation-delay: 2s; font-size: 7px; }
.sn6 { top: 60%; right: 12%; transform: rotate(-3deg); animation-delay: 2.5s; background: rgba(200, 200, 255, 0.9); }

@keyframes noteFloat {
  0%, 100% { transform: rotate(var(--r, -12deg)) translateY(0) translateX(0); opacity: 0.7; }
  25% { transform: rotate(calc(var(--r, -12deg) + 3deg)) translateY(-8px) translateX(4px); opacity: 1; }
  50% { transform: rotate(calc(var(--r, -12deg) - 2deg)) translateY(-4px) translateX(-3px); opacity: 0.85; }
  75% { transform: rotate(calc(var(--r, -12deg) + 1deg)) translateY(-10px) translateX(2px); opacity: 1; }
}

/* Hope particles rising from image */
.hope-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hope-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #a78bfa, transparent);
  animation: rise 4s ease-in-out infinite;
}

.hope-particles span:nth-child(1) { left: 20%; bottom: 10%; animation-delay: 0s; }
.hope-particles span:nth-child(2) { left: 40%; bottom: 5%; animation-delay: 0.8s; width: 4px; height: 4px; }
.hope-particles span:nth-child(3) { left: 60%; bottom: 15%; animation-delay: 1.6s; }
.hope-particles span:nth-child(4) { left: 75%; bottom: 8%; animation-delay: 2.4s; width: 5px; height: 5px; }
.hope-particles span:nth-child(5) { left: 50%; bottom: 20%; animation-delay: 3.2s; }

@keyframes rise {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  20% { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

/* Support Card */
.support-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(18, 18, 26, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius);
  padding: 16px;
  max-width: 260px;
  box-shadow: var(--glow-purple), 0 10px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.floating-card {
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.support-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f0abfc;
  margin-bottom: 6px;
}

.support-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.help-box {
  display: flex;
  gap: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 8px;
  padding: 10px;
  font-size: 11px;
}

.help-box strong { display: block; color: #a5b4fc; margin-bottom: 2px; }
.help-box p { color: var(--text-muted); font-size: 10px; }

/* Feature List (Right) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
}

.feature-item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateX(6px);
  background: var(--bg-card-hover);
}

.fi-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fi-purple { background: rgba(139, 92, 246, 0.2); }
.fi-blue { background: rgba(59, 130, 246, 0.2); }
.fi-green { background: rgba(34, 197, 94, 0.2); }
.fi-orange { background: rgba(249, 115, 22, 0.2); }
.fi-teal { background: rgba(20, 184, 166, 0.2); }
.fi-pink { background: rgba(236, 72, 153, 0.2); }
.fi-gold { background: rgba(234, 179, 8, 0.2); }

/* ===== Tagline Banner ===== */
.tagline-banner {
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.tagline-banner h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.tagline-banner p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Sections ===== */
.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Help Grid */
.help-section { padding: 80px 0; }

.help-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.help-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent, #6366f1), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.help-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent, #6366f1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px color-mix(in srgb, var(--accent) 30%, transparent);
}

.help-card:hover::before { opacity: 0.08; }

.help-icon { font-size: 32px; margin-bottom: 12px; position: relative; }
.help-card h3 { font-size: 13px; font-weight: 700; margin-bottom: 4px; position: relative; }
.help-card p { font-size: 11px; color: var(--text-muted); position: relative; }

/* Stats Bar */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.sos-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sos-btn {
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 2px;
  animation: sosPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}

.sos-btn:hover { transform: scale(1.08); }

@keyframes sosPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  50% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
}

.sos-text {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 140px;
  line-height: 1.4;
}

/* Features Grid */
.features-section { padding: 80px 0; }

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--glow-purple);
}

.fc-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-muted); }

/* Flow Section */
.flow-section {
  padding: 80px 0;
  background: rgba(99, 102, 241, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
}

.flow-step:hover { border-color: var(--purple); transform: scale(1.03); }

.flow-start { background: rgba(99, 102, 241, 0.15); border-color: rgba(99, 102, 241, 0.3); }
.flow-highlight { background: rgba(139, 92, 246, 0.15); border-color: rgba(139, 92, 246, 0.3); color: #c4b5fd; }
.flow-success { background: rgba(34, 197, 94, 0.15); border-color: rgba(34, 197, 94, 0.3); color: #86efac; }

.flow-arrow { color: var(--purple); font-size: 20px; animation: arrowBounce 1.5s ease-in-out infinite; }

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.flow-branches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 700px;
}

.flow-branches span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.flow-branches span:hover {
  border-color: var(--purple);
  color: var(--text);
  transform: translateY(-2px);
}

.flow-branches.small span { font-size: 11px; padding: 5px 12px; }

/* Services */
.services-section { padding: 80px 0; }

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

.service-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
}

.service-block:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.service-block h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.service-block ul { list-style: none; }
.service-block li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.service-block li:last-child { border-bottom: none; }
.service-block li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* Courses */
.courses-section {
  padding: 80px 0;
  background: rgba(139, 92, 246, 0.03);
  border-top: 1px solid var(--border);
}

.course-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.course-cat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s;
}

.course-cat:hover { border-color: var(--purple); transform: translateY(-4px); }
.course-cat h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #c4b5fd; }
.course-cat p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Unique Features */
.unique-section { padding: 80px 0; }

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

.unique-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
}

.unique-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--glow-purple);
  transform: translateY(-4px);
}

.unique-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.unique-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.hindi-quote {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 15px !important;
  color: #f0abfc !important;
  font-weight: 600;
}

/* Pricing */
.pricing-section {
  padding: 80px 0;
  background: rgba(99, 102, 241, 0.03);
  border-top: 1px solid var(--border);
}

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

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

.price-card:hover { transform: translateY(-6px); }

.price-featured {
  border-color: var(--purple);
  box-shadow: var(--glow-purple);
  transform: scale(1.04);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

.price-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.price-card ul { list-style: none; margin-bottom: 24px; text-align: left; }
.price-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.price-card li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* Future */
.future-section { padding: 60px 0 80px; }

.future-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.future-tags span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.25s;
  cursor: default;
}

.future-tags span:hover {
  border-color: var(--purple);
  color: #c4b5fd;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}

.footer-brand p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.footer-quote {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 15px;
  color: #f0abfc;
  font-weight: 600;
  text-align: center;
  flex: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px;
  text-align: center;
}

.footer-bottom p { font-size: 12px; color: var(--text-muted); }

/* SOS Modal */
.sos-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.sos-modal.active { display: flex; }

.sos-modal-content {
  background: var(--bg-card);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.sos-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.sos-modal-content h2 { font-size: 24px; margin-bottom: 8px; }
.sos-modal-content > p { color: var(--text-muted); margin-bottom: 24px; }

.sos-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.emergency-contacts {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 16px;
  text-align: left;
}

.emergency-contacts p { font-size: 13px; color: var(--text-muted); padding: 4px 0; }

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-right { grid-column: 1 / -1; }
  .feature-list { flex-direction: row; flex-wrap: wrap; }
  .feature-item { flex: 1; min-width: 200px; }
  .help-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .course-categories { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-center { order: -1; }
  .support-card { right: 0; bottom: -10px; max-width: 220px; }

  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .course-categories { grid-template-columns: 1fr; }
  .unique-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }

  .stats-inner { justify-content: center; }
  .stat-item { min-width: 80px; }
  .sos-wrap { width: 100%; justify-content: center; margin-top: 8px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
