*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f7fafc;
    color:#253046;
    overflow-x:hidden;
}

.bg-shape{

    position:fixed;
    border-radius:50%;
    z-index:-1;
    filter:blur(90px);

}

.one{

    width:350px;
    height:350px;
    background:#67e8f9;
    top:-120px;
    left:-120px;

}

.two{

    width:300px;
    height:300px;
    background:#fbbf24;
    bottom:-100px;
    right:-100px;

}

header{

    width:90%;
    max-width:1200px;
    margin:auto;
    padding:30px 0;

}

.logo{

    display:flex;
    align-items:center;
    gap:10px;
    font-size:30px;
    font-weight:700;
    color:#16a34a;

}

.hero{

    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    min-height:80vh;

}

.badge{

    display:inline-block;
    background:#dcfce7;
    color:#15803d;
    padding:8px 18px;
    border-radius:40px;
    margin-bottom:25px;
    font-weight:600;

}

.hero h1{

    font-size:56px;
    line-height:1.1;
    margin-bottom:25px;

}

.hero p{

    color:#64748b;
    line-height:1.8;
    font-size:18px;

}

.buttons{

    display:flex;
    gap:20px;
    margin-top:40px;

}

.btn{

    text-decoration:none;
    border:none;
    cursor:pointer;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    transition:.3s;

}

.primary{

    background:#16a34a;
    color:white;

}

.primary:hover{

    background:#15803d;
    transform:translateY(-4px);

}

.secondary{

    background:white;
    color:#16a34a;
    border:2px solid #16a34a;

}

.secondary:hover{

    background:#16a34a;
    color:white;

}

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:500px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.features{

    width:90%;
    max-width:1200px;
    margin:80px auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.card{

    background:white;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.card:hover{

    transform:translateY(-10px);

}

.card i{

    font-size:45px;
    color:#16a34a;
    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

}

.card p{

    color:#64748b;
    line-height:1.7;

}

.newsletter{

    width:90%;
    max-width:900px;
    margin:100px auto;
    text-align:center;

}

.newsletter h2{

    font-size:40px;
    margin-bottom:20px;

}

.newsletter p{

    color:#64748b;
    line-height:1.8;
    margin-bottom:35px;

}

.social{

    display:flex;
    justify-content:center;
    gap:20px;

}

.social a{

    width:55px;
    height:55px;
    background:#16a34a;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    text-decoration:none;
    transition:.3s;

}

.social a:hover{

    transform:translateY(-8px);
    background:#15803d;

}

footer{

    text-align:center;
    padding:30px;
    color:#64748b;
    border-top:1px solid #e2e8f0;

}

@media(max-width:900px){

.hero{

grid-template-columns:1fr;
text-align:center;
padding:40px 0;

}

.hero h1{

font-size:40px;

}

.buttons{

justify-content:center;
flex-wrap:wrap;

}

.hero-image{

order:-1;

}

}