:root {
  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --secondary: #7c3aed;
  --accent: #f0b90b;
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text: #ffffff;
  --text-muted: #8892b0;
  --gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f0b90b 100%);
  --gradient-text: linear-gradient(90deg, #00d4ff, #7c3aed, #f0b90b);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
  background: rgba(240, 185, 11, 0.1);
}

.custom-cursor.click {
  width: 30px;
  height: 30px;
  background: var(--primary);
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gradient);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
}

/* Dragon Fire Trail */
.fire-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  animation: fireParticle 1s ease-out forwards;
}

@keyframes fireParticle {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -100px) scale(0);
  }
}

.dragon-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  filter: blur(5px);
  animation: dragonTrail 0.8s ease-out forwards;
}

@keyframes dragonTrail {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.5) translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5) translateY(-60px);
  }
}

/* Neon Glowing Dragon - Electric Blue */
.dragon-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.neon-dragon {
  position: absolute;
  width: 500px;
  height: 500px;
  animation: dragonFlyAcross 18s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.dragon-svg {
  width: 100%;
  height: 100%;
}

.dragon-fill {
  fill: rgba(0, 150, 255, 0.3);
}

.dragon-stroke {
  fill: none;
  stroke: url(#dragonGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dragon-glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.5) 0%, rgba(0, 100, 255, 0.3) 30%, transparent 60%);
  filter: blur(50px);
  animation: orbPulse 2s ease-in-out infinite;
}

@keyframes dragonFlyAcross {
  0% {
    transform: translateX(10vw) translateY(15vh) scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(40vw) translateY(25vh) scale(1.15);
    opacity: 1;
  }
  40% {
    transform: translateX(70vw) translateY(10vh) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translateX(85vw) translateY(35vh) scale(1.1);
    opacity: 0.8;
  }
  50.5% {
    transform: translateX(80vw) translateY(40vh) scaleX(-1) scale(1);
    opacity: 0.8;
  }
  70% {
    transform: translateX(40vw) translateY(55vh) scaleX(-1) scale(1.15);
    opacity: 1;
  }
  90% {
    transform: translateX(5vw) translateY(40vh) scaleX(-1) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateX(10vw) translateY(15vh) scale(1);
    opacity: 1;
  }
}

@keyframes orbPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.4);
  }
}

a, button, .btn, .service-card, .tech-item, .feature-card, .nav-links a, .nav-cta {
  cursor: none;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.1) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  mix-blend-mode: screen;
}

.light-effect {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.light-1 {
  width: 800px;
  height: 800px;
  background: rgba(0, 212, 255, 0.2);
  top: -300px;
  right: -300px;
  animation: float3D 15s ease-in-out infinite, pulse3D 8s ease-in-out infinite;
}

.light-2 {
  width: 700px;
  height: 700px;
  background: rgba(124, 58, 237, 0.18);
  bottom: -250px;
  left: -250px;
  animation: float3D 18s ease-in-out infinite reverse, pulse3D 10s ease-in-out infinite 2s;
}

.light-3 {
  width: 500px;
  height: 500px;
  background: rgba(240, 185, 11, 0.15);
  top: 40%;
  left: 30%;
  animation: float3D 20s ease-in-out infinite, pulse3D 12s ease-in-out infinite 4s;
}

@keyframes float3D {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(80px, -80px) scale(1.2) rotate(90deg); }
  50% { transform: translate(-50px, 50px) scale(0.9) rotate(180deg); }
  75% { transform: translate(-80px, -50px) scale(1.1) rotate(270deg); }
}

@keyframes pulse3D {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: var(--gradient-text);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

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

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.logo-img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
  animation: logoPulse 3s ease-in-out infinite, logo3DFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

@keyframes logo3DFloat {
  0%, 100% { 
    transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
  }
  25% { 
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
  }
  50% { 
    transform: rotateY(0deg) rotateX(-5deg) translateZ(30px);
  }
  75% { 
    transform: rotateY(-10deg) rotateX(5deg) translateZ(20px);
  }
}

.logo-stars {
  position: absolute;
  width: 200px;
  height: 200px;
  animation: starsRotate 10s linear infinite, stars3D 6s ease-in-out infinite;
  z-index: 1;
  transform-style: preserve-3d;
}

@keyframes stars3D {
  0%, 100% { transform: rotate(0deg) rotateX(0deg); }
  50% { transform: rotate(180deg) rotateX(30deg); }
}

.star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #f0b90b;
  border-radius: 50%;
  box-shadow: 0 0 10px #f0b90b, 0 0 20px #f0b90b, 0 0 30px #f0b90b;
  animation: starTwinkle 1.5s ease-in-out infinite;
}

.star::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 16px;
  background: linear-gradient(transparent, #f0b90b, transparent);
}

.star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 2px;
  height: 16px;
  background: linear-gradient(transparent, #f0b90b, transparent);
}

.star-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.star-2 { top: 15%; right: 15%; animation-delay: 0.2s; }
.star-3 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.4s; }
.star-4 { bottom: 15%; right: 15%; animation-delay: 0.6s; }
.star-5 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; }
.star-6 { bottom: 15%; left: 15%; animation-delay: 1s; }
.star-7 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 1.2s; }
.star-8 { top: 15%; left: 15%; animation-delay: 1.4s; }

