/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Canvas background */
#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #0f172a, #020617);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(15, 23, 42, 0.8);
    color: #fff;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.navbar a:hover {
    color: #38bdf8;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.btn-primary {
    background-color: #38bdf8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-primary:hover {
    background-color: #0ea5e9;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 140px 20px;
    color: #fff;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    color: #fff;
    text-align: center;
    padding: 80px 50px;
}
.feature-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}

/* How It Works */
.how-it-works {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 80px 50px;
    text-align: center;
    color: #fff;
}
.steps {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
}
.step span {
    display: inline-block;
    background: #38bdf8;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    text-align: center;
    padding: 80px 50px;
    color: #fff;
}
.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
}
.pricing-card ul {
    text-align: left;
    margin: 20px 0;
}
.pricing-card li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: rgba(15, 23, 42, 0.9);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
