/* Home page process: strong, easily scannable progression. */
.process .steps {
  position: relative;
  gap: 18px;
  border: 0;
  align-items: stretch;
}

.process .steps article {
  min-height: 188px;
  padding: 25px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(7, 20, 38, .035);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.process .steps article:not(:first-child) { padding-left: 22px; }

.process .steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 74, 255, .42);
  box-shadow: 0 18px 30px rgba(21, 59, 136, .12);
}

.process .steps article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 16px rgba(23, 74, 255, .22);
  font: 500 15px var(--mono);
  letter-spacing: -.04em;
}

.process .steps h3 {
  max-width: 175px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.38;
}

.process .steps i { display: none; }

.process .steps article:not(:last-child)::after {
  content: '→';
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #cfe4fb;
  border-radius: 50%;
  color: var(--blue);
  background: var(--mist);
  font: 500 16px/1 var(--mono);
}

@media (max-width: 900px) {
  .process .steps { gap: 14px; }
  .process .steps article:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
  .process .steps article, .process .steps article:not(:first-child) {
    min-height: 0;
    padding: 20px;
  }

  .process .steps article > span { width: 42px; height: 42px; font-size: 14px; }
  .process .steps h3 { max-width: none; margin: 16px 0 0; font-size: 17px; }
}
