/* ===== Hero ===== */
#hero {
  position: relative;
  min-height: 100vh;
  padding-top: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.75), rgba(10, 10, 12, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 60px 24px;
  color: #ffffff;
}

.hero-eyebrow {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ff5347;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 68px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-shine {
  background: linear-gradient(100deg, #ffffff 30%, #ffb3ac 45%, #e10600 55%, #ffffff 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroShine 5s linear infinite;
}

@keyframes heroShine {
  to { background-position: 200% center; }
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #cfcfd4;
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-btn-primary {
  background: #e10600;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.4);
}

.hero-btn-primary:hover {
  background: #ff2a1a;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(225, 6, 0, 0.55);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
  background: #ffffff;
  color: #0a0a0c;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a9a9ae;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-stat span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
  .hero-shine { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1280px) {
  .hero-title { font-size: 58px; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 17px; }
  .hero-stats { gap: 36px; }
}

@media (max-width: 768px) {
  #hero { padding-top: 72px; }
  .hero-content { padding: 44px 24px; }
  .hero-eyebrow { font-size: 13px; letter-spacing: 0.2em; }
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 28px; }
  .hero-btn-primary,
  .hero-btn-secondary { padding: 14px 28px; font-size: 15px; }
  .hero-stats { gap: 24px; padding-top: 26px; }
  .hero-stat span { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-btn-primary,
  .hero-btn-secondary { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 18px; }
}
