/* ==========================================
   NOVA247 TECH
   Global Styles
   Version 1.0
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root{

    /* Brand Colors */

    --primary:#38B6FF;
    --secondary:#7B2CFF;
    --dark:#050816;
    --dark2:#101827;
    --white:#ffffff;
    --light:#F5F7FB;
    --gray:#7B8794;
    --border:#E6EAF2;
    --success:#00C896;

    /* Shadows */

    --shadow-sm:0 4px 10px rgba(0,0,0,.08);
    --shadow:0 12px 35px rgba(0,0,0,.12);
    --shadow-lg:0 25px 60px rgba(0,0,0,.18);

    /* Radius */

    --radius:14px;
    --radius-lg:22px;

    /* Animation */

    --transition:.35s ease;

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Manrope',sans-serif;

    background:var(--light);

    color:var(--dark);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    font-family:inherit;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

section{

    padding:90px 0;

}

h1{

    font-size:4rem;

    line-height:1.1;

    font-weight:800;

}

h2{

    font-size:2.8rem;

    font-weight:800;

    margin-bottom:18px;

}

h3{

    font-size:1.7rem;

    font-weight:700;

}

p{

    color:var(--gray);

    font-size:1.05rem;

}

/* Buttons */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:12px;

    transition:var(--transition);

    font-weight:700;

    border:none;

}

.btn-primary{

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    color:white;

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:white;

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

/* Section Titles */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    margin-top:15px;

}

/* ==========================================
   HEADER / NAVIGATION
========================================== */

.header{
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(13,13,13,.95);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 6px 30px rgba(0,0,0,.15);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:72px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    width:36px;
    height:36px;
    object-fit:contain;
}

.logo span{
    font-size:20px;
    font-weight:800;
    color:#ffffff;
    letter-spacing:.3px;
}

.logo strong{
    color:#7B2CFF;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-weight:500;
    font-size: 15px;
    transition:.3s;
}

.nav-links a:hover{
    color:#38B6FF;
}

.btn{
    display:inline-block;
    padding:12px 24px;
    border-radius:10px;
    background:linear-gradient(90deg,#38B6FF,#7B2CFF);
    color:#ffffff !important;
    font-weight:700;
    text-decoration:none;
    transition:.25s ease;
    cursor: pointer;
}

.btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 25px rgba(56,182,255,.35);
    filter: brightness(1.08);
}

/* ===========================
   HERO DASHBOARD
=========================== */

.dashboard{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.dashboard-card{
    background:#0D0D0D;
    color:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.22);
    transition: .35s ease;
    transform: translateY(-6px);
}

.dashboard-card h3{
    margin-bottom:25px;
}

.stat-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
    font-weight:600;
}

.progress{
    width:100%;
    height:10px;
    background:#222;
    border-radius:100px;
    overflow:hidden;
    margin-bottom:20px;
}

.progress-fill{
    height:100%;
    width:0;
    background:#38B6FF;
    border-radius:100px;
    transition:width .8s ease;
}

.progress-fill.purple{
    background:#7B2CFF;
}

.progress-fill.blue{
    background:#38B6FF;
}

.dashboard-small{
    background:#ffffff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition: .35s ease;
    transform:translateY(-5px);
}

.dashboard-small h4{
    margin-bottom:12px;
}

.dashboard-small h2{
    color:#38B6FF;
    margin:10px 0;
}

.dashboard-small p{
    font-size:24px;
    color:#7B2CFF;
}

.hero-content{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:60px;
}

.hero-text{
    width:100%;
}

.hero-image{
    width:100%;
}

@media(max-width:900px){

.hero-content{
    grid-template-columns:1fr;
}

}

/* ============================
   FEATURES SECTION
============================ */

