/* ================================
   SUPPORT PAGE – MODERN & CLEAN
================================ */

.support-hero {
  background: radial-gradient(circle at top right, #1a1a38, #0b0b14);
  padding: 110px 0;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.support-hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.support-hero-text h1 span {
  color: var(--purple);
}

.support-hero-text p {
  margin-top: 20px;
  color: var(--text-muted);
  max-width: 520px;
}

.support-hero-image img {
  width: 100%;
  max-width: 420px;
}

/* OPTIONS */
.support-options {
  padding: 100px 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.option-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
}

.option-card i {
  font-size: 2rem;
  color: var(--purple);
  margin-bottom: 20px;
}

.option-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--purple);
  font-weight: 500;
}

.option-card.highlight {
  background: linear-gradient(135deg, #7c4dff, #3b2db3);
}

/* DETAILS */
.support-details {
  padding: 80px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.support-list {
  list-style: none;
  margin-top: 20px;
}

.support-list li {
  margin-bottom: 12px;
}

.support-list i {
  color: var(--purple);
  margin-right: 8px;
}

.availability {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.availability div strong {
  font-size: 1.4rem;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .support-hero-grid,
  .details-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .availability {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ================================
   FAQ ACCORDION
================================ */

.support-faq {
  padding: 100px 0;
  background: rgba(255,255,255,0.02);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.support-faq h2 {
  text-align: center;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
