/* ============================================
   THE DIGITAL METROPOLIS - GLOBAL STYLES
   Neon Cyber Aesthetic + Glassmorphism
   ============================================ */

/* CSS Variables - Neon Color System */
:root {
  /* Primary Neon Colors */
  --neon-cyan: #00f0ff;
  --neon-pink: #ff00ff;
  --neon-purple: #b829dd;
  --neon-blue: #0066ff;
  --neon-green: #00ff88;
  --neon-orange: #ff6600;
  --neon-yellow: #ffff00;
  
  /* Dark Theme Base */
  --bg-deep: #050508;
  --bg-dark: #0a0a12;
  --bg-mid: #12121f;
  --bg-light: #1a1a2e;
  --bg-card: rgba(26, 26, 46, 0.6);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;
  
  /* Glassmorphism */
  --glass-bg: rgba(26, 26, 46, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-glow: rgba(0, 240, 255, 0.2);
  
  /* Gradients */
  --gradient-cyber: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  --gradient-hero: linear-gradient(180deg, transparent 0%, var(--bg-deep) 100%);
  --gradient-card: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(184, 41, 221, 0.1));
  
  /* Shadows */
  --shadow-neon-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
  --shadow-neon-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
  --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.3);
  
  /* Spacing */
  --section-padding: 120px;
  --container-max: 1400px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.8s ease;
}

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

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

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-purple);
}

/* Selection */
::selection {
  background: var(--neon-cyan);
  color: var(--bg-deep);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.text-gradient {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-neon-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.text-neon-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid var(--neon-cyan);
  border-radius: 4px;
  background: rgba(0, 240, 255, 0.1);
}

.section-title {
  margin-bottom: 24px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* ============================================
   GLASSMORPHISM COMPONENTS
   ============================================ */

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--glass-glow);
  box-shadow: var(--shadow-glow);
}

.glass-card {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(184, 41, 221, 0.05));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-8px);
  box-shadow: var(--shadow-neon-cyan);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-cyber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--gradient-cyber);
  color: var(--text-primary) !important;
  padding: 12px 24px !important;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: var(--shadow-neon-cyan);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center bottom;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--neon-cyan);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  box-shadow: var(--shadow-neon-cyan);
  transform: translateY(-3px);
}

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

.btn-secondary:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
}

.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-cyber);
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-glow:hover::before {
  opacity: 0.5;
  filter: blur(10px);
}

/* ============================================
   SKYLINE & BUILDINGS
   ============================================ */

.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40vh;
  z-index: 1;
  pointer-events: none;
}

.building {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-bottom: none;
}

.building-windows {
  position: absolute;
  inset: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8px, 1fr));
  gap: 8px;
}

.window {
  background: rgba(0, 240, 255, 0.3);
  border-radius: 1px;
}

.window.lit {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-cyber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

/* Feature Cards */
.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.2rem;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-card:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.05);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   PROGRESS BARS
   ============================================ */

.progress-item {
  margin-bottom: 24px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.progress-title {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.progress-value {
  font-size: 0.95rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

.progress-bar {
  height: 8px;
  background: var(--bg-mid);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-cyber);
  border-radius: 4px;
  width: 0;
  transition: width 1.5s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
}

/* ============================================
   ROADMAP / TIMELINE
   ============================================ */

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--bg-dark);
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
}

.timeline-item.completed .timeline-dot {
  background: var(--neon-cyan);
}

.timeline-item.completed .timeline-dot::after {
  background: var(--bg-dark);
}

.timeline-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
}

.timeline-date {
  font-size: 0.875rem;
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS / CITIZEN STORIES
   ============================================ */

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--neon-cyan);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-cyber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.testimonial-info h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   INTERACTIVE MAP
   ============================================ */

.city-map {
  position: relative;
  width: 100%;
  height: 500px;
  background: var(--bg-mid);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-zone {
  position: absolute;
  padding: 16px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: var(--text-primary);
}

.map-zone:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  z-index: 10;
}

.map-zone.active {
  border-color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
}

.map-zone-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.map-zone-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.map-connections {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-line {
  stroke: var(--neon-cyan);
  stroke-width: 2;
  stroke-dasharray: 5, 5;
  opacity: 0.3;
}

/* ============================================
   DAY/NIGHT TRANSITION
   ============================================ */

.day-night-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 102, 255, 0.1) 0%, 
    transparent 50%, 
    rgba(5, 5, 8, 0.8) 100%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 1s ease;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin: 20px 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-mid);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

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

/* CTA Section */
.cta-section {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ============================================
   ANIMATIONS (JS-controlled, no keyframes)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

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

.glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .cta-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cta-section {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .timeline {
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   DISTRICT-SPECIFIC STYLES
   ============================================ */

/* Tech District - Cyan accent */
.district-tech .section-label,
.district-tech .text-neon-cyan {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

/* Financial District - Green accent */
.district-financial .section-label,
.district-financial .text-neon-cyan {
  color: var(--neon-green);
  border-color: var(--neon-green);
}

.district-financial .stat-number {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Underground - Orange accent */
.district-underground .section-label,
.district-underground .text-neon-cyan {
  color: var(--neon-orange);
  border-color: var(--neon-orange);
}

.district-underground .stat-number {
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-yellow));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Sky City - Purple accent */
.district-sky .section-label,
.district-sky .text-neon-cyan {
  color: var(--neon-purple);
  border-color: var(--neon-purple);
}

.district-sky .stat-number {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Governance - Blue accent */
.district-governance .section-label,
.district-governance .text-neon-cyan {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

.district-governance .stat-number {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Infrastructure - Yellow accent */
.district-infrastructure .section-label,
.district-infrastructure .text-neon-cyan {
  color: var(--neon-yellow);
  border-color: var(--neon-yellow);
}

.district-infrastructure .stat-number {
  background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Citizens - Pink accent */
.district-citizens .section-label,
.district-citizens .text-neon-cyan {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
}

.district-citizens .stat-number {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
