body {
    font-family: Segoe UI, sans-serif;
    background: #f5f8ff;
    color: #222;
}

.navbar {
    background: rgba(14, 20, 65, .75);
    backdrop-filter: blur(20px);
}

.nav-link {
    color: white !important;
    margin-left: 20px;
}

.hero {

    background: linear-gradient(135deg, #4f46e5, #0ea5e9, #06b6d4);

    padding: 170px 0 120px;

    color: white;

}

.hero h1 {

    font-size: 3.5rem;

    font-weight: 800;

    line-height: 1.2;

}

.hero h1 span {

    color: #ffe66d;

}

.hero p {

    opacity: .95;

    margin-top: 30px;

}

.dashboard {

    background: rgba(255, 255, 255, .15);

    border: 1px solid rgba(255, 255, 255, .2);

    backdrop-filter: blur(18px);

    border-radius: 25px;

    padding: 35px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);

}

.dashboard-header {

    font-weight: 700;

    display: flex;

    align-items: center;

}

.status {

    width: 12px;

    height: 12px;

    background: #00ff88;

    border-radius: 50%;

    margin-right: 10px;

}

.mini-card {

    background: white;

    border-radius: 15px;

    padding: 20px;

    text-align: center;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

}

.mini-card h2 {

    color: #4f46e5;

    font-weight: 700;

}

.feature-card {

    background: white;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    transition: .4s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.feature-card:hover {

    transform: translateY(-10px);

}

.feature-card i {

    font-size: 55px;

    color: #4f46e5;

}

.platform {

    padding: 100px 0;

    background: white;

}

.platform h2 {

    font-weight: 700;

}

.platform ul {

    margin-top: 25px;

    padding-left: 20px;

}

.platform li {

    margin-bottom: 12px;

}

.glass-box {

    background: linear-gradient(135deg, #279356, #61B14D);

    color: white;

    border-radius: 25px;

    padding: 45px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

}

.benefit {

    margin-bottom: 18px;

    font-size: 18px;

}

.benefit i {

    margin-right: 12px;

    color: #ffe66d;

}

.cta {

    background: linear-gradient(135deg, #4f46e5, #2563eb);

    color: white;

    padding: 90px 0;

}

footer {

    background: #111827;

    color: #bbb;

    text-align: center;

    padding: 30px;

}

.btn-primary {

    background: #ff7a18;

    border: none;

}

.btn-primary:hover {

    background: #ff5c00;

}

@media(max-width:991px) {

    .hero {

        padding-top: 140px;

        text-align: center;

    }

    .hero h1 {

        font-size: 2.6rem;

    }

    .dashboard {

        margin-top: 50px;

    }

}