﻿/* ============================================
   SUPPORT / FAQ PAGE — redesigned
   ============================================ */

.support-page {
  padding-top: 22px;
  padding-bottom: 80px;
}



/* ── Page heading ── */
.support-page-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.support-page-head h1 {
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  letter-spacing: -0.3px;
}

.support-page-head h1 span {
  color: #aaaaaa;
  font-size: 0.65em;
  font-weight: 500;
  margin-left: 6px;
}

.support-page-head p {
  font-size: 14px;
  color: #888888;
  margin: 0;
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
}

/* ── CTA Band ── */
.faq-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
  padding: 28px 32px;
  background: #e8a50f;
  border-radius: 12px;
}

.faq-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-cta-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.faq-cta-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 26px;
  border-radius: 10px;
  background: #ffffff;
  color: #c48c00;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.faq-cta-btn:hover {
  background: #111111;
  color: #ffffff;
}

/* ── FAQ List ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.15s;
}

.faq-item.active {
  border-color: #cccccc;
}

.faq-item button {
  width: 100%;
  min-height: 62px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s;
}

.faq-item button:hover { color: #e8a50f; }
.faq-item.active button { color: #111111; }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #aaaaaa;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.faq-item.active .faq-icon {
  background: #e8a50f;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid #f0f0f0;
}

.faq-item.active .faq-answer { display: block; }

.faq-answer p {
  margin: 16px 0 0;
  color: #555555;
  font-size: 14.5px;
  line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .support-page { padding-top: 14px; padding-bottom: 52px; }
  .support-page-head { flex-direction: column; gap: 6px; }
  .support-page-head h1 { font-size: 22px; }
  .support-page-head p { text-align: left; }
  .faq-item button { font-size: 14px; padding: 14px 16px; }
  .faq-answer { padding: 0 16px 16px; }
  .faq-cta-band { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .faq-cta-btn { width: 100%; justify-content: center; }
}
