.sticky-process-timeline .sticky-process-timeline-wrap {
    grid-template-columns: 434px 1fr;
    gap: 0 64px;
    align-items: start;
    margin: 0 auto;
    text-align: left;
}

.sticky-process-timeline .left {
    position: sticky;
    top: 80px;
}

.sticky-process-timeline .right {
    position: relative;
    padding-left: 64px;
    padding-top: 20px;
}

.sticky-process-timeline .timeline-line {
    position: absolute;
    left: 14px;
    top: 5px;
    bottom: 20px;
    width: 1px;
    background-image: repeating-linear-gradient(0deg,
            #D4D4D8,
            #D4D4D8 5px,
            transparent 5px,
            transparent 10px);
}

.sticky-process-timeline .timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 20%;
    background: var(--color-brand);
    border-radius: 99px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.sticky-process-timeline .timeline-progress::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-brand);
}

/* ── Individual step ── */
.sticky-process-timeline .step {
    display: flex;
    gap: 20px;
    padding: 0 0 24px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
    background-image:
        /* Bottom Line */
        repeating-linear-gradient(90deg, #D4D4D8, #D4D4D8 5px, transparent 5px, transparent 10px);
    background-size: 100% 1px, 100% 1px;
    background-position: bottom;
    background-repeat: no-repeat;
    margin: 0 0 24px;
}

.sticky-process-timeline .step:last-child {
    background-image: none;
}

.sticky-process-timeline .step.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-process-timeline .step:last-child {
    padding-bottom: 0;
}

/* Step number dot */
.sticky-process-timeline .step-dot {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 0;
    z-index: 1;
    background: var(--color-baseline-bg);
    transition: all 0.4s ease;
    overflow: hidden;
}

.sticky-process-timeline .step-dot h3 {
    position: relative;
    top: 10px;
    right: 4px;
    font-weight: var(--fw-bold);
    color: var(--color-baseline-bg);
    -webkit-text-stroke: 2px var(--color-text-primary);
    paint-order: stroke fill;
    font-size: var(--fs-32);
    line-height: 40px
}

.sticky-process-timeline .step.active .step-dot,
.sticky-process-timeline .step.done .step-dot {
    background: var(--color-baseline-active-bg);
    color: var(--color-white);
}

.sticky-process-timeline .step.active .step-dot h3,
.sticky-process-timeline .step.done .step-dot h3 {
    color: var(--color-white);
    -webkit-text-stroke: transparent;
}

.sticky-process-timeline .step-body {
    padding-top: 4px;
}

.sticky-process-timeline .step-body h4 {
    font-size: var(--fs-24);
    line-height: 36px;
}


@media (max-width: 1024px) {
    .sticky-process-timeline .sticky-process-timeline-wrap {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sticky-process-timeline .sticky-process-timeline-wrap {
        grid-template-columns: 1fr;
        gap: 32px 0;
    }

    .sticky-process-timeline .left {
        position: static;
    }

    .sticky-process-timeline-wrap .text-large {
        font-size: var(--fs-16);
        line-height: 24px;
    }

    .sticky-process-timeline .right {
        position: relative;
        padding-left: 26px;
        padding-top: 20px;
    }

    .sticky-process-timeline .timeline-line {
        left: 0;
    }

    .sticky-process-timeline .step-dot h3 {
        font-size: var(--fs-32);
        line-height: 40px;
    }
}