/* ============================================
   FUTURISTIC CYBERPUNK UI - ADVANCED DISPLAY
   Holographic | Neon | Sci-Fi Interface
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  /* Core Colors */
  --cyber-black: #050508;
  --cyber-dark: #0a0a12;
  --cyber-panel: #0f0f1a;
  --cyber-surface: #151520;
  
  /* Neon Accents */
  --neon-cyan: #00f0ff;
  --neon-blue: #0066ff;
  --neon-purple: #b829dd;
  --neon-pink: #ff0080;
  --neon-green: #00ff88;
  --neon-yellow: #ffdd00;
  --neon-orange: #ff6600;
  
  /* Glow Effects */
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.6);
  --glow-blue: 0 0 20px rgba(0, 102, 255, 0.6);
  --glow-purple: 0 0 20px rgba(184, 41, 221, 0.6);
  --glow-pink: 0 0 20px rgba(255, 0, 128, 0.6);
  --glow-green: 0 0 20px rgba(0, 255, 136, 0.6);
  
  /* Gradients */
  --gradient-cyber: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  --gradient-purple: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  --gradient-green: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  --gradient-fire: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
  
  /* Text */
  --text-primary: #e0e0ff;
  --text-secondary: #9090b0;
  --text-dim: #606080;
  --text-glow: #ffffff;
  
  /* Spacing */
  --section-padding: 120px;
  --header-height: 80px;
  
  /* Animation */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--cyber-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated Grid Background */
.cyber-app {
  min-height: 100vh;
  position: relative;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(184, 41, 221, 0.06) 0%, transparent 45%),
    var(--cyber-black);
}

.cyber-app::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.cyber-app::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 240, 255, 0.015) 2px,
      rgba(0, 240, 255, 0.015) 4px
    );
  pointer-events: none;
  z-index: 1;
  animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mono {
  font-family: 'Share Tech Mono', monospace;
}

/* ============================================
   HEADER - FUTURISTIC
   ============================================ */

.futuristic-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.futuristic-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-cyber);
  box-shadow: var(--glow-cyan);
}

.header-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.futuristic-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-hologram {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-hologram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-cyber);
  border-radius: 12px;
  transform: rotate(45deg);
  opacity: 0.8;
  animation: hologramPulse 3s ease-in-out infinite;
}

.logo-hologram::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--cyber-dark);
  border-radius: 10px;
  transform: rotate(45deg);
}

.logo-hologram svg {
  position: relative;
  z-index: 1;
  font-size: 24px;
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 10px var(--neon-cyan));
}

@keyframes hologramPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
  50% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.8); }
}

.logo-text-container {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 900;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}

.logo-subtitle {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--neon-green);
  letter-spacing: 4px;
}

/* Navigation */
.futuristic-nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 20px;
  position: relative;
  transition: all var(--transition-fast);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.1), transparent);
  transition: width var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Stats */
.header-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.stat-pill {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================
   HERO SECTION - CYBERPUNK
   ============================================ */

.futuristic-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: float 15s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--neon-cyan);
  letter-spacing: 3px;
  margin-bottom: 30px;
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.6); }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 4px;
}

.hero-title .gradient-text {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .glitch-text {
  position: relative;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-cyber {
  padding: 18px 36px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.btn-cyber:hover::before {
  left: 100%;
}

.btn-primary-cyber {
  background: var(--gradient-cyber);
  color: var(--cyber-black);
  box-shadow: var(--glow-cyan);
}

.btn-primary-cyber:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
}

.btn-secondary-cyber {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
}

.btn-secondary-cyber:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--glow-cyan);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holographic-ring {
  position: absolute;
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.holographic-ring:nth-child(1) {
  width: 400px;
  height: 400px;
  border-top-color: var(--neon-cyan);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: var(--neon-blue);
}

.holographic-ring:nth-child(2) {
  width: 320px;
  height: 320px;
  border-top-color: transparent;
  border-right-color: var(--neon-purple);
  border-bottom-color: var(--neon-pink);
  border-left-color: transparent;
  animation-direction: reverse;
  animation-duration: 15s;
}

.holographic-ring:nth-child(3) {
  width: 240px;
  height: 240px;
  border: 1px dashed rgba(0, 255, 136, 0.4);
  animation-duration: 25s;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stats-grid {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-stat {
  position: absolute;
  background: rgba(15, 15, 32, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  backdrop-filter: blur(10px);
}

.hero-stat:nth-child(4) { top: 10%; left: 0; }
.hero-stat:nth-child(5) { top: 0; right: 10%; }
.hero-stat:nth-child(6) { bottom: 20%; left: 5%; }
.hero-stat:nth-child(7) { bottom: 10%; right: 0; }

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   SERVICES GRID - HOLOGRAPHIC CARDS
   ============================================ */

.services-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header-cyber {
  max-width: 1800px;
  margin: 0 auto 60px;
  padding: 0 40px;
  text-align: center;
}

.section-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--neon-cyan);
  letter-spacing: 4px;
  margin-bottom: 15px;
  display: block;
}

.section-title-cyber {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.section-title-cyber .highlight {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-cyber {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
  max-width: 1800px;
  margin: 0 auto 50px;
  padding: 0 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--text-secondary);
  padding: 12px 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.filter-tab:hover,
.filter-tab.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

/* Services Grid */
.services-grid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

/* Holographic Card */
.holo-card {
  background: linear-gradient(135deg, rgba(15, 15, 32, 0.9), rgba(10, 10, 20, 0.95));
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-medium);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.holo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cyber);
  box-shadow: var(--glow-cyan);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.holo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 240, 255, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.holo-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 240, 255, 0.2);
}

.holo-card:hover::before {
  transform: scaleX(1);
}

.holo-card:hover::after {
  opacity: 1;
}

.card-category {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--neon-green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-category::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--neon-green);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 102, 255, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-cyber);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.holo-card:hover .card-icon::before {
  opacity: 0.2;
}

.card-icon svg {
  font-size: 32px;
  color: var(--neon-cyan);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px var(--neon-cyan));
  transition: all var(--transition-fast);
}

