:root {
  --bg: #f5f7fa;
  --bg-soft: #fafbfd;
  --card: #ffffff;
  --line: #d9e1ea;
  --line-strong: #c6d3e0;
  --text: #1f2b3a;
  --text-soft: #5e738c;
  --heading: #102b4e;
  --primary: #183b6b;
  --primary-deep: #102b4e;
  --primary-soft: #edf2f8;
  --accent: #b43c2e;
  --accent-soft: rgba(180, 60, 46, 0.08);
  --success-bg: #ebf6ef;
  --success-text: #2e7d57;
  --warning-bg: #fff7ea;
  --warning-text: #8a5d18;
  --danger-bg: #fff1f0;
  --danger-text: #b43c2e;
  --shadow: 0 12px 28px rgba(16, 43, 78, 0.05);
  --radius-xl: 16px;
  --radius-lg: 14px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --font-heading: "Alibaba PuHuiTi 3.0", "Source Han Sans SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  --font-body: "HarmonyOS Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-number: "DIN Alternate", "Bahnschrift", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 59, 107, 0.08), transparent 38%),
    linear-gradient(180deg, #fbfcfd 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 16px 14px 40px;
  overflow-x: hidden;
}

.page-decor {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(820px, 100vw);
  height: 260px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(24, 59, 107, 0.05), transparent 75%),
    radial-gradient(circle at 50% 0%, rgba(180, 60, 46, 0.08), transparent 30%);
  pointer-events: none;
  filter: blur(4px);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero {
  margin-bottom: 18px;
}

.hero-badge,
.section-eyebrow,
.aside-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 59, 107, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  margin-top: 12px;
  padding: 20px 16px 16px;
  border: 1px solid rgba(198, 211, 224, 0.82);
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 252, 0.98) 58%, rgba(237, 242, 248, 0.92) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 43, 78, 0.03), transparent 44%),
    linear-gradient(90deg, rgba(180, 60, 46, 0.12), transparent 28%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -92px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(24, 59, 107, 0.08);
  background:
    radial-gradient(circle at center, rgba(24, 59, 107, 0.04), transparent 66%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-heading);
}

h1 {
  max-width: 13ch;
  font-size: clamp(28px, 5.8vw, 42px);
  line-height: 1.16;
  letter-spacing: 0.01em;
}

.hero-lead {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(16, 43, 78, 0.1);
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-deep);
  font-size: 11px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-actions .hero-link-primary {
  min-width: 150px;
}

.hero-link:hover,
.hero-link:focus-visible {
  transform: translateY(-1px);
}

.hero-link-primary {
  color: #fff;
  background: linear-gradient(180deg, #1d487f 0%, #183b6b 100%);
  box-shadow: 0 16px 30px rgba(24, 59, 107, 0.16);
}

.card {
  background: var(--card);
  border: 1px solid rgba(198, 211, 224, 0.88);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 14px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(24, 59, 107, 0.06);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
}

.hero-steps {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.hero-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(198, 211, 224, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(16, 43, 78, 0.04);
}

.step-index {
  min-width: 38px;
  color: var(--accent);
  font-family: var(--font-number);
  font-size: 18px;
  font-weight: 700;
}

.step-label {
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 700;
}

.layout {
  display: grid;
  gap: 14px;
}

.section-heading {
  display: grid;
  gap: 8px;
}

.section-heading.compact {
  gap: 8px;
}

.section-heading h2 {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.25;
}

.section-heading.compact h2 {
  font-size: 23px;
}

.section-heading p,
.notice p,
.info-note p,
.process-list p,
.trust-card p,
.success-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.75;
}

.value-section,
.compact-panel,
.notice,
.info-panel,
.process-panel,
.support-panel,
.registration-card,
.trust-section,
.success-card {
  padding: 17px 14px;
}

.value-grid,
.trust-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.compact-points {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.compact-point {
  padding: 14px;
  border: 1px solid rgba(198, 211, 224, 0.8);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 253, 0.96));
}

.compact-point strong {
  display: block;
  color: var(--primary-deep);
  font-size: 15px;
  font-weight: 700;
}

.compact-point p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.value-card,
.trust-card {
  padding: 18px;
  border: 1px solid rgba(198, 211, 224, 0.8);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 253, 0.96));
}

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
}

.value-card h3,
.trust-card h3 {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.35;
}

.value-card p,
.trust-card p {
  margin-top: 8px;
}

.split-layout {
  display: grid;
  gap: 16px;
}

