.vof-services {
    padding: 120px 0;
    background: var(--surface);
    position: relative;
}

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

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

.vof-services__intro {
    color: var(--muted);
    margin-bottom: 56px;
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.7;
    margin-top: -16px;
}

.vof-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vof-services__card {
    background: var(--bg);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.vof-services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    border-color: var(--accent);
}

.vof-services__card::after {
    content: '';
    position: absolute;
    right: -21px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--accent);
    opacity: 0.15;
}

.vof-services__card:nth-child(3)::after,
.vof-services__card:nth-child(6)::after { display: none; }

.vof-services__num {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.vof-services__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
}

.vof-services__card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

.vof-services__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .vof-services__grid { grid-template-columns: repeat(2, 1fr); }
    .vof-services__card::after { display: none; }
}

@media (max-width: 768px) {
    .vof-services { padding: 80px 0; }
    .vof-services__grid { grid-template-columns: 1fr; }
    .vof-services__footer { justify-content: flex-start; }
}
