.vof-insights-hero {
    padding: 80px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 48px 48px;
}

.vof-insights-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.vof-insights-hero .container { position: relative; z-index: 1; }

.vof-insights-hero__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.vof-insights-hero__text { max-width: 560px; }

.vof-insights-hero__text h1 { margin-bottom: 16px; }

.vof-insights-hero__text p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.vof-insights-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg);
    overflow: hidden;
    flex-shrink: 0;
    min-width: 240px;
}

.vof-insights-hero__stat {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vof-insights-hero__stat:last-child { border-bottom: none; }

.vof-insights-hero__stat-num {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.vof-insights-hero__stat-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .vof-insights-hero__inner { gap: 40px; }
    .vof-insights-hero__stats { min-width: 200px; }
}

@media (max-width: 768px) {
    .vof-insights-hero {
        padding: 60px 0;
        border-radius: 0 0 32px 32px;
    }
    .vof-insights-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .vof-insights-hero__stats {
        width: 100%;
        flex-direction: row;
        min-width: auto;
    }
    .vof-insights-hero__stat {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid var(--border-light);
        padding: 16px 20px;
    }
    .vof-insights-hero__stat:last-child { border-right: none; }
}
