
.homepage-body {
    background: linear-gradient(180deg, #eef4ff 0%, #f7f9fc 45%, #eef2f7 100%);
}

.homepage-shell {
    max-width: 1150px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.homepage-hero {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.10);
    margin-bottom: 36px;
    text-align: center;
}

.homepage-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

.homepage-hero h1 {
    font-size: 3rem;
    line-height: 1.05;
    color: #0f172a;
    margin-bottom: 10px;
}

.homepage-hero h2 {
    font-size: 1.35rem;
    color: #2563eb;
    margin-bottom: 18px;
    font-weight: 700;
}

.homepage-lead {
    font-size: 1.08rem;
    color: #475569;
    max-width: 760px;
    margin: 0 auto;
}

.homepage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.homepage-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.homepage-card-label {
    color: #2563eb;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.homepage-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.homepage-card p {
    color: #475569;
    margin-bottom: 18px;
}

.homepage-card-link {
    margin-top: auto;
    align-self: flex-start;
    text-decoration: none;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.homepage-card-link:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .homepage-shell {
        padding: 30px 14px 50px;
    }

    .homepage-hero {
        padding: 24px;
        border-radius: 18px;
    }

    .homepage-hero h1 {
        font-size: 2.2rem;
    }

    .homepage-hero h2 {
        font-size: 1.1rem;
    }

    .homepage-cards {
        grid-template-columns: 1fr;
    }
}