/* Hero banner */
.privacy-hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #111135 50%, #0d1b2a 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}
.privacy-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 117, 252, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.privacy-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.privacy-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2575fc;
    background: rgba(37, 117, 252, 0.1);
    border: 1px solid rgba(37, 117, 252, 0.25);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 20px;
}
.privacy-hero .eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2575fc;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}
.privacy-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.privacy-hero h1 .accent {
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.privacy-hero .meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.privacy-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.privacy-hero .meta-item i {
    color: #2575fc;
    font-size: 14px;
}
.privacy-hero .meta-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
}

/* TOC Sticky Sidebar */
.privacy-toc {
    position: sticky;
    top: 100px;
}
.privacy-toc .toc-card {
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.privacy-toc .toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9aa3b5;
    margin-bottom: 14px;
    padding-left: 4px;
}
.privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.privacy-toc ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    padding: 7px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.45;
}
.privacy-toc ul li a:hover {
    color: #2575fc;
    background: rgba(37, 117, 252, 0.06);
    border-left-color: #2575fc;
}
.privacy-toc ul li a.active {
    color: #2575fc;
    background: rgba(37, 117, 252, 0.08);
    border-left-color: #2575fc;
    font-weight: 600;
}

/* Section body */
.privacy-body {
    padding: 70px 0 80px;
    background: #f8f9fc;
}

/* Individual section blocks */
.pp-section {
    background: #ffffff;
    border: 1px solid #e8ecf4;
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 20px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.pp-section:hover {
    box-shadow: 0 8px 32px rgba(37, 117, 252, 0.07);
    border-color: #d4dcf0;
}
.pp-section-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2575fc;
    background: rgba(37, 117, 252, 0.08);
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 12px;
}
.pp-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
}
.pp-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
}
.pp-section p:last-child { margin-bottom: 0; }

/* Custom list */
.pp-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}
.pp-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    flex-shrink: 0;
    margin-top: 8px;
}
.pp-list li strong {
    color: #0f172a;
    font-weight: 600;
}

/* Info cards grid (for "What we collect") */
.pp-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}
.pp-info-card {
    background: #f8f9fc;
    border: 1px solid #e8ecf4;
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color 0.2s;
}
.pp-info-card:hover { border-color: #b8c8f8; }
.pp-info-card .card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37,117,252,0.12), rgba(106,17,203,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.pp-info-card .card-icon i {
    font-size: 16px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pp-info-card .card-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.pp-info-card .card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Rights grid */
.pp-rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}
.pp-right-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f9fc;
    border: 1px solid #e8ecf4;
    border-radius: 12px;
    padding: 16px;
}
.pp-right-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(37,117,252,0.1), rgba(106,17,203,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pp-right-icon i {
    font-size: 14px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pp-right-text {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.55;
}

/* Third-party chips */
.pp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.pp-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f4ff;
    border: 1px solid #d4dcf0;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}
.pp-chip i {
    font-size: 13px;
    color: #2575fc;
}

/* Contact block */
.pp-contact-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.pp-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9fc;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    padding: 16px 22px;
    flex: 1;
    min-width: 200px;
}
.pp-contact-item .c-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pp-contact-item .c-icon i {
    font-size: 18px;
    color: #fff;
}
.pp-contact-item .c-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9aa3b5;
    margin-bottom: 3px;
}
.pp-contact-item .c-val {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}
.pp-contact-item .c-val a {
    color: #0f172a;
    text-decoration: none;
}
.pp-contact-item .c-val a:hover {
    color: #2575fc;
}

/* Security notice */
.pp-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(37,117,252,0.05);
    border: 1px solid rgba(37,117,252,0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 14px;
}
.pp-notice i {
    font-size: 18px;
    color: #2575fc;
    margin-top: 2px;
    flex-shrink: 0;
}
.pp-notice p {
    font-size: 14px;
    color: #374151;
    margin: 0 !important;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-toc { display: none; }
}
@media (max-width: 640px) {
    .pp-section { padding: 24px 20px; }
    .pp-info-grid { grid-template-columns: 1fr; }
    .pp-rights-grid { grid-template-columns: 1fr; }
    .privacy-hero { padding: 60px 0 50px; }
}
