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

.vof-cta__inner {
    background: var(--ink);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-xl);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

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

.vof-cta__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vof-cta__content .label-caps {
    color: rgba(255, 255, 255, 0.4);
}

.vof-cta__content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.vof-cta__content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.vof-cta__content .btn-primary {
    background: #fff;
    color: var(--ink);
    margin-bottom: 20px;
}

.vof-cta__content .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.vof-cta__email {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .vof-cta { padding: 80px 0; }
    .vof-cta__inner { padding: 72px 24px; border-radius: var(--radius-lg); }
    .vof-cta__content h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .vof-cta__inner { padding: 56px 20px; }
}
