:root {
    --navy: #0f2557;
    --blue: #2563EB;
    --dark: #1f2937;
    --light: #f7f9fc;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

header,
section {
    padding: 4rem 1.5rem;
}

.hero {
    background: linear-gradient(135deg, #0f2557 0%, #122a66 60%, #0f2557 100%);
    color: var(--white);
    padding-bottom: 5rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

.logo {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--white);
}

.hero-content {
    max-width: 720px;
    margin: 4rem auto 0;
    text-align: left;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.subheadline {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--blue);
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background-color: var(--blue);
    color: var(--white);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn:hover {
    background-color: #1d4fd8;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

.price-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

main {
    background-color: var(--white);
}

.section {
    max-width: 1100px;
    margin: 0 auto;
}

.section-heading {
    text-align: left;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0.5rem 0 0;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.cards {
    display: grid;
    gap: 1.5rem;
}

.cards.three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    border: 1px solid #e3e8f4;
    border-radius: 16px;
    padding: 1.75rem;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(15, 37, 87, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 37, 87, 0.1);
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.how {
    background-color: var(--light);
    border-radius: 32px;
}

.steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.steps li {
    position: relative;
    padding-left: 3.5rem;
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1.75rem 1.75rem 4.25rem;
    box-shadow: 0 8px 24px rgba(15, 37, 87, 0.08);
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 1.5rem;
    top: 1.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.pricing {
    text-align: center;
}

.pricing-card {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 2.5rem;
    background-color: var(--navy);
    color: var(--white);
    box-shadow: 0 35px 60px rgba(15, 37, 87, 0.3);
}

.price {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
    line-height: 1.8;
}

.pricing-card li::before {
    content: '•';
    color: var(--blue);
    margin-right: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.faq-grid article {
    border: 1px solid #e3e8f4;
    border-radius: 16px;
    padding: 1.75rem;
    background-color: var(--white);
}

.footer {
    text-align: center;
    padding: 2rem 1rem 3rem;
    background-color: #0b1a3b;
    color: rgba(255, 255, 255, 0.85);
}

.footer a {
    color: var(--blue);
}

@media (min-width: 768px) {
    header,
    section {
        padding: 4.5rem 2.5rem;
    }

    .nav {
        padding: 1.5rem 2.5rem 0;
    }

    .hero-content {
        text-align: left;
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
    }

    .hero-cta .price-note {
        margin-left: 1.5rem;
    }
}
