@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #050510;
    color: #f5f5ff;
    overflow-x: hidden;
}

/* ---------- NAVBAR ---------- */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a2135;
}

.nav-inner {
    max-width: 1200px;
    padding: 16px 24px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e8f9ff;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #cbd8ff;
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #ffffff;
}

.cta-nav {
    padding: 10px 20px;
    background: linear-gradient(120deg, #00eaff, #007bff);
    color: #020314;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 0 20px #00eaff55;
    transition: 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    background: linear-gradient(120deg, #00c0ff, #005eff);
    box-shadow: 0 0 30px #00eaffaa;
}

/* ---------- HERO SECTION ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 40px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background + neon layers */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, #00eaff33, transparent 55%),
        radial-gradient(circle at bottom right, #007bff44, transparent 55%),
        url("assets/bg.jpg") center/cover no-repeat;
    opacity: 0.32;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 5, 16, 0.9), rgba(5, 5, 16, 0.98));
    z-index: -1;
}

/* Hero layout */

.hero-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
    justify-content: space-between;
}

/* Left side */

.hero-content {
    flex: 1.2;
}

.hero-pill {
    display: inline-flex;
    padding: 6px 14px;
    background: #050924;
    border-radius: 999px;
    border: 1px solid #00eaff77;
    color: #99eaff;
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    text-shadow: 0 0 22px #00eaff66;
}

.hero h1 span {
    color: #00eaff;
}

.hero-sub {
    max-width: 520px;
    color: #c7d3ff;
    line-height: 1.6;
    margin-bottom: 26px;
}

/* CTA Main */

.cta-main {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(120deg, #00eaff, #00b8ff);
    color: #020314;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 0 26px #00eaff88;
    transition: 0.3s;
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px #00eaffcc;
}

.cta-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #a2b7ff;
}

/* Right card */

.hero-side {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-card {
    background: rgba(8, 12, 40, 0.95);
    padding: 26px;
    border-radius: 18px;
    border: 1px solid #1f3159;
    box-shadow: 0 0 40px #00000099;
    max-width: 360px;
}

.hero-card h3 {
    margin-bottom: 12px;
}

.hero-card ul {
    list-style: none;
    margin-bottom: 14px;
}

.hero-card ul li {
    margin-bottom: 10px;
    color: #d9e6ff;
    font-size: 0.95rem;
}

.cta-side {
    display: inline-block;
    padding: 10px 18px;
    background: #00eaff22;
    border-radius: 999px;
    border: 1px solid #00eaff44;
    color: #7feaff;
    text-decoration: none;
    font-size: 0.92rem;
    transition: 0.3s;
}

.cta-side:hover {
    background: #00eaff33;
    border-color: #00eaff99;
}

/* ---------- HOW IT WORKS ---------- */

.how-section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 20px;
    text-align: center;
}

.how-sub {
    color: #b8c6ff;
    max-width: 600px;
    margin: 10px auto 30px;
}

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

.how-step {
    background: #0a0e26;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #1b2645;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00eaff22;
    border: 1px solid #00eaff88;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* ---------- BENEFITS ---------- */

.benefits-section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 20px;
}

.benefits-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.benefit-card {
    background: #0a0e26;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #1b2645;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #00eaffaa;
    box-shadow: 0 14px 34px #00000099;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials-section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 20px;
    text-align: center;
}

.testimonials-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.testimonial-card {
    background: #0a0e26;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #1d2b4a;
}

.quote {
    margin-bottom: 10px;
}

.name {
    color: #9bb3ff;
    font-size: 0.9rem;
}

/* ---------- FAQ ---------- */

.faq-section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px 100px;
    text-align: center;
}

.faq-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.faq-item {
    background: #0a0e26;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #1b2645;
}

.faq-cta {
    margin-top: 30px;
}

/* CTA button */
.cta-big {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(120deg, #00eaff, #007bff);
    color: #020314;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 0 30px #00aaff99;
    margin-top: 10px;
    transition: 0.3s;
}

.cta-big:hover {
    transform: translateY(-3px);
}

/* ---------- FOOTER ---------- */

footer {
    border-top: 1px solid #20263c;
    padding: 30px 20px;
    text-align: center;
    color: #94a0c9;
    font-size: 0.85rem;
}

/* ---------- SCROLL REVEAL ---------- */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {
    .logo img {
        height: 60px;
    }

    .cta-nav {
        display: none;
    }

    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
