/* Преимущества */
.advantages {
  margin-top: 120px;
}

/* Заголовок */
.section-title {
  text-align: center;
  color: #2e5065;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 60px;
}

/* Сетка преимуществ - на десктопе 3 колонки */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  row-gap: 50px;
}

/* Карточка преимущества */
.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.advantage-card.full-width {
  grid-column: span 1;
}

.advantage-text {
  color: #2e5065;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
}

.advantage-text .big-number {
  font-family: "Unbounded";
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 28px);
}

.advantage-text .bold {
  font-weight: 700;
}

/* Иконки и изображения */
.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 152px;
}

.icon-img {
  max-width: 100%;
  height: auto;
}

/* Специальные стили для диплома */
.diploma-wrapper {
  position: relative;
  width: 197.5px;
  height: 132.96px;
  margin: 0 auto;
}

.diploma-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(112deg, #00c3f4 0%, #65d9f6 100%);
  border-radius: 10px;
  outline: 4px solid #00c3f4;
  outline-offset: -2px;
}

.diploma-inner {
  position: absolute;
  width: 177.15px;
  height: 112.11px;
  background: #eaf8ff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.diploma-stamp {
  position: absolute;
  width: 141px;
  height: 74.87px;
  background: #819aaa;
  border-radius: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.diploma-icon {
  position: absolute;
  width: 64px;
  height: 81px;
  bottom: -20px;
  right: -30px;
  box-shadow: 0px -5px 0px white;
}

/* Круг с процентами */
.percent-circle {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #00c3f4 0%, #65d9f6 100%);
  border-radius: 50%;
}

.circle-gradient {
  position: absolute;
  width: 126.32px;
  height: 126.32px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-23deg);
  background: linear-gradient(275deg, #ff8e00 20%, #e60087 100%);
  border-radius: 50%;
}

/* Адаптивность преимуществ */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .advantages {
    margin-top: 60px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    row-gap: 40px;
  }

  .advantage-card {
    max-width: 100%;
    margin: 0 auto;
    gap: 0;
  }

  .diploma-wrapper {
    transform: scale(0.9);
  }

  .percent-circle {
    transform: scale(0.9);
  }

  .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .advantages {
    margin-top: 40px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .diploma-wrapper {
    transform: scale(0.8);
  }

  .percent-circle {
    transform: scale(0.8);
  }

  .advantage-text {
    font-size: 14px;
  }

  .advantage-text .big-number {
    font-size: 20px;
  }

  .icon-wrapper {
    min-height: 100px;
  }

  .icon-img {
    width: 70px;
  }
}
