/* ============================================
   LEGAL PAGES - PROFESSIONAL DESIGN
   ============================================ */

/* Legal Hero Section */
.legal-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 32px 80px;
    background: linear-gradient(135deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 100%
    );
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 40% 50%,
        rgba(124, 58, 237, 0.12) 0%,
        transparent 50%
    );
}

.legal-hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.legal-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.legal-icon i {
    font-size: 48px;
    color: white;
}

.legal-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.legal-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 80px 32px 120px;
    background: var(--bg-primary);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.legal-section ul li::before {
    content: "•";
    color: var(--accent);
    font-size: 20px;
    position: absolute;
    left: 8px;
    top: -2px;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.legal-section a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Info Box */
.info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 16px;
}

.info-box p {
    margin-bottom: 0;
}

/* Legal Update */
.legal-update {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-top: 40px;
}

.legal-update p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        min-height: 40vh;
        padding: 120px 24px 60px;
    }

    .legal-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .legal-icon i {
        font-size: 40px;
    }

    .legal-content {
        padding: 60px 24px 80px;
    }

    .legal-section {
        padding: 28px 20px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 20px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 15px;
    }

    .info-box {
        padding: 20px;
    }
}
