.hero{
    background:linear-gradient(135deg,#0F766E,#14B8A6);
    padding:90px 0;
    color:#fff;
}

.hero-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-content{
    flex:1;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
}

.hero h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{

    background:#F59E0B;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;

}

.btn-outline{

    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;

}

.hero-image{

    flex:1;
    display:flex;
    justify-content:center;

}

.hero-card{

    background:#fff;
    color:#222;
    width:380px;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.2);

}

.network{

    background:#f3f4f6;
    padding:12px;
    border-radius:8px;
    margin-bottom:10px;
    font-weight:600;

}

.hero-card h3{

    margin:20px 0;

}

.hero-card p{

    color:#555;

}