.support-body {
  min-width: 320px;
  background: #f3fafb;
}

.support-page {
  min-height: calc(100svh - 126px);
  background:
    radial-gradient(circle at 10% 12%, rgba(95, 190, 177, 0.17), transparent 32%),
    radial-gradient(circle at 92% 84%, rgba(192, 224, 218, 0.38), transparent 35%),
    #f3fafb;
}

.support-header {
  max-width: 1440px;
  margin: 0 auto;
}

.support-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) 0 clamp(58px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
}

.support-intro {
  padding-top: 18px;
}

.support-intro .eyebrow {
  color: var(--green);
  margin-bottom: 14px;
}

.support-intro h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.support-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.support-contact {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.support-contact span {
  color: var(--muted);
  font-size: 0.8rem;
}

.support-contact a {
  color: var(--green);
  font-weight: 700;
}

.support-card {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 87, 77, 0.16);
  border-radius: 24px;
  box-shadow: 0 22px 65px rgba(25, 82, 72, 0.11);
  backdrop-filter: blur(12px);
}

.support-form,
.field {
  display: flex;
  flex-direction: column;
}

.support-form {
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  gap: 8px;
}

.field > span {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(34, 87, 77, 0.24);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.field input,
.field select {
  min-height: 50px;
  padding: 11px 14px;
}

.field textarea {
  min-height: 160px;
  padding: 14px;
  line-height: 1.55;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #268574;
  box-shadow: 0 0 0 4px rgba(38, 133, 116, 0.12);
}

.field small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.support-submit {
  min-height: 54px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 7px 22px rgba(20, 88, 78, 0.16);
  transition: background 0.18s, transform 0.18s;
}

.support-submit:hover {
  background: #0d433b;
  transform: translateY(-1px);
}

.support-submit:focus-visible {
  outline: 3px solid #247cba;
  outline-offset: 4px;
}

.form-privacy {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: center;
}

.form-privacy a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-notice {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-notice ul {
  margin: 4px 0 0;
  padding-left: 20px;
}

.form-success {
  color: #14584e;
  border-color: #9fd3c7;
  background: #eaf8f4;
}

.form-error {
  color: #792c2c;
  border-color: #e4b4b4;
  background: #fff0f0;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 900px) {
  .support-page {
    min-height: auto;
  }

  .support-main {
    width: min(680px, calc(100% - 40px));
    padding: 36px 0 64px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .support-intro {
    padding-top: 0;
    text-align: center;
  }

  .support-intro > p:not(.eyebrow) {
    margin: 0 auto;
  }

  .support-contact {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .support-main {
    width: min(100% - 28px, 520px);
    padding-top: 26px;
  }

  .support-intro h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .support-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .support-submit {
    transition: none;
  }

  .support-submit:hover {
    transform: none;
  }
}
