:root{
    --green-900:#07542E;
    --green-800:#0B6B3A;
    --green-700:#128247;
    --green-600:#2E9640;
    --green-500:#52AF2E;
    --green-400:#74C62C;
    --green-300:#A4DB58;
    --primary:var(--green-800);
    --primary-dark:var(--green-900);
    --secondary:var(--green-500);
    --accent:var(--green-400);
    --gradient:linear-gradient(135deg,var(--green-800),var(--green-500));
    --text:#16321F;
    --text-light:#63756A;
    --bg:#F7FBF8;
    --bg-alt:#EDF6EF;
    --light-bg:#E4F3E7;
    --border:#DCE9E1;
    --white:#fff;
}

/*=========================
RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    color:var(--primary-dark);

    background:var(--bg);

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:1200px;

    max-width:90%;

    margin:auto;

}

/*=========================
HEADER
=========================*/

.header{

    position:fixed;

    width:100%;

    left:0;

    top:0;

    z-index:999;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(15px);

    border-bottom:1px solid var(--border);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

.logo{

    font-size:28px;

    font-weight:800;

    color:var(--text);

}
.logo img{max-width:230px;}
.menu{

    display:flex;

    gap:40px;

}

.menu a{

    color:var(--text-light);

    font-weight:600;

    transition:.3s;

}

.menu a:hover{

    color:var(--primary);

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:50px;

    background:var(--primary);

    color:var(--white);

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:2px solid var(--primary);

    padding:14px 30px;

    border-radius:50px;

    color:var(--primary);

    margin-left:15px;

    font-weight:700;

}

/*=========================
HERO
=========================*/

.hero{

    padding:170px 0 120px;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:center;

}

.tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:var(--light-bg);

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1{

    font-size:62px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    color:var(--text-light);

    max-width:620px;

}

.hero-buttons{

    margin-top:45px;

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:60px;

}

.hero-stats div{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:18px;

    padding:25px;

    box-shadow:0 15px 45px rgba(0,0,0,.05);

}

.hero-stats h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:6px;

}

/*=========================
DASHBOARD
=========================*/

.dashboard{

    background:var(--white);

    border-radius:30px;

    padding:35px;

    box-shadow:0 30px 80px rgba(0,0,0,.08);

}

.dashboard-top{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;

}

.dashboard-top span{

    background:var(--secondary);

    color:var(--white);

    padding:8px 18px;

    border-radius:30px;

}

.chart{

    display:flex;

    align-items:flex-end;

    gap:18px;

    height:220px;

    margin-bottom:35px;

}

.bar{

    width:55px;

    border-radius:12px 12px 0 0;

    background:linear-gradient(var(--green-400),var(--green-700));

}

.b1{height:90px;}
.b2{height:130px;}
.b3{height:170px;}
.b4{height:150px;}
.b5{height:210px;}

.cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.mini-card{

    background:var(--bg-alt);

    border-radius:18px;

    padding:22px;

}

.mini-card h4{

    color:var(--text-light);

    font-size:15px;

}

.mini-card strong{

    display:block;

    margin-top:8px;

    font-size:24px;

}

/*=========================
TRUSTED
=========================*/

.trusted-section{

    padding:80px 0;

}

.section-label{

    text-align:center;

    color:var(--text-light);

    margin-bottom:40px;

}

.trusted-logos{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

}

.logo-box{

    background:var(--bg);

    border:1px solid var(--border);

    border-radius:16px;

    padding:22px;

    text-align:center;

    font-weight:700;

}
/*=========================
ABOUT
=========================*/

