/* ========================================
   Section 2: Hero Banner — Cinematic
   ======================================== */

.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 108px;
}

/* Slides */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Video backgrounds */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #060e1a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay on video for text readability */
.hero-slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 26, 0.55);
  z-index: 1;
}

/* Bottom vignette for depth */
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 14, 26, 0.7) 0%, transparent 40%, transparent 70%, rgba(6, 14, 26, 0.3) 100%);
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--color-accent);
  position: relative;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: var(--fw-normal);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Brand Logos Row (Slide 2) */
.hero-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-brand-logo {
  width: 110px;
  height: 64px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  backdrop-filter: blur(8px);
  overflow: hidden;
  padding: 12px;
  transition: all var(--transition-base);
}

.hero-brand-logo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 94, 0, 0.3);
}

.hero-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Trust Icons Row (Slide 3) */
.hero-trust-icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
  margin-bottom: 40px;
}

.hero-trust-item {
  text-align: center;
  color: var(--color-white);
}

.hero-trust-item .icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 94, 0, 0.1);
  border: 1px solid rgba(255, 94, 0, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}

.hero-trust-item span {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Slide Indicators */
.hero-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-indicator {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.hero-indicator.active {
  width: 40px;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(255, 94, 0, 0.4);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { height: 65vh; min-height: 440px; margin-top: 104px; }
  .hero-content h1 { font-size: var(--fs-3xl); margin-bottom: 12px; }
  .hero-content p { font-size: var(--fs-sm); margin-bottom: 24px; max-width: 420px; }
  .hero-brands { gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
  .hero-brand-logo { width: 64px; height: 40px; font-size: var(--fs-xs); padding: 8px; }
  .hero-trust-icons { gap: 20px; margin-bottom: 24px; }
  .hero-trust-item .icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 8px; }
  .hero-trust-item span { font-size: var(--fs-xs); }
  .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .hero-buttons .btn { width: 100%; max-width: 260px; justify-content: center; }
  .hero-indicators { bottom: 20px; }
}
