a.btn-black {
  display: inline-block;
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #4d7bbd, #1e3c72); /* глубокий, контрастный градиент */
  border: none;
  border-radius: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

a.btn-black:hover {
  background: linear-gradient(135deg, #5c8ae0, #2b4ea2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #fff !important;
}

a.btn-black:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-wrapper {
  display: flex;
  justify-content: space-between; /* равномерно распределяет слайды */
  align-items: stretch;
  padding: 0; /* если стоит */
}

.swiper-slide {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: calc(33.333% - 40px) !important;
  margin: 0 20px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 850px; /* подбери нужное значение */
  width: 32% !important; /* чуть меньше, чтобы влезли трое с расстоянием между ними */
  margin: 0 !important;

}

.swiper-slide {
  margin: 0 20px !important;
}

.swiper-slide:first-child {
  margin-left: 0 !important;
}

.swiper-slide:last-child {
  margin-right: 0 !important;
}

/* Контейнер для содержимого карточки */
.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.button-wrapper {
  margin-top: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.swiper-slide img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.swiper-slide h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.swiper-slide ul {
  padding-left: 20px;
  text-align: left;
}

.swiper-pagination {
  text-align: center;
  position: relative;
  bottom: 0;
}

.swiper-slide-active {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.swiper-slide ul li {
  margin-bottom: 10px; /* подбери нужное значение */
}

.slide-divider-alt {
  height: 2px;
  background: linear-gradient(to right, #1e3c72, #4d7bbd);
  margin: 15px 0;
  border-radius: 2px;
}
/* Адаптивность */
@media (max-width: 992px) {
  .swiper-slide {
    width: calc(50% - 30px) !important;
  }
}

@media (max-width: 576px) {
  .swiper-slide {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
}

.slide-divider {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #1e3c72, #4d7bbd);
  border: none;
  margin: 20px 0;
  border-radius: 2px;
}
