/*==================================================
    GLOBAL RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{

    scroll-behavior:smooth;

}


:root{

    --background:#ffffff;

    --surface:#ffffff;

    --text:#111111;

    --muted:#666666;

    --border:#e8e8e8;

    --black:#000000;

    --white:#ffffff;

    --container:1200px;

}


/*==================================================
    BODY
==================================================*/


body{

    font-family:Inter, sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.6;

    -webkit-font-smoothing:antialiased;

}



/*==================================================
    GLOBAL ELEMENTS
==================================================*/


.container{

    width:min(var(--container),92%);

    margin:auto;

}


img{

    max-width:100%;

    display:block;

}


a{

    text-decoration:none;

    color:inherit;

}


button{

    font:inherit;

    cursor:pointer;

}



/*==================================================
    ANIMATION
==================================================*/


@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}



/*==================================================
    SECTION HEADING
==================================================*/


.section-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto;

}


.section-tag{

    display:inline-block;

    padding:7px 18px;

    border-radius:50px;

    background:#000;

    color:#fff;

    font-size:13px;

    margin-bottom:20px;

}


.section-heading h2{

    font-size:45px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:20px;

}


.section-heading p{

    color:var(--muted);

    font-size:18px;

}



/*==================================================
    PRICING SECTION
==================================================*/


.pricing{

    padding:100px 0;

}



.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}



.pricing-card{

    position:relative;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:30px;

    padding:40px;

    transition:.3s ease;

}



.pricing-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}



.pricing-card h3{

    font-size:26px;

    margin-bottom:20px;

}



.price{

    font-size:45px;

    font-weight:800;

    margin-bottom:20px;

}



.price small{

    font-size:15px;

    font-weight:500;

}



.pricing-card p{

    color:var(--muted);

    margin-bottom:25px;

}



.pricing-card ul{

    list-style:none;

    margin:30px 0;

}



.pricing-card li{

    margin-bottom:15px;

}



.pricing-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    padding:16px;

    border-radius:50px;

    background:#000;

    color:#fff;

    font-weight:700;

}



.featured{

    border:2px solid #000;

    transform:translateY(-20px);

}



.popular{

    position:absolute;

    top:-16px;

    right:25px;

    background:#000;

    color:#fff;

    padding:7px 18px;

    border-radius:50px;

    font-size:12px;

}



/*==================================================
    CTA SECTION
==================================================*/


.cta{

    padding:100px 0;

}



.cta-box{

    background:#000;

    color:#fff;

    border-radius:40px;

    padding:80px 40px;

    text-align:center;

}



.cta-box h2{

    font-size:45px;

    line-height:1.2;

    max-width:750px;

    margin:0 auto 20px;

}



.cta-box p{

    max-width:650px;

    margin:0 auto 35px;

    color:#cccccc;

    font-size:18px;

}



.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 40px;

    border-radius:50px;

    background:#fff;

    color:#000;

    font-weight:700;

}



/*==================================================
    MOBILE RESPONSIVE
==================================================*/


@media(max-width:900px){


    .section-heading h2{

        font-size:32px;

    }



    .pricing-grid{

        grid-template-columns:1fr;

    }



    .featured{

        transform:none;

    }



    .pricing-card{

        padding:30px;

    }



    .cta-box{

        padding:50px 25px;

    }



    .cta-box h2{

        font-size:32px;

    }


}

/*==================================================
SOCIAL PROOF
==================================================*/

.social-proof{

    padding:120px 0;

    background:#ffffff;

}

.proof-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.proof-card{

    padding:40px;

    border:1px solid #e5e7eb;

    border-radius:24px;

    transition:.3s;

    background:#fff;

}

.proof-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.proof-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#2563eb;

    color:#fff;

    font-size:30px;

    margin-bottom:25px;

}

.proof-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.proof-card p{

    color:#64748b;

    line-height:1.8;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#020617;

    color:#cbd5e1;

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:70px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.footer-logo strong{

    display:block;

    color:#fff;

    font-size:24px;

}

.footer-logo span{

    display:block;

    color:#94a3b8;

    font-size:13px;

}

.footer-brand p{

    color:#94a3b8;

    line-height:1.9;

    max-width:380px;

}

.footer h4{

    color:#fff;

    margin-bottom:22px;

    font-size:18px;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:14px;

}

.footer a{

    color:#94a3b8;

    transition:.3s;

}

.footer a:hover{

    color:#fff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}

.footer-social{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

@media(max-width:992px){

.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

.footer-social{

    justify-content:center;

}

}

/*==================================================
CTA
==================================================*/

.cta{

    padding:140px 0;

    background:#0f172a;

    color:#fff;

}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.cta-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    font-weight:700;

    margin-bottom:30px;

}

.cta-box h2{

    font-size:60px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:900;

}

.cta-box p{

    max-width:700px;

    margin:auto;

    color:#cbd5e1;

    font-size:20px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:50px;

    flex-wrap:wrap;

}

.cta-features{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    color:#94a3b8;

    font-size:15px;

}

@media(max-width:992px){

.cta{

    padding:90px 0;

}

.cta-box h2{

    font-size:40px;

}

.cta-box p{

    font-size:17px;

}

.cta-buttons{

    flex-direction:column;

}

.cta-buttons .btn{

    width:100%;

}

.cta-features{

    flex-direction:column;

    gap:15px;

}

}

@media(max-width:480px){

.cta-box h2{

    font-size:32px;

}

}
