/* V2 Process Steps Component Styles */

.v2-process-steps-section {
    width: 100%;
    margin-bottom: 64px;
    padding: 0 48px 0 32px;
}

.v2-process-steps-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.v2-process-steps-logo {
    flex: 0 0 100px;
    width: 100px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-right: none;
    margin-right: 16px;
}

.v2-process-steps-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.v2-process-steps-container {
    flex: 1;
    display: flex;
    gap: 4px;
    padding-right: 16px;
}

.v2-process-step {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
}

.v2-process-step:not(:first-child) {
    margin-left: -16px;
}



.v2-process-step:last-child {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
}

.v2-process-step:hover {
    border-color: #22C55E;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.v2-process-step-icon {
    font-size: 32px;
    color: #040D81;
    margin-bottom: 16px;
    display: block;
}

.v2-process-step-custom-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: block;
    filter: invert(35%) sepia(100%) saturate(1000%) hue-rotate(120deg) brightness(90%);
}


.v2-process-step-heading {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    font-weight: 600;
    color: #040D81;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .v2-process-steps-section {
        padding: 0 20px;
        margin-bottom: 48px;
    }

    .v2-process-steps-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .v2-process-steps-logo {
        flex: none;
        width: 80px;
        margin: 0 auto;
    }

    .v2-process-steps-container {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .v2-process-step {
        width: 100%;
        padding: 20px;
        min-height: 140px;
    }

    .v2-process-step-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

