*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#081127;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

.header{
    position:absolute;
    top:20px;
    left:0;
    width:100%;
    z-index:100;
}

.nav-container{
    background:#ffffff;
    border-radius:22px;
    padding:18px 28px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    box-shadow:
    0 2px 12px rgba(0,0,0,0.04);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-weight:700;
    font-size:18px;
}

.logo-icon{
    width:36px;
    height:36px;

    border-radius:50%;
    background:linear-gradient(
    135deg,
    #1678ff,
    #00d4ff
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
}

.blue{
    color:#247BFF;
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    text-decoration:none;
    color:#4b5563;
    font-size:14px;
    font-weight:500;
}

.nav a:hover{
    color:#000;
}

.project-btn{
    text-decoration:none;

    background:#07132b;
    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;
}

/* ================= HERO ================= */

.hero{
    min-height:760px;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;

    width:900px;
    height:900px;

    left:-250px;
    top:-100px;

    background:
    radial-gradient(
    circle,
    rgba(67,255,224,.25),
    transparent 70%
    );
}

.hero::after{
    content:"";
    position:absolute;

    width:900px;
    height:900px;

    right:-300px;
    top:-100px;

    background:
    radial-gradient(
    circle,
    rgba(72,179,255,.25),
    transparent 70%
    );
}

.hero-content{
    text-align:center;
    position:relative;
    z-index:2;
}

.badge{
    display:inline-block;

    padding:8px 18px;

    border:1px solid #e7edf5;
    border-radius:50px;

    color:#64748b;

    font-size:14px;
    margin-bottom:35px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;

    max-width:900px;
    margin:auto;
}

.hero h1 span{
    color:#2b7cff;
}

.hero p{
    margin-top:25px;

    color:#6b7280;
    font-size:20px;

    max-width:760px;
    margin-left:auto;
    margin-right:auto;

    line-height:1.8;
}

.pricing-switch{
    margin-top:45px;

    display:inline-flex;

    padding:6px;
    background:#f3f6fb;

    border-radius:50px;
}

.pricing-switch button{
    border:none;
    background:transparent;

    padding:14px 32px;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;
}

.pricing-switch button.active{
    background:#07132b;
    color:#fff;
}
/* ================= PRICING SECTION ================= */

.pricing-section{
    padding:20px 0 120px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.pricing-card{
    background:#f8fafc;

    border:1px solid #e7edf5;

    border-radius:30px;

    padding:40px;

    position:relative;

    transition:.3s;
}

.pricing-card:hover{
    transform:translateY(-6px);
}

.pricing-card h3{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.price{
    font-size:56px;
    font-weight:800;
    color:#081127;
}

.custom-price{
    font-size:54px;
    font-weight:800;
}

.price-label{
    display:block;

    color:#6b7280;
    margin-top:10px;
    margin-bottom:30px;
}

.pricing-card ul{
    list-style:none;
}

.pricing-card ul li{
    margin-bottom:16px;
    color:#1f2937;
    font-size:15px;
}

.card-btn{
    width:100%;
    height:56px;

    margin-top:30px;

    border:none;

    background:#07132b;
    color:white;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    cursor:pointer;
}

/* FEATURED CARD */

.featured{

    background:
    linear-gradient(
    135deg,
    #247BFF,
    #09C4D9
    );

    color:white;

    border:none;

    transform:scale(1.03);
}

.featured .price,
.featured .price-label,
.featured ul li,
.featured h3{
    color:white;
}

.popular-tag{
    position:absolute;

    top:18px;
    right:18px;

    background:white;
    color:#081127;

    padding:6px 12px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;
}

.featured-btn{
    width:100%;
    height:56px;

    margin-top:30px;

    border:none;

    border-radius:50px;

    background:white;
    color:#081127;

    font-size:15px;
    font-weight:700;

    cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:992px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }

}
/* ================= FAQ SECTION ================= */

.faq-section{
    padding:120px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#247BFF;
    font-weight:700;
    letter-spacing:1px;
    font-size:14px;
}

.section-title h2{
    font-size:48px;
    margin-top:15px;
    margin-bottom:15px;
    font-weight:800;
    color:#081127;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border:1px solid #e5e7eb;
    border-radius:20px;
    margin-bottom:18px;
    overflow:hidden;
}

.faq-question{
    padding:24px 30px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-answer{
    padding:0 30px 24px;
    color:#6b7280;
    line-height:1.8;
    display:none;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active{
    border-color:#247BFF;
}

/* ================= CTA SECTION ================= */

.cta-section{

padding:100px 0;
}

.cta-box{

background:
linear-gradient(
90deg,
#3b82f6,
#0ea5e9,
#14b8a6
);

border-radius:30px;

padding:70px;

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

color:white;
}

.cta-content h2{

font-size:56px;

line-height:1.1;

margin-bottom:20px;
}

.cta-content p{

font-size:18px;

max-width:550px;

line-height:1.8;
}

.cta-buttons{

display:flex;

gap:15px;
}

.cta-primary{

padding:16px 28px;

background:white;

border-radius:999px;

text-decoration:none;

font-weight:700;

color:#111827;
}

.cta-secondary{

padding:16px 28px;

border-radius:999px;

border:1px solid rgba(255,255,255,.4);

text-decoration:none;

color:white;
}
/* ================= FOOTER ================= */

.footer{

    background:#F7F9FC;

    border-top:1px solid #E6EDF5;

    padding-top:90px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;
}

.footer-logo{

    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:25px;
}

.footer-logo-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #0A84FF,
    #18D2D7
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:700;
}

.footer-logo span{

    font-size:22px;
    font-weight:700;
}

.footer-about p{

    color:#667085;

    line-height:1.8;

    margin-bottom:30px;
}

.newsletter{

    display:flex;

    background:white;

    border:1px solid #E7EDF5;

    border-radius:999px;

    overflow:hidden;

    max-width:340px;
}

.newsletter input{

    flex:1;

    border:none;

    outline:none;

    padding:14px 18px;
}

.newsletter button{

    border:none;

    background:#0A84FF;

    color:white;

    padding:0 20px;

    cursor:pointer;
}

.socials{

    display:flex;
    gap:12px;

    margin-top:25px;
}

.socials a{

    width:36px;
    height:36px;

    border-radius:50%;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#08142B;

    font-size:13px;

    border:1px solid #E7EDF5;
}

.footer-column{

    display:flex;
    flex-direction:column;
}

.footer-column h4{

    margin-bottom:24px;

    font-size:18px;
}

.footer-column a{

    margin-bottom:14px;

    color:#667085;

    line-height:1.6;
}

.footer-bottom{

    border-top:1px solid #E6EDF5;

    margin-top:70px;

    padding:30px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#667085;
}

.footer-links-bottom{

    display:flex;
    gap:18px;
}

.footer-links-bottom a{
    color:#667085;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-banner{
        padding:40px 25px;
    }

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .nav{
        display:none;
    }

    .hero h1{
        font-size:52px;
    }

    .footer-top{
        flex-direction:column;
    }

    .footer-links{
        flex-wrap:wrap;
        gap:40px;
    }

}

@media(max-width:768px){

    .hero{
        min-height:650px;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:16px;
    }

    .price{
        font-size:42px;
    }

    .custom-price{
        font-size:42px;
    }

    .pricing-card{
        padding:30px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}
.footer-column a{
    text-decoration: none;
}