.process-section {
  position: relative;
  overflow: visible;
  padding-top: clamp(110px, 10vw, 156px);
  padding-bottom: clamp(110px, 10vw, 156px);
  color: #fff;
  background: #001b3d;
}

.process-section::after {
  display: none;
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .58fr);
  align-items: end;
  gap: clamp(52px, 8vw, 120px);
  margin-bottom: clamp(72px, 9vw, 120px);
}

.process-heading .section-kicker {
  color: #9cc9f3;
}

.process-heading h2 {
  max-width: 800px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 6rem);
  line-height: .94;
}

.process-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.process-story {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(460px, 1.05fr);
  align-items: start;
  gap: clamp(56px, 8vw, 116px);
}

.process-visual {
  position: sticky;
  top: calc(var(--header-total) + 24px);
  height: min(68svh, 680px);
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary-deep);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
  isolation: isolate;
}

.process-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .6s ease, transform 1s var(--ease);
}

.process-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 18, 51, .02) 48%, rgba(0, 18, 51, .82) 100%);
}

.process-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.process-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.process-image:nth-child(1) img { object-position: center 45%; }
.process-image:nth-child(3) img { object-position: center 42%; }
.process-image:nth-child(4) img { object-position: center 38%; }

.process-visual-status {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 17px;
  color: #fff;
}

.process-visual-status strong {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .82;
}

.process-visual-status span {
  padding-bottom: 2px;
  font-size: .8rem;
  font-weight: 850;
}

.process-visual-status small {
  padding-bottom: 3px;
  color: rgba(255, 255, 255, .56);
  font-size: .62rem;
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 0;
}

.process-item {
  min-height: 68svh;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: 24px;
  padding: 56px 0;
  color: #fff;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: transparent;
  opacity: .42;
  transform: translateY(18px);
  transition: opacity .4s ease, transform .5s var(--ease);
}

.process-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.process-item::before {
  display: none;
}

.process-item.is-active {
  opacity: 1;
  transform: none;
}

.process-item:hover {
  padding-left: 0;
  background: transparent;
}

.process-item .process-number {
  width: auto;
  height: auto;
  display: block;
  color: #9cc9f3;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.process-item small {
  display: block;
  margin-bottom: 12px;
  color: var(--action);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process-item h3 {
  max-width: 650px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1;
}

.process-item p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .98rem;
  line-height: 1.72;
}

.process-item > div > b {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, .9);
  font-size: .74rem;
  font-weight: 850;
}

.process-step-image {
  display: none;
}

@media (max-width: 991.98px) {
  .process-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 58px;
  }

  .process-heading > p {
    max-width: 720px;
  }

  .process-story {
    grid-template-columns: 1fr;
  }

  .process-visual {
    display: none;
  }

  .process-item {
    min-height: auto;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 62px 0;
    opacity: 1;
    transform: none;
  }

  .process-step-image {
    grid-column: 1 / -1;
    height: clamp(240px, 48vw, 430px);
    display: block;
    overflow: hidden;
    margin-bottom: 22px;
    border-radius: 8px;
  }

  .process-step-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 575.98px) {
  .process-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .process-heading h2 {
    font-size: 3rem;
  }

  .process-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    padding: 46px 0;
  }

  .process-item h3 {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-image,
  .process-item {
    transition: none;
  }
}
