/* ===================================
   LEGAL PAGES - ORBIS.EXMACHINA
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

/* ===================================
   LEGAL HERO
   =================================== */

.legal-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d12 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 68, 75, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.legal-hero-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.legal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 8px;
    color: #3B444B;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.legal-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
    padding: 4rem 2rem 8rem;
    background: #0a0a0a;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.legal-section:last-child {
    border-bottom: none;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: #3B444B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subsection-heading {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 1rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.legal-list li::before {
    content: '●';
    position: absolute;
    left: 0.5rem;
    color: #3B444B;
    font-size: 0.8rem;
}

.legal-list li strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: rgba(59, 68, 75, 0.1);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: #3B444B;
    font-size: 1.2rem;
    min-width: 24px;
}

.contact-info a {
    color: #3B444B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .legal-hero {
        min-height: 40vh;
        padding: 6rem 1.5rem 3rem;
    }
    
    .legal-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .legal-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .legal-content {
        padding: 3rem 1.5rem 6rem;
    }
    
    .legal-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .subsection-heading {
        font-size: 1.1rem;
    }
    
    .legal-section p,
    .legal-list li {
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .section-heading {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .legal-list li {
        padding-left: 1.5rem;
    }
}