/* Customer support page */

.page-customer-support {
  background: #f3f4f6;
}

.support-main {
  padding-bottom: 0;
}

.support-hero {
  padding: 2.75rem 0 2.25rem;
  background: #f3f4f6;
}

.support-hero-inner {
  text-align: center;
}

.support-hero-title {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.support-hero-lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #6b7280;
}

.support-content {
  padding-bottom: 2.5rem;
}

.support-category {
  margin-bottom: 2rem;
}

.support-category-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.support-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e0f2fe;
  color: var(--navy);
  flex-shrink: 0;
}

.support-category-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.support-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.support-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 45, 114, 0.04);
}

.support-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.15rem;
  border: none;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.support-faq-trigger:hover {
  background: #f9fafb;
}

.support-faq-chevron {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.2s;
}

.support-faq-item.is-open .support-faq-chevron {
  transform: rotate(180deg);
}

.support-faq-panel {
  padding: 0 1.15rem 1.15rem;
  background: var(--navy);
}

.support-faq-panel[hidden] {
  display: none;
}

.support-faq-panel p {
  margin: 0;
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.support-faq-panel strong {
  color: #fff;
}

.support-cta {
  padding: 2.75rem 0 3rem;
  background: var(--navy);
  color: #fff;
}

.support-cta-inner {
  text-align: center;
}

.support-cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
}

.support-cta-lead {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.support-contact-grid {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .support-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.support-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.35rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.support-contact-icon {
  display: flex;
  margin-bottom: 0.25rem;
  color: #fff;
}

.support-contact-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.support-contact-value {
  font-size: 1rem;
  font-weight: 700;
}

.site-footer--support {
  background: #e5e7eb;
  border-top: none;
  padding: 1.75rem 0;
}

.support-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.support-footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: #6b7280;
}

.support-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.support-footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
}

.support-footer-links a:hover {
  color: var(--navy);
  text-decoration: underline;
}
