:root {
  --bk-surface-tertiary:    #f5f5fb;
  --bk-border:              #e0e0ee;  
  --bk-text-primary:        #1a1a1a;
  --bk-text-secondary:      #3a3e48;
  --bk-text-muted:          #7a8090;
  --bk-text-divider:        #c4c8d2;
  --bk-accent-blue:         #1a4fb8;
}
/* ===== FAQ accordion (как на /bonuses) ===== */
.bn-list-faq { margin: 0 0 40px; counter-reset: faq; }
.bn-list-faq__title {
  font-size: 24px; font-weight: 600; color: var(--bk-text-primary, #1a1a1a);
  margin: 0 0 16px; line-height: 1.3;
}
.bn-list-faq__item {
  border: 1px solid var(--bk-border, #e0e0ee); border-radius: 8px; margin-bottom: 8px;
  background: #fff; overflow: hidden; counter-increment: faq;
}
.bn-list-faq__item[open] { border-color: var(--bk-text-divider, #c4c8d2); }
.bn-list-faq__item > summary {
  list-style: none; cursor: pointer; padding: 14px 18px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; transition: background-color 0.15s ease;
}
.bn-list-faq__item > summary::-webkit-details-marker { display: none; }
.bn-list-faq__item > summary::marker { display: none; }
.bn-list-faq__item > summary:hover { background: var(--bk-surface-tertiary, #f5f5fb); }
.bn-list-faq__item > summary::before {
  content: counter(faq, decimal-leading-zero) " /"; flex-shrink: 0; font-size: 14px; font-weight: 600;
  color: var(--bk-text-muted, #7a8090); letter-spacing: 0.5px; min-width: 36px; margin-right: 6px;
  transition: color 0.2s ease;
}
.bn-list-faq__item[open] > summary::before { color: var(--bk-accent-blue, #1a4fb8); }
.bn-list-faq__question {
  font-size: 16px; font-weight: 600; color: var(--bk-text-primary, #1a1a1a); margin: 0; flex: 1; line-height: 1.4;
}
.bn-list-faq__item > summary::after {
  content: ''; flex-shrink: 0; width: 14px; height: 14px;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size: 100% 2px, 2px 100%; background-position: center; background-repeat: no-repeat;
  color: var(--bk-text-muted, #7a8090); transition: transform 0.25s ease, color 0.2s ease;
}
.bn-list-faq__item[open] > summary::after { transform: rotate(45deg); color: var(--bk-accent-blue, #1a4fb8); }
.bn-list-faq__answer {
  padding: 0 18px 16px; color: var(--bk-text-secondary, #3a3e48); font-size: 15px; line-height: 1.6;
  overflow: hidden; transition: height 0.28s ease; box-sizing: border-box;
}
.bn-list-faq__answer p { margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .bn-list-faq__question { font-size: 15px; }
  .bn-list-faq__item > summary { padding: 12px 14px; }
  .bn-list-faq__answer { padding: 0 14px 14px; font-size: 14.5px; }
}