.pu-insight-page-steps-section {
    background-color: #F5F5F7;
    padding: 85px 0 95px;
    color: #0F0445;
    position: relative;
    overflow: hidden;
}

.pu-insight-page-steps-header {
    margin-bottom: 44px;
}

.pu-insight-page-steps-header h2 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 54px;
    line-height: 1.1;
    color: #0F0445;
    margin: 0;
}

.pu-insight-page-steps-gradient {
    background: linear-gradient(90deg, #5641E0 0%, #B53C72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: inherit;
	font-family: inherit;
}

.pu-insight-page-steps-slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 44px;
}

.pu-insight-page-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.pu-insight-page-step-card {
    position: relative;
    border-radius: 20px;
    padding: 28px 24px 32px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 2px solid transparent;
    background: 
        linear-gradient(#FFFFFF, #FFFFFF) padding-box, 
        linear-gradient(140deg, #B53C72 0%, #5641E0 100%) border-box;
}

.pu-insight-page-step-num {
    display: inline-block;
    background-color: #ECE8FA;
    color: #0F0445;
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 7px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.pu-insight-page-step-card h3 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #0F0445;
    margin-bottom: 14px;
}

.pu-insight-page-step-card p {
    font-family: var(--pu-insight-font-body);
    font-size: 18px;
    line-height: 1.48;
    color: #4A4D54;
    margin: 0;
}

.pu-insight-page-steps-dots {
    display: none;
}

.pu-insight-page-steps-action {
    display: flex;
    justify-content: flex-start;
}

.pu-insight-page-report-btn {
    display: inline-block;
    background-color: #0F0445;
    color: #FFFFFF;
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pu-insight-page-report-btn:hover {
    background-color: #10005F;
    color: #FFFFFF;
}

/* Responsive Mobile Layout for Steps Section (< 991.98px) */
@media (max-width: 991.98px) {
    .pu-insight-page-steps-section {
        padding: 50px 0 60px;
    }

    .pu-insight-page-steps-header {
        margin-bottom: 28px;
    }

    .pu-insight-page-steps-header h2 {
        font-size: 32px;
        line-height: 1.16;
    }

    .pu-insight-page-steps-slider-wrapper {
        overflow: visible;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 16px;
        padding: 0;
    }

    .pu-insight-page-steps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 15px;
        scroll-padding-right: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 20px;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .pu-insight-page-steps-grid::-webkit-scrollbar {
        display: none;
    }

    .pu-insight-page-step-card {
        flex: 0 0 calc(100% - 54px);
        width: calc(100% - 54px);
        max-width: 336px;
        height: 234px;
        scroll-snap-align: start;
        padding: 24px;
        border-radius: 16px;
    }

    .pu-insight-page-step-num {
        font-size: 13px;
        padding: 4px 10px;
        border-radius: 6px;
        margin-bottom: 12px;
    }

    .pu-insight-page-step-card h3 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .pu-insight-page-step-card p {
        font-size: 13.5px;
        line-height: 1.45;
    }

    .pu-insight-page-steps-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 28px;
    }

    .pu-insight-page-steps-dots .pu-insight-page-dot {
        background-color: #D1D1D8;
    }

    .pu-insight-page-steps-dots .pu-insight-page-dot.active {
        background-color: #0F0445;
        width: 24px;
        border-radius: 50px;
    }

    .pu-insight-page-report-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
}