.notice strong,
.info-note strong {
  display: block;
  color: var(--primary-deep);
  font-size: 16px;
  font-weight: 700;
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 245, 0.94));
}

.notice p {
  margin-top: 8px;
}

.criteria-list,
.process-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.criteria-list {
  display: grid;
  gap: 10px;
}

.criteria-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 12px 12px 10px;
  border: 1px solid rgba(198, 211, 224, 0.7);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.criteria-mark,
.process-index {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-number);
  font-size: 12px;
  font-weight: 800;
}

.info-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(24, 59, 107, 0.05);
}

.info-note p {
  margin-top: 6px;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.process-list strong {
  display: block;
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 700;
}

.process-list p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.65;
}

.registration-card {
  position: relative;
  padding-top: 20px;
  border-color: rgba(16, 43, 78, 0.28);
  background:
    radial-gradient(circle at top right, rgba(86, 126, 184, 0.12), transparent 26%),
    linear-gradient(180deg, #f2f7fd 0%, #ffffff 100%);
  box-shadow: 0 28px 56px rgba(16, 43, 78, 0.16);
}

.registration-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #183b6b 0%, #2a5a97 100%);
}

.registration-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.registration-header {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #17375f 0%, #214c83 62%, #2b5d98 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 34px rgba(16, 43, 78, 0.22);
}

.registration-header .section-eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #f7fbff;
}

.registration-header h2 {
  color: #ffffff;
  font-size: 27px;
  letter-spacing: 0.01em;
}

.registration-header .section-heading p {
  color: rgba(235, 243, 253, 0.88);
  font-size: 13px;
  line-height: 1.7;
}

.security-note {
  position: relative;
  padding: 14px 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
}

.security-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.security-note strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.security-note p {
  margin: 6px 0 0;
  color: rgba(235, 243, 253, 0.84);
  font-size: 12px;
  line-height: 1.6;
}

