/* Institutional Legal Styles */
.legal-page {
    background: #0b0e11;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.legal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.legal-container {
    width: 100%;
    max-width: 800px;
    padding: 60px 24px;
    box-sizing: border-box;
}

.legal-header-nav, .legal-footer-nav {
    width: 100%;
    max-width: 800px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.main-header {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(11, 14, 17, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}

.legal-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.legal-header-titles h1 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
    color: #fff;
}

.legal-header-titles p {
    color: var(--text-secondary);
    font-size: 0.65rem;
    letter-spacing: 0.3px;
    text-transform: none;
}

.btn-download-doc {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-download-doc:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.legal-section {
    margin-bottom: 30px;
    background: #0f1216;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.legal-section h2 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 2px solid var(--primary-accent);
    padding-left: 12px;
}

/* Document Vibe - No Icons for specific pages */
.no-icons .legal-section h2 {
    border-left: none;
    padding-left: 0;
    letter-spacing: 0.2px;
    font-size: 0.95rem;
}

.no-icons .legal-content ul li::before {
    content: '-';
    font-family: inherit;
    color: var(--text-secondary);
}

.legal-content p {
    margin-bottom: 15px;
    color: #999;
    font-size: 0.95rem;
    text-align: justify;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.legal-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #ccc;
}

.legal-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-size: 0.8rem;
    top: 4px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: #0f1216;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    border-color: var(--primary-accent);
    background: rgba(187,235,1,0.02);
}

.contact-card i {
    font-size: 1.2rem;
    color: var(--primary-accent);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.contact-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.faq-q {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.faq-a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Master Bundle Hero */
.master-bundle-hero {
    margin-top: 80px;
    background: #0f1216;
    border: 1px solid rgba(187, 235, 1, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.master-bundle-hero h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
    border: none;
    padding: 0;
}

.master-bundle-hero p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 500px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.btn-master-download {
    background: var(--primary-accent);
    color: #000;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 280px;
    position: relative;
}

.btn-master-download:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-master-download:disabled {
    cursor: wait;
    opacity: 0.9;
}

.btn-master-download .btn-spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
    display: none;
}

.btn-master-download.loading .btn-text {
    animation: textWave 1.5s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes textWave {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes btnSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .master-bundle-hero { padding: 40px 20px; }
    .master-bundle-hero h2 { font-size: 1.4rem; }
}

