/* =========================================================
   support.styles.css — Support Center specific rules
   ========================================================= */

/* Channel cards */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease;
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}
.support-card h3 {
  font-size: 16px;
  margin: 12px 0 6px;
}
.support-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 13px;
}
.support-card p a {
  color: inherit;
  text-decoration: none;
}
.support-card p a:hover {
  color: var(--orange);
}

.support-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 158, 11, .14);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.support-card__icon svg {
  width: 24px;
  height: 24px;
}

/* Contact form card */
.support-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.support-form h2 {
  font-size: 18px;
  margin: 0 0 18px;
}

.form-field {
  margin-bottom: 14px;
}
.support-form input,
.support-form textarea {
  width: 100%;
  height: 44px;
  background: #0f1a2c;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 0 14px;
  font: inherit;
  outline: none;
}
.support-form textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}
.support-form input:focus,
.support-form textarea:focus {
  border-color: var(--orange);
}
.support-form input::placeholder,
.support-form textarea::placeholder {
  color: var(--muted);
}

/* Visually hidden labels */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .support-cards {
    grid-template-columns: 1fr;
  }
}
