:root {
  --neon-orange: #FF6B35;
  --neon-aqua: #00F5FF;
  --neon-blue: #45B7D1;
  --neon-green: #96CEB4;
  --neon-purple: #8A2BE2;
  --dark-space: #0A0A0F;
  --deep-space: #1A1A2E;
  --void: #000000;
  --matrix: #00FF41;
  --hologram: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body.futurist-body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark-space);
  color: white;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
}

/* Cyber Grid Background */
.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Navigation */
.cyber-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--neon-orange);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-logo i {
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
}

.brand-logo-img {
  width: 64px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.45));
}

.footer-brand-logo {
  width: 81px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.45));
}

.brand-text {
  letter-spacing: 2px;
}

.cyber-link {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.cyber-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-orange), var(--neon-aqua));
  transition: width 0.3s ease;
}

.cyber-link:hover::before {
  width: 100%;
}

.cyber-link:hover {
  color: var(--neon-orange);
}

/* Hero Section */
.cyber-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 20px 50px;
}

.cyber-hero.mini-hero {
  min-height: 50vh;
  padding: 80px 20px 40px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-aqua), var(--neon-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

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

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--neon-aqua);
  letter-spacing: 1px;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Cyber Buttons */
.cyber-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--neon-orange);
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0.5rem;
  font-size: 0.95rem;
}

.cyber-button.primary {
  background: linear-gradient(45deg, var(--neon-orange), transparent);
  border-color: var(--neon-orange);
}

.cyber-button:hover {
  color: white;
  box-shadow: 0 0 20px var(--neon-orange);
  transform: translateY(-2px);
  border-color: var(--neon-aqua);
}

/* Service Cards */
.service-card-link {
  text-decoration: none;
  display: block;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

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

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--neon-orange);
}

.service-icon {
  font-size: 3rem;
  color: var(--neon-orange);
  margin-bottom: 1rem;
  position: relative;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--neon-orange) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.feature-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--neon-orange);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 0.3rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--neon-orange);
}

/* Stats */
.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
  transform: translateY(-5px);
}

.stat-item p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.live-stats-grid .stat-item {
  min-height: 250px;
  padding: 2.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.live-stats-grid .stat-item p {
  text-align: center;
  margin-top: 0.9rem;
}

.live-stat-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.live-stat-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .live-stats-grid .stat-item {
    min-height: 220px;
    padding: 2rem 1.1rem;
  }
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  white-space: nowrap;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 245, 255, 0.45);
  background: rgba(0, 245, 255, 0.08);
  color: var(--neon-aqua);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.live-badge i {
  font-size: 0.55rem;
  color: #00ff85;
  animation: livePulse 1.4s ease-in-out infinite;
}

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

/* Client Avatar */
.client-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-aqua));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slide-up {
  animation: slideUp 0.8s ease forwards;
}

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

/* Footer */
.cyber-footer {
  background: rgba(10, 10, 15, 0.95);
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  padding: 4rem 0 1rem;
  margin-top: 5rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-orange);
  padding-left: 0.5rem;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
  margin-bottom: 0.8rem;
}

.footer-contact a {
  color: var(--neon-aqua);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--neon-orange);
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--neon-orange);
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-orange);
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.social-link:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--neon-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.footer-link-secondary {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link-secondary:hover {
  color: var(--neon-orange);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .cyber-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    margin: 0.3rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }
}

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

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

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

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