

/* ========== HERO SECTION ========== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  /* background-image: url("assets/images/lift-desktop.jpg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  color: #ffffff;
}

/* затемняющий градиент поверх фото */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-inner{
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin-left: auto;
    padding-top:50px;
    padding-right: 30px;
    /* padding: 90px 24px 0; */
}
.hero-visual,
.hero-inner {
  position: relative;
  z-index: 1;
}




.hero-expert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  padding: 0px 10px;
}

.hero-expert-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  opacity: 0.85;
}

/* точки навигации */
.hero-slide-nav {
  display: inline-flex;
  gap: 6px;
}

.hero-slide-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.hero-slide-dot.is-active {
  background-color: #ff2c7a;
  border-color: #ff2c7a;
}

/* карточка с текстом */
.hero-card {
  max-width: 540px;
  margin-top: 30px;
  margin-left: auto;
  padding: 26px 28px 28px;
  border-radius: 26px;
  background: rgba(4, 7, 24, 0.88); /* тёмный полупрозрачный, не ядрёный белый */
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 18px;
}

/* кнопка внутри карточки */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: #ff2c7a;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 44, 122, 0.55);
  transition: background-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}

.hero-cta-btn:hover {
  background-color: #ff3f86;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 44, 122, 0.65);
}

/* ========== МОБИЛКА ========== */
@media (max-width: 900px) {
  .hero-section {
    /* background-image: url("assets/images/lift-mobile.jpg"); */
    background-position: center top;
  }

  .hero-visual {
    padding-bottom: 20px;
  }

 
    .hero-inner {
        margin: 0 auto;
        /* padding-top: 50px; */
        padding: 50px 30px 0px 30px;
        /* text-align: center; */
        /* padding: 90px 24px 0; */
        align-items: center;
    }

  .hero-card {
    max-width: 100%;
    margin: 0;
    padding: 20px 18px 22px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-expert-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}



