/* ========================= */
/* RESET */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050816;
    color:#ffffff;
    overflow-x:hidden;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ========================= */
/* BACKGROUND GLOW */
/* ========================= */

.bg-glow{
    position:fixed;
    border-radius:50%;
    filter:blur(140px);
    z-index:-1;
    opacity:.25;
}

.glow-1{
    width:400px;
    height:400px;
    background:#009dff;
    top:-100px;
    left:-100px;
}

.glow-2{
    width:350px;
    height:350px;
    background:#005eff;
    bottom:-100px;
    right:-100px;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{
    width:100%;
    padding:25px 0;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(5,8,22,.75);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.navbar-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:95px;
}

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.nav-menu a:hover{
    color:#00A3FF;
}

.btn-demo{
    background:#00A3FF;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    box-shadow:0 0 20px rgba(0,163,255,.35);
}

.btn-demo:hover{
    transform:translateY(-2px);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:80px 0;
}

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50px;
    color:#00A3FF;
    margin-bottom:25px;
    background:rgba(255,255,255,.03);
    font-size:14px;
}

.hero-left h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.hero-left p{
    color:#94A3B8;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn-primary{
    background:#00A3FF;
    color:#fff;
    padding:16px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    box-shadow:0 0 30px rgba(0,163,255,.35);
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    padding:16px 28px;
    border-radius:14px;
    text-decoration:none;
    transition:.3s;
}

.btn-secondary:hover{
    border-color:#00A3FF;
}

.hero-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.hero-tags span{
    padding:10px 18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.05);
    border-radius:50px;
    color:#cbd5e1;
    font-size:14px;
}

.dashboard-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    border-radius:30px;
    padding:20px;
    box-shadow:0 0 50px rgba(0,163,255,.15);
}

.dashboard-card img{
    width:100%;
    border-radius:20px;
}

/* ========================= */
/* SECTION TITLE */
/* ========================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#00A3FF;
    font-size:14px;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.features{
    padding:120px 0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:24px;
    padding:35px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:rgba(0,163,255,.35);
    box-shadow:0 0 35px rgba(0,163,255,.12);
}

.feature-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.feature-card p{
    color:#94A3B8;
    line-height:1.7;
}

/* ========================= */
/* SHOWCASE */
/* ========================= */

.showcase{
    padding:120px 0;
}

.showcase-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.section-mini-title{
    color:#00A3FF;
    letter-spacing:2px;
    font-size:14px;
}

.showcase-left h2{
    font-size:52px;
    line-height:1.2;
    margin:20px 0;
}

.showcase-left p{
    color:#94A3B8;
    line-height:1.8;
    font-size:18px;
}

.showcase-right img{
    width:100%;
    border-radius:30px;
    box-shadow:0 0 60px rgba(0,163,255,.15);
}

/* ========================= */
/* PRICING */
/* ========================= */

.pricing{
    padding:120px 0;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.price-card{
    position:relative;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:30px;
    padding:45px;
}

.price-card.featured{
    border:1px solid rgba(0,163,255,.35);
    box-shadow:0 0 45px rgba(0,163,255,.18);
}

.popular-badge{
    position:absolute;
    top:-14px;
    right:30px;
    background:#00A3FF;
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.price-card h3{
    font-size:30px;
    margin-bottom:25px;
}

.price{
    font-size:58px;
    font-weight:700;
    margin-bottom:30px;
}

.price span{
    font-size:18px;
    color:#94A3B8;
}

.price-card ul{
    list-style:none;
    margin-bottom:35px;
}

.price-card ul li{
    margin-bottom:16px;
    color:#cbd5e1;
}

.price-card a{
    display:inline-block;
    background:#00A3FF;
    color:#fff;
    padding:15px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}

/* ========================= */
/* MIFRATE */
/* ========================= */

.mifrate{
    padding:120px 0;
}

.mifrate-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.mifrate-left h2{
    font-size:48px;
    line-height:1.2;
    margin:20px 0;
}

.mifrate-left p{
    color:#94A3B8;
    line-height:1.8;
    margin-bottom:35px;
    font-size:18px;
}

.mifrate-right img{
    width:100%;
    border-radius:30px;
    box-shadow:0 0 60px rgba(0,163,255,.12);
}

/* ========================= */
/* CTA FINAL */
/* ========================= */

.cta-final{
    padding:140px 0;
}

.cta-container{
    text-align:center;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:35px;
    padding:80px 40px;
}

.cta-container h2{
    font-size:56px;
    margin-bottom:20px;
}

.cta-container p{
    color:#94A3B8;
    font-size:18px;
    margin-bottom:35px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer img{
    height:45px;
}

.footer p{
    color:#64748B;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .hero-container,
    .showcase-container,
    .mifrate-container,
    .pricing-grid,
    .features-grid{
        grid-template-columns:1fr;
    }

    .hero-left h1{
        font-size:48px;
    }

    .showcase-left h2,
    .mifrate-left h2,
    .cta-container h2{
        font-size:40px;
    }

    .nav-menu{
        display:none;
    }

    .footer-container{
        flex-direction:column;
        gap:20px;
    }

}

@media(max-width:768px){

    .hero{
        padding-top:40px;
    }

    .hero-left h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:34px;
    }

    .price{
        font-size:48px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        text-align:center;
    }

}

.mifrate-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:28px 0 0;
}

.mifrate-feature-card{
    background:rgba(255,255,255,.035);
    border:1px solid rgba(0,163,255,.15);
    border-radius:16px;
    padding:16px 18px;
}

.mifrate-feature-card h3{
    font-size:14px;
    margin-bottom:6px;
}

.mifrate-feature-card p{
    font-size:13px;
    line-height:1.5;
    color:#94A3B8;
    margin:0;
}

.mifrate-feature-card p{
    font-size:14px;
    line-height:1.6;
    color:#94A3B8;
    margin:0;
}

@media(max-width:768px){
    .mifrate-features{
        grid-template-columns:1fr;
    }
}