/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* NAVBAR CLEAN + PREMIUM */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(14, 16, 26, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: #cfd3ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: #ffffff;
}

/* CTA */
.nav-cta {
    background: #0088cc;
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 7px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.25s ease;
}

.nav-cta:hover {
    background: #0073ad;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-link {
        display: none;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* HERO CLEAN STYLE */
.hero {
    background: radial-gradient(
        circle at top,
        #1c1f2e 0%,
        #0e101a 70%
    );
    color: #ffffff;
    padding: 110px 20px 90px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.badge {
    display: inline-block;
    background: rgba(0, 136, 204, 0.15);
    color: #4db8ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.1rem;
    color: #cfd3ff;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0088cc;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-primary:hover {
    background: #0073ad;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-stats div {
    text-align: center;
}

.hero-stats strong {
    font-size: 1.4rem;
    display: block;
}

.hero-stats span {
    font-size: 0.9rem;
    color: #aab0ff;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 25px;
    }
}

.btn-primary {
    background: #ff6c00;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 15px;
}

.feature-card {
    flex: 1;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* How it Works */
.how-it-works {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.step {
    flex: 1;
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    padding: 60px 20px;
    text-align: center;
}

.testimonial {
    background: #f5f5f5;
    padding: 18px;
    border-radius: 8px;
    margin: 10px 0;
}

/* Footer */
.footer {
    background: #0d0e16;
    color: #aaa;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
