/* =====================================================
   Finozone Why Us
===================================================== */
.fz-why {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: var(--bg-white);
}
/* =====================================================
   Section Header
===================================================== */
.fz-why-header {
    max-width: 820px;
    margin: 0 auto 50px;
}
.fz-why-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--bg-first);
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08rem;
}
.fz-why-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-why-header h2 span {
    color: var(--bg-first);
}
.fz-why-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-family: var(--primary-font);
    font-size: var(--font-md);
    font-weight: 400;
    line-height: 1.8;
}
/* =====================================================
   Why Wrapper
===================================================== */
.fz-why-wrapper {
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
}
/* =====================================================
   Why Item
===================================================== */
.fz-why-item {
    position: relative;
    display: flex;
    gap: 18px;
    height: 100%;
    min-height: 220px;
    padding: 32px 28px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-white);
    transition: background var(--transition), transform var(--transition);
}
.fz-why-item:hover {
    background: var(--bg-light);
}
.fz-why-wrapper .row > div:nth-child(3n) .fz-why-item {
    border-right: 0;
}
.fz-why-wrapper .row > div:nth-last-child(-n+3) .fz-why-item {
    border-bottom: 0;
}
/* =====================================================
   Why Icon
===================================================== */
.fz-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--bg-third);
    color: var(--bg-first);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.fz-why-icon i {
    font-size: 27px;
}
.fz-why-item:hover .fz-why-icon {
    background: var(--bg-first);
    color: #ffffff;
    transform: translateY(-2px);
}
/* =====================================================
   Why Content
===================================================== */
.fz-why-content {
    min-width: 0;
    flex: 1;
}
.fz-why-content h3 {
    margin: 2px 0 11px;
    color: var(--text-dark);
    font-family: var(--primary-font);
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.4;
}
.fz-why-content p {
    margin: 0;
    color: var(--text-secondary);
    font-family: var(--primary-font);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1.75;
}
/* =====================================================
   Bottom CTA
===================================================== */
.fz-why-action {
    margin-top: 42px;
}
.fz-why-action p {
    margin: 0 0 16px;
    color: var(--text-secondary);
    font-family: var(--primary-font);
    font-size: var(--font-base);
    font-weight: 500;
    line-height: 1.7;
}
.fz-why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 11px 24px;
    border: 1px solid var(--bg-first);
    border-radius: var(--radius-sm);
    background: var(--bg-first);
    color: #ffffff;
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.fz-why-btn:hover {
    border-color: #d92b00;
    background: #d92b00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 0, 0.16);
}
.fz-why-btn i {
    font-size: 20px;
}
/* =====================================================
   Tablet
===================================================== */
@media (max-width: 991.98px) {
    .fz-why {
        padding: 70px 0;
    }
    .fz-why-header {
        max-width: 700px;
        margin-bottom: 42px;
    }
    .fz-why-wrapper .row > div:nth-child(3n) .fz-why-item {
        border-right: 1px solid var(--border-light);
    }
    .fz-why-wrapper .row > div:nth-child(2n) .fz-why-item {
        border-right: 0;
    }
    .fz-why-wrapper .row > div:nth-last-child(-n+3) .fz-why-item {
        border-bottom: 1px solid var(--border-light);
    }
    .fz-why-wrapper .row > div:nth-last-child(-n+2) .fz-why-item {
        border-bottom: 0;
    }
    .fz-why-item {
        min-height: 210px;
    }
}
/* =====================================================
   Mobile
===================================================== */
@media (max-width: 767.98px) {
    .fz-why {
        padding: 60px 0;
    }
    .fz-why-header {
        margin-bottom: 38px;
    }
    .fz-why-header h2 {
        font-size: var(--font-section-title);
    }
    .fz-why-header p {
        font-size: var(--font-base);
        line-height: 1.75;
    }
    .fz-why-wrapper {
        border-radius: var(--radius-md);
    }
    .fz-why-item {
        min-height: auto;
        padding: 27px 24px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--border-light) !important;
    }
    .fz-why-wrapper .row > div:last-child .fz-why-item {
        border-bottom: 0 !important;
    }
    .fz-why-content h3 {
        font-size: var(--font-lg);
    }
    .fz-why-content p {
        font-size: var(--font-base);
    }
}
/* =====================================================
   Small Mobile
===================================================== */
@media (max-width: 575.98px) {
    .fz-why {
        padding: 50px 0;
    }
    .fz-why-header {
        margin-bottom: 32px;
    }
    .fz-why-header h2 {
        line-height: 1.1;
    }
    .fz-why-header p {
        font-size: 15px;
    }
    .fz-why-item {
        gap: 15px;
        padding: 24px 21px;
    }
    .fz-why-icon {
        width: 50px;
        height: 50px;
    }
    .fz-why-icon i {
        font-size: 24px;
    }
    .fz-why-content h3 {
        margin-bottom: 9px;
        font-size: 18px;
    }
    .fz-why-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    .fz-why-action {
        margin-top: 32px;
    }
    .fz-why-action p {
        font-size: 15px;
    }
    .fz-why-btn {
        width: 100%;
        font-size: 15px;
    }
}