/* =========================================================
   faq.styles.css — FAQ page specific rules
   ========================================================= */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: rgba(245, 158, 11, .4);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.faq-q::-webkit-details-marker { display: none; }

.faq-chev {
  flex: none;
  color: var(--text-2);
  transition: transform .25s;
}
.faq-item[open] .faq-chev {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 20px 18px;
  color: var(--text-2);
  line-height: 1.7;
  font-size: 14px;
}
.faq-a p { margin: 0; }

.faq-cta {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 158, 11, .35);
  background:
    linear-gradient(160deg, rgba(245, 158, 11, .16), rgba(245, 158, 11, .04)),
    var(--card);
}
.faq-cta p {
  margin: 0 0 18px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-cta__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
