/* ============================================
   Component: Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 952px;
  background-color: var(--color-bg-dark);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-top: 247px;
}

.hero__bg {
  position: absolute;
  top: -22px;
  left: -9px;
  width: calc(100% + 30px);
  height: calc(100% + 22px);
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 29, 36, 0) 60%, #1a1d24 100%);
  z-index: 2;
}

.hero__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto !important;
}

.hero__decor--left {
  top: -7px;
  left: -6px;
  width: 1334px;
  height: 959px !important;
}

.hero__decor--right {
  top: -7px;
  right: 0;
  width: 689px;
  height: 959px !important;
}

.hero__decor--bottom {
  bottom: -100px;
  left: -368px;
  width: 725px;
  height: 1062px;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 734px;
}

.hero__label {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semi-bold);
  color: var(--color-white);
  margin-bottom: 7px;
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extra-bold);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 27px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

/* --- Advantages (inside hero bottom) --- */
.advantages {
  position: relative;
  z-index: 3;
  padding-top: 156px;
  padding-bottom: var(--spacing-5xl);
}

.advantages__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--spacing-5xl);
}

.advantages__grid {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.advantages__slider {
  position: relative;
}

.advantages__item {
  display: flex;
  gap: var(--spacing-2xl);
  align-items: flex-start;
  flex: 0 0 auto;
}

.advantages__icon {
  flex-shrink: 0;
}

.advantages__icon img {
  width: 100%;
  height: 100%;
}

.advantages__item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 241px;
}

.advantages__item-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extra-bold);
  color: var(--color-text-light);
  line-height: normal;
}

.advantages__item-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 22px;
}

.advantages__pagination {
  display: none;
}

.advantages__pagination-bullet,
.advantages__pagination .swiper-pagination-bullet {
  display: inline-flex;
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  opacity: 0.85;
  cursor: pointer;
}

.advantages__pagination-bullet--active,
.advantages__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  opacity: 1;
}
