.modern-landing-page {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.modern-landing-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 45%, #0f766e 100%);
    color: white;
    padding: 88px 0 80px;
}

.modern-landing-hero .container {
    max-width: 1100px;
}

.modern-landing-hero .eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #e2f7ff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
    margin-bottom: 16px;
}

.modern-landing-hero h1 {
    font-size: clamp(2.1rem, 3.4vw, 3rem);
    line-height: 1.1;
    margin: 0 0 14px;
    max-width: 760px;
}

.modern-landing-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    max-width: 760px;
    margin: 0;
}

.modern-landing-section {
    padding: 72px 0;
}

.modern-landing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.modern-landing-card {
    background: white;
    border: 1px solid #e5eef8;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.modern-landing-card h2,
.modern-landing-card h3 {
    margin-top: 0;
    color: #0f172a;
}

.modern-landing-card p,
.modern-landing-card li {
    color: #475569;
    line-height: 1.7;
}

.modern-landing-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.modern-landing-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.modern-landing-list li::before {
    content: '✓';
    color: #0f766e;
    font-weight: 700;
}

.modern-landing-cta {
    padding: 0 0 88px;
}

.modern-landing-cta-card {
    background: linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
    color: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.modern-landing-cta-card h2 {
    margin: 0 0 8px;
    color: white;
}

.modern-landing-cta-card p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.modern-landing-inline-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.modern-landing-inline-list div {
    padding: 14px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e5eef8;
}

.modern-landing-inline-list strong {
    display: block;
    color: #0f172a;
    margin-bottom: 4px;
}

.modern-landing-inline-list span {
    color: #475569;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .modern-landing-grid,
    .modern-landing-inline-list {
        grid-template-columns: 1fr;
    }

    .modern-landing-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
