/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 60px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  text-align: left;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question.active {
  background: rgba(255, 255, 255, 0.08);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #8b5cf6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer.active {
  max-height: 200px;
  padding: 0 32px 24px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.faq-answer strong {
  color: #8b5cf6;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
  
  .faq-question {
    padding: 20px 24px;
    font-size: 15px;
  }
  
  .faq-answer.active {
    padding: 0 24px 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 20px;
  }
  
  .faq-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  
  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .faq-answer.active {
    padding: 0 20px 16px;
  }
  
  .faq-answer p {
    font-size: 13px;
  }
}

/* Legacy FAQ styles (keeping for compatibility) */
.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid #1d2440; border-radius: 14px; background: #0f1320; overflow: hidden; }
.faq__button {
  width: 100%; text-align: left; background: none; color: var(--text-1);
  font-weight: 600; padding: 14px 16px; border: 2px solid rgba(255,255,255,.1); cursor: pointer;
  transition: all 0.2s ease; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.faq__button:hover { background: #11182c; border-color: rgba(255,255,255,.2); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.faq__panel { padding: 0 16px 16px; color: var(--text-2); }
