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

.vof-products-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-products-hero .container {
    position: relative;
    z-index: 1;
}

.vof-products-hero__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.vof-products-hero__header .label-caps {
    display: block;
    text-align: center;
}

.vof-products-hero__header h1 {
    margin-bottom: 16px;
}

.vof-products-hero__header p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.vof-products-hero__stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.vof-products-hero__stat {
    flex: 1;
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vof-products-hero__stat:last-child {
    border-right: none;
}

.vof-products-hero__stat-num {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.vof-products-hero__stat-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .vof-products-hero {
        padding: 60px 0 48px;
        border-radius: 0 0 32px 32px;
    }
    .vof-products-hero__stats {
        flex-wrap: wrap;
    }
    .vof-products-hero__stat {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--border-light);
    }
}
.vof-products-grid {
    padding: 80px 0 120px;
    background: var(--bg);
}

/* Filters */
.vof-products-grid__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.vof-products-grid__filter {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--surface);
    border: 1.5px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.vof-products-grid__filter:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.vof-products-grid__filter.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Grid */
.vof-products-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vof-products-grid__card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.vof-products-grid__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.vof-products-grid__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface-alt);
}

.vof-products-grid__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s ease;
}

.vof-products-grid__card:hover .vof-products-grid__img img {
    transform: scale(1.04);
}

.vof-products-grid__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
}

.vof-products-grid__img-placeholder span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
}

.vof-products-grid__body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vof-products-grid__cat {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 12px;
}

.vof-products-grid__body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
    line-height: 1.3;
}

.vof-products-grid__body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.vof-products-grid__body h3 a:hover { color: var(--accent); }

.vof-products-grid__body p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.vof-products-grid__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.vof-products-grid__spec {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--ink-light);
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.vof-products-grid__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: gap 0.2s;
}

.vof-products-grid__link:hover { gap: 8px; }

.vof-products-grid__empty {
    text-align: center;
    color: var(--muted);
    font-size: 0.9375rem;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    .vof-products-grid__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vof-products-grid { padding: 56px 0 80px; }
    .vof-products-grid__grid { grid-template-columns: 1fr; }
}
.vof-products-faq {
    padding: 120px 0;
    background: var(--surface);
}

.vof-products-faq .label-caps {
    display: block;
    text-align: center;
}

.vof-products-faq h2 {
    text-align: center;
}

.vof-products-faq__list {
    max-width: 800px;
    margin: 8px auto 0;
}

.vof-products-faq__item {
    border-bottom: 1px solid var(--border);
}

.vof-products-faq__item:first-child {
    border-top: 1px solid var(--border);
}

.vof-products-faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--ink);
    text-align: left;
    transition: color 0.2s;
}

.vof-products-faq__question:hover { color: var(--accent); }
.vof-products-faq__question.is-open { color: var(--accent); }

.vof-products-faq__icon {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.2s;
    display: inline-block;
    line-height: 1;
}

.vof-products-faq__question.is-open .vof-products-faq__icon {
    color: var(--accent);
    transform: rotate(45deg);
}

.vof-products-faq__answer {
    padding-bottom: 20px;
}

.vof-products-faq__answer p {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vof-products-faq { padding: 80px 0; }
    .vof-products-faq__question { font-size: 0.9375rem; }
}
.vof-products-cta {
    padding: 0 0 120px;
    background: var(--bg);
}

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

.vof-products-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-products-cta__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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

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

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

.vof-products-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-products-cta { padding: 0 0 80px; }
    .vof-products-cta__inner { padding: 72px 24px; border-radius: var(--radius-lg); }
    .vof-products-cta__content h2 { font-size: 1.75rem; }
}

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