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

:root {
    --primary: #157cd1;
    --primary-dark: #0d5ba8;
    --bg: #f3f4f6;
    --surface: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top left, #dbeafe 0, transparent 55%),
                radial-gradient(circle at bottom right, #e0f2fe 0, transparent 55%),
                #eef2ff;
    color: var(--text-main);
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-nav {
    padding: 18px 24px 0;
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 32px;
    height: 32px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 15px;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    background: #0f172a;
    color: #f9fafb;
    text-decoration: none;
}

.hero-section {
    padding: 32px 24px 40px;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-copy {
    max-width: 560px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-cash-image {
    margin-top: 22px;
    width: 100%;
    max-width: 280px;
    border-radius: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.hero-subtitle {
    margin-top: 16px;
    font-size: 17px;
    color: var(--text-muted);
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-primary {
    padding: 13px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.hero-secondary {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.hero-meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.hero-illustration {
    width: 100%;
    display: block;
}

.hero-card-body {
    padding: 18px 20px 20px;
}

.hero-card-body h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-card-body ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-card-body li + li {
    margin-top: 4px;
}

.card-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    background: #0f172a;
    color: #f9fafb;
    text-decoration: none;
}

.steps-section {
    padding: 8px 24px 40px;
}

.steps-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.steps-inner h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 16px 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(21, 124, 209, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}

.step-card h3 {
    margin-top: 10px;
    font-size: 15px;
}

.step-card p {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.site-footer {
    margin-top: auto;
    padding: 12px 24px 20px;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nav-inner {
        border-radius: 18px;
    }

    .hero-section {
        padding: 24px 16px 32px;
    }

    .hero-title {
        font-size: 32px;
    }

    .steps-section {
        padding: 0 16px 32px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 6px;
    }
}