/* Hero Visual Section */
.hero-visual {
  position: relative;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.visual-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.hero-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-decoration {
  position: absolute;
  border-radius: 16px;
  z-index: -1;
}

.decoration-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  right: -30px;
  background: linear-gradient(135deg, rgba(96, 87, 222, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
  backdrop-filter: blur(10px);
  animation: float 8s ease-in-out infinite;
  will-change: transform;
}

.decoration-2 {
  width: 150px;
  height: 150px;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.15) 0%, rgba(96, 87, 222, 0.1) 100%);
  backdrop-filter: blur(10px);
  animation: float 10s ease-in-out infinite reverse;
  will-change: transform;
}

.decoration-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: -50px;
  background: linear-gradient(135deg, rgba(96, 87, 222, 0.1) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  animation: float 12s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .cta-button {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }
}