﻿.faq-page-section { padding: 56px 0 32px; }
.faq-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}
.faq-tab-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--sub);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  color: var(--mid);
}
.faq-tab-btn.active {
  background: var(--gd);
  border-color: var(--bord);
  color: var(--gold);
  font-weight: 600;
}
.faq-group { display: none; }
.faq-group.active { display: block; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
details.faq-item {
  background: #fff;
  border: 1.5px solid var(--sub);
  border-radius: 12px;
  overflow: hidden;
}
details.faq-item[open] { border-color: rgba(181,148,62,.35); }
details.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; }
details.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 20px 16px; color: var(--dim); font-size: 15px; line-height: 1.65; }
.faq-cta {
  margin: 48px 0 64px;
  background: radial-gradient(120% 120% at 0% 0%, #fff6e8 0%, #f2f9ff 70%, #fff 100%);
  border: 1px solid var(--sub);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.faq-cta h3 { font-size: 20px; font-weight: 700; }
.faq-cta p { font-size: 14px; color: var(--dim); margin-top: 4px; }