.products-mobile-section{
    padding:90px 0;
    background:#f8fbff;
}

.product-card{
    display:flex;
    gap:18px;
    padding:20px;
    border-radius:18px;
    background:#fff;
    border:1px solid #ececec;
    transition:.35s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.product-icon{
    width:70px;
    height:70px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef7ff;
    border-radius:16px;
}

.product-icon img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.product-content h5{
    font-size:20px;
    font-weight:700;
    color:#0d2240;
    margin-bottom:10px;
}

.product-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

.mobile-feature-list{
    padding:0;
    margin:0;
    list-style:none;
}

.mobile-feature-list li{
    margin-bottom:18px;
    font-size:17px;
    color:#333;
}

.mobile-feature-list i{
    color:#22c55e;
    margin-right:10px;
}

.mobile-phone{
    max-height:500px;
}