/* ============================================================
   Help index (2026 redesign) — page-specific patterns not in the kit.
   Используется ТОЛЬКО на /help/index.html (подключается из этой страницы).
   Каркас (articles-hero, cta-banner-2026, btn-2026) — из styles.css,
   здесь только: карточка FAQ-ссылок и сетка категорий базы знаний.
   Все цвета/тени — через токены base.css. Ссылки цвет не меняют —
   индикатор кликабельности это подчёркивание на hover (контракт UI-кита).
   ============================================================ */

/* ---- FAQ block ---- */
.help-faq-2026 {
  margin: 0 0 72px;
}
@media (min-width: 1024px) {
  .help-faq-2026 {
    margin-bottom: 100px;
  }
}

.help-faq-2026-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
}
.help-faq-2026-heading-icon {
  flex-shrink: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--brand-blue-strong);
}

.help-faq-2026-card {
  background: var(--brand-white);
  border: 1px solid var(--gray-300);
  border-radius: 24px;
  box-shadow: var(--shadow-menu);
  padding: 28px 24px;
}
@media (min-width: 768px) {
  .help-faq-2026-card {
    padding: 40px;
  }
}

.help-faq-2026-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .help-faq-2026-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 22px;
  }
}
.help-faq-2026-list a {
  display: inline-block;
  font-weight: 600;
  line-height: 1.4;
}
.help-faq-2026-list a:hover {
  text-decoration: underline;
}

.help-faq-2026-all {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
  text-align: center;
}
.help-faq-2026-all a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.help-faq-2026-all a:hover {
  text-decoration-thickness: 2px;
}

/* ---- Product section (Экран / Летучка) ---- */
.help-section-2026 {
  margin: 0 0 72px;
}
@media (min-width: 1024px) {
  .help-section-2026 {
    margin-bottom: 100px;
  }
}
.help-section-2026-title {
  margin: 0 0 40px;
}
@media (min-width: 1024px) {
  .help-section-2026-title {
    margin-bottom: 56px;
  }
}
.help-section-2026-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .help-section-2026-cta {
    margin-top: 48px;
  }
}

/* ---- Category grid ---- */
.help-categories-2026 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .help-categories-2026 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .help-categories-2026 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.help-category-2026 {
  background: var(--brand-white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  box-shadow: var(--shadow-menu);
  padding: 24px;
}
@media (min-width: 1024px) {
  .help-category-2026 {
    padding: 28px;
  }
}

.help-category-2026-title {
  position: relative;
  margin: 0 0 18px;
  padding-left: 14px;
}
/* Продуктовая акцент-полоса слева от заголовка категории */
.help-category-2026-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  border-radius: 4px;
}
.help-category-2026--screen .help-category-2026-title::before {
  background: var(--gradient-primary);
}
.help-category-2026--letuchka .help-category-2026-title::before {
  background: var(--gradient-secondary);
}

.help-category-2026-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.help-category-2026-list a {
  display: inline-block;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}
.help-category-2026-list a:hover {
  color: var(--text-default);
  text-decoration: underline;
}
