.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg .img-placeholder {
  width: 100%;
  height: 100%;
}

.hero__bg .img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 49, 51, 0.7) 0%,
    rgba(0, 77, 67, 0.6) 50%,
    rgba(25, 49, 51, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: var(--spacing-xl) var(--container-padding);
}

.hero__logo {
  margin-bottom: var(--spacing-md);
  line-height: 1;
}

.hero__logo img {
  height: clamp(200px, 36vw, 360px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(91%) sepia(30%) saturate(600%) hue-rotate(40deg) brightness(1.05);
}

.hero__tagline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--spacing-lg);
}

.hero__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--spacing-lg);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: hero-bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  .hero__content {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
