/* Секция ключевых преимуществ */
.benefits-section {
  position: relative;
  background-color: #6C5CE7;
  background: linear-gradient(45deg, #6C5CE7, #9F66FF);
  padding: 60px 0 80px;
  color: white;
  z-index: 1;
  border-radius: 30px;
  margin-top: -30px;
}

.benefits-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.benefits-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.benefit-card {
  flex: 1;
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Обеспечиваем отображение карточек второго ряда */
.benefit-card.second-row {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #f0eeff;
  border-radius: 50%;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.icon-placeholder {
  width: 24px;
  height: 24px;
  position: relative;
}

.analytics-icon .icon-placeholder:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background: #6C5CE7;
  left: 6px;
  top: 4px;
}

.analytics-icon .icon-placeholder:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #6C5CE7;
  left: 12px;
  top: 10px;
}

.return-icon .icon-placeholder:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #6C5CE7;
  border-radius: 50%;
  left: 7px;
  top: 2px;
}

.return-icon .icon-placeholder:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 8px;
  border: 2px solid #6C5CE7;
  border-top: none;
  border-radius: 0 0 8px 8px;
  left: 4px;
  top: 12px;
}

.sales-icon .icon-placeholder:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 14px;
  border: 2px solid #6C5CE7;
  border-top: none;
  top: 8px;
  left: 3px;
}

.sales-icon .icon-placeholder:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 0px;
  border-top: 2px solid #6C5CE7;
  top: 4px;
  left: 6px;
}

.time-icon .icon-placeholder:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #6C5CE7;
  border-radius: 50%;
  left: 3px;
  top: 3px;
}

.time-icon .icon-placeholder:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: #6C5CE7;
  transform-origin: 0 50%;
  transform: rotate(45deg);
  left: 12px;
  top: 12px;
}

.image-icon .icon-placeholder:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #6C5CE7;
  transform: rotate(45deg);
  left: 3px;
  top: 3px;
}

.profile-icon .icon-placeholder:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #6C5CE7;
  border-radius: 50%;
  left: 7px;
  top: 2px;
}

.profile-icon .icon-placeholder:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 8px;
  border: 2px solid #6C5CE7;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  left: 4px;
  top: 14px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.benefit-list .check-small {
  color: #6C5CE7;
  font-size: 14px;
  margin-right: 10px;
  margin-top: 3px;
}

/* Адаптация для мобильных устройств */
@media (max-width: 992px) {
  .benefits-row {
    flex-direction: column;
  }
  
  .benefit-card {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .benefits-header h2 {
    font-size: 28px;
  }
}
