/* India AI Army - Futuristic Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-glow: #a78bfa;
  --blue: #3b82f6;
  --blue-glow: #60a5fa;
  --cyan: #06b6d4;
  --bg: #020817;
  --bg-card: rgba(15, 20, 40, 0.8);
  --border: rgba(139, 92, 246, 0.2);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --glow-purple: 0 0 20px rgba(139,92,246,0.4), 0 0 60px rgba(139,92,246,0.1);
  --glow-blue: 0 0 20px rgba(59,130,246,0.4), 0 0 60px rgba(59,130,246,0.1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── FONTS ── */
.font-orbitron { font-family: 'Orbitron', monospace; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }

/* ── PARTICLES CANVAS ── */
#particles-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.4;
}

/* ── LOADING SCREEN ── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-glow);
  margin-bottom: 1.5rem;
  letter-spacing: 0.15em;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(139,92,246,0.2);
  border-radius: 2px; overflow: hidden;
  margin: 0 auto;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 2px;
  animation: loadProgress 1.5s ease forwards;
}
@keyframes loadProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(2, 8, 23, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem;
  letter-spacing: 0.05em;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--glow-purple);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--purple-glow); }
.nav-cta {
  display: flex; gap: 0.75rem; align-items: center;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(2, 8, 23, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu ul li a { color: var(--text); text-decoration: none; font-size: 1.1rem; }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(139,92,246,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple-glow);
  box-shadow: var(--glow-purple);
}
.btn-glow {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
  padding: 0.9rem 2rem;
  font-size: 1rem;
}
.btn-glow:hover {
  box-shadow: 0 8px 40px rgba(59,130,246,0.5);
  transform: translateY(-2px);
}
.btn-outline-purple {
  background: transparent;
  color: var(--purple-glow);
  border: 1px solid var(--purple);
}
.btn-outline-purple:hover {
  background: rgba(139,92,246,0.1);
  box-shadow: var(--glow-purple);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: 10px; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-glow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.section-sub.center { margin: 0 auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-glow), var(--blue-glow), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── GLASS CARD ── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.glass-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-purple);
}

/* ── GLOWING DIVIDER ── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--blue), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,92,246,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(59,130,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(6,182,212,0.05) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-glow);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease forwards;
}
.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.stat-card {
  background: rgba(15, 20, 40, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}
.stat-card:hover {
  border-color: var(--purple);
  box-shadow: var(--glow-purple);
}
.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-glow), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-dashboard {
  background: rgba(15, 20, 40, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), var(--glow-purple);
  position: relative;
  overflow: hidden;
}
.hero-dashboard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
}
.dashboard-header {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }
.dashboard-title {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.1em;
}
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.dash-widget {
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 10px;
  padding: 0.9rem;
}
.dash-widget-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.dash-widget-value {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-glow);
}
.dash-widget-change { font-size: 0.7rem; color: #10b981; margin-top: 0.2rem; }
.dash-bar-row { margin-bottom: 0.6rem; }
.dash-bar-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.dash-bar { height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--purple), var(--blue)); animation: barGrow 1.5s ease forwards; transform-origin: left; }
@keyframes barGrow { from { width: 0 !important; } }
.dash-live { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.live-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse-green 1.5s infinite; }
@keyframes pulse-green { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(16,185,129,0.4)} 50%{opacity:0.8;box-shadow:0 0 0 6px transparent} }
.live-text { font-size: 0.78rem; color: #10b981; font-weight: 600; }
.live-count { font-size: 0.78rem; color: var(--text-muted); margin-left: auto; }

/* ── PROBLEM SECTION ── */
.problem-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.problem-card {
  background: rgba(10,15,35,0.7);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
}
.problem-card:hover {
  border-color: rgba(239,68,68,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.problem-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.problem-title { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 0.4rem; }
.problem-desc { font-size: 0.88rem; color: var(--text-muted); }
.solution-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(59,130,246,0.1));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}
.solution-banner h3 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.solution-banner p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: rgba(10,15,35,0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.05), rgba(59,130,246,0.05));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-purple);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.2));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(139,92,246,0.4), rgba(59,130,246,0.3));
  box-shadow: var(--glow-purple);
}
.service-title { font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.service-benefits { list-style: none; }
.service-benefits li {
  font-size: 0.82rem;
  color: var(--purple-glow);
  padding: 0.2rem 0;
  display: flex; align-items: center; gap: 0.4rem;
}
.service-benefits li::before { content: '▸'; color: var(--purple); }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.how-grid::before {
  content: '';
  position: absolute;
  top: 50px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  z-index: 0;
}
.how-step {
  position: relative; z-index: 1; text-align: center;
}
.how-number {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: 700; font-size: 1.2rem;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: var(--glow-purple);
  position: relative;
}
.how-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.how-title { font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.how-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── YOUTH SECTION ── */
.youth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.youth-benefits { list-style: none; margin-top: 1.5rem; }
.youth-benefit {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.youth-benefit:last-child { border: none; }
.benefit-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.15));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.benefit-content h4 { font-weight: 600; color: #fff; font-size: 0.95rem; margin-bottom: 0.2rem; }
.benefit-content p { font-size: 0.85rem; color: var(--text-muted); }
.youth-image-area {
  position: relative;
}
.youth-card-stack { position: relative; height: 400px; }
.youth-card-main {
  position: absolute; top: 0; left: 0; right: 0;
  background: rgba(15, 20, 40, 0.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.youth-card-float {
  position: absolute;
  bottom: 0; right: -20px;
  background: rgba(15, 20, 40, 0.9);
  border: 1px solid var(--purple);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  box-shadow: var(--glow-purple);
  animation: floatAnim 3s ease-in-out infinite;
}
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: rgba(10,15,35,0.7);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--purple);
  background: rgba(139,92,246,0.08);
  box-shadow: var(--glow-purple);
}
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 0.3rem 1.5rem;
  border-radius: 0 0 10px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}
.pricing-plan { font-size: 0.8rem; font-weight: 600; color: var(--purple-glow); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.pricing-price { font-family: 'Orbitron', monospace; font-size: 2.2rem; font-weight: 700; color: #fff; }
.pricing-price span { font-size: 0.9rem; color: var(--text-muted); font-family: 'Rajdhani', sans-serif; }
.pricing-desc { color: var(--text-muted); font-size: 0.9rem; margin: 0.75rem 0 1.5rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li { padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-muted); display: flex; gap: 0.75rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.03); }
.pricing-features li .check { color: #10b981; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.4), var(--glow-purple); }

/* ── VISION ── */
.vision-section {
  background: 
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(139,92,246,0.08) 0%, transparent 70%);
  position: relative;
}
.vision-content { text-align: center; max-width: 700px; margin: 0 auto; }
.vision-quote {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.vision-pillars { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.vision-pill {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--purple-glow);
  font-weight: 500;
}

/* ── LEADERBOARD ── */
.leaderboard-wrap { max-width: 800px; margin: 0 auto; }
.lb-table { width: 100%; border-collapse: separate; border-spacing: 0 0.75rem; }
.lb-row {
  background: rgba(10,15,35,0.7);
  border-radius: 12px;
  transition: all 0.3s;
}
.lb-row:hover { transform: translateX(4px); box-shadow: -4px 0 20px rgba(139,92,246,0.2); }
.lb-row td { padding: 1rem 1.25rem; }
.lb-rank { font-family: 'Orbitron', monospace; font-weight: 700; color: var(--purple-glow); min-width: 40px; }
.lb-rank.gold { color: #f59e0b; }
.lb-rank.silver { color: #94a3b8; }
.lb-rank.bronze { color: #b45309; }
.lb-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.lb-name { font-weight: 600; color: #fff; font-size: 0.95rem; }
.lb-city { font-size: 0.8rem; color: var(--text-muted); }
.lb-badge { display: inline-block; background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3); border-radius: 6px; padding: 0.15rem 0.6rem; font-size: 0.75rem; color: var(--purple-glow); }
.lb-score { font-family: 'Orbitron', monospace; font-size: 1rem; font-weight: 600; color: var(--purple-glow); text-align: right; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: rgba(10,15,35,0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { color: var(--text); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; background: linear-gradient(135deg, var(--purple-dark), var(--blue)); }
.t-name { font-weight: 600; color: #fff; font-size: 0.9rem; }
.t-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 3rem auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--purple); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(10,15,35,0.7);
  border: none; cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: #fff;
  text-align: left;
  transition: background 0.3s;
}
.faq-question:hover { background: rgba(139,92,246,0.08); }
.faq-icon { font-size: 1.2rem; color: var(--purple); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  background: rgba(5,10,25,0.5);
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 1.25rem 1.5rem; }

/* ── CTA FINAL ── */
.final-cta {
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(139,92,246,0.15) 0%, rgba(59,130,246,0.05) 40%, transparent 70%);
  text-align: center;
}
.cta-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: rgba(5, 10, 25, 0.95);
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 0; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 260px; }
.footer-title { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-glow); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-glow); }
.footer-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(139,92,246,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}
.social-btn:hover { border-color: var(--purple); color: var(--purple-glow); box-shadow: var(--glow-purple); }
.footer-email-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-email-input {
  flex: 1;
  background: rgba(15,20,40,0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.footer-email-input:focus { border-color: var(--purple); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--purple-glow); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
@keyframes pulse-wa { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,0.7)} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,92,246,0.15) 0%, transparent 60%);
}

/* ── FORMS ── */
.form-card { background: rgba(10,15,35,0.8); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(15,20,40,0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.form-select option { background: #0f1428; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── ABOUT PAGE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--purple), var(--blue)); }
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 1.5rem; }
.timeline-dot { position: absolute; left: -2rem; top: 0.3rem; width: 16px; height: 16px; border-radius: 50%; background: var(--purple); box-shadow: var(--glow-purple); }
.timeline-year { font-size: 0.8rem; color: var(--purple-glow); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.timeline-title { font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.timeline-desc { font-size: 0.9rem; color: var(--text-muted); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-dark), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1rem; }
.team-name { font-weight: 700; color: #fff; font-size: 1rem; }
.team-role { font-size: 0.85rem; color: var(--purple-glow); margin-top: 0.25rem; }

/* ── ANIMATIONS ── */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes glow-pulse { 0%,100%{box-shadow: var(--glow-purple)} 50%{box-shadow: 0 0 40px rgba(139,92,246,0.6), 0 0 80px rgba(139,92,246,0.2)} }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.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; }

/* ── UTILITIES ── */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 3rem auto 0; }
  .youth-grid { grid-template-columns: 1fr; }
  .youth-card-stack { height: auto; }
  .youth-card-float { position: relative; right: 0; margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .how-grid { grid-template-columns: 1fr; max-width: 400px; margin: 3rem auto 0; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
