.page-contact {
  background: var(--bg);
}

.contact-main {
  padding: 140px 0 96px;
}

.contact-inner {
  position: relative;
}

.contact-top-callout {
  position: absolute;
  top: -30px;
  right: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 50;
  pointer-events: none;
}
.contact-top-callout .callout-arrows {
  width: 160px;
  height: auto;
}
.contact-top-callout .callout-label {
  color: var(--accent);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: start;
  padding-top: 56px;
}

.contact-visual {
  position: relative;
}
.contact-photo {
  width: 100%;
  height: 720px;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 24px;
}

.contact-form-wrap {
  padding-top: 24px;
}
.contact-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-subtitle {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 40px;
}

#support-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.field input,
.field textarea {
  width: 100%;
  background: #ececec;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #8a8a8a;
}
.field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-note {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 8px 0 8px;
}
.form-note a {
  color: var(--accent);
  text-decoration: underline;
}

.submit {
  align-self: flex-start;
  border-radius: 12px;
  padding: 14px 28px;
}

.form-status {
  font-size: 14px;
  line-height: 1.4;
}
.form-status:empty {
  display: none;
}
.form-status.success {
  color: #1a7f37;
}
.form-status.error {
  color: var(--accent);
}

.grecaptcha-badge {
  visibility: hidden;
}

.footer-block {
  font-style: normal;
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

@media (max-width: 960px) {
  .contact-top-callout {
    display: none;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
    padding-top: 32px;
  }
  .contact-photo {
    height: 320px;
  }
}
