:root{
    --primary:#4f46e5;
    --secondary:#7c3aed;
    --dark:#0f172a;
    --light:#f8fafc;
    --text:#64748b;
    --white:#ffffff;
    --border:#e2e8f0;
    --success:#22c55e;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#ffffff;
    overflow-x:hidden;
}

/* =======================
NAVBAR
======================= */

.custom-navbar{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    padding:15px 0;
}

.navbar-brand{
    font-size:32px;
    font-weight:800;
}

.brand-primary{
    color:var(--primary);
}

.nav-link{
    font-weight:500;
    color:var(--dark)!important;
    margin:0 10px;
}

.nav-link:hover{
    color:var(--primary)!important;
}

.btn-primary-custom{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.btn-primary-custom:hover{
    color:#fff;
    transform:translateY(-2px);
}

.btn-outline-custom{
    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:12px;
    padding:12px 24px;
    font-weight:600;
}

.btn-outline-custom:hover{
    background:var(--primary);
    color:#fff;
}

/* =======================
HERO
======================= */

.hero-section{
    padding:170px 0 120px;
    background:
    linear-gradient(
    135deg,
    #eef2ff 0%,
    #f8fafc 40%,
    #ffffff 100%);
}

.hero-badge{
    background:#e0e7ff;
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.hero-title{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-description{
    color:var(--text);
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-highlights{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-top:35px;
}

.hero-highlights div{
    color:var(--text);
    font-weight:500;
}

.hero-highlights i{
    color:var(--success);
    margin-right:8px;
}

.dashboard-card{
    background:#fff;
    border-radius:25px;
    box-shadow:0 30px 60px rgba(79,70,229,.15);
    padding:20px;
    margin-top:40px;
}

.dashboard-header{
    display:flex;
    gap:8px;
    margin-bottom:20px;
}

.dashboard-header span{
    width:12px;
    height:12px;
    border-radius:50%;
}

.dashboard-header span:nth-child(1){
    background:#ef4444;
}

.dashboard-header span:nth-child(2){
    background:#f59e0b;
}

.dashboard-header span:nth-child(3){
    background:#10b981;
}

.dashboard-widget{
    background:#f8fafc;
    border-radius:18px;
    text-align:center;
    padding:25px;
    transition:.3s;
}

.dashboard-widget:hover{
    transform:translateY(-5px);
}

.dashboard-widget i{
    font-size:30px;
    color:var(--primary);
}

.dashboard-widget h5{
    margin-top:10px;
    font-size:16px;
}

.dashboard-widget p{
    margin-bottom:0;
    font-weight:700;
    color:var(--primary);
}

/* =======================
STATS
======================= */

.stats-section{
    padding:50px 0;
    background:#fff;
}

.stat-box{
    background:#fff;
    text-align:center;
    padding:30px;
    border-radius:20px;
    border:1px solid var(--border);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.stat-box h2{
    color:var(--primary);
    font-weight:800;
    margin-bottom:10px;
}

.stat-box p{
    color:var(--text);
    margin:0;
}

/* =======================
COMMON
======================= */

.section-padding{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    margin-top:10px;
}

.section-title p{
    color:var(--text);
    max-width:700px;
    margin:auto;
}

/* =======================
FEATURES
======================= */

.feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    transition:.3s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.feature-card i{
    font-size:40px;
    color:var(--primary);
}

.feature-card h4{
    margin:20px 0 10px;
    font-size:22px;
    font-weight:700;
}

.feature-card p{
    color:var(--text);
    margin:0;
}

/* =======================
MODULES
======================= */

.modules-section{
    padding:100px 0;
    background:#f8fafc;
}

.module-card{
    background:#fff;
    border-radius:20px;
    padding:30px 15px;
    text-align:center;
    transition:.3s;
    height:100%;
}

.module-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.module-card i{
    font-size:38px;
    color:var(--primary);
}

.module-card h5{
    margin-top:15px;
    font-weight:600;
}

/* =======================
BENEFITS
======================= */

.section-subtitle{
    color:var(--primary);
    font-weight:700;
}

.benefit-title{
    font-size:44px;
    font-weight:800;
    margin:20px 0;
}

.benefit-text{
    color:var(--text);
    line-height:1.8;
    margin-bottom:30px;
}

.benefit-item{
    margin-bottom:15px;
    font-weight:500;
}

.benefit-item i{
    color:var(--success);
    margin-right:10px;
}

.benefit-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.benefit-mini-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.benefit-mini-card h5{
    font-weight:700;
}

/* =======================
FAQ
======================= */

.faq-section{
    padding:100px 0;
    background:#f8fafc;
}

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px!important;
    overflow:hidden;
}

.accordion-button{
    font-weight:600;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:#eef2ff;
    color:var(--primary);
}

/* =======================
CTA
======================= */

.cta-section{
    padding:80px 0;
}

.cta-box{
    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
    color:#fff;
    text-align:center;
    padding:80px 40px;
    border-radius:30px;
}

.cta-box h2{
    font-size:48px;
    font-weight:800;
}

.cta-box p{
    max-width:700px;
    margin:20px auto;
}

/* =======================
CONTACT
======================= */

.contact-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-info{
    text-align:center;
}

.contact-info i{
    font-size:35px;
    color:var(--primary);
}

.contact-info h5{
    margin-top:15px;
    font-weight:700;
}

.contact-info p{
    color:var(--text);
}

/* =======================
FOOTER
======================= */

.footer{
    background:var(--dark);
    color:#fff;
    padding:80px 0 30px;
}

.footer-logo{
    font-size:36px;
    font-weight:800;
}

.footer-logo span{
    color:#818cf8;
}

.footer-text{
    color:#cbd5e1;
}

.footer-heading{
    margin-bottom:20px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.footer hr{
    margin:40px 0 20px;
    border-color:rgba(255,255,255,.1);
}

.footer-bottom{
    text-align:center;
    color:#cbd5e1;
}

/* =======================
RESPONSIVE
======================= */

@media(max-width:991px){

    .hero-title{
        font-size:42px;
    }

    .benefit-title{
        font-size:34px;
    }

    .section-title h2{
        font-size:34px;
    }

    .benefit-box{
        margin-top:40px;
    }

}

@media(max-width:768px){

    .hero-section{
        padding:140px 0 80px;
    }

    .hero-title{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .benefit-box{
        grid-template-columns:1fr;
    }

    .cta-box h2{
        font-size:32px;
    }

    .section-title h2{
        font-size:30px;
    }

}