.hadv {
  margin: var(--section-margin) 0;
}
.hadv__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 60px);
  align-items: center;
}

.hadv__visual {
  position: relative;
  padding: clamp(24px, 4vw, 56px);
  background: var(--color-accent);
  border-radius: clamp(20px, 2.5vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hadv--right .hadv__visual {
  order: 2;
}

.hadv__image {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  max-width: 466px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.hadv__image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  border-radius: 20px;
  transform: rotate(-9deg);
}

.hadv__image img {
  display: block;
  height: auto;
  z-index: 2;
  position: relative;
}
.hadv__title {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.hadv__title span {
  color: var(--color-accent);
}

.hadv__snippet {
  margin-bottom: clamp(20px, 3vw, 40px);
}

.hadv__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hadv__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--color-bg-light-accent);
  border-radius: 100px;
}

.hadv__item svg {
  flex: 0 0 48px;
}

.hadv__item-text {
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
}
@media (width < 992px) {
  .hadv__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hadv__title,
  .hadv__snippet {
    text-align: center;
  }
}

@media (width < 768px){
  .hadv__visual {
    order: -1 !important;
  }
}