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

.vof-sixs-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-sixs-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.vof-sixs-hero .label-caps {
    display: block;
    text-align: center;
}

.vof-sixs-hero h1 {
    text-align: center;
}

.vof-sixs-hero__subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 16px;
    text-align: center;
}

.vof-sixs-hero__desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vof-sixs-hero__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 768px) {
    .vof-sixs-hero {
        padding: 60px 0 60px;
        border-radius: 0 0 32px 32px;
    }
    .vof-sixs-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }
    .vof-sixs-hero__cta .btn-primary,
    .vof-sixs-hero__cta .btn-secondary {
        text-align: center;
    }
}
