.contact-feedback {
  margin-top: 32px; padding: clamp(20px, 4vw, 36px); border: 1px solid #dde9df;
  border-radius: 24px; background: var(--surface, #fff); color: #10251b;
  box-shadow: 0 8px 28px rgba(20, 35, 25, .06); min-width: 0;
}
.contact-feedback h2 { margin: 0; font-size: clamp(22px, 3vw, 28px); line-height: 1.3; }
.contact-feedback__note { margin: 12px 0 24px; color: #64756a; font-size: 14px; line-height: 1.6; }
.contact-feedback__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.contact-feedback label { display: grid; gap: 8px; min-width: 0; font-size: 14px; font-weight: 600; }
.contact-feedback input, .contact-feedback textarea {
  box-sizing: border-box; display: block; width: 100%; min-width: 0; padding: 13px 14px;
  border: 1px solid #dde9df; border-radius: 10px; background: var(--surface, #fff);
  color: inherit; font: inherit; font-size: 16px; font-weight: 400; line-height: 1.5;
}
.contact-feedback textarea { resize: vertical; min-height: 140px; }
.contact-feedback input:focus-visible, .contact-feedback textarea:focus-visible, .contact-feedback button:focus-visible {
  outline: 2px solid var(--accent, #1f8a45); outline-offset: 3px;
}
.contact-feedback__message { grid-column: 1 / -1; }
.contact-feedback__submit { margin-top: 24px; padding: 14px 24px; min-height: 52px; height: auto; max-width: 100%; white-space: normal; }
.contact-feedback__submit:disabled { cursor: wait; opacity: .65; }
.contact-feedback__status { margin: 16px 0 0; min-height: 1.5em; font-size: 14px; line-height: 1.6; overflow-wrap: anywhere; }
@media (max-width: 600px) {
  .contact-feedback__fields { grid-template-columns: minmax(0, 1fr); }
  .contact-feedback__submit { width: 100%; }
}
