/* ============================================================
   TCP Inter – Hero Section
   ============================================================ */

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 29, 54, 0.82) 0%,
    rgba(0, 54, 95, 0.65) 55%,
    rgba(0, 54, 95, 0.35) 100%
  );
}

/* ---------- Content ---------- */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.hero-label svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}

.hero h1 span {
  color: var(--color-secondary-container);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero-tagline span {
  color: var(--color-secondary-container);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Floating stat cards ---------- */
.hero-stats {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 1;
  display: flex;
  gap: 1rem;
}

.hero-stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  min-width: 100px;
  color: var(--color-white);
}

.hero-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-card .stat-label {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
    padding-block: 3rem 8rem;
    align-items: flex-end;
  }

  .hero-bg video,
  .hero-bg img {
    object-position: 65% center;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    justify-content: flex-start;
  }

  .hero-stat-card {
    padding: 0.75rem 1rem;
  }

  .hero-stat-card .stat-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
