/* =====================================================
   Finozone Mutual Fund Solutions
===================================================== */
.fz-mf-solutions {
    position: relative;
    padding: 90px 0;
    background: var(--bg-white);
}
/* =====================================================
   Section Header
===================================================== */
.fz-mf-header {
    max-width: 820px;
    margin: 0 auto 50px;
}
.fz-mf-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--bg-first);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08rem;
}
.fz-mf-header h2 {
    margin: 0 0 14px;
    color: var(--text-dark);
    font-family: var(--third-font);
    font-size: var(--font-section-title);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.025em;
}
.fz-mf-header h2 span {
    color: var(--bg-first);
}
.fz-mf-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: var(--font-md);
    font-weight: 400;
    line-height: 1.8;
}
/* =====================================================
   Header Illustration
===================================================== */
.fz-mf-header-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}
.fz-mf-header-image img {
    display: block;
    width: 75px;
    height: auto;
    object-fit: contain;
}
/* =====================================================
   Mutual Fund Card
===================================================== */
.fz-mf-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 32px 27px 65px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.fz-mf-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: var(--bg-first);
    transition: width 0.3s ease;
}
.fz-mf-card:hover {
    border-color: rgba(255, 51, 0, 0.2);
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-6px);
}
.fz-mf-card:hover::before {
    width: 100%;
}
/* =====================================================
   Card Icon
===================================================== */
.fz-mf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 13px;
    background: var(--bg-third);
    color: var(--bg-first);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.fz-mf-icon i {
    font-size: 28px;
}
.fz-mf-card:hover .fz-mf-icon {
    background: var(--bg-first);
    color: #ffffff;
    transform: translateY(-2px);
}
/* =====================================================
   Card Content
===================================================== */
.fz-mf-card h3 {
    margin: 0 0 13px;
    color: var(--text-dark);
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.fz-mf-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1.75;
}
/* =====================================================
   Card Link
===================================================== */
.fz-mf-card a {
    position: absolute;
    left: 27px;
    bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bg-first);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color var(--transition);
}
.fz-mf-card a i {
    font-size: 20px;
    transition: transform var(--transition);
}
.fz-mf-card a:hover {
    color: #d92b00;
}
.fz-mf-card a:hover i {
    transform: translateX(4px);
}
/* =====================================================
   Tablet
===================================================== */
@media (max-width: 991.98px) {
    .fz-mf-solutions {
        padding: 70px 0;
    }
    .fz-mf-header {
        max-width: 700px;
        margin-bottom: 42px;
    }
    .fz-mf-header-image img {
        width: 65px;
    }
    .fz-mf-card {
        min-height: 310px;
    }
}
/* =====================================================
   Mobile
===================================================== */
@media (max-width: 767.98px) {
    .fz-mf-solutions {
        padding: 60px 0;
    }
    .fz-mf-header {
        margin-bottom: 38px;
    }
    .fz-mf-header h2 {
        font-size: var(--font-section-title);
    }
    .fz-mf-header p {
        font-size: var(--font-base);
        line-height: 1.75;
    }
    .fz-mf-header-image img {
        width: 58px;
    }
    .fz-mf-card {
        min-height: 300px;
        padding: 28px 24px 65px;
    }
    .fz-mf-card h3 {
        font-size: 19px;
    }
    .fz-mf-card p {
        font-size: 15px;
    }
    .fz-mf-card a {
        left: 24px;
        bottom: 24px;
        font-size: 15px;
    }
}
/* =====================================================
   Small Mobile
===================================================== */
@media (max-width: 575.98px) {
    .fz-mf-solutions {
        padding: 50px 0;
    }
    .fz-mf-header {
        margin-bottom: 32px;
    }
    .fz-mf-header-image {
        margin-bottom: 7px;
    }
    .fz-mf-header-image img {
        width: 55px;
    }
    .fz-mf-card {
        min-height: auto;
        padding: 26px 22px;
    }
    .fz-mf-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 20px;
    }
    .fz-mf-icon i {
        font-size: 26px;
    }
    .fz-mf-card h3 {
        font-size: 19px;
    }
    .fz-mf-card p {
        margin-bottom: 20px;
        font-size: 15px;
    }
    .fz-mf-card a {
        position: static;
        font-size: 15px;
    }
}