/* =================================================================
   SAIS.GE — FAQ page
   Hero + categories + accordion + CTA
   mobile-first; breakpoints 480 · 768 · 1024 · 1280
   ================================================================= */

/* ---------- hero ---------- */
.faq-hero {
  position: relative;
  padding: 110px 0 60px;
  text-align: center;
  overflow: hidden;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(212,175,106,.1), transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
}

.faq-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin: 12px 0 16px;
  overflow-wrap: break-word;
}

.faq-hero-lead {
  color: var(--text-mut);
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- body ---------- */
.faq-body {
  padding: 48px 0 80px;
}

/* ---------- category ---------- */
.faq-category {
  margin-bottom: 48px;
}

.faq-category:last-of-type {
  margin-bottom: 0;
}

.faq-category-title {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

/* ---------- faq-item (inline for page CSS) ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  overflow-wrap: break-word;
  word-break: break-word;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question:hover {
  color: var(--gold-soft);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  color: var(--text-mut);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 680px;
  overflow-wrap: break-word;
}

/* ---------- cta ---------- */
.faq-cta {
  text-align: center;
  padding: 56px 0 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.faq-cta p {
  color: var(--text-mut);
  margin-bottom: 20px;
}

/* ---------- responsive ---------- */
@media (min-width: 768px) {
  .faq-body { padding: 64px 0 100px; }
  .faq-question { font-size: 1.1rem; }
}

@media (min-width: 1024px) {
  .faq-hero { padding: 140px 0 80px; }
  .faq-body { padding: 80px 0 120px; }
  .faq-category { max-width: 800px; margin-left: auto; margin-right: auto; margin-bottom: 64px; }
  .faq-cta { max-width: 800px; margin-left: auto; margin-right: auto; }
}
