.journey {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(78, 151, 231, .16), transparent 28%),
    linear-gradient(145deg, #071a2b, #0c2942);
  color: #fff;
}

.journey-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 48px;
}

.journey-heading h2 {
  max-width: 760px;
  color: #fff;
}

.journey-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

.journey-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.journey-path::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, rgba(78, 151, 231, .25), #4e97e7 75%, #72d7b1);
}

.journey-path article {
  position: relative;
  min-height: 260px;
  padding: 26px 20px 22px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  transition: transform .25s, background .25s;
}

.journey-path article:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .1);
}

.journey-number {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.journey-path article > svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 50%;
  background: #4e97e7;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-path h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
}

.journey-path p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.6;
}

.journey-path .journey-exit {
  border-color: rgba(114, 215, 177, .42);
  background: linear-gradient(160deg, rgba(114, 215, 177, .17), rgba(255, 255, 255, .06));
}

.journey-path .journey-exit > svg {
  background: #43b98d;
}

.journey-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.journey-cta > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.journey-cta svg {
  width: 20px;
  height: 20px;
  color: #72d7b1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .journey-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .journey-path {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-path::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .journey-path {
    grid-template-columns: 1fr;
  }

  .journey-path article {
    min-height: 0;
  }

  .journey-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .journey-cta .btn {
    justify-content: center;
  }
}
