.l-section.c-process {
  font-family: 'Poppins', sans-serif;
  padding: 0;
}

.c-process .l-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  padding-top: 8px;
}

.c-process .l-section__head .l-eyebrow {
  font-family: 'Poppins', sans-serif;
}

.c-process .l-section__head .l-section__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.c-process .l-section__head .l-section__sub {
  font-family: 'Poppins', sans-serif;
}

.c-process__shell {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid rgba(104, 117, 247, 0.18);
  border-bottom: 1px solid rgba(104, 117, 247, 0.18);
  background-color: rgba(104, 117, 247, 0.06);
  background-image:
    linear-gradient(rgba(104, 117, 247, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 117, 247, 0.1) 1px, transparent 1px),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(104, 117, 247, 0.18), rgba(9, 9, 11, 0.45));
  background-size: 32px 32px, 32px 32px, 100% 100%;
  padding: 56px 0 64px;
}

.c-process__inner {
  width: 100%;
}

.c-process__layout {
  --track-width: 24px;
  --track-gap: 32px;
  --track-center: calc(var(--track-width) / 2);
  --dot-offset: calc(var(--track-gap) + var(--track-center));
  display: grid;
  grid-template-columns: var(--track-width) minmax(0, 1fr);
  column-gap: var(--track-gap);
  align-items: stretch;
}

.c-process__track {
  position: relative;
  min-height: 100%;
}

.c-process__track-line {
  position: absolute;
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(104, 117, 247, 0.35);
  border-radius: 2px;
}

.c-process__steps {
  display: flex;
  flex-direction: column;
  gap: 120px;
  min-width: 0;
}

.c-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px 120px;
  align-items: start;
}

.c-step::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--dot-offset) - 8px);
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--cdb-primary, #6875F7);
  background: rgba(12, 12, 16, 0.92);
  box-shadow: 0 0 0 3px rgba(12, 12, 16, 0.92);
  z-index: 1;
}

.c-step::after {
  content: '';
  position: absolute;
  left: calc(-1 * var(--dot-offset));
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cdb-primary, #6875F7);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.c-step__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  max-width: 520px;
  padding-top: 2px;
}

.c-step__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f4f4f8;
  letter-spacing: -0.02em;
}

.c-step__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.c-step__item {
  position: relative;
  padding-left: 20px;
}

.c-step__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6b6b7a;
}

.c-step__item-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ececf0;
  margin-bottom: 8px;
}

.c-step__item-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #8b8b9a;
  line-height: 1.75;
}

.c-step__body > .c-btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 11px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}

.c-step__media {
  min-width: 0;
  padding-top: 4px;
  display: flex;
  justify-content: flex-end;
}

.c-step__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.c-step__img--portrait {
  aspect-ratio: 1024 / 1536;
  object-fit: contain;
  width: 92%;
  max-width: 420px;
}

@media (max-width: 900px) {
  .c-process__shell {
    padding: 32px 0 40px;
  }

  .c-process__steps {
    gap: 96px;
  }

  .c-step {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .c-step__body {
    max-width: none;
  }

  .c-step__media {
    order: -1;
    padding-top: 0;
    justify-content: center;
  }

  .c-step__img--portrait {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .c-process__shell {
    padding: 28px 0 36px;
  }

  .c-process__layout {
    --track-width: 18px;
    --track-gap: 20px;
  }

  .c-process__steps {
    gap: 72px;
  }

  .c-step::before {
    left: calc(-1 * var(--dot-offset) - 7px);
    width: 14px;
    height: 14px;
  }

  .c-step::after {
    left: calc(-1 * var(--dot-offset));
    top: 15px;
    width: 5px;
    height: 5px;
    transform: translate(-50%, -50%);
  }

  .c-step__list {
    gap: 24px;
  }
}
