/* ============================================================
   фэликс.рф (2026-09) — поверх styles.css, унаследованного от
   FELIKS.SaaS: шесть карточек возможностей и блок контактов.
   ============================================================ */

/* styles.css раскладывает ПЯТЬ карточек (3 + 2); здесь их шесть — две
   ровные тройки. Только на широком экране: узкие раскладки styles.css
   задаёт своими @media, их не трогаем. */
@media (min-width: 1025px) {
  .cf-features__grid .cf-feature-card:nth-child(4) { grid-column: 1 / 5; }
  .cf-features__grid .cf-feature-card:nth-child(5) { grid-column: 5 / 9; }
  .cf-features__grid .cf-feature-card:nth-child(6) { grid-column: 9 / 13; }
}

.cf-feature-card__icon svg { color: var(--color-primary); }

.cf-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.cf-contacts__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}
.cf-contacts__row a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.cf-contacts__row a:hover { text-decoration: underline; }
