.ch-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(16, 32, 47, .14);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbfa, #eef7f3);
  color: #10202f;
  box-shadow: 0 12px 30px rgba(16, 32, 47, .07);
}

.ch-next-step div > span {
  display: block;
  margin-bottom: 5px;
  color: #26745d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ch-next-step strong {
  display: block;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.2;
}

.ch-next-step p {
  max-width: 680px;
  margin: 7px 0 0;
  color: #52616d;
  line-height: 1.55;
}

.ch-next-step > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #10202f;
  color: #fff;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.ch-next-step > a:hover,
.ch-next-step > a:focus-visible {
  background: #26745d;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .ch-next-step {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .ch-next-step > a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-next-step > a { transform: none !important; }
}
