.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-color);
  top: -200px;
  right: -100px;
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  bottom: -100px;
  left: -100px;
}

.hero-circle-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(108, 99, 255, 0.2);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(108, 99, 255, 0.3);
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: 'Orbitron', sans-serif;
}

.hero-title .gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-cards {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-card {
  position: absolute;
  width: 280px;
  height: 180px;
  background: var(--dark-card);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(108, 99, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.05);
}

.hero-card-1 {
  top: 50px;
  left: 0;
  background: var(--gradient-1);
}

.hero-card-2 {
  top: 150px;
  right: 50px;
  background: var(--gradient-2);
}

.hero-card-3 {
  bottom: 50px;
  left: 80px;
  background: var(--gradient-3);
}

.hero-card-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
}

.hero-card-text {
  font-size: 14px;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  display: block;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-cards {
    height: 400px;
  }

  .hero-card {
    width: 240px;
    height: 160px;
    padding: 25px;
  }

  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons button {
    width: 100%;
  }

  .hero-cards {
    height: 350px;
  }

  .hero-card {
    width: 200px;
    height: 140px;
    padding: 20px;
  }

  .hero-card-icon {
    font-size: 36px;
  }

  .hero-card-title {
    font-size: 16px;
  }

  .hero-card-text {
    font-size: 12px;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 32px;
  }

  .hero-stat-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 18px;
  }

  .hero-cards {
    height: 300px;
  }

  .hero-card {
    width: 160px;
    height: 120px;
    padding: 15px;
  }

  .hero-card-1 {
    top: 20px;
    left: 10px;
  }

  .hero-card-2 {
    top: 100px;
    right: 10px;
  }

  .hero-card-3 {
    bottom: 20px;
    left: 40px;
  }
}
