body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #020617;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(124, 58, 237, 0.6));
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    color: #94a3b8;
}

.hero button {
    padding: 12px 25px;
    margin-top: 20px;
    background: #7c3aed;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
}

/* PRICING */
.pricing {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.card {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    text-align: center;
}

.price {
    font-size: 2em;
    margin: 10px 0;
}

.card button {
    padding: 10px 20px;
    background: #22c55e;
    border: none;
    color: black;
    cursor: pointer;
    border-radius: 6px;
}

/* FEATURES */
.features {
    text-align: center;
    padding: 60px 20px;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    max-width: 200px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    color: #64748b;
}