.vp-creative-process {
    position: relative;
    background: #050505;
    color: #ffffff;
    padding: 180px 0 210px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vp-creative-process__inner {
    width: min(100% - 64px, 1560px);
    margin: 0 auto;
}

.vp-creative-process__head {
    max-width: 980px;
    margin: 0 auto 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vp-creative-process__eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.vp-creative-process__title {
    margin: 0;
    max-width: 920px;
    font-size: clamp(52px, 6vw, 124px);
    line-height: 0.9;
    letter-spacing: -0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.vp-creative-process__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vp-creative-process__step {
    position: relative;
    padding: 42px 34px 120px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 520px;
    overflow: hidden;
}

.vp-creative-process__step:last-child {
    border-right: none;
}

.vp-creative-process__number {
    display: block;
    margin-bottom: 120px;
    font-size: clamp(42px, 5vw, 88px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.16);
}

.vp-creative-process__step-title {
    margin: 0;
    font-size: clamp(30px, 3vw, 58px);
    line-height: 0.92;
    letter-spacing: -0.07em;
    font-weight: 700;
    text-transform: uppercase;
}

.vp-creative-process__step-text {
    max-width: 320px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
    .vp-creative-process {
        padding: 120px 0 140px;
    }

    .vp-creative-process__head {
        margin-bottom: 72px;
    }

    .vp-creative-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vp-creative-process__step:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .vp-creative-process__inner {
        width: min(100% - 32px, 1560px);
    }

    .vp-creative-process__title {
        font-size: clamp(42px, 12vw, 72px);
        line-height: 0.94;
    }

    .vp-creative-process__steps {
        grid-template-columns: 1fr;
    }

    .vp-creative-process__step {
        min-height: auto;
        padding: 34px 0 52px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .vp-creative-process__number {
        margin-bottom: 54px;
        font-size: clamp(42px, 14vw, 72px);
    }

    .vp-creative-process__step-title {
        font-size: clamp(32px, 11vw, 52px);
    }

    .vp-creative-process__step-text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================================================
   CREATIVE PROCESS JS STATES
========================================================= */

.vp-creative-process__step {
    transition:
        transform .85s cubic-bezier(.16, 1, .3, 1),
        opacity .75s ease,
        filter .75s ease,
        border-color .75s ease,
        background .75s ease,
        box-shadow .85s cubic-bezier(.16, 1, .3, 1);
}

.vp-creative-process__step.is-active {
    opacity: 1;
    transform: translateY(-12px) scale(1.018);
    filter: saturate(1.1);
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 26px 90px rgba(0, 0, 0, .28);
}

.vp-creative-process__step.is-muted {
    opacity: .45;
    filter: saturate(.68);
}

.vp-creative-process__number,
.vp-creative-process__step-title,
.vp-creative-process__step-text {
    transition:
        transform .75s cubic-bezier(.16, 1, .3, 1),
        opacity .75s ease;
}

.vp-creative-process__step.is-active .vp-creative-process__number {
    opacity: 1;
    transform: translateY(-6px) scale(1.08);
}

.vp-creative-process__step.is-active .vp-creative-process__step-title {
    transform: translateY(-4px);
}

.vp-creative-process__step.is-active .vp-creative-process__step-text {
    opacity: .9;
}

.vp-creative-process__step.is-pulse .vp-creative-process__number {
    animation: creativeProcessPulse .7s ease;
}

@keyframes creativeProcessPulse {
    0% {
        opacity: .45;
        transform: scale(.94);
    }

    100% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {

    .vp-creative-process__step.is-active,
    .vp-creative-process__step.is-muted {
        transform: none;
        opacity: 1;
        filter: none;
    }
}


.vp-creative-process__step::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0) 42%
        );
    opacity: 0;
    transition: opacity .75s ease;
}

.vp-creative-process__step.is-active::before {
    opacity: 1;
}

.vp-creative-process__step::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.42);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .85s cubic-bezier(.16, 1, .3, 1);
}

.vp-creative-process__step.is-active::after {
    transform: scaleX(1);
}