.gel-work-process {
  background: var(--gel-white, #ffffff);
  color: var(--gel-ink, #1f2937);
  overflow: hidden;
  padding: clamp(76px, 8vw, 112px) 0;
  position: relative;
}

.gel-work-process__inner {
  margin: 0 auto;
  position: relative;
  width: min(1440px, calc(100% - clamp(40px, 5vw, 88px)));
}

.gel-work-process__heading {
  margin: 0 auto clamp(46px, 6vw, 72px);
  max-width: 860px;
}

.gel-work-process__description {
  color: var(--gel-muted, #667085);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
  margin: 16px auto 0;
  max-width: 760px;
}

.gel-work-process__steps {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(26px, 2.5vw, 42px);
  justify-content: center;
  position: relative;
}

.gel-work-process__step {
  background: transparent;
  flex: 0 1 calc((100% - (clamp(26px, 2.5vw, 42px) * 2)) / 3);
  min-width: 0;
  padding-top: 86px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.gel-work-process__number {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--gel-blue-600, #2563eb) 32%, transparent);
  color: var(--gel-blue-600, #2563eb);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  height: 68px;
  justify-content: center;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 68px;
}

.gel-work-process__number::before,
.gel-work-process__number::after {
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  inset: 8px 5px;
  opacity: 0.46;
  pointer-events: none;
  position: absolute;
  transform: rotate(-18deg);
}

.gel-work-process__number::after {
  inset: 11px 7px;
  opacity: 0.3;
  transform: rotate(24deg);
}

.gel-work-process__connector {
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='72' viewBox='0 0 220 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 34 C52 3 88 70 136 40 C164 23 189 20 216 34' fill='none' stroke='%232563eb' stroke-width='4' stroke-linecap='round' stroke-dasharray='1 16'/%3E%3Cpath d='M206 27 L218 34 L206 41' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' opacity='.8'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 72px;
  left: calc(50% + 44px);
  opacity: 0.86;
  pointer-events: none;
  position: absolute;
  top: -7px;
  width: calc(100% - 88px + 28px);
  z-index: -1;
}

.gel-work-process__step:nth-child(even) .gel-work-process__connector {
  transform: scaleY(-1);
}

.gel-work-process__step h3 {
  color: var(--gel-ink, #1f2937);
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.24;
  margin: 0 auto;
  max-width: 320px;
}

.gel-work-process__step p {
  color: var(--gel-muted, #667085);
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  line-height: 1.72;
  margin: 14px auto 0;
  max-width: 330px;
}

.gel-work-process__step:nth-child(3n) .gel-work-process__connector {
  display: none;
}

@media (max-width: 980px) {
  .gel-work-process__step {
    flex-basis: calc((100% - clamp(26px, 2.5vw, 42px)) / 2);
  }

  .gel-work-process__step:nth-child(3n) .gel-work-process__connector {
    display: block;
  }

  .gel-work-process__step:nth-child(2n) .gel-work-process__connector {
    display: none;
  }
}

@media (max-width: 860px) {
  .gel-work-process {
    padding: 70px 0;
  }

  .gel-work-process__inner {
    width: min(720px, calc(100% - 40px));
  }

  .gel-work-process__steps {
    gap: 22px;
  }

  .gel-work-process__step {
    flex-basis: 100%;
    padding-left: 86px;
    padding-top: 0;
    text-align: left;
  }

  .gel-work-process__number {
    height: 58px;
    left: 0;
    top: 0;
    transform: none;
    width: 58px;
  }

  .gel-work-process__connector {
    display: none;
  }

  .gel-work-process__step p {
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .gel-work-process__step {
    padding-left: 70px;
  }

  .gel-work-process__number {
    font-size: 0.78rem;
    height: 52px;
    width: 52px;
  }
}
