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

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

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

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

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

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

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

.vof-about-hero__visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

.vof-about-hero__placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(145deg, #1a1d23 0%, #2a2d35 50%, #3a3d45 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vof-about-hero__placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.vof-about-hero__placeholder span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}

.vof-about-hero__badge {
    position: absolute;
    bottom: 60px;
    right: -10px;
    background: var(--ink);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

@media (max-width: 768px) {
    .vof-about-hero {
        padding: 60px 0 0;
        border-radius: 0 0 32px 32px;
    }
    .vof-about-hero .container {
        flex-direction: column;
        gap: 40px;
    }
    .vof-about-hero__content {
        padding-bottom: 0;
        text-align: center;
    }
    .vof-about-hero__desc { margin-left: auto; margin-right: auto; }
    .vof-about-hero__cta { justify-content: center; }
    .vof-about-hero__visual { min-height: auto; width: 100%; padding-bottom: 48px; }
    .vof-about-hero__badge { right: 10px; bottom: 60px; }
}

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