.to-who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 карточек в ряд */
  gap: 20px; /* Немного уменьшим gap для 5 карточек */
  margin-bottom: 40px;
}

/* Стили для кнопки */
.to-who-card .btn-more {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #1189BF, #1189BF);
  border: none;
  border-radius: 40px;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: none;
  margin-top: auto; /* Прижимает кнопку к низу */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.to-who-card .btn-more i {
  transition: transform 0.3s ease;
}

.to-who-card .btn-more:hover i {
  transform: translateX(5px);
}

/* Эффект блеска */
.to-who-card .btn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: btnShine 3s infinite;
  z-index: -1;
}

@keyframes btnShine {
  0% {
    left: -150%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.to-who-block {
  background: #f9fbff;
  padding: 90px 0;
  text-align: center;
}

.to-who-block h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #1189BF;
}

.to-who-block p {
  color: #000;
  font-size: 18px;
  margin-bottom: 80px;
}

.to-who-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 20px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: .35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(17, 137, 2191, 0.9);
}

.to-who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.to-who-icon-circle {
  /* width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eef4ff, #ffffff);
  box-shadow:
    6px 6px 14px rgba(0,0,0,.08),
    -6px -6px 14px rgba(255,255,255,1);
  display: flex;
  align-items: center;
  justify-content: center; */
  margin-bottom: 20px;
}

.to-who-icon-circle img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-top: -70px;
}

.to-who-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #000;
  font-weight: 600;
}

.to-who-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  flex: 1; /* Занимает доступное пространство */
}

/* Адаптивность */
@media (max-width: 1200px) {
  .to-who-grid {
    gap: 15px; /* Уменьшаем gap на средних экранах */
  }
  
  .to-who-card {
    padding: 25px 15px;
  }
}

@media (max-width: 992px) {
  .to-who-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 карточки на планшете */
    gap: 40px;
  }
  
  .to-who-block h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .to-who-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 карточки на маленьком планшете */
    gap: 50px;
  }
  
  .to-who-block {
    padding: 60px 0;
  }
  
  .to-who-block h2 {
    font-size: 32px;
  }
  
  .to-who-block p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .to-who-grid {
    grid-template-columns: 1fr; /* 1 карточка на мобильном */
    gap: 50px;
    max-width: 350px;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  
  .to-who-card {
    padding: 30px 20px;
  }
  
  .to-who-block h2 {
    font-size: 28px;
  }

    .to-who-block p {
    margin-bottom: 60px;
  }
}