/* ===============================================
   FAQ PAGE STYLES — Steady Growth
   File: styles/faq.css
   =============================================== */

/* Background inherits from global theme */
body.faq-page {
  background: radial-gradient(circle at top, #141b35 0, #050816 55%);
  color: #ffffff;
}

/* -----------------------------------------------
   HERO SECTION
------------------------------------------------ */
.faq-hero {
  padding: 70px 0 40px;
  text-align: center;
}

.faq-hero .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.faq-hero .hero-subtitle {
  font-size: 0.95rem;
  color: #b8bfd4;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}

/* -----------------------------------------------
   TABS
------------------------------------------------ */
.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px auto 35px;
}

.faq-tab {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  border: 1px solid rgba(240,183,107,0.4);
  background: rgba(255,255,255,0.06);
  color: #f5f5f5;
  cursor: pointer;
  transition: 0.25s ease;
}

.faq-tab:hover {
  border-color: rgba(240,183,107,0.75);
}

.faq-tab.active {
  background: radial-gradient(circle at 10% 20%, #ffe6c0 0, #f0b76b 35%, #b9782f 100%);
  color: #1b1406;
  font-weight: 600;
  border-color: rgba(240,183,107,0.9);
}

/* -----------------------------------------------
   FAQ GROUPS
------------------------------------------------ */
.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

/* -----------------------------------------------
   FAQ ITEMS (ACCORDION)
------------------------------------------------ */
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 15px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(240,183,107,0.4);
}

.faq-item.open {
  border-color: rgba(240,183,107,0.7);
}

/* Question text */
.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Answer text */
.faq-a {
  display: none;
  font-size: 0.85rem;
  margin-top: 7px;
  line-height: 1.55;
  color: #a9b2cc;
}

.faq-item.open .faq-a {
  display: block;
}

/* -----------------------------------------------
   CTA BOX
------------------------------------------------ */
.cta-box {
  margin-top: 40px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.cta-box a {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 20%, #ffe6c0 0, #f0b76b 35%, #b9782f 100%);
  color: #1b1406;
  font-weight: 600;
  text-decoration: none;
}

/* -----------------------------------------------
   RESPONSIVE FIXES
------------------------------------------------ */
@media (max-width: 600px) {
  .faq-item {
    font-size: 0.9rem;
    padding: 14px;
  }

  .faq-tabs {
    gap: 6px;
  }
}
