/* ============================================
   Hero - Exact copy from HeroSection.vue
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Background */
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3366 50%, var(--color-gray-900) 100%);
  z-index: -2;
}

.hero__background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(220, 31, 61, 0.15) 0%, transparent 50%),
  radial-gradient(circle at 80% 20%, rgba(43, 72, 148, 0.2) 0%, transparent 50%);
  z-index: -1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Content */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.hero__text {
  max-width: 1200px;
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__title-accent {
  display: inline;
  color: var(--color-secondary);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ff4d6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.hero__btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero__btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .hero__stats {
    gap: var(--space-9);
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .hero__stats {
    margin-top: var(--space-10);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-dot {
    animation: none;
  }
}
