/* ── Support page ── */

.support-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

/* Hero */
.support-hero {
  text-align: center;
  margin-bottom: 64px;
}

.support-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #d4a853;
  margin: 0 0 16px;
}

.support-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #999;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Contact form ── */
.support-form-section {
  margin-bottom: 80px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.support-form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 0.02em;
}

.support-form-group input,
.support-form-group select,
.support-form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1a1a1b;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.support-form-group input:focus,
.support-form-group select:focus,
.support-form-group textarea:focus {
  border-color: #d4a853;
}

.support-form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.support-form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.support-form-group input::placeholder,
.support-form-group textarea::placeholder {
  color: #555;
}

.support-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.support-submit-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  background: #d4a853;
  color: #0a0a0b;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.support-submit-btn:hover {
  opacity: 0.9;
}

.support-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.support-form-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  min-height: 24px;
}

.support-form-status.success {
  color: #4ade80;
}

.support-form-status.error {
  color: #f87171;
}

/* ── Direct contact ── */
.support-contact-section {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 24px;
  border: 1px solid #222;
  border-radius: 12px;
  background: #111112;
}

.support-contact-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}

.support-contact-email {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #d4a853;
  text-decoration: none;
  margin-bottom: 8px;
}

.support-contact-email:hover {
  text-decoration: underline;
}

.support-contact-section p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #777;
  margin: 8px 0 0;
}

/* ── FAQ accordion ── */
.support-faq-section {
  margin-bottom: 80px;
}

.support-faq-section > h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 40px;
  text-align: center;
}

.faq-category {
  margin-bottom: 32px;
}

.faq-category-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4a853;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #222;
}

.faq-item {
  border-bottom: 1px solid #1a1a1b;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ddd;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #fff;
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: 16px;
  transition: transform 0.25s ease;
  color: #666;
}

.faq-question.active .faq-chevron {
  transform: rotate(180deg);
  color: #d4a853;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 16px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #999;
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .support-page {
    padding: 48px 16px 80px;
  }

  .support-hero {
    margin-bottom: 40px;
  }

  .support-submit-btn {
    width: 100%;
    text-align: center;
  }

  .support-contact-section {
    padding: 28px 16px;
  }
}
