:root {
  --navy: #16324f;
  --deep: #07172d;
  --glacier: #2e6f95;
  --ice: #e9f2f7;
  --ice2: #f5f9fb;
  --gold: #d9982f;
  --text: #22313f;
  --muted: #5b6b7a;
  --line: #d8e4ec;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(22, 50, 79, 0.14);
}

.feedback-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0, rgba(46, 111, 149, 0.38), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(217, 152, 47, 0.22), transparent 28%),
    linear-gradient(180deg, var(--ice) 0, var(--ice2) 100%);
  color: var(--text);
}

.feedback-top-hero {
  padding: 54px 0 34px;
  background: linear-gradient(135deg, #0f2347 0%, #145da0 64%, #0f766e 100%);
  color: #fff;
  overflow: hidden;
}

.feedback-page {
  padding: 28px 0 60px;
}

.feedback-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.feedback-note,
 .feedback-form,
 .feedback-prompts {
  border: 1px solid rgba(216, 228, 236, 0.9);
  box-shadow: var(--shadow);
}

.feedback-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feedback-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ecf4ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feedback-copy h1 {
  max-width: 760px;
  margin: 12px 0 12px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

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

.feedback-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(6, 18, 38, 0.24);
  backdrop-filter: blur(10px);
}

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

.feedback-note p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.62;
}

.feedback-layout {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: start;
}

.feedback-form,
.feedback-prompts {
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 251, 0.96)),
    radial-gradient(circle at 100% 0, rgba(46, 111, 149, 0.1), transparent 36%);
}

.feedback-form {
  padding: clamp(22px, 4vw, 32px);
}

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

.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.3;
}

.feedback-form label span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid #bcd2e3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 26px rgba(22, 50, 79, 0.06);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.feedback-form textarea {
  min-height: 190px;
  padding: 15px;
  resize: vertical;
  line-height: 1.6;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: #7d8b9b;
  font-weight: 600;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: 3px solid rgba(217, 152, 47, 0.24);
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(217, 152, 47, 0.24), 0 16px 34px rgba(22, 50, 79, 0.1);
}

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

.feedback-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  padding: 14px 16px;
  border: 1px solid rgba(216, 228, 236, 0.9);
  border-radius: 16px;
  background: rgba(233, 242, 247, 0.62);
  color: #415873 !important;
  font-weight: 800 !important;
}

.feedback-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--glacier);
}

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

.feedback-submit {
  margin-top: 22px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #c8892a);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(217, 152, 47, 0.25);
}

.feedback-submit:hover,
.feedback-submit:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(217, 152, 47, 0.24);
}

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

.feedback-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--glacier);
  font-weight: 900;
}

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

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

.feedback-prompts {
  position: sticky;
  top: 18px;
  padding: 24px;
}

.feedback-prompts h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.18rem;
}

.feedback-prompts ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #415873;
  line-height: 1.55;
  list-style: none;
}

.feedback-prompts li {
  position: relative;
  padding-left: 24px;
}

.feedback-prompts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 152, 47, 0.16);
}

@media (max-width: 820px) {
  .feedback-top-hero {
    padding: 36px 0 24px;
  }

  .feedback-page {
    padding: 18px 0 48px;
  }

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

  .feedback-hero,
  .feedback-layout {
    width: min(100% - 24px, 680px);
  }

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

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

  .feedback-prompts {
    position: static;
  }
}
