/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 200px 240px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 137%;
  object-fit: cover;
  position: absolute;
  top: -6%;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(37, 37, 37, 0) 42%, rgba(37, 37, 37, 0.6) 66%, rgb(37, 37, 37) 96%),
    linear-gradient(180deg, rgb(21, 21, 21) 0%, rgba(37, 37, 37, 0) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 60px;
}

.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.76px;
  text-transform: uppercase;
  text-align: center;
}

.hero-h1 .red {
  display: block;
  color: var(--red);
  margin-top: 28px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  text-align: center;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-info-card {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 48px;
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, #343434 0%, #343434 100%),
              linear-gradient(-90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 76%);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.transpotec-logo {
  height: 68px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-info-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.hero-info-row {
  display: flex;
  gap: 24px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-info-item svg { flex-shrink: 0; }

.info-sep {
  color: var(--white-20);
  margin: 0 4px;
}

.hero-info-card > .btn { flex-shrink: 0; }

/* Stats */
.hero-stats {
  display: flex;
  gap: 20px;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px;
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, #343434 0%, #343434 100%),
              linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 76%);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.stat-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.stat-line {
  width: 100%;
  height: 1px;
  background: var(--white-20);
  margin-top: -24px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.76px;
  text-transform: uppercase;
}

/* Hero entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-anim.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim-1 { transition-delay: 0.2s; }
.hero-anim-2 { transition-delay: 0.5s; }
.hero-anim-3 { transition-delay: 0.8s; }
.hero-anim-4 { transition-delay: 1.1s; }

/* --- Responsive --- */
@media (max-width: 1280px) {
  .hero { padding: 160px 80px 60px; }
  .hero-h1 { font-size: 64px; }
  .hero-subtitle { font-size: 22px; }
  .stat-number { font-size: 64px; }
  .hero-info-card { gap: 40px; padding: 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 20px 40px; }
  .hero-h1 { font-size: 44px; letter-spacing: 0.88px; }
  .hero-h1 .red { margin-top: 16px; }
  .hero-subtitle { font-size: 18px; }
  .hero-info-card { flex-direction: column; gap: 24px; padding: 24px; }
  .transpotec-logo { height: 48px; }
  .hero-info-row { flex-direction: column; gap: 12px; }
  .hero-info-item { font-size: 14px; gap: 10px; flex-wrap: wrap; }
  .hero-info-item svg { width: 20px; height: 20px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-card { padding: 32px; gap: 24px; flex-direction: row; align-items: center; justify-content: space-between; }
  .stat-label { font-size: 14px; }
  .stat-line { display: none; }
  .stat-number { font-size: 48px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .stat-number { font-size: 36px; }
}
