.feedback-page-head {
  padding-top: 6.9rem;
  padding-bottom: 2rem;
}

.feedback-page-head-inner {
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 2px;
  padding: 1.15rem 1.15rem 1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(4px);
}

.feedback-kicker {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, 0.58);
  margin-bottom: 0.35rem;
}

.feedback-page-head h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  margin-bottom: 0.4rem;
  line-height: 1.06;
}

.feedback-page-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.99rem;
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.feedback-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  color: rgba(240, 232, 216, 0.78);
}

.feedback-mini-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0;
}

.feedback-mini-points i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.feedback-form-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.feedback-form-wrap {
  max-width: 860px;
}

.feedback-form-head {
  margin-bottom: 1.4rem;
}

.feedback-form-head h2 {
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  margin-bottom: 0.35rem;
}

.feedback-form-sub {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
}

.feedback-form {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem;
}

.feedback-row {
  margin-bottom: 1rem;
}

.feedback-row label {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.46);
}

.feedback-row label span {
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.feedback-row input,
.feedback-row select,
.feedback-row textarea {
  width: 100%;
  font: inherit;
  font-size: 0.97rem;
  color: #f4f1ea;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.78rem 0.82rem;
  background: rgba(0, 0, 0, 0.2);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.feedback-row select {
  color: #f4f1ea;
  background-color: rgba(0, 0, 0, 0.32);
}

.feedback-row select option {
  color: #f4f1ea;
  background-color: #1a1a1a;
}

.feedback-row textarea {
  resize: vertical;
  min-height: 7.2rem;
}

.feedback-row input:focus,
.feedback-row select:focus,
.feedback-row textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

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

.feedback-msg {
  margin-top: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  font-size: 0.93rem;
}

.feedback-msg--ok {
  color: #d6f4df;
  background: rgba(40, 135, 82, 0.28);
  border: 1px solid rgba(76, 184, 122, 0.5);
}

.feedback-msg--err {
  color: #fde6e6;
  background: rgba(180, 60, 60, 0.35);
  border: 1px solid rgba(220, 100, 100, 0.45);
}

@media (min-width: 860px) {
  .feedback-page-head-inner {
    padding: 1.4rem 1.45rem 1.2rem;
  }
  .feedback-form {
    padding: 1.6rem;
  }
}

