.content-page {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 84px;
}

.content-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  min-height: 420px;
}

.content-page-hero h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.content-page-hero p,
.content-section p,
.help-item p {
  color: var(--muted);
  line-height: 1.75;
}

.content-page-lead {
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.content-page-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
}

.content-page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 84px);
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.content-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.content-section-copy > :first-child {
  margin-top: 0;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.content-actions a,
.support-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(61, 213, 132, 0.5);
  border-radius: 6px;
  background: #168d55;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.content-actions a.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.help-list {
  display: grid;
  gap: 0;
}

.help-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.help-item:first-child {
  padding-top: 0;
}

.help-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.help-item p {
  margin: 0;
}

.help-item a {
  color: var(--green);
  font-weight: 800;
}

.support-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.support-form label.full,
.support-form .support-form-footer {
  grid-column: 1 / -1;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--ink);
  font: inherit;
}

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

.support-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.support-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.support-form-footer p {
  margin: 0;
  font-size: 0.84rem;
}

.support-form-footer p[data-tone="success"] {
  color: var(--green);
}

.support-form-footer p[data-tone="error"] {
  color: var(--danger);
}

@media (max-width: 760px) {
  .content-page {
    width: min(100% - 28px, 1060px);
    padding: 32px 0 64px;
  }

  .content-page-hero,
  .content-section {
    grid-template-columns: 1fr;
  }

  .content-page-hero {
    gap: 24px;
    min-height: auto;
  }

  .content-page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.65rem);
    line-height: 1;
  }

  .content-page-visual {
    aspect-ratio: 8 / 5;
    max-height: 220px;
  }

  .content-section {
    gap: 22px;
    padding: 44px 0;
  }

  .support-form {
    grid-template-columns: 1fr;
  }

  .support-form label.full,
  .support-form .support-form-footer {
    grid-column: auto;
  }

  .support-form-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
