/* FAQ page styles */

.faq-main { max-width: 56rem; }

.faq-category { margin-bottom: 2.5rem; }

.faq-category-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6366f1;
  margin: 0 0 .85rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid rgba(99,102,241,.15);
}

.faq-item {
  border: 1.5px solid rgba(99,102,241,.12);
  border-radius: .85rem;
  margin-bottom: .55rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 18px rgba(99,102,241,.09); }
.faq-item[open] {
  border-color: rgba(99,102,241,.28);
  box-shadow: 0 4px 18px rgba(99,102,241,.09);
}

.faq-q {
  list-style: none;
  padding: .9rem 1.1rem;
  font-size: .9375rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  user-select: none;
  -webkit-user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(99,102,241,.1);
  color: #6366f1;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.faq-item[open] .faq-q::after {
  content: '−';
  background: #6366f1;
  color: #fff;
  transform: rotate(0deg);
}
.faq-item[open] .faq-q { color: #4f46e5; }

.faq-a {
  padding: 0 1.1rem 1rem;
  font-size: .9rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  border-top: 1px solid rgba(99,102,241,.08);
  padding-top: .75rem;
}
.faq-a a { color: #6366f1; font-weight: 600; }
.faq-a a:hover { text-decoration: underline; }

/* CTA block */
.faq-cta {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg,rgba(99,102,241,.07),rgba(139,92,246,.07));
  border: 1.5px solid rgba(99,102,241,.18);
  border-radius: 1.25rem;
  text-align: center;
}
.faq-cta p {
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  margin: 0 0 1rem;
}
.faq-cta-btn {
  display: inline-block;
  padding: .72rem 1.75rem;
  border-radius: 9999px;
  background: linear-gradient(105deg,#6366f1,#8b5cf6);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(99,102,241,.3);
  transition: transform .18s, box-shadow .2s;
}
.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99,102,241,.38);
}
