/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 70px 20px;

  /* 🔥 subtle dark gradient */
  background: linear-gradient(
    135deg,
    rgba(0,255,204,0.05),
    rgba(56,189,248,0.05)
  );

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== TITLE ===== */
.faq-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;

  background: linear-gradient(90deg, #c084fc, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== ITEM ===== */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

/* ===== QUESTION ===== */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 14px;
  font-size: 15px;
  font-weight: 500;

  color: #e5e7eb; /* ✅ readable */

  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: 0.25s ease;
}

/* hover */
.faq-question:hover {
  color: #38bdf8;
}

/* ===== ICON ===== */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 14px;
  font-size: 18px;
  color: #9ca3af;
  transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "–";
  color: #00ffcc;
  transform: rotate(180deg);
}

/* ===== ANSWER ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;

  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;

  padding: 0 14px;
  transition: all 0.3s ease;
}

/* open */
.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 10px 14px 16px;
}

/* ===== ACTIVE STATE ===== */
.faq-item.active {
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 20px rgba(0,255,204,0.08);
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
  .faq-title {
    font-size: 1.7rem;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 12px;
  }

  .faq-answer {
    font-size: 13px;
  }
}