/* ==========================================================================
   INSIGHTS SECTION — Light Primary Tint Theme
   ========================================================================== */

.insights-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #EFF4FF 0%, #FFFFFF 50%, #F0F6FF 100%);
    position: relative;
    overflow: hidden;
    color: #0A1E3D;
}

/* Grid: 2 columns */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Left: Illustration / Image ── */
.insights-illustration__wrapper {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

/* Soft primary glow behind image */
.insights-illustration__blob {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.12) 0%, rgba(0, 85, 255, 0.03) 60%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.insights-illustration__img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: none;
}

/* ── Right: Content ── */
.insights-content__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #0A1E3D;
    margin: 0 0 1.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.insights-content__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #0055FF;
    border-radius: 2px;
}

.insights-content__text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.75;
    margin: 0 0 1.25rem;
    text-align: justify;
}

.insights-content__text:last-of-type {
    margin-bottom: 2rem;
}

/* Stats Row */
.insights-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.insights-stat {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    background: #0055FF;
    border: 1px solid #0055FF;
    border-radius: 14px;
    padding: 1.1rem 1.75rem;
    min-width: 190px;
    position: relative;
    box-shadow: none;
}

.insights-stat:hover {
    transform: none;
    box-shadow: none;
}

.insights-stat__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.insights-stat__icon svg {
    width: 100%;
    height: 100%;
}

.insights-stat__info {
    display: flex;
    flex-direction: column;
}

.insights-stat__number {
    font-size: 1.55rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.insights-stat__label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

/* Decorative Corner Shapes */
.insights-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.insights-deco--1 {
    width: 90px;
    height: 90px;
    top: 2rem;
    right: 3rem;
    border: 2px solid rgba(0, 85, 255, 0.1);
    border-radius: 12px;
    transform: rotate(15deg);
}

.insights-deco--2 {
    width: 55px;
    height: 55px;
    top: 5rem;
    right: 6.5rem;
    border: 2px solid rgba(0, 85, 255, 0.06);
    border-radius: 8px;
    transform: rotate(35deg);
}

.insights-deco--3 {
    width: 250px;
    height: 250px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
    .insights-grid {
        gap: 2.5rem;
    }

    .insights-illustration__wrapper {
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .insights-section {
        padding: 4rem 0;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insights-illustration__wrapper {
        max-width: 280px;
    }

    .insights-content__title {
        font-size: 1.75rem;
    }

    .insights-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .insights-stat {
        min-width: 0;
        width: 100%;
        padding: 0.85rem 0.75rem;
        gap: 0.6rem;
        border-radius: 12px;
    }

    .insights-stat__icon {
        width: 36px;
        height: 36px;
    }

    .insights-stat__number {
        font-size: 1.25rem;
    }

    .insights-stat__label {
        font-size: 0.6875rem;
    }

    .insights-deco--1,
    .insights-deco--2 {
        display: none;
    }
}