.registration-card .form-grid {
  position: relative;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid rgba(16, 43, 78, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 250, 253, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 10px 24px rgba(16, 43, 78, 0.04);
}

.support-panel {
  border-color: rgba(198, 211, 224, 0.72);
  background: linear-gradient(180deg, rgba(250, 252, 253, 0.98), rgba(246, 249, 252, 0.98));
  box-shadow: none;
}

.support-group {
  margin-top: 0;
}

.support-group strong {
  display: block;
  color: var(--primary-deep);
  font-size: 15px;
  font-weight: 800;
}

.support-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.support-list li {
  padding: 10px 12px;
  border: 1px solid rgba(198, 211, 224, 0.65);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.support-group-process {
  margin-top: 12px;
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.support-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(198, 211, 224, 0.68);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 700;
}

.support-note {
  margin-top: 12px;
  background: rgba(24, 59, 107, 0.04);
}

.banner {
  margin: 18px 0 0;
  padding: 14px 15px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid transparent;
  display: none;
}

.banner.show {
  display: block;
  animation: fadeUp 0.25s ease;
}

.banner.warning {
  background: var(--warning-bg);
  color: var(--warning-text);
  border-color: rgba(138, 93, 24, 0.12);
}

.banner.success {
  background: var(--success-bg);
  color: var(--success-text);
  border-color: rgba(46, 125, 87, 0.14);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.legend {
  color: #0f2747;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hint {
  margin-top: -2px;
  color: var(--text-soft);
  font-size: 12px;
}

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

.inline-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.required {
  margin-left: 4px;
  color: var(--accent);
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(16, 43, 78, 0.28);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  color: #18212f;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  box-shadow:
    0 2px 0 rgba(16, 43, 78, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input::placeholder {
  color: #728197;
}

input:focus,
select:focus {
  border-color: rgba(16, 43, 78, 0.58);
  box-shadow:
    0 0 0 4px rgba(16, 43, 78, 0.1),
    0 10px 18px rgba(16, 43, 78, 0.06);
  background-color: #fff;
}

.field.error input,
.field.error select,
fieldset.error {
  border-color: rgba(180, 60, 46, 0.38);
  box-shadow: 0 0 0 4px rgba(180, 60, 46, 0.08);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.radio-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 10px;
  border: 1px solid rgba(16, 43, 78, 0.26);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  color: #18212f;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(16, 43, 78, 0.04);
  transition: all 0.2s ease;
}

.radio-card input:checked + span {
  border-color: rgba(16, 43, 78, 0.52);
  background: linear-gradient(180deg, #eef4fb 0%, #e4edf9 100%);
  color: var(--primary-deep);
  box-shadow:
    inset 0 0 0 1px rgba(16, 43, 78, 0.12),
    0 10px 18px rgba(16, 43, 78, 0.08);
}

.radio-card input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(16, 43, 78, 0.1);
}

.error-message {
  display: none;
  color: var(--danger-text);
  font-size: 12px;
  line-height: 1.5;
}

.field.error .error-message,
fieldset.error .error-message {
  display: block;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.actions.full-width {
  grid-column: 1 / -1;
}

.btn {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.btn:active {
  transform: scale(0.985);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #214f8a 0%, #183b6b 100%);
  box-shadow: 0 20px 36px rgba(24, 59, 107, 0.22);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #234f88 0%, #173861 100%);
}

.btn-secondary {
  border: 1px solid rgba(24, 59, 107, 0.16);
  background: #fff;
  color: var(--primary-deep);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

.text-button {
  min-width: 72px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16, 43, 78, 0.24);
  border-radius: 12px;
  background: #f5f8fc;
  color: var(--primary-deep);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.14s ease, opacity 0.18s ease;
}

.text-button:active {
  transform: scale(0.98);
}

.text-button.hidden {
  display: none;
}

.success-card {
  display: none;
  text-align: center;
}

.success-card.show {
  display: block;
  animation: fadeUp 0.3s ease;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border: 1px solid rgba(46, 125, 87, 0.14);
  border-radius: 50%;
  background: linear-gradient(180deg, #f4fbf7 0%, #e8f6ee 100%);
  color: var(--success-text);
  font-size: 31px;
  font-weight: 800;
}

.success-card h2 {
  font-size: 28px;
}

.success-card p {
  margin-top: 10px;
}

.payload-panel {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f8fbff;
  text-align: left;
}

.payload-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(217, 225, 234, 0.92);
}

.payload-preview {
  margin: 0;
  padding: 16px;
  max-height: 360px;
  overflow: auto;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.trust-section .footer-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 225, 234, 0.8);
  text-align: left;
}

.footer-note {
  color: #6a7f95;
  font-size: 12px;
  line-height: 1.8;
}

.footer-note-standalone {
  padding: 2px 4px 0;
  text-align: center;
}

.fatal-error {
  display: none;
  padding: 18px;
  border: 1px solid rgba(180, 60, 46, 0.14);
  border-radius: var(--radius-lg);
  background: var(--danger-bg);
  color: var(--danger-text);
  font-size: 14px;
  line-height: 1.7;
}

.fatal-error.show {
  display: block;
}

.fatal-error strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.fatal-error p {
  margin: 0;
}

.hidden {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .page {
    padding: 24px 20px 48px;
  }

  .hero-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .value-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .registration-header {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: start;
  }

  .form-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-section,
  .info-panel,
  .process-panel,
  .support-panel,
  .registration-card,
  .trust-section,
  .success-card {
    padding: 22px 20px;
  }
}

@media (max-width: 560px) {
  .page {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 32px;
  }

  .hero {
    margin-bottom: 14px;
  }

  h1 {
    max-width: none;
    font-size: 24px;
    line-height: 1.18;
    white-space: nowrap;
    letter-spacing: -0.03em;
  }

  .hero-panel {
    padding: 18px 14px 14px;
  }

  .hero-lead {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-tags {
    margin-top: 12px;
  }

  .registration-card {
    order: 1;
    padding-top: 18px;
  }

  .support-panel {
    order: 2;
  }

  .registration-header {
    gap: 10px;
    margin-bottom: 14px;
    padding: 15px 14px;
  }

  .registration-header .section-heading p,
  .security-note p,
  .support-list li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .registration-header .section-heading p {
    font-size: 12px;
  }

  .registration-header h2 {
    font-size: 23px;
    white-space: nowrap;
  }

  .security-note {
    padding: 12px;
  }

  .form-grid {
    gap: 14px;
  }

  .registration-card .form-grid {
    padding: 15px 12px;
    border-radius: 16px;
  }

  .field {
    gap: 6px;
  }

  .field label,
  .legend {
    font-size: 12px;
  }

  input[type="text"],
  input[type="tel"],
  select {
    font-size: 16px;
  }

  .text-button {
    font-size: 16px;
  }

  .support-panel {
    padding-top: 14px;
  }

  .support-group strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-link {
    width: 100%;
    min-height: 46px;
  }

  .hero-actions .hero-link-primary {
    min-width: 100%;
  }

  .section-heading.compact h2 {
    font-size: 18px;
    white-space: nowrap;
  }

  .payload-header {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-selects {
    grid-template-columns: 1fr;
  }

}