.about-section{
    padding:120px 0;
    background:var(--bg);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.small-title{
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-left h2{
    font-size:52px;
    margin:20px 0;
    line-height:1.15;
}

.about-left p{
    color:var(--text-light);
    font-size:18px;
    margin-bottom:35px;
}

.about-right{
    display:grid;
    gap:25px;
}

.feature-card{
    background:var(--white);
    padding:35px;
    border-radius:24px;
    border:1px solid var(--border);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:var(--light-bg);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:12px;
    font-size:24px;
}

.feature-card p{
    color:var(--text-light);
}

/*=========================
STATS
=========================*/

.stats-section{
    padding:100px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:var(--white);
    border-radius:20px;
    text-align:center;
    padding:40px;
    border:1px solid var(--border);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stat-card h2{
    color:var(--primary);
    font-size:48px;
    margin-bottom:10px;
}

.stat-card p{
    color:var(--text-light);
}

/*=========================
SECTION HEADING
=========================*/

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.section-heading h2{
    font-size:48px;
    margin:15px 0;
}

.section-heading p{
    color:var(--text-light);
    max-width:700px;
    margin:auto;
}

/*=========================
HOW IT WORKS
=========================*/

.steps-section{
    padding:120px 0;
    background:var(--bg);
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.step-card{
    background:var(--white);
    padding:40px;
    border-radius:24px;
    border:1px solid var(--border);
    transition:.35s;
}

.step-card:hover{
    transform:translateY(-10px);
}

.step-number{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.step-card h3{
    font-size:26px;
    margin-bottom:15px;
}

.step-card p{
    color:var(--text-light);
}

/*=========================
COMPARISON
=========================*/

.comparison-section{
    padding:120px 0;
}

.comparison-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.compare-card{
    padding:45px;
    border-radius:24px;
    border:1px solid var(--border);
}

.compare-card h3{
    margin-bottom:25px;
    font-size:30px;
}

.compare-card ul li{
    padding:15px 0;
    border-bottom:1px solid var(--border);
}

.danger{
    background:var(--white)6f6;
}

.success{
    background:#f5fff9;
}

/*=========================
FEATURES
=========================*/

.features-section{
    padding:120px 0;
    background:var(--bg);
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-box{
    background:var(--white);
    padding:35px;
    border-radius:22px;
    transition:.3s;
    border:1px solid var(--border);
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:var(--light-bg);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.feature-box h3{
    margin-bottom:12px;
}

.feature-box p{
    color:var(--text-light);
}
/*=========================
CTA
=========================*/

.cta-section{
    padding:120px 0;
}

.cta-box{
    background:var(--gradient);
    color:var(--white);
    border-radius:30px;
    padding:80px;
    text-align:center;
}

.cta-box h2{
    font-size:52px;
    margin-bottom:20px;
    line-height:1.2;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 35px;
    opacity:.9;
    font-size:18px;
}

.cta-box .btn-primary{
    background:var(--white);
    color:var(--primary);
}

.cta-box .btn-primary:hover{
    background:#f4f4f4;
}


/*=========================
CONTACT
=========================*/

.contact-section{
    padding:120px 0;
    background:var(--bg);
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact-left span{
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
}

.contact-left h2{
    font-size:52px;
    margin:20px 0;
}

.contact-left p{
    color:var(--text-light);
    font-size:18px;
}

.contact-right{
    background:var(--white);
    border-radius:30px;
    padding:45px;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.form-group{
    margin-bottom:22px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:15px;
    padding:18px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--primary);
}

textarea{
    resize:none;
}


/*=========================
FOOTER
=========================*/

.footer{
    background:var(--primary-dark);
    color:var(--white);
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    margin-bottom:50px;
}
.footer-grid img{ max-width:230px; }
.footer h3{
    font-size:32px;
    margin-bottom:15px;
}

.footer h4{
    margin-bottom:20px;
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:var(--border);
    transition:.3s;
}

.footer a:hover{
    color:var(--white);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:25px;
    text-align:center;
    color:var(--text-light);
}


/*=========================
ANIMATION
=========================*/

.feature-card,
.feature-box,
.step-card,
.compare-card,
.stat-card{
    transition:.35s ease;
}

.feature-card:hover,
.feature-box:hover,
.step-card:hover,
.compare-card:hover,
.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}


/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:var(--border);
}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:1100px){

.hero-wrapper,
.about-grid,
.contact-wrapper{
    grid-template-columns:1fr;
}

.hero-right{
    margin-top:50px;
}

.features-grid{
    grid-template-columns:repeat(2,1fr);
}

.steps-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.comparison-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
}

}


@media(max-width:768px){

.hero{
    padding-top:140px;
}

.hero h1{
    font-size:42px;
}

.section-heading h2,
.about-left h2,
.contact-left h2,
.cta-box h2{
    font-size:34px;
}

.hero-stats,
.stats-grid,
.features-grid,
.trusted-logos{
    grid-template-columns:1fr;
}

.menu{
    display:none;
}

.navbar{
    height:75px;
}

.cta-box{
    padding:50px 30px;
}

.contact-right{
    padding:30px;
}

.btn-primary,
.btn-outline{
    width:100%;
    margin-bottom:15px;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
}

}