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

.vof-products-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-products-hero .container {
    position: relative;
    z-index: 1;
}

.vof-products-hero__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.vof-products-hero__header .label-caps {
    display: block;
    text-align: center;
}

.vof-products-hero__header h1 {
    margin-bottom: 16px;
}

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

.vof-products-hero__stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.vof-products-hero__stat {
    flex: 1;
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vof-products-hero__stat:last-child {
    border-right: none;
}

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

.vof-products-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: 768px) {
    .vof-products-hero {
        padding: 60px 0 48px;
        border-radius: 0 0 32px 32px;
    }
    .vof-products-hero__stats {
        flex-wrap: wrap;
    }
    .vof-products-hero__stat {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--border-light);
    }
}
