.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 20px;
  margin-bottom: 22px;
}

.support-hero-copy,
.support-hero-meta,
.support-panel {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(28, 25, 23, 0.04);
}

.support-hero-copy {
  padding: 28px;
}

.support-eyebrow,
.support-section-eyebrow {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f766e;
}

.support-hero h1 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1c1917;
}

.support-subtitle {
  margin: 12px 0 0;
  max-width: 760px;
  color: #57534e;
  line-height: 1.6;
}

.support-hero-meta {
  padding: 20px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.support-highlight {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fafaf9 0%, #f5f5f4 100%);
  border: 1px solid #e7e5e4;
}

.support-highlight-label {
  display: block;
  margin-bottom: 8px;
  color: #78716c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-highlight strong {
  display: block;
  color: #1c1917;
  line-height: 1.45;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.72fr);
  gap: 20px;
}

.support-panel {
  padding: 24px;
}

.support-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.support-section-head h2 {
  margin: 0;
  color: #1c1917;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

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

.support-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #57534e;
}

.support-field input,
.support-field select,
.support-field textarea {
  width: 100%;
  border: 1px solid #d6d3d1;
  border-radius: 14px;
  background: #fafaf9;
  padding: 12px 14px;
  font: inherit;
  color: #1c1917;
}

.support-field input,
.support-field select {
  min-height: 48px;
}

.support-field textarea {
  resize: vertical;
  min-height: 240px;
  line-height: 1.6;
}

.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.support-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.support-hint {
  margin: 0;
  color: #78716c;
  line-height: 1.55;
}

.support-submit-btn {
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.support-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.support-form-status {
  min-height: 22px;
  font-size: 0.92rem;
  color: #57534e;
  text-align: right;
}

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

.support-form-status.is-success {
  color: #0f766e;
}

.support-sidebar {
  display: grid;
  gap: 20px;
  align-content: start;
}

.support-type-list {
  display: grid;
  gap: 12px;
}

.support-type-card {
  padding: 16px;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  background: #fafaf9;
}

.support-type-card strong {
  display: block;
  margin-bottom: 6px;
  color: #1c1917;
}

.support-type-card p {
  margin: 0;
  color: #57534e;
  line-height: 1.55;
}

.support-checklist {
  margin: 0;
  padding-left: 18px;
  color: #57534e;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .support-hero,
  .support-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .support-hero-copy,
  .support-hero-meta,
  .support-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .support-hero h1 {
    font-size: 1.85rem;
  }

  .support-form-row {
    grid-template-columns: 1fr;
  }

  .support-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .support-form-status {
    text-align: left;
  }

  .support-submit-btn {
    width: 100%;
    justify-content: center;
  }
}
