/* Общие стили для сетки карточек (Преимущества, Проблемы и т.д.) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Общие стили для отдельной карточки */
.card-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  background: white;
}

.card-item:hover {
  transform: translateY(-5px);
}

/* Общие стили для иконки внутри карточки */
.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--primary-orange);
}

/* Общие стили для текста (описания) внутри карточки */
.card-text {
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 1rem;
  margin-top: 10px;
}
/* Стиль для выделения акцентных цифр */
.text-accent {
    color: #f28536;
    font-weight: bold;
}

/* --- Адаптивность --- */

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-item {
    padding: 20px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .card-icon svg {
    width: 40px;
    height: 40px;
  }

  .card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-item {
    padding: 20px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .card-icon svg {
    width: 40px;
    height: 40px;
  }

  .card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

/* Дополнительные стили для блока преимуществ */
.benefits {
  background: var(--light-bg);
  padding: 60px 0;
}

/* Стили для блока интеграции */
.integration-icons {
  text-align: center;
  margin: 40px 0;
}

.integration-icons p {
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.integration-icons-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.integration-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.integration-item:hover {
  transform: translateY(-5px);
}

.integration-item svg {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  fill: var(--primary-orange);
}

.integration-item p {
  font-weight: 500;
  margin: 0;
  color: var(--text-dark);
}