/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    background-image: url('/images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #0f172a;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.6);
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

    .navbar ul li {
        cursor: pointer;
        transition: 0.3s;
    }

        .navbar ul li:hover {
            color: #38bdf8;
        }

.nav-btn {
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    .nav-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(99,102,241,0.4);
    }

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 8% 100px;
    background: transparent;
    min-height: 100vh;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero h1 span {
        background: linear-gradient(90deg, #38bdf8, #6366f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero p {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons a {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(99,102,241,0.5);
    }

.btn-secondary {
    border: 1px solid #38bdf8;
    color: #38bdf8;
}

    .btn-secondary:hover {
        background: #38bdf8;
        color: #0f172a;
    }

/* Dashboard Image */
.dashboard img {
    width: 550px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transition: 0.4s;
}

    .dashboard img:hover {
        transform: scale(1.03);
    }

/* FEATURES */
.features {
    padding: 100px 8%;
    text-align: center;
    background: transparent;
}

    .features h2 {
        font-size: 36px;
        margin-bottom: 60px;
    }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(15, 23, 42, 0.55);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.08);
}

    .card:hover {
        transform: translateY(-10px);
        background: rgba(15, 23, 42, 0.80);
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    .card img {
        width: 60px;
        margin-bottom: 20px;
    }

    .card h3 {
        margin-bottom: 15px;
    }

    .card p {
        color: #cbd5e1;
    }

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(10px);
    color: #94a3b8;
}
