.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }

.lp { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

.lp h1,.lp h2,.lp h3,.lp h4 { line-height: 1.25; font-weight: 700; margin: 0; }

.lp p { line-height: 1.8; margin: 0 0 16px; color: #374151; }

.lp a { color: #ff497c; text-decoration: none; transition: color .2s; }

.lp a:hover { color: #e0345f; text-decoration: underline; }

.lp ul { margin: 0 0 16px; padding-left: 22px; }

.lp li { line-height: 1.8; color: #374151; margin-bottom: 6px; }

.lp {
    --pink: #ff497c; --pink-dark: #e0345f; --pink-light: #fff0f4;
    --dark: #0f0f1a; --dark2: #1c1c30;
    --text: #2d2d3a; --muted: #6b7280; --border: #e5e7eb;
    --bg: #f9fafb; --white: #ffffff; --radius: 12px;
}

.lp .wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.lp .page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #1e0a30 100%);
    padding: 72px 0 64px; position: relative; overflow: hidden; text-align: center;
}

.lp .page-hero::before {
    content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,73,124,.12) 0%, transparent 70%);
    pointer-events: none;
}

.lp .breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; }

.lp .breadcrumb a    { font-size: 13px; color: var(--dark2); transition: color .2s; text-decoration: none; }

.lp .breadcrumb a:hover { color: var(--pink); text-decoration: none; }

.lp .breadcrumb span { font-size: 13px; color: var(--pink); }

.lp .page-hero h1 { font-size: clamp(28px,4vw,44px); color: #fff; font-weight: 800; margin-bottom: 12px; position: relative; }

.lp .page-hero .hero-meta { font-size: 14px; color: rgba(255,255,255,.5); position: relative; }

.lp .page-hero .hero-meta strong { color: rgba(255,255,255,.8); }

.lp .legal-body { padding: 72px 0 96px; background: var(--bg); }

.lp .legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }

.lp .toc {
    position: sticky; top: 100px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.lp .toc-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }

.lp .toc ul { list-style: none; padding: 0; margin: 0; }

.lp .toc li { margin-bottom: 2px; }

.lp .toc a { font-size: 13px; color: var(--muted); text-decoration: none; display: block; padding: 5px 8px; border-radius: 6px; transition: background .2s, color .2s; line-height: 1.45; }

.lp .toc a:hover { background: var(--pink-light); color: var(--pink); text-decoration: none; }

.lp .legal-section { margin-bottom: 48px; scroll-margin-top: 110px; }

.lp .legal-section h2 {
    font-size: 20px; color: var(--dark); margin-bottom: 16px;
    padding-bottom: 10px; border-bottom: 2px solid var(--pink-light);
    display: flex; align-items: center; gap: 10px;
}

.lp .legal-section h2::before {
    content: ''; display: inline-block; width: 4px; height: 20px;
    background: var(--pink); border-radius: 2px; flex-shrink: 0;
}

.lp .updated-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pink-light); border: 1px solid rgba(255,73,124,.2);
    border-radius: 40px; padding: 6px 16px; font-size: 13px;
    color: var(--pink); font-weight: 600; margin-bottom: 36px;
}

@media(max-width:768px){
    .lp .legal-grid { grid-template-columns: 1fr; }
    .lp .toc { position: static; }
}
