.page-shell {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.hero-section {
    margin-bottom: 1.75rem;
}

.hero-card {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2.25rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12) 0, transparent 32%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.10) 0, transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: auto -60px -60px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.08);
    filter: blur(12px);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-copy h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    text-wrap: balance;
}

.hero-copy p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #475569;
}

.section-block {
    margin-bottom: 1.5rem;
}

.content-grid {
    display: grid;
    gap: 1.5rem;
}

.content-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
    position: relative;
    height: 100%;
    padding: 1.75rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.18);
}

.content-card h2,
.content-card h3 {
    margin-top: 0;
    margin-bottom: 0.85rem;
    color: #0f172a;
    line-height: 1.22;
}

.content-card h2 {
    font-size: 1.32rem;
    font-weight: 700;
}

.content-card h3 {
    font-size: 1.14rem;
    font-weight: 700;
}

.content-card p {
    margin: 0 0 1rem;
    color: #475569;
    line-height: 1.75;
    font-size: 1rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.cta-section {
    margin-top: 2rem;
}

.cta-card {
    position: relative;
    overflow: hidden;
    padding: 2.75rem 1.5rem;
    text-align: center;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.22) 0, transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #1d4ed8 100%);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.16);
}

.cta-card h2 {
    margin: 0 0 0.85rem;
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-card p {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 50px;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.97rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #ffffff;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
    .content-grid.two-col,
    .content-grid.three-col {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 3rem 1.5rem;
        border-radius: 28px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding-top: 1.25rem;
        padding-bottom: 3rem;
    }

    .hero-section {
        margin-bottom: 1.25rem;
    }

    .hero-card {
        padding: 2.25rem 1rem;
        border-radius: 22px;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.06;
        margin-bottom: 0.85rem;
    }

    .hero-copy p,
    .content-card p,
    .cta-card p {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .content-card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .cta-card {
        padding: 2rem 1rem;
        border-radius: 22px;
    }

    .cta-card h2 {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-actions .btn {
        width: 100%;
        min-width: 0;
    }
}