*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f7fb;
    color:#0f172a;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

header{
    background:#fff;
    padding:24px 0;
    border-bottom:1px solid #e2e8f0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:60px;
}

.logo-text h1{
    font-size:32px;
    font-weight:800;
}

.logo-text span{
    color:#63b53f;
}

.logo-text p{
    color:#64748b;
    font-size:13px;
}

.coming{
    background:#63b53f;
    color:#fff;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
}

.hero{
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-left h2{
    font-size:68px;
    line-height:1.05;
    margin-bottom:30px;
}

.hero-left p{
    font-size:22px;
    line-height:1.7;
    color:#475569;
}

.hero-box{
    margin-top:40px;
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.hero-box ul{
    list-style:none;
}

.hero-box li{
    padding:10px 0;
    font-size:18px;
}

.hero-box li::before{
    content:"✔ ";
    color:#63b53f;
    font-weight:bold;
}

.hero-right img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.features{
    padding-bottom:80px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    overflow:hidden;
}

.card h3{
    margin-bottom:16px;
    font-size:24px;
}

.card p{
    line-height:1.7;
    color:#64748b;
}

footer{
    background:#081526;
    color:#fff;
    padding:70px 0;
}

footer h3{
    font-size:40px;
    margin-bottom:20px;
}

footer p{
    color:#cbd5e1;
}

@media(max-width:980px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-left h2{
        font-size:46px;
    }

}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:20px;
}


