/* ── FAQ PAGE ──────────────────────────────────────── */
.faq-page {
  padding-top: 100px;
  padding-bottom: 6rem;
  min-height: 100dvh;
}

/* Hero */
.faq-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.faq-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.faq-hero__badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(43, 191, 143, 0.1);
  border: 1px solid rgba(43, 191, 143, 0.3);
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.faq-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Layout */
.faq-layout {
  max-width: 860px;
  margin: 0 auto;
}

/* Category Filters */
.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.faq-filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.faq-filter-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.faq-filter-btn--active {
  background: rgba(43, 191, 143, 0.12);
  border-color: rgba(43, 191, 143, 0.5);
  color: var(--accent-primary);
  font-weight: 600;
}

/* Sections */
.faq-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-section__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-primary);
  margin-bottom: 0.85rem;
}

/* FAQ List */
.faq-list {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.97rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-item__question:hover {
  background: rgba(0, 0, 0, 0.03);
}

.faq-item--open .faq-item__question {
  color: var(--accent-primary);
}

.faq-item__answer {
  overflow: hidden;
}

.faq-item__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* Bottom CTA */
.faq-cta {
  margin-top: 3.5rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(43, 191, 143, 0.2);
}

.faq-cta__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.faq-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.faq-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .faq-hero__title {
    font-size: 2rem;
  }
  .faq-item__question {
    font-size: 0.9rem;
    padding: 1rem 1.1rem;
  }
  .faq-item__answer p {
    padding: 0 1.1rem 1rem;
  }
}
