.hero {
  padding: 104px 0 64px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(225, 243, 255, 0.1) 75%, var(--color-lightblue) 100%), var(--bg-image) no-repeat center/cover;
  margin-top: -80px;
}
.hero__inner {
  position: relative;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__title {
  margin: 0 auto 12px;
  max-width: 972px;
}
.hero__description {
  max-width: 556px;
  margin: 0 auto clamp(16px, 2vw, 24px);
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #4e8fe8 0%, #2f67bf 100%);
  box-shadow: 0 14px 28px rgba(47, 103, 191, 0.24);
  border: 0;
}
.hero__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(47, 103, 191, 0.3);
  color: #fff;
}
.hero__stats {
  z-index: 1;
  max-width: 284px;
  background: #cde9ff;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(16px);
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hero__stat-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0px 4px 20px 0px rgba(104, 125, 149, 0.0588235294);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.hero__stat-value {
  font-weight: 500;
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.25;
}
.hero__stat-label {
  margin-top: 4px;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  opacity: 0.6;
}
.hero__stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hero__avatars {
  display: flex;
  align-items: center;
}
.hero__avatar {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff;
}
.hero__avatar + .hero__avatar {
  margin-left: -16px;
}
.hero__stat-card--warranty {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
}
.hero__warranty-title {
  font-weight: 600;
}
.hero__warranty-label {
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.6;
}
@media (width > 1280px) {
  .hero {
    padding-top: 164px;
  }
}
@media (width < 992px) {
  .hero {
    padding: 96px 0 48px;
  }
}
@media (width < 768px) {
  .hero {
    padding-bottom: 24px;
  }
  .hero__stats {
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
  }
}
