.steps-page {
  background: var(--bg);
  color: var(--ink);
}

.steps-page .site-header {
  border-bottom-color: rgba(23, 23, 23, 0.08);
  background: rgba(247, 245, 239, 0.88);
}

.steps-page .brand,
.steps-page .nav a {
  color: var(--ink);
}

.steps-page .nav a:hover {
  color: var(--cyan-dark);
}

.steps-page .secondary-action {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.steps-page .secondary-action:hover {
  border-color: var(--cyan-dark);
  color: var(--ink);
}

.steps-page .step-link,
.steps-page .footer a {
  color: var(--cyan-dark);
}

.steps-page .footer {
  border-top-color: var(--line);
  color: var(--muted);
}

.steps-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 32px 88px;
}

.steps-hero .hero-actions {
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
}

.steps-hero-copy {
  max-width: 720px;
}

.steps-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 82px;
  line-height: 0.98;
  letter-spacing: 0;
}

.steps-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.steps-hero-status {
  display: grid;
  gap: 12px;
  padding: 24px 0 4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.steps-hero-status strong {
  color: var(--ink);
  font-size: 22px;
}

.steps-hero-status .status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 16px rgba(29, 154, 114, 0.34);
}

.steps-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px 112px;
  border-top: 1px solid var(--line);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.steps-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 196px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.05);
}

.steps-number {
  color: var(--cyan-dark);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.steps-label {
  margin: 0 0 10px;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.steps-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.steps-item p:not(.steps-label) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.steps-item strong,
.steps-help strong {
  color: var(--ink);
}

.steps-help {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 112px;
  padding: 48px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.65);
}

.steps-help .secondary-action {
  flex: 0 0 auto;
  min-width: 176px;
}

.steps-help h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
}

.steps-help p:last-child {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .steps-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 76px 22px 64px;
  }

  .steps-hero h1 {
    font-size: 52px;
  }

  .steps-section {
    padding: 56px 22px 76px;
  }

  .steps-list {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .steps-help {
    display: grid;
    gap: 26px;
    margin-bottom: 72px;
    padding: 40px 22px;
  }

  .steps-hero .hero-actions {
    width: 100%;
  }

  .steps-hero .hero-actions a {
    flex: 1 1 220px;
  }
}

@media (max-width: 460px) {
  .steps-hero h1 {
    font-size: 44px;
  }

  .steps-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 16px;
  }
}
