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

.vof-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-hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.vof-hero__content {
    flex: 1;
    padding-bottom: 80px;
}

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

.vof-hero__desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
}

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

.vof-hero__visual {
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vof-journey {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vof-journey__step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: 220px;
    opacity: 0;
    animation: vofSlideIn 0.5s ease forwards;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.vof-journey__step:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 87, 255, 0.08);
}

.vof-journey__step:nth-child(1)  { animation-delay: 0.10s; }
.vof-journey__step:nth-child(3)  { animation-delay: 0.25s; }
.vof-journey__step:nth-child(5)  { animation-delay: 0.40s; }
.vof-journey__step:nth-child(7)  { animation-delay: 0.55s; }
.vof-journey__step:nth-child(9)  { animation-delay: 0.70s; }
.vof-journey__step:nth-child(11) { animation-delay: 0.85s; }

.vof-journey__num {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.vof-journey__name {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
}

.vof-journey__line {
    width: 2px;
    height: 20px;
    background: var(--accent);
    margin-left: 28px;
    opacity: 0.2;
}

@keyframes vofSlideIn {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
    .vof-hero .container { gap: 40px; }
    .vof-journey__step { width: 190px; }
}

@media (max-width: 768px) {
    .vof-hero { padding: 60px 0 0; border-radius: 0 0 32px 32px; }
    .vof-hero .container { flex-direction: column; gap: 48px; }
    .vof-hero__content { padding-bottom: 0; }
    .vof-hero__visual { width: 100%; min-height: auto; justify-content: flex-start; padding-bottom: 48px; }
}

@media (max-width: 480px) {
    .vof-hero__cta { flex-direction: column; align-items: stretch; }
    .vof-hero__cta .btn-primary,
    .vof-hero__cta .btn-secondary { text-align: center; }
}
