/* =====================================================
   Finozone How It Works
===================================================== */
.fz-how {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: var(--bg-light);
}
.fz-how .container {
    position: relative;
    z-index: 2;
}
/* =====================================================
   Section Header
===================================================== */
.fz-how-header {
    max-width: 820px;
    margin: 0 auto 60px;
}
.fz-how-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-how-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-how-header h2 span {
    color: var(--bg-first);
}
.fz-how-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;
}
/* =====================================================
   Steps Wrapper
===================================================== */
.fz-how-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.fz-how-line {
    position: absolute;
    top: 56px;
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: repeating-linear-gradient(to right, rgba(255, 51, 0, 0.35) 0, rgba(255, 51, 0, 0.35) 6px, transparent 6px, transparent 12px);
}
/* =====================================================
   Step
===================================================== */
.fz-how-step {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 28px;
    text-align: center;
}
/* =====================================================
   Step Number
===================================================== */
.fz-how-number {
    position: absolute;
    top: -12px;
    left: calc(50% + 32px);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 3px solid var(--bg-light);
    border-radius: 50%;
    background: var(--bg-first);
    color: #ffffff;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}
/* =====================================================
   Step Icon
===================================================== */
.fz-how-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    margin: 0 auto 26px;
    border: 1px solid rgba(255, 51, 0, 0.15);
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--bg-first);
    box-shadow: var(--box-shadow);
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.fz-how-icon i {
    font-size: 36px;
}
.fz-how-step:hover .fz-how-icon {
    background: var(--bg-first);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}
/* =====================================================
   Step Content
===================================================== */
.fz-how-step h3 {
    margin: 0 0 11px;
    color: var(--text-dark);
    font-family: var(--primary-font);
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.4;
}
.fz-how-step p {
    max-width: 310px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-family: var(--primary-font);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1.8;
}
/* =====================================================
   App CTA
===================================================== */
.fz-how-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 58px auto 0;
    padding: 24px 26px;
    border: 1px solid rgba(255, 51, 0, 0.12);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--box-shadow);
}
.fz-how-action-content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.fz-how-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--bg-third);
    color: var(--bg-first);
}
.fz-how-action-icon i {
    font-size: 27px;
}
.fz-how-action h4 {
    margin: 0 0 4px;
    color: var(--text-dark);
    font-family: var(--primary-font);
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.4;
}
.fz-how-action p {
    margin: 0;
    color: var(--text-secondary);
    font-family: var(--primary-font);
    font-size: var(--font-sm);
    font-weight: 400;
    line-height: 1.7;
}
/* =====================================================
   App Buttons
===================================================== */
.fz-how-apps {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}
.fz-how-apps a {
    display: block;
    line-height: 0;
    transition: transform var(--transition);
}
.fz-how-apps a:hover {
    transform: translateY(-2px);
}
.fz-how-apps img {
    display: block;
    width: auto;
    height: 42px;
}
/* =====================================================
   Tablet
===================================================== */
@media (max-width: 991.98px) {
    .fz-how {
        padding: 70px 0;
    }
    .fz-how-header {
        max-width: 700px;
        margin-bottom: 45px;
    }
    .fz-how-line {
        display: none;
    }
    .fz-how-step {
        max-width: 520px;
        margin: 0 auto 25px;
        padding: 28px 25px;
        border: 1px solid rgba(255, 51, 0, 0.1);
        border-radius: var(--radius-md);
        background: var(--bg-white);
        box-shadow: var(--box-shadow);
    }
    .fz-how-number {
        top: 16px;
        left: calc(50% + 34px);
        border-color: var(--bg-white);
    }
    .fz-how-step p {
        max-width: 400px;
    }
    .fz-how-action {
        margin-top: 38px;
    }
}
/* =====================================================
   Mobile
===================================================== */
@media (max-width: 767.98px) {
    .fz-how {
        padding: 60px 0;
    }
    .fz-how-header {
        margin-bottom: 38px;
    }
    .fz-how-header h2 {
        font-size: var(--font-section-title);
    }
    .fz-how-header p {
        font-size: var(--font-base);
        line-height: 1.75;
    }
    .fz-how-step {
        padding: 27px 23px;
    }
    .fz-how-step h3 {
        font-size: var(--font-lg);
    }
    .fz-how-step p {
        font-size: var(--font-base);
    }
    .fz-how-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .fz-how-apps {
        width: 100%;
    }
}
/* =====================================================
   Small Mobile
===================================================== */
@media (max-width: 575.98px) {
    .fz-how {
        padding: 50px 0;
    }
    .fz-how-header {
        margin-bottom: 32px;
    }
    .fz-how-header h2 {
        line-height: 1.1;
    }
    .fz-how-header p {
        font-size: 15px;
    }
    .fz-how-step {
        padding: 25px 20px;
    }
    .fz-how-number {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .fz-how-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 22px;
    }
    .fz-how-icon i {
        font-size: 31px;
    }
    .fz-how-step h3 {
        font-size: 18px;
    }
    .fz-how-step p {
        font-size: 15px;
        line-height: 1.75;
    }
    .fz-how-action {
        padding: 21px;
    }
    .fz-how-action-content {
        align-items: flex-start;
        gap: 13px;
    }
    .fz-how-action-icon {
        width: 48px;
        height: 48px;
    }
    .fz-how-action-icon i {
        font-size: 24px;
    }
    .fz-how-action h4 {
        font-size: 18px;
    }
    .fz-how-action p {
        font-size: 15px;
    }
    .fz-how-apps {
        gap: 7px;
    }
    .fz-how-apps a {
        width: calc(50% - 3.5px);
    }
    .fz-how-apps img {
        width: 100%;
        height: auto;
    }
}