.indev-process-demo {
    --process-accent: #576ff0;
    --process-violet: #8058ca;
    overflow: hidden;
}

.indev-process-demo__row {
    align-items: flex-start;
}

.indev-process-demo__side {
    position: sticky;
    top: 120px;
    padding-top: 5px;
}

.indev-process-demo__side > span,
.indev-process-demo__eyebrow {
    color: #858b96;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.indev-process-demo__side h2 {
    margin: 13px 0 0;
    color: #17191f;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: normal;
}

.indev-process-demo__summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 42px;
}

.indev-process-demo__summary strong {
    color: transparent;
    background: linear-gradient(135deg, var(--process-violet), #2f88ca);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
}

.indev-process-demo__summary span {
    color: #656b76;
    font-size: 12px;
    line-height: 1.45;
}

.indev-process-demo__content {
    max-width: 900px;
}

.indev-process-demo__eyebrow {
    color: #6571c9;
}

.indev-process-demo__content > h3 {
    max-width: 760px;
    margin: 0;
    color: #1d2027;
    font-size: clamp(30px, 2.45vw, 40px);
    line-height: 1.16;
    font-weight: 500;
    letter-spacing: normal;
}

.indev-process-demo__lead {
    max-width: 820px;
    margin: 22px 0 0;
    color: #626873;
    font-size: 16px;
    line-height: 1.65;
}

.indev-process-steps {
    position: relative;
    display: grid;
    gap: 9px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.indev-process-steps::before,
.indev-process-steps::after {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 45px;
    width: 1px;
    background: #e1e5ed;
}

.indev-process-steps::after {
    bottom: auto;
    height: 0;
    background: linear-gradient(180deg, #59c7bc, var(--process-accent), var(--process-violet));
}

.indev-process-demo.is-in-view .indev-process-steps::after {
    height: calc(100% - 68px);
    transition: height 1.25s .25s ease;
}

.indev-process-steps li {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    min-height: 112px;
    padding: 17px 20px 17px 14px;
    border: 1px solid transparent;
    border-radius: 20px;
    background-color: transparent;
    opacity: 0;
    transform: translateY(14px);
}

.indev-process-demo.is-in-view .indev-process-steps li {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease var(--process-reveal-delay), transform .5s ease var(--process-reveal-delay);
    animation: indevProcessStepWave var(--process-cycle, 11s) ease-in-out var(--process-wave-delay, 0ms) infinite;
}

.indev-process-step__number {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid #dfe3ec;
    border-radius: 20px;
    color: #747b87;
    background: #fff;
    box-shadow: 0 9px 22px rgba(46, 56, 79, .06);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    transition: color .35s ease, border-color .35s ease, background-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.indev-process-steps li h4 {
    margin: 5px 0 0;
    color: #252932;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: normal;
}

.indev-process-steps li p {
    max-width: 720px;
    margin: 8px 0 0;
    color: #6b717c;
    font-size: 14px;
    line-height: 1.55;
}

.indev-process-demo.is-in-view .indev-process-steps li .indev-process-step__number {
    animation: indevProcessNumberWave var(--process-cycle, 11s) ease-in-out var(--process-wave-delay, 0ms) infinite;
}

.indev-process-demo__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
}

.indev-process-demo__actions > span {
    max-width: 250px;
    color: #747a85;
    font-size: 12px;
    line-height: 1.45;
}

.indev-process-demo__quote {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 20px;
    margin: 42px 0 0;
    padding: 29px 32px;
    border: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, #f2f5f8, #f4f3fa);
}

.indev-process-demo__quote img {
    width: 43px;
    margin-top: 2px;
}

.indev-process-demo__quote p {
    margin: 0;
    color: #373b44;
    font-size: 17px;
    line-height: 1.55;
}

.indev-process-demo__quote span {
    display: block;
    margin-top: 12px;
    color: #858b95;
    font-size: 11px;
    font-weight: 600;
}

@keyframes indevProcessStepWave {
    0%, 2%, 23%, 100% {
        border-color: transparent;
        background-color: transparent;
        box-shadow: none;
    }
    9%, 16% {
        border-color: rgba(87, 111, 240, .18);
        background-color: #f6f7ff;
        box-shadow: 0 13px 32px rgba(64, 75, 108, .07);
    }
}

@keyframes indevProcessNumberWave {
    0%, 2%, 23%, 100% {
        color: #747b87;
        border-color: #dfe3ec;
        background-color: #fff;
        box-shadow: 0 9px 22px rgba(46, 56, 79, .06);
        transform: scale(1);
    }
    9%, 16% {
        color: #fff;
        border-color: transparent;
        background-color: var(--process-accent);
        box-shadow: 0 10px 26px rgba(87, 111, 240, .25), 0 0 0 7px rgba(87, 111, 240, .09);
        transform: scale(1.06);
    }
}

@media (max-width: 991px) {
    .indev-process-demo__side {
        position: static;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 45px;
        padding: 0;
    }

    .indev-process-demo__side > span {
        position: absolute;
    }

    .indev-process-demo__side h2 {
        margin-top: 30px;
    }

    .indev-process-demo__summary {
        margin-top: 0;
    }

    .indev-process-demo__content {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .indev-process-demo__side {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 38px;
    }

    .indev-process-demo__summary strong {
        font-size: 48px;
    }

    .indev-process-demo__content > h3 {
        font-size: 29px;
        line-height: 1.2;
    }

    .indev-process-demo__lead {
        font-size: 15px;
        line-height: 1.58;
    }

    .indev-process-steps {
        margin-top: 30px;
    }

    .indev-process-steps::before,
    .indev-process-steps::after {
        left: 34px;
    }

    .indev-process-steps li {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 13px;
        min-height: 124px;
        padding: 14px 9px 14px 10px;
        border-radius: 17px;
    }

    .indev-process-step__number {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 11px;
    }

    .indev-process-steps li h4 {
        margin-top: 2px;
        font-size: 17px;
    }

    .indev-process-steps li p {
        font-size: 13px;
    }

    .indev-process-demo__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .indev-process-demo__actions .ibt-btn {
        width: 100%;
        justify-content: space-between;
    }

    .indev-process-demo__quote {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 23px 21px;
    }

    .indev-process-demo__quote p {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .indev-process-steps::after {
        height: calc(100% - 68px);
        transition: none;
    }

    .indev-process-steps li,
    .indev-process-steps li .indev-process-step__number {
        animation: none !important;
        opacity: 1;
        transform: none;
        transition: none;
    }
}
