.feedback-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef6fb 42%, #ffffff 100%);
  color: #10254a;
}

.feedback-page {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.feedback-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 26px;
}

.feedback-copy,
.feedback-note,
.feedback-form,
.feedback-prompts {
  border: 1px solid #c8d9e8;
  box-shadow: 0 16px 34px rgba(15, 45, 85, 0.08);
}

.feedback-copy {
  padding: 34px;
  border-radius: 18px;
  background: #ffffff;
}

.feedback-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e8f8ef;
  color: #0f7a4c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feedback-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #10254a;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.feedback-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #314765;
  font-size: 1.05rem;
  line-height: 1.7;
}

.feedback-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 18px;
  border-left: 5px solid #19b66a;
  background: linear-gradient(180deg, #ffffff 0%, #f0fbf5 100%);
}

.feedback-note strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.feedback-note p {
  margin: 0;
  color: #334b68;
  line-height: 1.6;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.feedback-form,
.feedback-prompts {
  border-radius: 18px;
  background: #ffffff;
}

.feedback-form {
  padding: 26px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  color: #10254a;
  font-weight: 900;
  line-height: 1.3;
}

.feedback-form label span {
  color: #64758b;
  font-size: 0.82rem;
  font-weight: 700;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid #c9d8e8;
  border-radius: 12px;
  background: #f8fbfe;
  color: #10254a;
  font: inherit;
  font-weight: 700;
}

.feedback-form input,
.feedback-form select {
  min-height: 46px;
  padding: 0 13px;
}

.feedback-form textarea {
  min-height: 180px;
  padding: 13px;
  resize: vertical;
  line-height: 1.55;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: 3px solid rgba(25, 182, 106, 0.2);
  border-color: #19b66a;
  background: #ffffff;
}

.feedback-message,
.feedback-check {
  margin-top: 18px;
}

.feedback-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: #314765 !important;
  font-weight: 800 !important;
}

.feedback-check input {
  width: 18px;
  min-height: 18px;
  accent-color: #19b66a;
}

.feedback-hidden {
  position: absolute;
  left: -9999px;
}

.feedback-submit {
  margin-top: 20px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #18b66a 0%, #145da0 100%);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(20, 93, 160, 0.18);
}

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

.feedback-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #145da0;
  font-weight: 900;
}

.feedback-status.is-error {
  color: #b42318;
}

.feedback-status.is-success {
  color: #0f7a4c;
}

.feedback-prompts {
  padding: 24px;
}

.feedback-prompts h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.feedback-prompts ul {
  margin: 0;
  padding-left: 20px;
  color: #314765;
  line-height: 1.75;
}

@media (max-width: 820px) {
  .feedback-page {
    width: min(100% - 24px, 680px);
    padding: 28px 0 48px;
  }

  .feedback-hero,
  .feedback-layout,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .feedback-copy,
  .feedback-form,
  .feedback-note,
  .feedback-prompts {
    border-radius: 14px;
  }

  .feedback-copy,
  .feedback-form {
    padding: 22px;
  }

  .feedback-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}
