.insights-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px 20px 58px;
}

.insights-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 54%, #eef3ff 100%);
    border: 1px solid #dfe6ff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(0, 10, 61, 0.08);
}

.insights-hero-content {
    max-width: 780px;
}

.insights-kicker {
    margin: 0 0 10px;
    color: #3852c5;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.insights-hero h2 {
    color: #000A3D;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
    margin: 0 0 18px;
    max-width: 840px;
}

.insights-intro {
    color: #263157;
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 0;
}

.insights-hero-panel {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #000A3D;
    color: #ffffff;
    border-radius: 22px;
    padding: 26px;
}

.insights-panel-number {
    font-size: 4.6rem;
    line-height: 0.9;
    font-weight: 600;
}

.insights-panel-label {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-top: 12px;
    color: #dce4ff;
}

.insights-section {
    margin-top: 50px;
}

.insights-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dfe6ff;
}

.insights-section-heading h3 {
    color: #000A3D;
    font-size: clamp(1.65rem, 2.8vw, 2.45rem);
    line-height: 1.12;
    margin: 0;
    max-width: 820px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.insight-card {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    background: #ffffff;
    border: 1px solid #e2e7f7;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(0, 10, 61, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    border-color: #b9c6ff;
    box-shadow: 0 18px 42px rgba(0, 10, 61, 0.12);
}

.insight-card-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.insight-category,
.insight-prime {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.insight-category {
    color: #000A3D;
    background: #eef3ff;
    padding: 7px 10px;
}

.insight-prime {
    color: #3852c5;
    white-space: nowrap;
}

.insight-card h4 {
    color: #000A3D;
    font-size: 1.26rem;
    line-height: 1.28;
    margin: 0 0 12px;
}

.insight-card p {
    color: #343f63;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 22px;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    color: #ffffff;
    background: #000A3D;
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.insight-link:hover {
    background: #3852c5;
    transform: translateY(-1px);
}

@media (max-width: 1050px) {
    .insights-hero {
        flex-direction: column;
    }

    .insights-hero-panel {
        min-width: 0;
        width: auto;
    }

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

@media (max-width: 768px) {
    .insights-page {
        padding: 24px 14px 42px;
    }

    .insights-hero {
        padding: 24px;
        border-radius: 22px;
    }

    .insights-intro {
        font-size: 1rem;
    }

    .insights-panel-number {
        font-size: 3.4rem;
    }

    .insights-section {
        margin-top: 36px;
    }

    .insights-section-heading {
        display: block;
    }

    .insight-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .insight-card {
        min-height: auto;
        padding: 21px;
    }
}

@media (max-width: 420px) {
    .insights-hero {
        padding: 20px;
    }

    .insight-card-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .insight-link {
        width: 100%;
    }
}
