/* Legal documents (privacy, terms, cookies, agreement) */
.pv-body { padding: 2.5rem 0 4rem; }
.pv-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .pv-layout { grid-template-columns: 1fr; }
}

.pv-doc {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow);
}
@media (max-width: 600px) {
    .pv-doc { padding: 1.5rem 1.25rem; }
}

.pv-meta {
    display: flex; flex-wrap: wrap; gap: .75rem 1.25rem;
    padding-bottom: 1.25rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
    font-size: .82rem; color: var(--muted);
}
.pv-meta span { display: flex; align-items: center; gap: .35rem; }

.pv-lead {
    font-size: .95rem; color: var(--muted); line-height: 1.75;
    margin-bottom: 2rem;
}

.pv-section {
    margin-bottom: 2rem;
    scroll-margin-top: 6rem;
}
.pv-section:last-child { margin-bottom: 0; }

.pv-section h2 {
    font-size: 1.05rem; font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
    padding-top: .25rem;
}
.pv-section h3 {
    font-size: .92rem; font-weight: 700;
    margin: 1rem 0 .45rem;
}
.pv-section p {
    font-size: .9rem; color: var(--muted);
    line-height: 1.75; margin-bottom: .75rem;
}
.pv-section p:last-child { margin-bottom: 0; }
.pv-section ul, .pv-section ol {
    margin: 0 0 .85rem; padding-left: 1.35rem;
    font-size: .9rem; color: var(--muted); line-height: 1.7;
}
.pv-section li { margin-bottom: .35rem; }
.pv-section a { color: var(--accent); }

.pv-table-wrap {
    overflow-x: auto; margin: 1rem 0;
    border: 1px solid var(--line); border-radius: var(--radius);
}
.pv-table {
    width: 100%; border-collapse: collapse;
    font-size: .84rem;
}
.pv-table th, .pv-table td {
    padding: .75rem 1rem; text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.pv-table th {
    background: var(--surface-2);
    font-weight: 700; color: var(--text);
    white-space: nowrap;
}
.pv-table td { color: var(--muted); }
.pv-table tr:last-child td { border-bottom: none; }

.pv-note {
    padding: 1rem 1.15rem;
    background: var(--accent-soft);
    border: 1px solid rgba(206,254,36,.2);
    border-radius: var(--radius);
    font-size: .86rem; color: var(--steel);
    line-height: 1.65; margin-top: 1rem;
}

.pv-sidebar { position: sticky; top: 5.5rem; }
@media (max-width: 1024px) { .pv-sidebar { position: static; order: -1; } }

.pv-toc {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}
.pv-toc h3 {
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--accent); margin-bottom: .85rem;
}
.pv-toc nav {
    display: flex; flex-direction: column; gap: .35rem;
}
.pv-toc a {
    font-size: .82rem; color: var(--muted);
    text-decoration: none; line-height: 1.45;
    padding: .2rem 0;
    transition: color .2s;
}
.pv-toc a:hover { color: var(--accent); }

.pv-side-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow);
}
.pv-side-card h3 {
    font-size: .92rem; font-weight: 800; margin-bottom: .65rem;
}
.pv-side-links {
    display: flex; flex-direction: column; gap: .4rem;
}
.pv-side-links a {
    font-size: .86rem; color: var(--muted); text-decoration: none;
}
.pv-side-links a:hover { color: var(--accent); }

.pv-contact {
    display: inline-flex; align-items: center; gap: .5rem;
    margin-top: .5rem; color: var(--accent);
    font-weight: 600; font-size: .9rem; text-decoration: none;
}
.pv-contact:hover { text-decoration: underline; }
