.vof-comparison {
    padding: 120px 0;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-xl);
    margin: 0 40px;
}

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

.vof-comparison h2 {
    color: #fff;
    margin-bottom: 48px;
}

.vof-comparison__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vof-comparison__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.vof-comparison__table thead th {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vof-comparison__col-ours {
    color: var(--accent) !important;
}

.vof-comparison__table tbody td {
    padding: 20px 24px;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
    line-height: 1.5;
}

.vof-comparison__table tbody tr:last-child td {
    border-bottom: none;
}

.vof-comparison__table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.vof-comparison__feature {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem !important;
    font-weight: 500;
    width: 28%;
}

.vof-comparison__typical {
    color: rgba(255, 255, 255, 0.4);
    width: 36%;
}

.vof-comparison__ours {
    color: #fff;
    font-weight: 500;
    width: 36%;
}

@media (max-width: 1024px) {
    .vof-comparison { margin: 0 20px; }
}

@media (max-width: 768px) {
    .vof-comparison {
        margin: 0 16px;
        padding: 80px 16px;
        border-radius: var(--radius-lg);
    }

    .vof-comparison__wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .vof-comparison__wrap::after {
        content: '← Scroll →';
        display: block;
        text-align: center;
        font-family: var(--font-mono);
        font-size: 0.625rem;
        color: rgba(255,255,255,0.3);
        letter-spacing: 1px;
        margin-top: 12px;
    }

    .vof-comparison__table {
        min-width: 560px;
    }
}

