﻿.support-page {
  display: grid;
  gap: 14px;
  padding: 10px 0 40px;
}

.support-hero,
.faq-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.support-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  padding: 34px 32px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(0, 141, 255, 0.34),
      transparent 28%
    ),
    radial-gradient(
      circle at 70% 120%,
      rgba(86, 209, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(53, 58, 76, 0.98), rgba(42, 46, 61, 0.98));
}

.support-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -115px;
  width: 380px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.support-kicker,
.section-heading > p {
  margin-bottom: 8px;
  color: #39bfff;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.support-hero h1 {
  margin-bottom: 9px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.support-hero p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 0;
  color: #ccd1df;
  font-size: 14px;
}

.support-hero-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 230px;
  padding: 22px 24px;
  border: 1px solid rgba(35, 183, 255, 0.27);
  border-radius: 16px;
  color: #cdd3ff;
  background: rgba(21, 24, 34, 0.28);
  backdrop-filter: blur(8px);
}

.support-hero-badge span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.support-hero-badge strong {
  color: #39bfff;
  font-size: 24px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 14px;
  align-items: start;
}

.faq-panel,
.contact-panel {
  padding: 25px 22px;
}

.contact-panel {
  position: sticky;
  top: 98px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 6px;
  font-size: 26px;
  letter-spacing: -0.8px;
}

.section-heading > span {
  color: #aeb5c7;
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  background: rgba(24, 28, 38, 0.42);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 13px 15px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 30px;
  border-radius: 8px;
  color: #cfd4ff;
  background: rgba(0, 141, 255, 0.19);
  font-size: 10px;
  font-weight: 1000;
}

.faq-item summary strong {
  color: #f5f7ff;
  font-size: 13px;
}

.faq-toggle {
  color: #44c7ff;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 15px 16px 67px;
}

.faq-answer p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #bac1d1;
  font-size: 12px;
}

.form-alert {
  margin-bottom: 16px;
  padding: 14px 15px;
  border-radius: 8px;
  font-size: 12px;
}

.form-alert.success {
  border: 1px solid rgba(84, 214, 166, 0.34);
  color: #c8f7e4;
  background: rgba(42, 133, 101, 0.18);
}

.form-alert.error {
  border: 1px solid rgba(255, 111, 125, 0.34);
  color: #ffd4d9;
  background: rgba(158, 45, 60, 0.17);
}

.form-alert strong {
  display: block;
  margin-bottom: 6px;
}

.form-alert ul {
  margin: 0;
  padding-left: 18px;
}

.support-form {
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field > span,
.privacy-check span {
  color: #e5e8f2;
  font-size: 11px;
  font-weight: 800;
}

.form-field b,
.privacy-check b {
  color: #44c7ff;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  outline: none;
  color: #f4f6ff;
  background: rgba(18, 21, 30, 0.46);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.form-field input,
.form-field select {
  min-height: 44px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 178px;
  padding: 12px;
  resize: vertical;
  line-height: 1.6;
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 141, 255, 0.75);
  background: rgba(18, 21, 30, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 141, 255, 0.12);
}

.form-field small {
  color: #858ea4;
  font-size: 10px;
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin: 16px 0;
  cursor: pointer;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.support-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 49px;
  padding: 0 17px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #23b7ff, #4e5ce9);
  box-shadow: 0 10px 22px rgba(42, 54, 180, 0.26);
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}

.support-submit:hover {
  filter: brightness(1.08);
}

.support-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.storage-note {
  margin: 13px 0 0;
  color: #848da2;
  font-size: 10px;
  line-height: 1.6;
}

.storage-note code {
  color: #9bdcff;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
