/*==========================================================
Section : How It Works
Version : 2.0
Author  : Erwin Echon
==========================================================*/
.mbi-workflow {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8fbff 100%);
}

.mbi-workflow-wrapper {
    position: relative;
    margin-top: 3rem;
}

.mbi-workflow-card {
    position: relative;
    height: 100%;
    padding: 2.75rem;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .60);
    border-radius: 28px;
    box-shadow:
        0 18px 50px rgba(15, 23, 42, .06);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.mbi-workflow-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 45, 172, .12);
    box-shadow:
        0 28px 60px rgba(15, 23, 42, .10);
}

.mbi-workflow-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: var(--mbi-primary);
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .05em;
    box-shadow:
        0 8px 18px rgba(0, 45, 172, .18);
}

.mbi-workflow-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg,
            rgba(0, 45, 172, .08),
            rgba(4, 120, 99, .12));
    border: 1px solid rgba(255, 255, 255, .65);
    transition: all .35s ease;
}

.mbi-workflow-icon i {
    font-size: 2.1rem;
    color: var(--mbi-primary);
}

.mbi-workflow-card h3 {
    margin-bottom: 1rem;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--mbi-heading);
}

.mbi-workflow-card p {
    margin: 0;
    font-size: .98rem;
    line-height: 1.8;
    color: var(--mbi-body);
}

.mbi-workflow-card:hover .mbi-workflow-icon {
    transform:
        translateY(-4px)
        rotate(-4deg);
}