.features{
    padding:100px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:20px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card h3{
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:900px){

.feature-grid{
    grid-template-columns:1fr;
}

}

/* ===========================
   STATISTICS
=========================== */

.stats{
    padding:100px 0;
    background:#0D0D0D;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:#161616;
    color:#fff;
    padding:40px 20px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h2{
    font-size:48px;
    color:#38B6FF;
    margin-bottom:10px;
}

.stat-card p{
    color:#CFCFCF;
}

@media(max-width:900px){

.stats-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.stats-grid{
    grid-template-columns:1fr;
}

}

/* ==========================================
   HOW IT WORKS
========================================== */

.how-it-works{
    padding:100px 0;
    background:#ffffff;
}

.steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.step-card{
    background:#f8f9fc;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    transition:var(--transition);
    box-shadow:var(--shadow-sm);
}

.step-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.step-number{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#38B6FF,#7B2CFF);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
}

.step-card h3{
    margin-bottom:15px;
    color:var(--dark);
}

.step-card p{
    color:var(--gray);
    line-height:1.7;
}

@media(max-width:900px){

.steps{
    grid-template-columns:1fr;
}

}

/* ==========================================
   PRICING SECTION
========================================== */

.pricing{
    padding:100px 0;
    background:#f8f9fc;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.pricing-card{
    background:#ffffff;
    padding:45px 35px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.35s ease;
}

.pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.plan-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#38B6FF;
    color:#fff;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.popular{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#7B2CFF;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:bold;
}

.featured{
    transform:scale(1.05);
    border:2px solid #38B6FF;
}

.price{
    font-size:52px;
    font-weight:700;
    color:#111;
    margin:20px 0;
}

.price span{
    font-size:18px;
    color:#777;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.pricing-card ul li{
    margin-bottom:18px;
    color:#555;
}

.pricing-card .btn{
    width:100%;
}

@media(max-width:900px){

.pricing-grid{
grid-template-columns:1fr;
}

.featured{
transform:none;
}

}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#f8f9fc;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.testimonial-card p{
    color:var(--gray);
    line-height:1.8;
    font-style:italic;
    margin-bottom:25px;
}

.testimonial-card h4{
    color:var(--primary);
    font-size:18px;
    font-weight:600;
}

@media(max-width:900px){

.testimonial-grid{
    grid-template-columns:1fr;
}

}

/* ==========================================
   FAQ
========================================== */

.faq{
    padding:100px 0;
    background:#f8f9fc;
}

.faq-container{
    max-width:850px;
    margin:60px auto 0;
}

.faq-item{
    background:#fff;
    padding:30px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.faq-item:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.faq-item h3{
    color:var(--dark);
    margin-bottom:15px;
    font-size:22px;
}

.faq-item p{
    color:var(--gray);
    line-height:1.8;
}

/* ==========================================
   CALL TO ACTION
========================================== */

.cta{
    padding:100px 0;
    background:#0D0D0D;
}

.cta-box{
    text-align:center;
    background:linear-gradient(135deg,#38B6FF,#7B2CFF);
    padding:70px 50px;
    border-radius:25px;
    color:#fff;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta .btn-outline{
    background:#fff;
    color:#38B6FF;
    border:none;
}

.cta .btn-outline:hover{
    background:#f5f5f5;
}

@media(max-width:768px){

.cta-box{
    padding:50px 30px;
}

.cta-box h2{
    font-size:32px;
}

}

/* ==========================================
   FOOTER
========================================== */

.footer{
    background:#0D0D0D;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer h3{
    color:#38B6FF;
    margin-bottom:20px;
}

.footer h4{
    margin-bottom:20px;
}

.footer p{
    color:#bbb;
    line-height:1.8;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
    color:#bbb;
}

.footer ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#38B6FF;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:60px;
    padding:35px 20px 10px;
    text-align:center;
}
.footer-bottom p{
    margin:0;
}

.footer-bottom p:first-child{
    color:#ffffff;
    font-size:17px;
    font-weight:600;
    margin-bottom:18px;
}

.footer-disclaimer{
    max-width:900px;
    margin:0 auto;
    color:#9aa3b2;
    line-height:1.8;
    font-size:15px;
}

.pricing-hero{
    padding:140px 0 80px;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:#fff;
    text-align:center;
}

.pricing-hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.pricing-hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#dbeafe;
}

