.vof-legal-hero {
    padding: 80px 0;
    background: var(--bg);
    text-align: center;
}

.vof-legal-hero__inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vof-legal-hero .label-caps {
    display: block;
    text-align: center;
}

.vof-legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 20px;
    text-align: center;
}

.vof-legal-hero__desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
    text-align: center;
    max-width: 560px;
}

.vof-legal-hero__updated {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
}

@media (max-width: 768px) {
    .vof-legal-hero { padding: 60px 0; }
    .vof-legal-hero h1 { font-size: 2rem; }
}
.vof-legal-contents {
    padding: 0 0 48px;
    background: var(--bg);
}

.vof-legal-contents__card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    max-width: 860px;
    margin: 0 auto;
}

.vof-legal-contents__card h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.vof-legal-contents__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 40px;
}

.vof-legal-contents__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.2s;
}

.vof-legal-contents__item:hover .vof-legal-contents__label {
    color: var(--accent);
}

.vof-legal-contents__num {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--muted);
    flex-shrink: 0;
    min-width: 28px;
}

.vof-legal-contents__label {
    font-size: 0.875rem;
    color: var(--ink-light);
    transition: color 0.2s;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .vof-legal-contents__card { padding: 28px 24px; }
    .vof-legal-contents__grid { grid-template-columns: 1fr; }
}
.vof-legal-section {
    padding: 48px 0;
    background: var(--bg);
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.vof-legal-section__inner {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.vof-legal-section:last-of-type .vof-legal-section__inner {
    border-bottom: none;
}

.vof-legal-section__heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
}

.vof-legal-section__num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    flex-shrink: 0;
}

.vof-legal-section__heading h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.vof-legal-section__content p {
    font-size: 0.9375rem;
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vof-legal-section__content p:last-child {
    margin-bottom: 0;
}

.vof-legal-section__content ul,
.vof-legal-section__content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.vof-legal-section__content ul { list-style: disc; }
.vof-legal-section__content ol { list-style: decimal; }

.vof-legal-section__content li {
    font-size: 0.9375rem;
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: 8px;
}

.vof-legal-section__content a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s;
}

.vof-legal-section__content a:hover { color: var(--accent-hover); }

.vof-legal-section__content strong {
    font-weight: 600;
    color: var(--ink);
}

/* 子章节 */
.vof-legal-section__sub {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.vof-legal-section__sub h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

/* 表格 */
.vof-legal-section__table-wrap {
    margin-top: 24px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.vof-legal-section__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.vof-legal-section__table th {
    background: var(--surface-alt);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-light);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.vof-legal-section__table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--ink-light);
    vertical-align: top;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .vof-legal-section { padding: 36px 0; }
    .vof-legal-section__inner { padding-bottom: 36px; }
    .vof-legal-section__heading h2 { font-size: 1.125rem; }
}
