:root {
  --path-ink: #0a2540;
  --path-blue: #1f7ab8;
  --path-blue-dark: #0f4c81;
  --path-paper: #f6fafd;
  --path-line: rgba(15, 76, 129, 0.18);
}

.path-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--path-line);
  background:
    radial-gradient(circle at 83% 18%, rgba(31, 122, 184, 0.12), transparent 30rem),
    linear-gradient(145deg, #f9fcff 0%, #eef6fc 100%);
  padding: clamp(64px, 8vw, 112px) 0;
}

.path-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.74fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.path-hero h1 {
  max-width: 11em;
}

.path-lead {
  max-width: 64ch;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.path-actions,
.path-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.path-panel {
  border: 1px solid var(--path-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(10, 37, 64, 0.11);
  padding: clamp(24px, 4vw, 38px);
}

.path-panel h2,
.path-panel h3 {
  margin-top: 12px;
}

.path-panel p {
  color: var(--text);
  line-height: 1.7;
}

.path-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.58;
}

.path-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--path-blue);
  border-radius: 50%;
  content: "";
}

.path-section {
  padding: clamp(66px, 9vw, 108px) 0;
}

.path-section.is-soft {
  border-block: 1px solid var(--path-line);
  background: rgba(234, 244, 255, 0.55);
}

.path-section-head {
  max-width: 760px;
}

.path-section-head.center {
  margin-inline: auto;
  text-align: center;
}

.path-section-head h2 {
  margin-top: 14px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.path-section-head p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.75;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.path-card {
  border: 1px solid var(--path-line);
  border-radius: 9px;
  background: #fff;
  padding: 26px;
}

.path-card > strong {
  color: var(--path-blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card h3 {
  margin-top: 13px;
  font-size: 1.35rem;
}

.path-card p {
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.68;
}

.path-steps {
  display: grid;
  gap: 0;
  margin-top: 36px;
  counter-reset: path-step;
}

.path-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  border-top: 1px solid var(--path-line);
  padding: 24px 0;
  counter-increment: path-step;
}

.path-step::before {
  color: var(--path-blue);
  content: "0" counter(path-step);
  font-family: var(--display-font);
  font-size: 1.35rem;
  font-weight: 900;
}

.path-step h3 {
  font-size: 1.35rem;
}

.path-step p {
  margin: 8px 0 0;
  color: var(--text);
  line-height: 1.68;
}

.path-note {
  margin-top: 28px;
  border-left: 3px solid var(--path-blue);
  background: rgba(31, 122, 184, 0.07);
  padding: 18px 20px;
  color: var(--text);
  line-height: 1.65;
}

.path-form {
  display: grid;
  gap: 18px;
}

.path-field {
  display: grid;
  gap: 8px;
  color: var(--path-ink);
  font-size: 0.84rem;
  font-weight: 800;
}

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

fieldset.path-field legend {
  margin-bottom: 8px;
  padding: 0;
}

.path-field small {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.path-field input,
.path-field select,
.path-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  color: var(--path-ink);
  padding: 13px 14px;
}

.path-field textarea {
  min-height: 126px;
  resize: vertical;
  line-height: 1.55;
}

.path-field input:focus,
.path-field select:focus,
.path-field textarea:focus {
  border-color: var(--path-blue);
  outline: 3px solid rgba(31, 122, 184, 0.16);
}

.path-disclaimer {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
}

@media (max-width: 860px) {
  .path-hero-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-hero h1 {
    max-width: 12em;
  }
}

@media (max-width: 560px) {
  .path-section {
    padding: 58px 0;
  }

  .path-step {
    grid-template-columns: 44px 1fr;
  }

  .path-panel,
  .path-card {
    padding: 22px;
  }
}
