/* ═══════════════════════════════════════
   Hero New — главная страница
   Дизайн-система: Swiss/Achromatic
   ═══════════════════════════════════════ */

.hero-new {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-new__bg-source {
  display: none;
}

.hero-new__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.hero-new__content {
  position: relative;
  z-index: 2;
  max-width: 1570px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 50px 100px;
}

/* H1 — единственный на странице */
.hero-new__title {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  max-width: 820px;
  margin: 0 0 28px 0;
}

.hero-new__subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 0 44px 0;
  letter-spacing: 0.2px;
}

/* CTA buttons */
.hero-new__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-new__btn {
  display: inline-block;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.hero-new__btn--primary {
  background: #EAEAEA;
  color: #161616;
  border: none;
  padding: 24px 40px 22px;
}

.hero-new__btn--primary:hover {
  background: #FFFFFF;
  color: #161616;
}

.hero-new__btn--secondary {
  background: #2A2A2A;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  padding: 22px 40px 20px;
}

.hero-new__btn--secondary:hover {
  background: #FFFFFF;
  color: #000000;
}

.hero-new__note {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
  margin: 0;
}

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */

@media (max-width: 1025px) {
  .hero-new__content {
    padding: 140px 30px 80px;
  }
  .hero-new__title {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .hero-new {
    min-height: 600px;
  }
  /* На мобильном — другое фоновое изображение */
  .hero-new__content {
    padding: 100px 20px 60px;
  }
  .hero-new__title {
    font-size: 34px;
    letter-spacing: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-new__subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .hero-new__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-new__btn {
    font-size: 14px;
    text-align: center;
  }
  .hero-new__btn--primary {
    padding: 20px 24px 18px;
  }
  .hero-new__btn--secondary {
    padding: 18px 24px 16px;
  }
  .hero-new__note {
    text-align: center;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .hero-new__title {
    font-size: 28px;
  }
}

/* Asterisk + Disclaimer */
.hero-new__asterisk {
  font-size: 0.5em;
  vertical-align: super;
  opacity: 0.6;
  font-weight: 200;
}

.hero-new__disclaimer {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2px;
  margin: 16px 0 0 0;
  line-height: 1.5;
}

.hero-new__disclaimer-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.hero-new__disclaimer-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
