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

.html-hero{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#ffffff;

    padding:90px 20px;

}

.html-hero-content{

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.html-hero-text{

    width:100%;

}

.hero-badge{

    display:inline-block;

    background:#16c47f;

    color:#ffffff;

    padding:10px 22px;

    border-radius:30px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

.html-hero h1{

    font-size:60px;

    line-height:1.15;

    margin-bottom:25px;

}

.html-hero h1 span{

    display:block;

    color:#16c47f;

    margin-top:10px;

}

.html-hero p{

    font-size:21px;

    color:#d6d6d6;

    line-height:1.9;

    margin-bottom:40px;

}

/* ==========================================================
   BUTTONS
========================================================== */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.btn-primary{

    display:inline-block;

    background:#16c47f;

    color:#ffffff;

    text-decoration:none;

    padding:16px 30px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    background:#12a96d;

}

.btn-secondary{

    display:inline-block;

    border:2px solid #16c47f;

    color:#ffffff;

    text-decoration:none;

    padding:16px 30px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.btn-secondary:hover{

    background:#16c47f;

}

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

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:20px;

}

.hero-features div{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    padding:15px 18px;

    border-radius:8px;

}

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

.html-hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.html-hero-image img{

    width:100%;

    max-width:650px;

    height:auto;

    display:block;

}

/* ==========================================================
   COMMON SECTION
========================================================== */

.section{

    padding:90px 20px;

}

.section h2{

    font-size:42px;

    margin-bottom:25px;

    color:#10283d;

}

.section p{

    font-size:18px;

    line-height:1.9;

    color:#555;

}

/* ==========================================================
   CARDS
========================================================== */

.card-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.card{

    background:#ffffff;

    border-radius:14px;

    padding:35px;

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

    transition:.3s;

}

.card:hover{

    transform:translateY(-6px);

}

.card h3{

    margin-bottom:15px;

    color:#10283d;

}

.card p{

    margin-bottom:20px;

}

.card a{

    color:#16c47f;

    text-decoration:none;

    font-weight:bold;

}

/* ==========================================================
   ROADMAP
========================================================== */

.roadmap{

    background:#f8fafc;

    padding:90px 20px;

}

.roadmap-list{

    max-width:500px;

    margin:50px auto;

}

.roadmap-item{

    background:#ffffff;

    padding:18px 24px;

    border-left:5px solid #16c47f;

    margin-bottom:18px;

    border-radius:8px;

    font-weight:600;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

/* ==========================================================
   FAQ
========================================================== */

.faq{

    padding:90px 20px;

    background:#eef5fb;

}

.faq-item{

    background:#ffffff;

    padding:30px;

    border-radius:12px;

    margin-bottom:25px;

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

}

.faq-item h3{

    margin-bottom:15px;

    color:#10283d;

}

/* ==========================================================
   CTA
========================================================== */

.cta{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#ffffff;

    text-align:center;

    padding:90px 20px;

}

.cta h2{

    font-size:46px;

    margin-bottom:20px;

}

.cta p{

    font-size:21px;

    color:#d6d6d6;

    max-width:700px;

    margin:0 auto 40px;

}

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

@media(max-width:900px){

    .html-hero{

        padding:60px 20px;

    }

    .html-hero-content{

        grid-template-columns:1fr;

        text-align:center;

        gap:40px;

    }

    .html-hero h1{

        font-size:42px;

    }

    .html-hero p{

        font-size:18px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        grid-template-columns:1fr;

        max-width:380px;

        margin:35px auto;

        text-align:left;

    }

    .html-hero-image{

        order:2;

    }

}

@media(max-width:600px){

    .html-hero h1{

        font-size:32px;

    }

    .section h2{

        font-size:30px;

    }

    .cta h2{

        font-size:32px;

    }

}
