.support {
  padding: 40px 0 80px;
}

.support__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.support__header {
  text-align: center;
  margin-bottom: 40px;
}

.support__title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.support__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.support__success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  color: #065f46;
  font-size: 14px;
  margin-bottom: 24px;
}

.support__success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.support__errors {
  padding: 14px 18px;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #991b1b;
  font-size: 14px;
  margin-bottom: 24px;
}

.support__errors p {
  margin: 4px 0;
}

.support__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.support__form-section {
  min-width: 0;
}

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

.support__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.support__field label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.support__optional {
  font-weight: 400;
  color: #9ca3af;
  font-size: 12px;
}

.support__field input,
.support__field select,
.support__field textarea {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s;
}

.support__field input:focus,
.support__field select:focus,
.support__field textarea:focus {
  outline: none;
  border-color: #0b1a3e;
  box-shadow: 0 0 0 2px rgba(11, 26, 62, 0.1);
}

.support__field textarea {
  resize: vertical;
  min-height: 120px;
}

.support__ref-row {
  display: flex;
  gap: 8px;
}

.support__ref-row input {
  flex: 1;
}

.support__lookup-btn {
  padding: 10px 16px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.support__lookup-btn:hover {
  background: #e5e7eb;
}

.support__lookup-result {
  margin-top: 8px;
  font-size: 13px;
}

.support__lookup-result.is-loading {
  color: #6b7280;
}

.support__lookup-result.is-found {
  padding: 10px 14px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  color: #0369a1;
}

.support__lookup-result.is-not-found {
  color: #dc2626;
}

.support__lookup-result .balance-amount {
  font-weight: 700;
  color: #059669;
}

.support__submit {
  padding: 12px 24px;
  background: #0b1a3e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.support__submit:hover {
  background: #1e3a5f;
}

.support__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support__info-card {
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.support__info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.support__info-card p {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 6px;
  line-height: 1.5;
}

.support__info-phone {
  font-size: 16px !important;
  font-weight: 700;
  color: #0b1a3e !important;
}

.support__info-email {
  font-size: 14px !important;
  color: #0b1a3e !important;
}

.support__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.support__info-list li {
  font-size: 13px;
  color: #6b7280;
  padding: 4px 0;
  border-bottom: 1px solid #e5e7eb;
}

.support__info-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .support__layout {
    grid-template-columns: 1fr;
  }
  .support__title {
    font-size: 22px;
  }
  .support__ref-row {
    flex-direction: column;
  }
  .support__submit {
    width: 100%;
  }
}