.holo-card:hover .card-icon svg {
  transform: scale(1.1);
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.card-code {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

.card-action {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.holo-card:hover .card-action {
  gap: 10px;
}

/* Category Colors */
.holo-card.personnel .card-icon { border-color: rgba(0, 240, 255, 0.3); }
.holo-card.personnel .card-icon svg { color: var(--neon-cyan); filter: drop-shadow(0 0 10px var(--neon-cyan)); }
.holo-card.personnel:hover { border-color: var(--neon-cyan); }

.holo-card.technology .card-icon { border-color: rgba(184, 41, 221, 0.3); }
.holo-card.technology .card-icon svg { color: var(--neon-purple); filter: drop-shadow(0 0 10px var(--neon-purple)); }
.holo-card.technology:hover { border-color: var(--neon-purple); }

.holo-card.industry .card-icon { border-color: rgba(0, 255, 136, 0.3); }
.holo-card.industry .card-icon svg { color: var(--neon-green); filter: drop-shadow(0 0 10px var(--neon-green)); }
.holo-card.industry:hover { border-color: var(--neon-green); }

.holo-card.specialized .card-icon { border-color: rgba(255, 0, 128, 0.3); }
.holo-card.specialized .card-icon svg { color: var(--neon-pink); filter: drop-shadow(0 0 10px var(--neon-pink)); }
.holo-card.specialized:hover { border-color: var(--neon-pink); }

/* ============================================
   MODAL - FUTURISTIC
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-container {
  background: linear-gradient(135deg, rgba(15, 15, 32, 0.98), rgba(10, 10, 20, 0.99));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 60px rgba(0, 240, 255, 0.15),
    inset 0 0 60px rgba(0, 240, 255, 0.05);
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 0, 128, 0.1);
  border: 1px solid var(--neon-pink);
  border-radius: 8px;
  color: var(--neon-pink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--neon-pink);
  color: white;
  box-shadow: var(--glow-pink);
}

.modal-header {
  padding: 50px 50px 30px;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cyber);
  box-shadow: var(--glow-cyan);
}

.modal-category {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--neon-green);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 3px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.modal-code {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 3px;
}

.modal-body {
  padding: 0 50px 40px;
}

.modal-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.feature-item:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.3);
}

.feature-item svg {
  font-size: 18px;
  color: var(--neon-cyan);
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* Benefits */
.benefits-section {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.benefits-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefits-list li {
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.5;
}

.benefits-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-weight: bold;
}

/* Stats Row */
.modal-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.modal-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.modal-stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Modal Footer */
.modal-footer {
  padding: 0 50px 50px;
  display: flex;
  gap: 20px;
}

/* ============================================
   FOOTER - FUTURISTIC
   ============================================ */

.futuristic-footer {
  background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.03));
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  padding: 80px 0 40px;
  position: relative;
}

.futuristic-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-cyber);
  box-shadow: var(--glow-cyan);
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-cyber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.footer-logo-icon svg {
  transform: rotate(-45deg);
  font-size: 20px;
  color: var(--cyber-black);
}

.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--neon-cyan);
  color: var(--cyber-black);
  box-shadow: var(--glow-cyan);
}

.footer-column h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--neon-cyan);
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1800px;
  margin: 0 auto;
  padding: 30px 40px 0;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .futuristic-nav {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .filter-tabs {
    padding: 0 20px;
  }
  
  .filter-tab {
    padding: 10px 16px;
    font-size: 10px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .modal-container {
    margin: 20px;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .modal-stats {
    flex-wrap: wrap;
  }
}