.pricing-plans{
    padding:100px 0;
    background:#f8fafc;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.pricing-card{
    background:#fff;
    border-radius:20px;
    padding:45px 35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
    transition:.35s ease;
    position:relative;
}

.pricing-card:hover{
    transform:translateY(-12px);
}

.featured{
    border:3px solid #3886FF;
    transform:scale(1.05);
}

.featured:hover{
    transform:scale(1.05) translateY(-12px);
}

.plan-tag{
    display:inline-block;
    background:#3886FF;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
}

.popular-badge{
    position:absolute;
    top:-15px;
    right:20px;
    background:#ff9800;
    color:#fff;
    padding:8px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
}

.pricing-card h3{
    font-size:48px;
    color:#3886FF;
    margin:20px 0 10px;
}

.price-duration{
    color:#666;
    margin-bottom:30px;
}

.pricing-card ul{
    list-style:none;
    margin:35px 0;
    padding:0;
    text-align:left;
}

.pricing-card ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:16px;
}

.pricing-card ul li:last-child{
    border-bottom:none;
}

.pricing-card .btn{
    display:inline-block;
    width:100%;
    padding:15px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.btn{
    background:#3886FF;
    color:#fff;
}

.btn:hover{
    background:#2563eb;
}

.featured .btn{
    background:#3886FF;
    color:#fff;
}

.featured .btn:hover{
    background:#1d4ed8;
}

@media(max-width:900px){

    .pricing-hero{
        padding:120px 20px 70px;
    }

    .pricing-hero h1{
        font-size:38px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:translateY(-10px);
    }

}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
    color:#111827;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}


.pricing-card{
    position:relative;
}

.pricing-card:last-child .plan-tag{
    background:#f59e0b;
}

/* ==========================================
   SIGNUP PAGE
========================================== */

.signup-hero{
    padding:140px 0 70px;
    background:linear-gradient(135deg,#38B6FF,#7B2CFF);
    color:#fff;
    text-align:center;
}

.signup-hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.signup-hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.signup-section{
    padding:90px 0;
    background:#f8f9fc;
}

.signup-card{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* ==========================================
   FAQ PAGE
========================================== */

.page-hero{
    padding:140px 0 70px;
    background:linear-gradient(135deg,#38B6FF,#7B2CFF);
    color:#ffff;
    text-align:center;
}

.page-hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.page-hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color: #ffffff;
    opacity: 0.9;
}

.faq-page{
    padding:90px 0;
    background:#f8f9fc;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    padding:25px;
    border:none;
    background:#fff;
    text-align:left;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    display:block;
}

/* ==========================================
   TERMS OF SERVICE PAGE
========================================== */

.legal-hero{
    padding:140px 0 80px;
    background:linear-gradient(135deg,#3886FF,#7B2CFF);
    color:#fff;
    text-align:center;
}

.legal-hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.legal-hero p{
    max-width:800px;
    margin:auto;
    color:rgba(255,255,255,.9);
    line-height:1.8;
    font-size:18px;
}

.legal-page{
    padding:80px 0;
    background:#f5f7fb;
}

.legal-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.legal-card h2{
    color:#3886FF;
    margin-top:35px;
    margin-bottom:15px;
    font-size:28px;
}

.legal-card h2:first-child{
    margin-top:0;
}

.legal-card p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:20px;
}


/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media (max-width: 768px){

    .nav-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 15px 0;
    }

    .logo{
        margin-bottom: 15px;
    }

    .logo span{
        font-size: 28px;
    }

    .logo img{
        width: 48px;
        height: 48px;
    }

    .nav-links{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a{
        font-size: 18px;
    }

    .btn{
        padding: 12px 22px;
    }

}