/* ==========================================================================
   JS VISION 3PS² — PRIVACY POLICY PAGE
   Loads AFTER style.css and reuses its tokens.
   ========================================================================== */

#privacy-hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    background: linear-gradient(135deg, rgba(26, 54, 93, 0.96), rgba(32, 57, 150, 0.88)) !important;

    color: var(--white);
    padding: 130px 20px 80px !important;
    margin-top: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#privacy-hero .hero-content {
    max-width: 720px !important;
    margin: 0 auto !important;
}

#privacy-hero h1 {
    font-size: 34px !important;
    color: var(--white) !important;
    margin: 0 0 10px 0 !important;
    font-weight: 700 !important;
}

#privacy-hero p {
    font-size: 16px !important;
    color: #cbd5e0 !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
}

/* ==========================================================================
   DOCUMENT SHELL
   ========================================================================== */
.pp-page {
    max-width: 840px;
    margin: 0 auto;
    padding: 50px 20px 70px;
    box-sizing: border-box;
}

.pp-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.07);
    padding: 50px 55px;
    box-sizing: border-box;
}

.pp-updated {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.pp-lead {
    font-size: 16.5px;
    color: var(--dark);
    line-height: 1.8;
    padding-bottom: 26px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.pp-section {
    margin-top: 36px;
}

.pp-section h2 {
    font-size: 19px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.pp-section h3 {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 22px 0 8px;
}

.pp-section p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

.pp-section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pp-section a:hover {
    color: var(--primary);
}

.pp-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}

.pp-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
}

.pp-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.pp-list li strong {
    color: var(--dark);
}

.pp-contact-box {
    background: #f7fafc;
    border-left: 3px solid var(--primary-light);
    border-radius: 0 6px 6px 0;
    padding: 18px 22px;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.9;
    margin: 6px 0 18px;
}

.pp-note {
    background: rgba(246, 173, 48, 0.09);
    border: 1px solid rgba(246, 173, 48, 0.4);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 14px !important;
    color: #744210 !important;
    margin-top: 18px !important;
}

/* --- Tables --- */
.pp-table-wrap {
    overflow-x: auto;
    margin: 6px 0 18px;
    -webkit-overflow-scrolling: touch;
}

.pp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 460px;
}

.pp-table th {
    text-align: left;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 12px 16px;
}

.pp-table th:first-child {
    border-radius: 6px 0 0 0;
}

.pp-table th:last-child {
    border-radius: 0 6px 0 0;
}

.pp-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--gray);
    line-height: 1.65;
    vertical-align: top;
}

.pp-table tbody tr:nth-child(even) {
    background: rgba(247, 250, 252, 0.7);
}

.pp-table code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: #edf2f7;
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--primary);
}

.pp-btn {
    display: inline-block;
    padding: 12px 26px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius, 8px);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
    margin-top: 6px;
}

.pp-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    #privacy-hero {
        padding: 105px 18px 60px !important;
    }

    #privacy-hero h1 {
        font-size: 26px !important;
    }

    .pp-page {
        padding: 30px 14px 50px;
    }

    .pp-card {
        padding: 30px 22px;
    }

    .pp-lead {
        font-size: 15px;
    }

    .pp-section h2 {
        font-size: 17px;
    }
}
