.vof-sixs-why {
    padding: 120px 0;
    background: var(--surface);
}

.vof-sixs-why__inner {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.vof-sixs-why__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(0, 87, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(0, 87, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vof-sixs-why__inner .label-caps {
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

.vof-sixs-why__inner h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

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

.vof-sixs-why__intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.vof-sixs-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.vof-sixs-why__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: background 0.3s, border-color 0.3s;
}

.vof-sixs-why__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
}

.vof-sixs-why__num {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: -0.05em;
    margin-bottom: 4px;
    display: block;
    line-height: 1;
}

.vof-sixs-why__card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.vof-sixs-why__card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .vof-sixs-why__inner { padding: 60px 40px; }
    .vof-sixs-why__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .vof-sixs-why { padding: 80px 0; }
    .vof-sixs-why__inner {
        padding: 56px 24px;
        border-radius: var(--radius-lg);
    }
    .vof-sixs-why__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .vof-sixs-why__num { font-size: 2.25rem; }
}
