/* FAQ Page Styles */

.faq-hero { min-height: 42vh; padding: 8rem 0 3rem; }
.faq-hero-content { max-width: 720px; }
.faq-hero .page-hero-desc { margin-bottom: 0; }
.faq-section { padding-top: 3.25rem; }
.faq-container { max-width: 960px; }

/* ---------- FAQ ---------- */
.pw-faq-cats { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.pw-faq-cat { background: rgba(255,255,255,0.7); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.85rem; font-weight: 700; padding: 0.55rem 1.05rem; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition-fast); font-family: var(--font-sans); white-space: nowrap; min-height: 40px; }
.pw-faq-cat.active { background: var(--brand-600); color: white; border-color: var(--brand-600); box-shadow: 0 8px 20px rgba(14,143,92,0.16); }
.pw-faq-cat:hover:not(.active) { border-color: var(--border-hover); color: var(--text-primary); }
.pw-faq-list { max-width: 820px; margin: 0 auto; }
.pw-faq-item { background: rgba(255,255,255,0.78); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.pw-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: transparent; border: none; color: var(--text-primary); font-size: 0.97rem; font-weight: 700; cursor: pointer; text-align: left; font-family: var(--font-sans); transition: background var(--transition-fast); min-height: 54px; }
.pw-faq-q:hover { background: rgba(14, 143, 92, 0.04); }
.pw-faq-q span:first-child { display: flex; align-items: center; gap: 0.6rem; }
.pw-faq-q span:first-child i { color: var(--brand-600); font-size: 0.9rem; }
.pw-faq-q span:last-child { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-secondary); color: var(--text-muted); flex-shrink: 0; }
.pw-faq-a { display: none; padding: 0 1.2rem 1.1rem 2.85rem; font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }
.pw-faq-item.open .pw-faq-a { display: block; }
.pw-billing-empty { text-align: center; padding: 3rem; color: var(--text-muted); }
.pw-billing-empty i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; display: block; }
.pw-billing-empty p { margin-bottom: 1.5rem; }
.faq-contact-note { max-width: 820px; margin: 2rem auto 0; padding: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(255,255,255,0.72); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.faq-contact-note h2 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.faq-contact-note p { font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .faq-hero { min-height: 38vh; padding: 7rem 0 2.5rem; }
  .pw-faq-cats { gap: 0.375rem; }
  .pw-faq-cat { font-size: 0.8rem; padding: 0.5rem 0.9rem; }
  .pw-faq-q { font-size: 0.9rem; }
  .pw-faq-a { padding-left: 1.2rem; }
  .faq-contact-note { align-items: stretch; flex-direction: column; }
  .faq-contact-note .btn { width: 100%; }
}
