.crm-features {
  padding: 96px 0; /* убираем боковые отступы, чтобы сетка центрировалась */
  background-color: #f8f9fb;

}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px; /* увеличиваем контейнер до реального рабочего поля */
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 24px;
  color: #222;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 64px; /* увеличен отступ */
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; /* сбалансированный отступ между карточками */
  margin: 0 auto;
}

.feature-card {
  min-height: 420px;
  background-color: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card i {
  font-size: 36px;
  
  margin-bottom: 16px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.feature-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-card ul li {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.features-cta {
  margin-top: 64px;
  text-align: center;
}

.btn-primary {
  background-color: #02dece;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #00c7bb;
}

/* 📱 Планшеты */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }
}

/* 📱 Смартфоны */
@media (max-width: 768px) {
  .crm-features {
    padding: 64px 24px;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .feature-card {
    width: 100%;
    max-width: 320px;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
    margin-top: 32px;
  }

  .section-title,
  .section-subtitle {
    text-align: center;
  }

  .section-subtitle {
    margin: 0 auto 48px;
  }
}
