

.py-performance-section{
    padding:60px 0;
    background:#fff;
    font-family:Inter,sans-serif;
}

.py-container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

.py-heading{
    text-align:center;
    margin-bottom:45px;
}

.py-heading h2{
    font-size:48px;
    font-weight:800;
    color:#06357A;
    margin:0 0 16px;
    line-height:1.2;
}

.py-heading p{
    max-width:760px;
    margin:0 auto;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

.py-performance-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.py-performance-content{
    display:grid;
    gap:20px;
}

.py-performance-card{
    background:#F3F6FA;
    border-radius:18px;
    padding:24px;
    display:flex;
    align-items:center;
    gap:20px;
    transition:.35s ease;
}

.py-performance-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(10,77,162,.12);
}

.py-icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:16px;
    background:#0A4DA2;
    display:flex;
    align-items:center;
    justify-content:center;
}

.py-icon svg{
    width:28px;
    height:28px;
    fill:#fff;
}

.py-info h3{
    margin:0;
    color:#0A4DA2;
    font-size:34px;
    font-weight:800;
    line-height:1;
    letter-spacing:-0.5px;
}

.py-info p{
    margin:8px 0 0;
    color:#333;
    font-size:16px;
    font-weight:600;
}

.py-note{
    margin-top:6px;
    font-size:14px;
    color:#7b8794;
    line-height:1.8;
}

.py-performance-image{
    position:relative;
}

.py-visual-box{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.py-visual-box img{
    width:100%;
    height:680px;
    display:block;
    object-fit:cover;
}

.py-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(6,53,122,.75),
        rgba(6,53,122,.15)
    );
}

.py-badge{
    position:absolute;
    top:30px;
    left:30px;
    background:#fff;
    color:#0A4DA2;
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

.py-floating-card{
    position:absolute;
    right:35px;
    bottom:35px;
    background:#fff;
    border-radius:20px;
    padding:24px 28px;
    min-width:180px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.py-number{
    color:#0A4DA2;
    font-size:42px;
    font-weight:800;
    line-height:1;
    margin-bottom:10px;
}

.py-floating-card span{
    color:#555;
    font-size:14px;
    font-weight:600;
}

@media(max-width:1024px){

    .py-performance-section{
        padding:50px 0;
    }

    .py-heading h2{
        font-size:40px;
    }

    .py-performance-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .py-visual-box img{
        height:500px;
    }

}

@media(max-width:768px){

    .py-performance-section{
        padding:40px 0;
    }

    .py-heading{
        margin-bottom:30px;
    }

    .py-heading h2{
        font-size:32px;
    }

    .py-heading p{
        font-size:15px;
        line-height:1.7;
    }

    .py-performance-card{
        padding:18px;
    }

    .py-icon{
        width:56px;
        height:56px;
        min-width:56px;
    }

    .py-info h3{
        font-size:28px;
    }

    .py-info p{
        font-size:15px;
    }

    .py-visual-box img{
        height:380px;
    }

    .py-badge{
        top:20px;
        left:20px;
        padding:10px 18px;
        font-size:13px;
    }

    .py-floating-card{
        right:20px;
        bottom:20px;
        padding:18px;
        min-width:150px;
    }

    .py-number{
        font-size:34px;
    }

}

