/* ===== HERO LEGAL ===== */
.hero-legal {
    padding: 100px 0 80px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-legal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 40% 50%, rgba(79, 143, 255, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse 40% 50% at 80% 70%, rgba(139, 92, 246, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-legal > .container {
    position: relative;
    z-index: 1;
}

.hero-legal__badge {
    display: inline-block;
    background: rgba(79, 143, 255, 0.15);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(79, 143, 255, 0.25);
}

.hero-legal h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-legal h1 span {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-legal p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== LEGAL CONTENT ===== */
.section--legal {
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.section--legal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 10% 30%, rgba(79, 143, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-block {
    margin-bottom: 48px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(79, 143, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-block h2 i {
    color: var(--primary);
    font-size: 1.1rem;
}

.legal-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-block ul {
    list-style: none;
    margin-bottom: 16px;
}

.legal-block ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 6px;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.legal-block strong {
    color: var(--text);
    font-weight: 600;
}

.legal-block a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.legal-info-box {
    background: rgba(79, 143, 255, 0.06);
    border: 1px solid rgba(79, 143, 255, 0.15);
    border-radius: calc(var(--radius) + 4px);
    padding: 24px 28px;
    margin-bottom: 16px;
}

.legal-info-box p {
    margin-bottom: 6px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-update {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-legal {
        padding: 60px 0;
    }

    .legal-block h2 {
        font-size: 1.2rem;
    }
}
