/*==================================================
  SOFTONIX HERO V3
==================================================*/

.st-hero{
    max-width:1320px;
    margin:35px auto;
    padding:0 15px;
}

.st-container{
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(15,23,42,.08);
    padding:40px;
}

.st-left{
    display:flex;
    gap:25px;
    align-items:flex-start;
}

.st-logo{
    flex:0 0 110px;
}

.st-logo img{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:22px;
    border:1px solid #e5e7eb;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.st-info{
    flex:1;
}

.st-info h1{
    margin:0;
    font-size:40px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
}

.st-developer{
    margin:8px 0 18px;
    font-size:17px;
    color:#64748b;
}

.st-rating{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#FFF7E8;
    color:#F59E0B;
    padding:8px 16px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:22px;
}

.st-rating span{
    color:#111827;
}

.st-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.st-meta span{
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:10px;
    padding:10px 16px;
    font-size:14px;
    font-weight:600;
    color:#475569;
}

.st-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.st-download-btn,
.st-official-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-weight:700;
    padding:15px 28px;
    border-radius:12px;
    transition:.25s;
}

.st-download-btn{
    background:#0066ff;
    color:#fff;
}

.st-download-btn:hover{
    background:#0052cc;
    color:#fff;
    transform:translateY(-2px);
}

.st-official-btn{
    background:#EEF4FF;
    color:#0052CC;
}

.st-official-btn:hover{
    background:#DBEAFE;
    color:#0052CC;
}

/* Mobile */

@media (max-width:768px){

    .st-container{
        padding:25px;
    }

    .st-left{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .st-info h1{
        font-size:30px;
    }

    .st-meta,
    .st-buttons{
        justify-content:center;
    }

}