.landing-aziende {
  background: #0f0f0f;
  color: #ffffff;
}

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

.hero-media__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media__video,
.hero-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.38) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
}

.hero-media__content {
  position: relative;
  z-index: 3;
  width: min(90%, 1180px);
  margin: 0 auto;
  padding: 120px 0;
}

.hero-media__eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-media h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 500;
}

.hero-media__text {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-media__button,
.hero-audio-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  border-radius: 0;
}

.hero-media__button:hover,
.hero-audio-toggle:hover {
  background: #ffffff;
  color: #0f0f0f;
}

.hero-audio-toggle.active {
  background: #ffffff;
  color: #0f0f0f;
}

.landing-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #f3f5f1 0%,
    #e4ebe3 100%
  );
  color: #222222;
}

.landing-section__inner {
  width: min(90%, 980px);
  margin: 0 auto;
}

.landing-section h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 24px;
  color: #222222;
}

.landing-section p {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.5;
  color: #5f665f;
}

.hero-audio-toggle {
  display: none;
}

.hero-audio-toggle.is-visible {
  display: inline-flex;
}

@media (max-width: 768px) {
  .hero-media {
    min-height: 90vh;
  }

  .hero-media__overlay {
    background: rgba(0, 0, 0, 0.58);
  }

  .hero-media__content {
    padding: 100px 0 80px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-media__button,
  .hero-audio-toggle {
    width: 100%;
  }
}