.help-feedback-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(212, 118, 73, 0.08), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, #f8f5ef 100%);
}

.help-feedback-page main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 4.5rem;
}

.hf-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin: 1rem 0 2rem;
}

.hf-kicker {
  display: inline-flex;
  color: #a64a36;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hf-hero h1 {
  margin: 0.65rem 0 0.8rem;
  max-width: 760px;
  color: #172233;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hf-lead {
  max-width: 670px;
  margin: 0;
  color: rgba(23, 34, 51, 0.74);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hf-legal-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  max-width: 670px;
  margin: 1.25rem 0 0;
  color: rgba(23, 34, 51, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hf-note-icon {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 1.55rem;
  border: 1px solid rgba(166, 74, 54, 0.35);
  border-radius: 999px;
  color: #a64a36;
  font-weight: 900;
}

.hf-hero-visual {
  min-height: 355px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(48, 37, 29, 0.13);
}

.hf-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 355px;
  object-fit: cover;
}

.hf-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.4rem;
}

.hf-topic-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  min-height: 132px;
  padding: 1.2rem;
  border: 1px solid rgba(166, 74, 54, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 13px 35px rgba(42, 32, 25, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hf-topic-card:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 74, 54, 0.35);
  box-shadow: 0 18px 42px rgba(42, 32, 25, 0.08);
}

.hf-topic-card:focus-visible {
  outline: 3px solid rgba(166, 74, 54, 0.24);
  outline-offset: 3px;
}

.hf-topic-icon {
  display: inline-grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  background: #f7f1e8;
  color: #bd5c30;
}

.hf-topic-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
}

.hf-topic-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #172233;
  font-size: 1rem;
  line-height: 1.25;
}

.hf-topic-card span:last-child {
  color: rgba(23, 34, 51, 0.65);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hf-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.hf-panel {
  border: 1px solid rgba(166, 74, 54, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 42px rgba(42, 32, 25, 0.05);
}

.hf-form-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.hf-panel h2 {
  margin: 0 0 1.15rem;
  color: #172233;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 500;
}

.hf-form {
  display: grid;
  gap: 1rem;
}

.hf-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hf-field {
  display: grid;
  gap: 0.45rem;
}

.hf-field label {
  color: #273142;
  font-size: 0.88rem;
  font-weight: 800;
}

.hf-optional {
  color: rgba(39, 49, 66, 0.55);
  font-weight: 600;
}

.hf-field input,
.hf-field select,
.hf-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(45, 50, 61, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: #172233;
  font: inherit;
  font-size: 0.96rem;
}

.hf-field input,
.hf-field select {
  min-height: 48px;
  padding: 0 0.8rem;
}

.hf-field textarea {
  min-height: 150px;
  padding: 0.8rem;
  resize: vertical;
  line-height: 1.55;
}

.hf-field input:focus,
.hf-field select:focus,
.hf-field textarea:focus {
  outline: 3px solid rgba(166, 74, 54, 0.14);
  border-color: rgba(166, 74, 54, 0.5);
}

.hf-field-help {
  margin: 0;
  color: rgba(39, 49, 66, 0.56);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hf-privacy {
  margin: 0.15rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(245, 239, 230, 0.7);
  color: rgba(39, 49, 66, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hf-submit {
  justify-self: start;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 10px;
  background: #c95d2f;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 11px 24px rgba(201, 93, 47, 0.22);
}

.hf-submit:hover { background: #b95228; }
.hf-submit:focus-visible { outline: 3px solid rgba(201, 93, 47, 0.28); outline-offset: 3px; }

.hf-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.hf-before {
  display: flex;
  flex-direction: column;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.hf-checklist {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hf-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  color: rgba(23, 34, 51, 0.71);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hf-check {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  border: 1px solid rgba(201, 93, 47, 0.45);
  border-radius: 999px;
  color: #c95d2f;
  font-size: 0.72rem;
  font-weight: 900;
}

.hf-side-image {
  width: 100%;
  margin-top: auto;
  padding-top: 1.35rem;
}

.hf-side-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 13px;
}

.hf-thanks {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.2rem 1.4rem;
}

.hf-heart {
  color: #c95d2f;
  font-size: 2rem;
  line-height: 1;
}

.hf-thanks strong {
  display: block;
  color: #172233;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.hf-thanks p {
  margin: 0.25rem 0 0;
  color: rgba(23, 34, 51, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hf-success-shell {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
}

.hf-success-card {
  width: min(700px, 100%);
  padding: clamp(1.6rem, 5vw, 3rem);
  text-align: center;
}

.hf-success-card h1 {
  margin: 0.6rem 0 0.8rem;
  color: #172233;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 500;
}

.hf-success-card p {
  max-width: 560px;
  margin: 0 auto 1.35rem;
  color: rgba(23, 34, 51, 0.68);
  line-height: 1.65;
}

.hf-success-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 1.1rem;
  border-radius: 10px;
  background: #c95d2f;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.footer-help-feedback-link { margin-left: 0.75rem; }

@media (max-width: 920px) {
  .hf-hero { grid-template-columns: 1fr; }
  .hf-hero-visual { min-height: 280px; }
  .hf-hero-visual img { min-height: 280px; }
  .hf-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hf-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .help-feedback-page main { width: min(100% - 22px, 1180px); padding-top: 1rem; }
  .hf-hero h1 { font-size: clamp(2.4rem, 15vw, 3.6rem); }
  .hf-topic-grid { grid-template-columns: 1fr; }
  .hf-topic-card { min-height: 108px; }
  .hf-form-row { grid-template-columns: 1fr; }
  .hf-submit { width: 100%; justify-self: stretch; }
  .hf-thanks { align-items: flex-start; }
  .footer-help-feedback-link { margin-left: 0; }
}