@keyframes starsRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.5); }
}

.logo-orbit {
  position: absolute;
  width: 220px;
  height: 220px;
  z-index: 0;
  transform-style: preserve-3d;
  animation: orbit3D 8s ease-in-out infinite;
}

@keyframes orbit3D {
  0%, 100% { transform: rotateX(60deg) rotateZ(0deg); }
  50% { transform: rotateX(70deg) rotateZ(180deg); }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  transform-style: preserve-3d;
}

.orbit-1 {
  width: 160px;
  height: 160px;
  border-color: rgba(0, 212, 255, 0.5);
  animation: orbitSpin 8s linear infinite;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3), inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.orbit-2 {
  width: 190px;
  height: 190px;
  border-color: rgba(124, 58, 237, 0.5);
  animation: orbitSpin 12s linear infinite reverse;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.3), inset 0 0 10px rgba(124, 58, 237, 0.1);
}

.orbit-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(240, 185, 11, 0.5);
  animation: orbitSpin 15s linear infinite;
  box-shadow: 0 0 10px rgba(240, 185, 11, 0.3), inset 0 0 10px rgba(240, 185, 11, 0.1);
}

.orbit-ring::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px currentColor;
}

.orbit-1::before { background: #00d4ff; box-shadow: 0 0 15px #00d4ff; }
.orbit-2::before { background: #7c3aed; box-shadow: 0 0 15px #7c3aed; }
.orbit-3::before { background: #f0b90b; box-shadow: 0 0 15px #f0b90b; }

@keyframes orbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6)); }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--primary);
}

.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 20px var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 28px;
  background: var(--gradient);
  background-size: 200% 200%;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  animation: gridPulse 10s ease-in-out infinite;
}

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

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease, badgeGlow 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.2); }
  50% { box-shadow: 0 0 50px rgba(0, 212, 255, 0.5); }
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 20px var(--primary);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 20px var(--primary); }
  50% { opacity: 0.5; transform: scale(1.8); box-shadow: 0 0 40px var(--primary); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.1s both;
  text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #000;
  animation: gradientShift 3s ease infinite;
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--glass-border);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: var(--glass);
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 50px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  box-shadow: 0 0 20px var(--primary);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  perspective: 1000px;
}

.floating-card {
  position: absolute;
  padding: 20px 25px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.1);
  transform-style: preserve-3d;
}

.card-1 {
  top: 0;
  right: 0;
  animation: floatCard3D 6s ease-in-out infinite, cardGlow 4s ease-in-out infinite;
}

.card-2 {
  top: 140px;
  right: 180px;
  animation: floatCard3D 7s ease-in-out infinite reverse, cardGlow 5s ease-in-out infinite 1s;
}

.card-3 {
  top: 280px;
  right: 60px;
  animation: floatCard3D 8s ease-in-out infinite, cardGlow 6s ease-in-out infinite 2s;
}

@keyframes floatCard3D {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25% { transform: translateY(-25px) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-15px) rotateX(-3deg) rotateY(3deg); }
  75% { transform: translateY(-30px) rotateX(3deg) rotateY(-3deg); }
}

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.1); }
  50% { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 212, 255, 0.3); }
}

.card-icon {
  font-size: 1.8rem;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 50px rgba(0, 212, 255, 0.8); transform: scale(1.05); }
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-weight: 600;
  font-size: 1rem;
}

.card-value {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.section-tag {
  display: inline-block;
  padding: 10px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
  animation: tagFloat 4s ease-in-out infinite;
}

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

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}

/* About Section */
.about {
  padding: 150px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-content .lead {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 15px;
  transition: all 0.4s;
}

.feature:hover {
  background: var(--glass);
  transform: translateX(10px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.4s;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.feature:hover .feature-icon {
  background: var(--gradient);
  color: #000;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  transform: rotate(10deg) scale(1.1);
}

.feature span {
  font-weight: 600;
  font-size: 1.1rem;
}

.about-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.visual-card {
  padding: 80px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  animation: visualFloat 8s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 212, 255, 0.1);
}

@keyframes visualFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25% { transform: translateY(-20px) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-10px) rotateX(-3deg) rotateY(3deg); }
  75% { transform: translateY(-25px) rotateX(3deg) rotateY(-3deg); }
}

.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
  animation: gradientShift 5s ease infinite;
}

.visual-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
  animation: rotate 10s linear infinite;
  opacity: 0.1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-logo {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.4));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.4)); }
  50% { transform: translateY(-15px) scale(1.02); filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.6)); }
}

/* Services Section */
.services {
  padding: 150px 0;
  position: relative;
}

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

.service-card {
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
}

.service-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), transparent 30%);
  opacity: 0;
  transition: opacity 0.5s;
  animation: rotate 6s linear infinite;
}

.service-card:hover .service-glow {
  opacity: 0.15;
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  border-color: var(--primary);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

.featured-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 8px 16px;
  background: var(--gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
  50% { box-shadow: 0 0 50px rgba(0, 212, 255, 0.8); }
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--primary);
  transition: all 0.5s;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: #000;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
  transition: all 0.3s;
}

