              

.privacy-hero {
            padding: 10rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .privacy-hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
            pointer-events: none;
        }
        .privacy-hero .pill {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            border: 1px solid var(--blue);
            border-radius: 100px;
            padding: .35rem 1rem;
            font-size: .78rem;
            font-weight: 500;
            color: var(--blue);
            letter-spacing: .03em;
            margin-bottom: 1.25rem;
        }
        .privacy-hero .pill .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--emerald);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: .4; }
        }
        .privacy-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 2.8rem);
            color: var(--blue);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .privacy-hero h1 em {
            font-style: normal;
            color: var(--blue);
        }
        .privacy-hero .lead {
            font-size: 1.1rem;
            color: var(--white-50);
            max-width: 600px;
            line-height: 1.7;
        }
        .privacy-hero__meta {
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .privacy-hero__meta-item {
            display: flex;
            align-items: center;
            gap: .5rem;
            font-size: .82rem;
            color: var(--white-50);
        }
        .privacy-hero__meta-item svg { width: 16px; height: 16px; opacity: .5; }

        
        .toc {
            border: 1px solid var(--yellow);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 3.5rem;
        }
        .toc__title {
            font-family: var(--font-display);
            font-size: .95rem;
            color: var(--white-90);
            margin-bottom: 1rem;
        }
        .toc__list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .4rem .75rem;
        }
        @media (max-width: 600px) { .toc__list { grid-template-columns: 1fr; } }
        .toc__list li { display: flex; align-items: baseline; gap: .5rem; }
        .toc__list a {
            font-size: .88rem;
            color: var(--blue);
            display: inline-flex;
            align-items: baseline;
            gap: .4rem;
            padding: .25rem 0;
            transition: color .2s;
        }
        .toc__list a:hover { color: var(--yellow); }
        .toc__num {
            font-size: .72rem;
            font-weight: 600;
            color: var(--yellow);
            min-width: 1.4rem;
            opacity: .7;
        }

        
        .privacy-content {
            padding-bottom: 6rem;
        }
        .privacy-section {
            margin-bottom: 3rem;
            scroll-margin-top: 6rem;
        }
        .privacy-section h2 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--blue);
            margin-bottom: .75rem;
            display: flex;
            align-items: center;
            gap: .65rem;
        }
        .privacy-section h2 .sec-num {
            font-size: .75rem;
            font-weight: 600;
            color: var(--yellow);
            background: var(--yellow-soft);
            border-radius: 6px;
            padding: .2rem .55rem;
            letter-spacing: .04em;
        }
        .privacy-section h3 {
            font-family: var(--font-body);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--blue);
            margin: 1.5rem 0 .5rem;
        }
        .privacy-section p {
            margin-bottom: .85rem;
        }
        .privacy-section ul {
            list-style: none;
            margin: .75rem 0 1.25rem;
            padding: 0;
        }
        .privacy-section ul li {
            position: relative;
            padding-left: 1.4rem;
            margin-bottom: .45rem;
            font-size: .95rem;
        }
        .privacy-section ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: .65rem;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--yellow);
            opacity: .6;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0 1.5rem;
            font-size: .9rem;
        }
        .data-table th,
        .data-table td {
            text-align: left;
            padding: .75rem 1rem;
            border-bottom: 1px solid var(--white-08);
        }
        .data-table th {
            font-weight: 600;
            color: var(--white-90);
            background: var(--white-04);
            font-size: .82rem;
            letter-spacing: .03em;
            text-transform: uppercase;
        }
        .data-table td {
            color: var(--white-70);
        }
        .data-table tr:last-child td { border-bottom: none; }
        @media (max-width: 600px) {
            .data-table { font-size: .82rem; }
            .data-table th, .data-table td { padding: .5rem .6rem; }
        }

        .highlight-box {
            background: var(--yellow-soft);
            border-left: 3px solid var(--yellow);
            border-radius: 0 12px 12px 0;
            padding: 1.25rem 1.5rem;
            margin: 1.5rem 0;
        }
        .highlight-box p {
            color: var(--white-90);
            margin-bottom: 0;
            font-size: .95rem;
        }
        .highlight-box strong { color: var(--blue); }

        .rights-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .75rem;
            margin: 1rem 0 1.5rem;
        }
        @media (max-width: 600px) { .rights-grid { grid-template-columns: 1fr; } }
        .right-card {
            border: 1px solid var(--yellow);
            border-radius: 12px;
            padding: 1.1rem 1.25rem;
        }
        .right-card strong {
            display: block;
            color: var(--blue);
            font-size: .9rem;
            margin-bottom: .25rem;
        }
        .right-card span {
            font-size: .84rem;
            
        }

        
        .contact-card {
            background: linear-gradient(135deg, var(--navy) 0%, var(--dark-60) 100%);
            border: 1px solid var(--yellow);
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 3rem;
            text-align: center;
        }
        .contact-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--blue);
            margin-bottom: .5rem;
        }
        .contact-card p {
            margin-bottom: 1.25rem;
            font-size: .95rem;
        }
        .contact-card a.email-link {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: var(--yellow);
            color: var(--dark);
            font-weight: 600;
            padding: .7rem 1.5rem;
            border-radius: 100px;
            font-size: .9rem;
            transition: transform .2s, box-shadow .2s;
        }
        .contact-card a.email-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(245, 197, 24, .25);
            color: var(--dark);
        }

        
        .section-divider {
            border: none;
            height: 1px;
            background: var(--white-08);
            margin: 0 0 3rem;
        }

       
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .6s ease, transform .6s ease;
        }
        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }