/* Hero Section */
.hero {
  min-height: 100dvh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background-color: var(--color-warm-white);
  border-bottom: 1px solid var(--border-light);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.72;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.74) 0%, rgba(17, 17, 17, 0.3) 48%, rgba(17, 17, 17, 0.12) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: var(--color-warm-white);
  padding: var(--space-md);
  border: 1px solid rgba(245, 245, 243, 0.18);
  background-color: rgba(17, 17, 17, 0.36);
  backdrop-filter: blur(10px);
}

.hero-subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  margin: var(--space-md) 0;
  opacity: 0.8;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  border: none;
}

.hero .btn-outline {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-warm-white);
  border: 1px solid rgba(245, 245, 243, 0.22);
}

.hero .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-technical);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 56px;
    align-items: end;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-content {
    max-width: none;
    padding: 20px;
  }

  .hero-subtext {
    font-size: 15px;
    max-width: none;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-gold {
    border-bottom: none;
  }
}
