/* =====================================
   Global
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    font-family:Inter,sans-serif;
    color:#0057D9;
    background:#fff;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
h1,h2,h3{

    font-family:Poppins,sans-serif;
}

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.3rem;
    color:#0A2540;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
}

/* =====================================
Hero
===================================== */

.pricing-hero{

    background:linear-gradient(135deg,#0A2540,#123B63);

    color:#fff;

    text-align:center;

    padding:120px 20px;
}

.section-tag{

    display:inline-block;

    background:#00A6A6;

    padding:8px 20px;

    border-radius:50px;

    font-size:14px;

    margin-bottom:20px;
}

.pricing-hero h1{

    font-size:3rem;

    margin-bottom:20px;
}

.pricing-hero p{

    max-width:700px;

    margin:auto;

    opacity:.9;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* =====================================
Buttons
===================================== */

.btn{

    display:inline-block;

    padding:14px 30px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary{

    background:#00A6A6;

    color:#fff;
}

.btn-primary:hover{

    background:#008b8b;

    transform:translateY(-3px);
}

.btn-outline{

    border:2px solid #fff;

    color:#fff;
}

.btn-outline:hover{

    background:#fff;

    color:#0A2540;
}

/* =====================================
Pricing Cards
===================================== */

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

.pricing-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    position:relative;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;
}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.pricing-card h3{

    color:#0A2540;

    margin-bottom:10px;

    font-size:1.6rem;
}

.pricing-card small{

    color:#777;
}

.pricing-card h4{

    color:#00A6A6;

    font-size:3rem;

    margin:20px 0 5px;
}

.pricing-card span{

    color:#666;
}

.pricing-card ul{

    list-style:none;

    margin:30px 0;
}

.pricing-card li{

    padding:10px 0;

    border-bottom:1px solid #eee;
}

.featured{

    border:3px solid #00A6A6;

    transform:scale(1.05);
}

.card-badge{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:#F59E0B;

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;
}

/* =====================================
Included
===================================== */

.included{

    background:#fff;
}

.included-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.included-grid div{

    background:#F8FAFC;

    padding:18px;

    border-radius:10px;

    border-left:5px solid #00A6A6;

    font-weight:500;
}

/* =====================================
Customization
===================================== */

.custom-box{

    background:#0A2540;

    color:#fff;

    padding:60px;

    border-radius:20px;

    text-align:center;
}

.custom-box h2{

    margin-bottom:20px;

    font-size:2rem;
}

.custom-box p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;
}

.module-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

    margin-bottom:40px;
}

.module-grid span{

    background:#123B63;

    padding:12px 20px;

    border-radius:40px;
}

/* =====================================
Comparison Table
===================================== */

table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

thead{

    background:#0A2540;

    color:#fff;
}

th,td{

    padding:18px;

    text-align:center;

    border-bottom:1px solid #eee;
}

tbody tr:hover{

    background:#F5F8FA;
}

td:first-child{

    text-align:left;

    font-weight:600;
}

/* =====================================
FAQ
===================================== */

.faq{

    background:#fff;
}

.faq-list{

    max-width:850px;

    margin:auto;
}

.faq-item{

    background:#F8FAFC;

    margin-bottom:18px;

    padding:22px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

    font-weight:500;
}

.faq-item:hover{

    background:#00A6A6;

    color:#fff;
}

/* =====================================
CTA
===================================== */

.cta{

    background:linear-gradient(135deg,#0A2540,#123B63);

    text-align:center;

    color:#fff;
}

.cta h2{

    font-size:2.5rem;

    margin-bottom:15px;
}

.cta p{

    margin-bottom:35px;

    opacity:.9;
}

/* =====================================
Responsive
===================================== */

@media(max-width:992px){

    .pricing-hero h1{

        font-size:2.4rem;
    }

    .featured{

        transform:none;
    }

}

@media(max-width:768px){

    section{

        padding:60px 0;
    }

    .pricing-hero{

        padding:90px 20px;
    }

    .pricing-hero h1{

        font-size:2rem;
    }

    .section-title h2{

        font-size:1.8rem;
    }

    .pricing-card{

        padding:30px 25px;
    }

    .pricing-card h4{

        font-size:2.5rem;
    }

    .custom-box{

        padding:35px 20px;
    }

    table{

        display:block;

        overflow-x:auto;
    }

}

@media(max-width:480px){

    .hero-buttons{

        flex-direction:column;
    }

    .btn{

        width:100%;
        text-align:center;
    }

    .pricing-hero h1{

        font-size:1.7rem;
    }

}
