/* ===== HERO (80vh homepage, 40vh inner pages) ===== */
.hero {
  position: relative;
  margin: 0 20px;
  border-radius: var(--radius-large);
  overflow: hidden;
  height: 80vh;
  min-height: 550px;
  max-height: 764px;
  display: flex;
  align-items: flex-end;
}
.hero--inner {
  height: 40vh;
  min-height: 320px;
  max-height: 450px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #010432 0%, rgba(1,4,50,0.7) 40%, rgba(1,4,50,0) 75%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  max-width: 600px;
  color: var(--background);
}
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out 0.2s forwards;
}
.hero-content h1 span { color: var(--orange); }
.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out 0.4s forwards;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out 0.6s forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    margin: 0 12px;
    height: 70vh;
    min-height: 450px;
    border-radius: 12px;
  }
  .hero--inner {
    height: 40vh;
    min-height: 280px;
  }
  .hero-content {
    padding: 30px;
    max-width: 100%;
  }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 14px; margin-bottom: 20px; }
  .hero-ctas { flex-direction: column; }
}
