
    /* ===== DESIGN SYSTEM ===== */
    :root {
      --bg-primary: #0a0a0f;
      --bg-secondary: #0d0d1a;
      --card-bg: #1a1a2e;
      --card-border: rgba(124, 58, 237, 0.2);
      --accent: #7c3aed;
      --accent-light: #9d5ff5;
      --accent-dark: #5b21b6;
      --cyan: #06b6d4;
      --cyan-light: #22d3ee;
      --gold: #f59e0b;
      --gold-light: #fbbf24;
      --text-primary: #f1f5f9;
      --text-secondary: #94a3b8;
      --text-muted: #64748b;
      --success: #10b981;
      --warning: #f59e0b;
      --error: #ef4444;
      --font: 'Outfit', sans-serif;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
      --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.3);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font);
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.7;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-primary); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

    /* ===== SELECTION ===== */
    ::selection { background: rgba(124, 58, 237, 0.4); color: var(--text-primary); }

    /* ===== UTILITY ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .container-narrow {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      clip: rect(0,0,0,0);
      overflow: hidden;
    }

    /* ===== GLASS CARD ===== */
    .glass-card {
      background: rgba(26, 26, 46, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
    }

    /* ===== NAV ===== */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 15, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      gap: 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: var(--shadow-glow-purple);
    }
    .nav-logo-text {
      font-size: 1.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #a78bfa, var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-menu a {
      display: block;
      padding: 8px 14px;
      text-decoration: none;
      color: var(--text-secondary);
      font-weight: 500;
      font-size: 0.9rem;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      white-space: nowrap;
    }
    .nav-menu a:hover,
    .nav-menu a[aria-current="page"] {
      color: var(--text-primary);
      background: rgba(124, 58, 237, 0.15);
    }
    .nav-cta {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
      color: #fff !important;
      padding: 8px 20px !important;
      border-radius: var(--radius-sm) !important;
      box-shadow: 0 0 15px rgba(124, 58, 237, 0.4) !important;
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 25px rgba(124, 58, 237, 0.6) !important;
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-secondary);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ===== HERO ===== */
    .page-hero {
      position: relative;
      padding: 80px 0 60px;
      overflow: hidden;
      text-align: center;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: #a78bfa;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .page-hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #f1f5f9 0%, #a78bfa 50%, var(--cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
    .last-updated-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: #34d399;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: 50px;
    }
    .last-updated-badge .dot {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    /* ===== BREADCRUMB ===== */
    .breadcrumb-section {
      padding: 0 0 32px;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      list-style: none;
    }
    .breadcrumb li { display: flex; align-items: center; gap: 8px; }
    .breadcrumb a {
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition);
    }
    .breadcrumb a:hover { color: var(--accent-light); }
    .breadcrumb .separator { color: var(--text-muted); font-size: 0.75rem; }
    .breadcrumb .current { color: var(--text-secondary); font-weight: 500; }

    /* ===== MAIN LAYOUT ===== */
    .privacy-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 40px;
      align-items: start;
      padding-bottom: 80px;
    }

    /* ===== SIDEBAR / TOC ===== */
    .toc-sidebar {
      position: sticky;
      top: 90px;
    }
    .toc-card {
      padding: 28px;
    }
    .toc-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent-light);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .toc-list a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      text-decoration: none;
      color: var(--text-secondary);
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      border-left: 2px solid transparent;
    }
    .toc-list a:hover {
      color: var(--text-primary);
      background: rgba(124, 58, 237, 0.1);
      border-left-color: var(--accent);
    }
    .toc-list a.active {
      color: #a78bfa;
      background: rgba(124, 58, 237, 0.12);
      border-left-color: var(--accent);
    }
    .toc-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: rgba(124, 58, 237, 0.2);
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 700;
      color: #a78bfa;
      flex-shrink: 0;
    }
    .toc-divider {
      height: 1px;
      background: rgba(124, 58, 237, 0.15);
      margin: 16px 0;
    }
    .toc-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ===== PRIVACY CONTENT ===== */
    .privacy-content {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    /* GDPR Notice Banner */
    .gdpr-notice {
      display: flex;
      gap: 16px;
      padding: 24px;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(124, 58, 237, 0.08));
      border: 1px solid rgba(6, 182, 212, 0.3);
      border-radius: var(--radius-lg);
      align-items: flex-start;
    }
    .gdpr-icon {
      font-size: 2rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .gdpr-text h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--cyan);
      margin-bottom: 6px;
    }
    .gdpr-text p {
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Policy Section */
    .policy-section {
      padding: 36px;
      scroll-margin-top: 90px;
      transition: var(--transition);
    }
    .policy-section:hover {
      border-color: rgba(124, 58, 237, 0.4);
    }
    .section-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }
    .section-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .section-icon.purple {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
      border: 1px solid rgba(124, 58, 237, 0.3);
    }
    .section-icon.cyan {
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
      border: 1px solid rgba(6, 182, 212, 0.3);
    }
    .section-icon.gold {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
      border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .section-icon.green {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
      border: 1px solid rgba(16, 185, 129, 0.3);
    }
    .section-icon.red {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
      border: 1px solid rgba(239, 68, 68, 0.3);
    }
    .section-title-wrap h2 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 4px;
      line-height: 1.2;
    }
    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Content Typography */
    .policy-section p {
      color: var(--text-secondary);
      font-size: 0.975rem;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .policy-section p:last-child { margin-bottom: 0; }
    .policy-section h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 20px 0 10px;
    }

    /* Policy Lists */
    .policy-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 16px 0;
    }
    .policy-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .policy-list li::before {
      content: '▸';
      color: var(--accent-light);
      font-size: 0.8rem;
      margin-top: 3px;
      flex-shrink: 0;
    }
    .policy-list.check li::before { content: ''; color: var(--success); }
    .policy-list.cross li::before { content: ''; display: inline-block; width: 0.85em; height: 0.85em; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; vertical-align: middle; margin-right: 0.35em; color: var(--error); }

    /* Info Box */
    .info-box {
      display: flex;
      gap: 12px;
      padding: 16px 20px;
      border-radius: var(--radius-md);
      margin: 16px 0;
      align-items: flex-start;
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .info-box.blue {
      background: rgba(6, 182, 212, 0.08);
      border: 1px solid rgba(6, 182, 212, 0.25);
      color: var(--text-secondary);
    }
    .info-box.purple {
      background: rgba(124, 58, 237, 0.08);
      border: 1px solid rgba(124, 58, 237, 0.25);
      color: var(--text-secondary);
    }
    .info-box.gold {
      background: rgba(245, 158, 11, 0.08);
      border: 1px solid rgba(245, 158, 11, 0.25);
      color: var(--text-secondary);
    }
    .info-box.green {
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: var(--text-secondary);
    }
    .info-box.red {
      background: rgba(239, 68, 68, 0.08);
      border: 1px solid rgba(239, 68, 68, 0.25);
      color: var(--text-secondary);
    }
    .info-box-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

    /* Data Table */
    .data-table {
      width: 100%;
      border-collapse: collapse;
      margin: 16px 0;
      font-size: 0.875rem;
    }
    .data-table th {
      background: rgba(124, 58, 237, 0.15);
      color: #a78bfa;
      font-weight: 700;
      text-align: left;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(124, 58, 237, 0.3);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .data-table td {
      padding: 12px 16px;
      color: var(--text-secondary);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      vertical-align: top;
    }
    .data-table tr:last-child td { border-bottom: none; }
    .data-table tr:hover td { background: rgba(124, 58, 237, 0.05); }

    /* Rights Grid */
    .rights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 16px 0;
    }
    .right-card {
      padding: 18px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: var(--radius-md);
      transition: var(--transition);
    }
    .right-card:hover {
      border-color: rgba(124, 58, 237, 0.35);
      background: rgba(124, 58, 237, 0.06);
      transform: translateY(-2px);
    }
    .right-card-icon { font-size: 1.5rem; margin-bottom: 10px; }
    .right-card h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
    }
    .right-card p {
      font-size: 0.825rem;
      color: var(--text-muted);
      margin: 0 !important;
      line-height: 1.5;
    }

    /* Contact Card */
    .contact-card {
      padding: 32px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
      border: 1px solid rgba(124, 58, 237, 0.3);
      border-radius: var(--radius-xl);
      text-align: center;
    }
    .contact-card h2 {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #f1f5f9, #a78bfa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .contact-card p {
      color: var(--text-secondary);
      margin-bottom: 28px;
    }
    .contact-methods {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 28px;
    }
    .contact-method {
      padding: 20px 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: var(--transition);
      display: block;
    }
    .contact-method:hover {
      border-color: rgba(124, 58, 237, 0.4);
      background: rgba(124, 58, 237, 0.1);
      transform: translateY(-3px);
    }
    .contact-method-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
    .contact-method-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }
    .contact-method-value {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* CTA Button */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: rgba(124, 58, 237, 0.1);
      color: #a78bfa;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: var(--radius-md);
      border: 1px solid rgba(124, 58, 237, 0.3);
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-secondary:hover {
      background: rgba(124, 58, 237, 0.2);
      transform: translateY(-2px);
    }

    /* Internal Links Section */
    .internal-links-section {
      padding: 36px;
    }
    .internal-links-section h2 {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--text-primary);
    }
    .internal-links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .internal-link-card {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: var(--transition);
    }
    .internal-link-card:hover {
      border-color: rgba(124, 58, 237, 0.35);
      background: rgba(124, 58, 237, 0.08);
      transform: translateY(-2px);
    }
    .internal-link-card .link-icon { font-size: 1.3rem; }
    .internal-link-card .link-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .internal-link-card .link-title {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--bg-secondary);
      border-top: 1px solid rgba(124, 58, 237, 0.2);
      padding: 60px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      margin-bottom: 16px;
    }
    .footer-brand-logo .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .footer-brand-logo .logo-text {
      font-size: 1.3rem;
      font-weight: 800;
      background: linear-gradient(135deg, #a78bfa, var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .footer-desc {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer-social {
      display: flex;
      gap: 10px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
    }
    .footer-social a:hover {
      background: rgba(124, 58, 237, 0.2);
      border-color: rgba(124, 58, 237, 0.4);
      color: var(--text-primary);
      transform: translateY(-2px);
    }
    .footer-col h4 {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 0.875rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a:hover { color: var(--text-secondary); padding-left: 4px; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer-bottom-left {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .footer-bottom-right {
      display: flex;
      gap: 20px;
    }
    .footer-bottom-right a {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition);
    }
    .footer-bottom-right a:hover { color: var(--text-secondary); }
    .footer-bottom-right a[aria-current="page"] { color: #a78bfa; }
    .footer-age {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(239, 68, 68, 0.15);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #fca5a5;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      margin-top: 8px;
    }

    /* ===== DIVIDER ===== */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
      margin: 4px 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .privacy-layout {
        grid-template-columns: 1fr;
      }
      .toc-sidebar {
        position: static;
      }
      .toc-card {
        padding: 20px;
      }
      .toc-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .contact-methods {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
      }
      .rights-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .nav-hamburger { display: flex; }
      .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0; right: 0;
        background: rgba(10, 10, 15, 0.98);
        padding: 16px;
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
        gap: 4px;
        z-index: 999;
      }
      .toc-list { grid-template-columns: repeat(2, 1fr); }
      .rights-grid { grid-template-columns: 1fr; }
      .internal-links-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .policy-section { padding: 24px 20px; }
      .data-table { font-size: 0.8rem; }
      .data-table th, .data-table td { padding: 10px; }
    }
    @media (max-width: 480px) {
      .toc-list { grid-template-columns: 1fr; }
      .internal-links-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .footer-bottom-right { flex-wrap: wrap; gap: 12px; }
      .contact-methods { grid-template-columns: 1fr; }
    }
  