.service-features li:hover {
  color: var(--text);
  padding-left: 30px;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  transition: all 0.3s;
  text-shadow: 0 0 10px var(--primary);
}

.service-features li:hover::before {
  left: 5px;
  text-shadow: 0 0 20px var(--primary);
}

/* Tech Section */
.tech {
  padding: 120px 0;
}

.tech-showcase {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 40px 50px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.5s;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.tech-item:hover::before {
  opacity: 0.1;
}

.tech-icon {
  font-size: 3rem;
  position: relative;
  z-index: 1;
  animation: techBounce 3s ease-in-out infinite;
}

.tech-item:nth-child(1) .tech-icon { animation-delay: 0s; }
.tech-item:nth-child(2) .tech-icon { animation-delay: 0.2s; }
.tech-item:nth-child(3) .tech-icon { animation-delay: 0.4s; }
.tech-item:nth-child(4) .tech-icon { animation-delay: 0.6s; }
.tech-item:nth-child(5) .tech-icon { animation-delay: 0.8s; }
.tech-item:nth-child(6) .tech-icon { animation-delay: 1s; }

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

.tech-item span {
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.tech-item:hover span {
  color: var(--text);
}

/* Contact Section */
.contact {
  padding: 150px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 212, 255, 0.1);
}

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  margin: 25px 0;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px;
  border-radius: 15px;
  transition: all 0.4s;
}

.contact-item:hover {
  background: var(--glass);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.4s;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.contact-item:hover .contact-icon {
  background: var(--gradient);
  color: #000;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.contact-item .label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.contact-item .value {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.contact-item a.value:hover {
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.4s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 100px 0 40px;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: var(--gradient);
  box-shadow: 0 0 30px var(--primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 350px;
  line-height: 1.8;
}

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

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 10px;
  text-shadow: 0 0 20px var(--primary);
}

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

.export-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(168, 85, 247, 0.5); }
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .footer-brand p {
    max-width: none;
  }

  .tech-showcase {
    gap: 20px;
  }

  .tech-item {
    padding: 25px 35px;
  }

  .contact-wrapper {
    padding: 40px;
  }

  .about-features {
    gap: 15px;
  }
}

/* Service Pages */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
}

.page-hero-content {
  max-width: 800px;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
}

.page-hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 600px;
}

.nav-links a.active {
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary);
}

.nav-links a.active::after {
  width: 100%;
}

/* Service Detail */
.service-detail {
  padding: 100px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.detail-content .lead {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 20px;
}

.detail-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Code Block */
.code-block {
  padding: 30px;
  font-family: 'Fira Code', monospace;
  overflow: hidden;
}

.code-header {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.code-block pre {
  font-size: 0.9rem;
  line-height: 1.8;
}

.code-block .keyword { color: #ff79c6; }
.code-block .variable { color: #50fa7b; }
.code-block .property { color: #8be9fd; }
.code-block .string { color: #f1fa8c; }
.code-block .method { color: #bd93f9; }

/* Globe Visual */
.globe-visual {
  padding: 50px;
  text-align: center;
}

.globe-icon {
  font-size: 8rem;
  margin-bottom: 30px;
  animation: globeRotate 20s linear infinite;
}

@keyframes globeRotate {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.trade-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 2rem;
}

.route-line {
  width: 100px;
  height: 2px;
  background: var(--gradient);
  position: relative;
  animation: routePulse 2s ease-in-out infinite;
}

.route-1 .route-line { animation-delay: 0s; }
.route-2 .route-line { animation-delay: 0.5s; }
.route-3 .route-line { animation-delay: 1s; }

@keyframes routePulse {
  0%, 100% { opacity: 0.5; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 20px var(--primary); }
}

/* Car Visual */
.car-visual {
  padding: 50px;
  text-align: center;
}

.car-icon {
  font-size: 8rem;
  margin-bottom: 30px;
  animation: carBounce 3s ease-in-out infinite;
}

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

.car-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.car-stat {
  text-align: center;
}

.car-stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.car-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

.feature-card {
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.15);
}

.feature-icon-large {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Products Grid */
.products-section {
  padding: 100px 0;
}

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

.product-card {
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-icon {
  font-size: 4rem;
  margin-bottom: 25px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.product-card p {
  color: var(--text-muted);
}

/* Regions */
.regions-section {
  padding: 100px 0;
}

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

.region-card {
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s;
}

.region-card:hover {
  transform: translateY(-10px);
}

.region-flag {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.region-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.region-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Process */
.process-section {
  padding: 100px 0;
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.process-step {
  padding: 40px 30px;
  text-align: center;
  min-width: 180px;
  transition: all 0.4s;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.process-arrow {
  font-size: 2rem;
  color: var(--primary);
  animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  padding: 80px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 212, 255, 0.1);
}

.cta-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Responsive for pages */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .features-grid,
  .products-grid,
  .regions-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  body {
    cursor: auto;
  }
  
  .custom-cursor, .cursor-dot {
    display: none;
  }
}
