*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#070b17;
    color:#fff;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* NAVBAR */

.custom-navbar{
    padding:18px 0;
    background:#0c1224;
    border-bottom:1px solid rgba(255,255,255,0.05);
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff !important;
    font-size:22px;
    font-weight:700;
}

.navbar-brand img{
    width:45px;
}

.nav-link{
    color:#c5cede !important;
    margin:0 12px;
    transition:0.3s;
}

.nav-link:hover{
    color:#00bfff !important;
}

.navbar-buttons{
    display:flex;
    align-items:center;
    gap:15px;
}

.login-btn{
    color:#fff;
    border:1px solid #2a3550;
    padding:10px 22px;
    border-radius:12px;
    transition:0.3s;
}

.login-btn:hover{
    background:#121d36;
}

.register-btn{
    background:#00bfff;
    color:#fff;
    padding:10px 22px;
    border-radius:12px;
    transition:0.3s;
}

.register-btn:hover{
    background:#009acd;
}

.navbar-toggler{
    border:none;
    color:#fff;
    font-size:28px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* HERO */

.hero-section{
    padding:110px 0;
}

.hero-title{
    font-size:65px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-title span{
    color:#00bfff;
}

.hero-description{
    color:#b8c2d1;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#00bfff;
    color:#fff;
    padding:15px 30px;
    border-radius:14px;
    font-weight:600;
}

.secondary-btn{
    border:1px solid #2b3854;
    color:#fff;
    padding:15px 30px;
    border-radius:14px;
}

.analytics-card{
    background:#121d36;
    border-radius:24px;
    padding:30px;
    border:1px solid rgba(255,255,255,0.05);
}

.analytics-card h4{
    margin-bottom:12px;
}

.analytics-card span{
    color:#00ff95;
    font-size:38px;
    font-weight:700;
}

.analytics-card p{
    color:#aeb7c4;
    margin-top:10px;
}

/* SECTION */

.section-spacing{
    padding:90px 0;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    text-align:center;
}

.section-description{
    color:#aeb7c4;
    max-width:750px;
    margin:auto;
    text-align:center;
    line-height:1.8;
}

/* FEATURE CARDS */

.feature-card{
    background:#121d36;
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#00bfff20;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.feature-icon i{
    font-size:30px;
    color:#00bfff;
}

.feature-card h4{
    margin-bottom:15px;
}

.feature-card p{
    color:#aeb7c4;
    line-height:1.8;
}

/* PACKAGE */

.package-card{
    background:#121d36;
    border-radius:28px;
    padding:40px;
    height:100%;
    border:1px solid transparent;
    transition:0.3s;
}

.package-card:hover{
    border-color:#00bfff;
    transform:translateY(-8px);
}

.package-price{
    font-size:48px;
    font-weight:800;
    margin:20px 0;
}

.package-price span{
    font-size:16px;
    color:#9eabc0;
}

.package-list{
    list-style:none;
    padding-left:0;
}

.package-list li{
    margin-bottom:16px;
    color:#c4cfde;
}

.package-btn{
    width:100%;
    background:#00bfff;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:14px;
    margin-top:25px;
}

/* FOOTER */

.footer-section{
    padding:35px 0;
    border-top:1px solid rgba(255,255,255,0.05);
    margin-top:80px;
}

.footer-section p{
    color:#97a3b5;
    margin-bottom:0;
    text-align:center;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-title{
        font-size:46px;
    }

    .hero-section{
        padding:80px 0;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:36px;
    }

    .section-title{
        font-size:32px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

}