/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -250px;
  top: -250px;
  background: rgba(139, 92, 246, 0.12);
  filter: blur(180px);
  pointer-events: none;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.faq-content .section-title {
  margin-bottom: 20px;
}

.faq-content .section-subtitle {
  margin-bottom: 40px;
}

.faq-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.faq-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(20px);
}

.faq-stat h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  color: transparent;
}

.faq-stat span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: 0.35s ease;
}

.faq-item:hover {
  border-color: rgba(139,92,246,.4);
  transform: translateY(-3px);
}

.faq-item.active {
  border-color: rgba(139,92,246,.5);
  box-shadow: 0 0 40px rgba(139,92,246,.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 24px 28px;
  text-align: left;
}

.faq-number {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(139,92,246,.12);

  color: var(--primary);
  font-weight: 700;
}

.faq-question span:nth-child(2) {
  flex: 1;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-question i {
  transition: 0.35s;
  color: var(--primary);
}

.faq-item.active i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer p {
  padding: 0 28px 28px 96px;
  margin: 0;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

@media (max-width: 991px) {

  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-stats {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width: 768px) {

  .faq-question {
    padding: 20px;
    gap: 14px;
  }

  .faq-number {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .faq-question span:nth-child(2) {
    font-size: 0.95rem;
  }

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

  .faq-stats {
    grid-template-columns: 1fr;
  }
}