/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body{

    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;

}

/* ===========================
NAVBAR
=========================== */

.navbar{

    position:sticky;
    top:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 10%;

    background:white;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

    z-index:100;

}

.logo{

    font-size:30px;

    font-weight:700;

    color:#15803d;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    text-decoration:none;

    color:#334155;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#16a34a;

}

/* ===========================
HERO
=========================== */

.hero{

    min-height:90vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:80px 20px;

    background:linear-gradient(135deg,#f0fdf4,#ecfeff);

}

.hero-content{

    max-width:900px;

}

.badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:#dcfce7;

    color:#15803d;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:60px;

    margin-bottom:25px;

    line-height:1.15;

}

.hero p{

    font-size:22px;

    color:#475569;

    margin-bottom:40px;

}

/* Button */

.btn{

    display:inline-block;

    background:#16a34a;

    color:white;

    padding:18px 42px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-4px);

    background:#15803d;

}

/* ===========================
FEATURES
=========================== */

.features{

    padding:100px 10%;

}

.features h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:white;

    border-radius:18px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    margin-bottom:15px;

    color:#15803d;

}

.card p{

    color:#64748b;

    line-height:1.8;

}

/* ===========================
INFO SECTION
=========================== */

.info-section{

    background:white;

    padding:100px 10%;

    text-align:center;

}

.info-section h2{

    font-size:42px;

    margin-bottom:20px;

}

.info-section p{

    max-width:850px;

    margin:auto;

    color:#64748b;

    line-height:1.9;

}

/* ===========================
FOOTER
=========================== */

footer{

    background:#0f172a;

    color:white;

    text-align:center;

    padding:50px;

}

footer a{

    color:#4ade80;

    margin:0 12px;

    text-decoration:none;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.navbar{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

}