/* ==========================================================================
   PRIVACY POLICY - 1B$ FINTECH DESIGN
   ========================================================================== */

.fixed-global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: #09090b;
}

.global-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.global-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.95) 0%, rgba(8, 8, 12, 0.6) 40%, rgba(8, 8, 12, 0.4) 100%);
    z-index: 1;
}

.fixed-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


.privacy-wrapper {
    position: relative;
    z-index: 10;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-header .sx-label {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
}

.privacy-title {
    font-size: clamp(3.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.1;
}

.privacy-updated {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
}

/* Main Content Box */
.privacy-document {
    background: rgba(15, 18, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 4.5rem 5.5rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .privacy-document {
        padding: 3rem 2rem;
    }
}

.privacy-section {
    margin-bottom: 4.5rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 400;
}

.privacy-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
}

/* Lists */
.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.privacy-section ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.75rem;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #19E292;
    /* Strategy Green accent */
    box-shadow: 0 0 8px rgba(25, 226, 146, 0.5);
}

/* Highlight Box */
.privacy-highlight {
    background: linear-gradient(90deg, rgba(43, 176, 255, 0.08) 0%, rgba(43, 176, 255, 0.02) 100%);
    border-left: 3px solid #2BB0FF;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}

.privacy-highlight p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 1.1rem;
}

/* Data Layout inside document */
.privacy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem;
    border-radius: 12px;
    transition: background 0.3s;
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.privacy-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.privacy-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 650px) {
    .privacy-cards {
        grid-template-columns: 1fr;
    }
}

/* Contact Box */
.privacy-contact-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3.5rem;
}

.privacy-contact-box p {
    margin-bottom: 1rem;
}

.privacy-contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #000;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 1rem;
}

.privacy-contact-box a:hover {
    background: #e0e0e0;
}