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

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

.vof-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

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

.vof-process__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

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

.vof-process__card:last-child::before { display: none; }

.vof-process__num {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

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

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

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

@media (max-width: 768px) {
    .vof-process { padding: 80px 0; }
    .vof-process__grid { grid-template-columns: 1fr; }
}
