/* static/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f172a;
    color: white;
}

.navbar {
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.95);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #38bdf8;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #38bdf8;
}

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.primary {
    background: #38bdf8;
    color: black;
}

.secondary {
    border: 1px solid #38bdf8;
    color: white;
}

.primary:hover,
.secondary:hover {
    opacity: 0.8;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background:
        linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.8)),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070&auto=format&fit=crop')
        center/cover;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.features,
.pricing,
.contact {
    padding: 100px 10%;
    text-align: center;
}

.features h2,
.pricing h2,
.contact h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card,
.price-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover,
.price-card:hover {
    transform: translateY(-5px);
}

.card h3,
.price-card h3 {
    margin-bottom: 15px;
}

.price {
    font-size: 42px;
    color: #38bdf8;
    margin: 20px 0;
}

.price-card button {
    margin-top: 20px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #38bdf8;
    color: black;
    cursor: pointer;
    font-weight: bold;
}

.featured {
    border: 2px solid #38bdf8;
}

footer {
    text-align: center;
    padding: 25px;
    background: #020617;
    color: #94a3b8;
}

@media(max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}