        * {

            font-family: 'Plus Jakarta Sans', sans-serif;
            gap: 1rem;
            margin: 0;
            padding: 0;
        }
        ::selection {
  background: #bc93f5;
  color: white;
}

::-moz-selection {
  background: #bc93f5;
  color: white;
}
/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

/* Hero Section */
.privacy-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.privacy-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.privacy-hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.meta-item svg {
    opacity: 0.6;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.privacy-toc-section {
    padding: 0 2rem 3rem;
    margin-top: -1rem;
}

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

.toc-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.toc-title svg {
    color: var(--primary);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.toc-item:hover {
    background: rgba(168, 85, 247, 0.06);
    color: var(--primary);
}

.toc-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(168, 85, 247, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   PRIVACY CONTENT
   ============================================ */
.privacy-content-section {
    padding: 2rem 2rem 6rem;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Policy Section */
.policy-section {
    position: relative;
    padding-left: 3.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.policy-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(168, 85, 247, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.policy-section p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.policy-section a:hover {
    opacity: 0.8;
}

/* ============================================
   INFO CARDS (Section 1)
   ============================================ */
.info-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.info-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.info-card h4 svg {
    color: var(--primary);
    flex-shrink: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.info-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
        border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

/* ============================================
   USE GRID (Section 2)
   ============================================ */
.use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.use-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.use-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.use-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.use-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.use-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   SHARING LIST (Section 3)
   ============================================ */
.sharing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sharing-item {
    display: flex;
    gap: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.sharing-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.sharing-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sharing-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.sharing-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.sharing-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   SECURITY GRID (Section 4)
   ============================================ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.security-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.security-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.security-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.security-notice {
    display: flex;
    gap: 0.8rem;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    align-items: flex-start;
}

.security-notice svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.security-notice p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   RETENTION TABLE (Section 5)
   ============================================ */
.retention-table {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.retention-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-row:not(.header-row):hover {
    background: rgba(168, 85, 247, 0.03);
}

.retention-row.header-row {
    background: rgba(168, 85, 247, 0.05);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.retention-row span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.retention-row span:last-child {
    color: var(--text-light);
}

/* ============================================
   COOKIE TYPES (Section 6)
   ============================================ */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.cookie-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.cookie-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.cookie-badge.essential {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.cookie-badge.analytics {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.cookie-badge.functional {
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
}

.cookie-badge.marketing {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.cookie-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cookie-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   RIGHTS GRID (Section 7)
   ============================================ */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.right-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.right-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.right-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.right-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.rights-notice {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
}

.rights-notice p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   THIRD PARTY LIST (Section 8)
   ============================================ */
.third-party-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.third-party-list li {
    position: relative;
    padding: 1.2rem 1.5rem;
    padding-left: 2.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    transition: border-color 0.3s ease;
}

.third-party-list li:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.third-party-list li::before {
    content: '→';
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

.third-party-list li strong {
    color: var(--text-dark);
}

/* ============================================
   CHANGES LIST (Section 10)
   ============================================ */
.changes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.changes-list li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.changes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
}

/* ============================================
   CONTACT CARDS (Section 11)
   ============================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.contact-card a:hover {
    opacity: 0.8;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.response-notice {
    display: flex;
    gap: 0.8rem;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    align-items: center;
}

.response-notice svg {
    color: var(--primary);
    flex-shrink: 0;
}

.response-notice p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.response-notice strong {
    color: var(--text-dark);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-hero-sub {
        font-size: 1rem;
    }

    .privacy-meta {
        gap: 1rem;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .toc-card {
                padding: 1.5rem;
    }

    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-types {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .policy-section {
        padding-left: 2.8rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-content-section {
        padding: 2rem 1.5rem 4rem;
    }

    .privacy-toc-section {
        padding: 0 1.5rem 2rem;
    }

    .retention-row {
        padding: 0.8rem 1.2rem;
        font-size: 0.88rem;
    }

    .sharing-item {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 480px) {
    .privacy-hero {
        padding: 7rem 1rem 2.5rem;
    }

    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-hero-sub {
        font-size: 0.92rem;
    }

    .privacy-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .meta-item {
        font-size: 0.82rem;
    }

    .privacy-toc-section {
        padding: 0 1rem 2rem;
    }

    .toc-card {
        padding: 1.2rem;
    }

    .toc-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .toc-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        border-radius: 6px;
    }

    .privacy-content-section {
        padding: 1.5rem 1rem 3rem;
    }

    .privacy-content {
        gap: 3rem;
    }

    .policy-section {
        padding-left: 0;
        padding-top: 3rem;
    }

    .section-number {
        left: 0;
        top: 0;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section p {
        font-size: 0.92rem;
    }

    .use-grid {
        grid-template-columns: 1fr;
    }

    .use-item {
        padding: 1.2rem;
    }

    .use-item h4 {
        font-size: 0.95rem;
    }

    .use-item p {
        font-size: 0.85rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-item {
        padding: 1.2rem;
    }

    .security-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .security-notice {
        padding: 1rem 1.2rem;
        flex-direction: column;
        gap: 0.6rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-card h4 {
        font-size: 0.95rem;
    }

    .info-card ul li {
        font-size: 0.88rem;
    }

    .sharing-item {
        padding: 1.2rem;
    }

    .sharing-item h4 {
        font-size: 0.95rem;
    }

    .sharing-item p {
        font-size: 0.88rem;
    }

    .retention-table {
        border-radius: 12px;
    }

    .retention-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.8rem 1rem;
    }

    .retention-row.header-row {
        display: none;
    }

    .retention-row span:first-child {
        font-size: 0.88rem;
    }

    .retention-row span:last-child {
        font-size: 0.82rem;
    }

    .cookie-item {
        padding: 1.2rem;
    }

    .cookie-item h4 {
        font-size: 0.95rem;
    }

    .cookie-item p {
        font-size: 0.85rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .right-item {
        padding: 1.2rem;
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .right-icon {
        font-size: 1.4rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .right-item h4 {
        font-size: 0.92rem;
    }

    .right-item p {
        font-size: 0.82rem;
    }

    .rights-notice {
        padding: 1rem 1.2rem;
    }

    .rights-notice p {
        font-size: 0.85rem;
    }

    .third-party-list li {
        padding: 1rem 1.2rem 1rem 2.2rem;
        font-size: 0.88rem;
    }

    .third-party-list li::before {
        left: 1rem;
        top: 1rem;
    }

    .changes-list li {
        font-size: 0.88rem;
        padding-left: 1.5rem;
    }

    .changes-list li::before {
        width: 6px;
        height: 6px;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .contact-card h4 {
        font-size: 0.95rem;
    }

    .contact-card a,
    .contact-card p {
        font-size: 0.85rem;
    }

    .response-notice {
        padding: 1rem 1.2rem;
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    .response-notice p {
        font-size: 0.85rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.policy-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-section:nth-child(2) { transition-delay: 0.05s; }
.policy-section:nth-child(3) { transition-delay: 0.1s; }
.policy-section:nth-child(4) { transition-delay: 0.15s; }

/* ============================================
   HOVER MICRO-INTERACTIONS
   ============================================ */
.toc-item .toc-number {
    transition: all 0.2s ease;
}

.toc-item:hover .toc-number {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.cookie-badge {
    transition: transform 0.2s ease;
}

.cookie-item:hover .cookie-badge {
    transform: scale(1.05);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* ============================================
   ACTIVE TOC HIGHLIGHT
   ============================================ */
.toc-item.active {
    background: rgba(168, 85, 247, 0.08);
    color: var(--primary);
}

.toc-item.active .toc-number {
    background: var(--primary);
    color: white;
}