:root {
    --navy: #0f2441;
    --navy-mid: #1e3a5f;
    --blue: #2563eb;
    --green: #10b981;
    --light-bg: #f1f5f9;
    --text-muted: #64748b;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #1e293b;
}

/* ── Navbar ── */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy) !important;
}

    .navbar-brand span {
        color: var(--blue);
    }

.btn-nav-login {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    border-radius: 8px;
    padding: .45rem 1.2rem;
}

    .btn-nav-login:hover {
        background: var(--navy);
        color: #fff;
    }

.btn-nav-signup {
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: .45rem 1.2rem;
    border: 2px solid var(--blue);
}

    .btn-nav-signup:hover {
        background: #1d4ed8;
        color: #fff;
    }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4080 100%);
    color: #fff;
    padding: 30px 0 30px;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.2;
    }

        .hero h1 span {
            color: #38bdf8;
        }

    .hero p.lead {
        color: #cbd5e1;
        font-size: 1.15rem;
        max-width: 500px;
    }

    .hero .btn-hero {
        background: var(--green);
        color: #fff;
        font-weight: 700;
        font-size: 1.05rem;
        padding: .8rem 2rem;
        border-radius: 10px;
        border: none;
    }

        .hero .btn-hero:hover {
            background: #059669;
            color: #fff;
        }

    .hero .btn-outline-hero {
        border: 2px solid rgba(255,255,255,.4);
        color: #fff;
        font-weight: 600;
        padding: .8rem 1.8rem;
        border-radius: 10px;
    }

        .hero .btn-outline-hero:hover {
            background: rgba(255,255,255,.1);
            color: #fff;
        }

/* Score Card Mock */
.score-card-mock {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    max-width: 340px;
    margin: 0 auto;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0% 72%, #e2e8f0 72% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.score-circle-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.score-label {
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.score-badge {
    background: #d1fae5;
    color: #065f46;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 20px;
}

/* ── Features ── */
.features {
    background: var(--light-bg);
    padding: 80px 0;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: box-shadow .2s;
}

    .feature-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,.08);
    }

/* ── Why Choose Us ── */
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

    .why-card:hover {
        box-shadow: 0 12px 40px rgba(0,0,0,.1);
        transform: translateY(-4px);
    }

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.25rem;
}

/* ── How It Works ── */
.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-connector {
    width: 2px;
    background: #e2e8f0;
    flex: 1;
    min-height: 40px;
    margin-left: 21px;
}

/* ── Pricing ── */
.pricing {
    padding: 80px 0;
}

.price-card {
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    padding: 2.5rem;
    height: 100%;
    transition: all .2s;
}

    .price-card.featured {
        border-color: var(--blue);
        background: var(--navy);
        color: #fff;
    }

        .price-card.featured .text-muted {
            color: #94a3b8 !important;
        }

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
}

.price-card .btn-price {
    background: var(--blue);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    padding: .8rem;
    border: none;
}

.price-card.featured .btn-price {
    background: var(--green);
}

.price-feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .6rem;
    font-size: .9rem;
}

    .price-feature i {
        color: var(--green);
    }

.price-card.featured .price-feature i {
    color: #6ee7b7;
}

/* ── Footer ── */
footer {
    background: var(--navy);
    color: #94a3b8;
    padding: 50px 0 70px;
}

    footer a {
        color: #94a3b8;
        text-decoration: none;
    }

        footer a:hover {
            color: #fff;
        }

.footer-brand {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
}

    .footer-brand span {
        color: #38bdf8;
    }
