/* ============================================
   SUPPORT PAGE STYLES
   ============================================ */

/* Hero */
.support-hero {
  padding: 160px 0 64px;
  text-align: center;
}

.support-hero__inner {
  max-width: 560px;
  margin: 0 auto;
}

.support-hero__icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.support-hero__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.support-hero__subtitle {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.6;
}

/* Contact Card */
.support-contact {
  padding: 0 0 80px;
}

.support-contact__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--gold-border-faint);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}

.support-contact__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.support-contact__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.support-contact__text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* FAQ */
.support-faq {
  padding: 0 0 120px;
}

.support-faq__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.support-faq__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--gray);
  transition: transform 0.3s var(--ease), color 0.2s;
}

.faq-item--open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item--open .faq-item__answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-item__answer p,
.faq-item__answer ol {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
  padding: 0 4px;
}

.faq-item__answer ol {
  padding-left: 24px;
  margin: 12px 0;
}

.faq-item__answer ol li {
  margin-bottom: 6px;
}

.faq-item__answer p + p {
  margin-top: 12px;
}

.faq-item__answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover {
  color: var(--gold-light);
}

/* Nav active state */
.nav__link--active {
  color: var(--gold) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .support-hero {
    padding: 120px 0 48px;
  }

  .support-contact__card {
    padding: 32px 24px;
  }

  .support-faq {
    padding: 0 0 80px;
  }

  .faq-item__question {
    font-size: 15px;
    padding: 18px 4px;
  }
}
