/* ───────────────────────────────────────────────────────────────
   HERO SECTION STYLES
   ───────────────────────────────────────────────────────────────── */

.wtc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 72px;
}

/* Background image */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.3) 100%);
  z-index: 1;
}

/* Red accent line */
.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--wtc-accent), transparent);
  z-index: 2;
}

/* Content container */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 80px 80px;
  max-width: 900px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--wtc-spacing-md);
  margin-bottom: var(--wtc-spacing-lg);
  font-family: var(--wtc-font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--wtc-accent);
  flex-shrink: 0;
}

/* Headline */
.hero-headline {
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9;
  margin-bottom: var(--wtc-spacing-xl);
  text-transform: uppercase;
}

.hero-headline span {
  display: block;
  letter-spacing: -0.01em;
}

.hero-headline .accent {
  color: var(--wtc-accent);
}

/* Subline */
.hero-subline {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: var(--wtc-spacing-xl);
  font-weight: 300;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--wtc-spacing-sm);
  margin-bottom: var(--wtc-spacing-xxl);
  flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--wtc-spacing-sm);
  padding: 16px 32px;
  font-family: var(--wtc-font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--wtc-transition);
  border: 2px solid transparent;
  border-radius: 0;
  letter-spacing: 0.02em;
}

.hero-cta-primary {
  background-color: var(--wtc-accent);
  color: var(--wtc-white);
  border-color: var(--wtc-accent);
}

.hero-cta-primary:hover {
  background-color: transparent;
  color: var(--wtc-white);
  border-color: var(--wtc-accent);
}

.hero-cta-secondary {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--wtc-white);
}

.hero-cta-primary svg,
.hero-cta-secondary svg {
  width: 18px;
  height: 18px;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: var(--wtc-spacing-xl);
  padding-top: 40px;
  margin-top: var(--wtc-spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--wtc-font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--wtc-white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wtc-spacing-sm);
  opacity: 0.4;
  z-index: 3;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--wtc-white), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    padding: 100px 40px 60px;
  }

  .hero-stats {
    gap: var(--wtc-spacing-xl);
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 100px 24px 60px;
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(44px, 10vw, 80px);
  }

  .hero-subline {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: var(--wtc-spacing-md);
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: var(--wtc-spacing-xl);
  }

  .scroll-indicator {
    bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 80px 16px 40px;
  }

  .hero-headline {
    font-size: clamp(32px, 8vw, 60px);
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .hero-subline {
    font-size: 14px;
    max-width: 100%;
  }

  .stat-number {
    font-size: 28px;
  }
}
