/* --- HERO FIXES OVERRIDE --- */
#hero {
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-content {
  max-width: none;
  width: 100%;
}

.hero-img-placeholder {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 4/3;
}

.hero-stats {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  justify-content: flex-start !important;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { text-align: left !important; }

.glow-text {
  text-shadow: 0 0 20px rgba(212, 130, 26, 0.4), 0 0 40px rgba(212, 130, 26, 0.2);
  color: var(--amber);
  font-style: normal;
}

/* Animations */
@keyframes rotatingSpindle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rotating-spindle {
  transform-origin: center center;
  animation: rotatingSpindle 30s linear infinite;
  opacity: 0.25 !important;
}

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

.animate-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-img-placeholder {
    display: flex !important;
  }
}
