.faq-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  position: relative; overflow: hidden;
}
.faq-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 231, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.faq-container {
  max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem;
}
.faq-item {
  background: rgba(30, 30, 30, 0.8); border: 1px solid #2a2a2a; border-radius: 12px;
  overflow: hidden; transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #00ffe7; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 255, 231, 0.1);
}
.faq-question {
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem; cursor: pointer;
  font-weight: 500; color: #fff; position: relative;
}
.faq-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: #00ffe7; color: #0a0a0a; border-radius: 50%;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.arrow-icon { width: 24px; height: 24px; margin-left: auto; transition: transform 0.3s ease; color: #00ffe7; }
.faq-answer {
  padding: 0 1.5rem 1.5rem; color: #ccc; display: none; line-height: 1.6; gap: 1rem; align-items: flex-start;
}
.faq-item.active .faq-answer { display: flex; }
.faq-item.active .arrow-icon { transform: rotate(180deg); }
