  /* ============================================================
     DESIGN TOKENS
     ============================================================ */
  :root {
    --navy: #2d3a7d;
    --navy-dark: #232e66;
    --navy-deeper: #1a2452;
    --navy-50: #eef0f8;
    --pink: #e91e85;
    --pink-soft: #ffb3d9;
    --pink-50: #fdeaf3;
    --orange: #f58024;
    --orange-soft: #fcb549;
    --orange-50: #fff2e6;
    --red: #e64644;
    --magenta: #d823cd;

    --grad: linear-gradient(90deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
    --grad-tilt: linear-gradient(135deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
    --grad-soft: linear-gradient(135deg, #fff2e6 0%, #fdeaf3 100%);

    --bg: #ffffff;
    --surface: #f8f9fb;
    --surface-2: #f2f4f8;
    --border: #e8eaef;
    --text: #151515;
    --text-muted: #6f6f6f;

    --font: 'Figtree', system-ui, -apple-system, sans-serif;

    --sh-md: 0 4px 8px rgba(35, 46, 102, 0.06), 0 8px 24px rgba(35, 46, 102, 0.08);
    --sh-lg: 0 12px 24px -8px rgba(35, 46, 102, 0.12), 0 24px 64px -12px rgba(35, 46, 102, 0.18);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img, video, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ::selection { background: var(--pink); color: #fff; }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero-legal {
    padding: 140px 0 72px;
    background: linear-gradient(180deg, var(--navy-50) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-legal::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(45, 58, 125, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-legal::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-legal-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }
  .hero-legal .kicker {
    color: var(--navy);
    margin-bottom: 18px;
  }
  .hero-legal h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    color: var(--navy-deeper);
  }
  .hero-legal h1 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-legal .hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .hero-legal .meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    box-shadow: var(--sh-md);
  }
  .hero-legal .meta-chip .chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
  }
  .hero-legal .meta-chip .chip-dot.pink { background: var(--pink); }
  .hero-legal .meta-chip .chip-dot.orange { background: var(--orange); }

  /* ============================================================
     BLOCK / SECTION UTILITIES
     ============================================================ */
  .block { padding: 88px 0; }
  .block.alt { background: var(--surface); }
  .block.dark {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
    color: #fff;
  }

  .section-head {
    margin-bottom: 52px;
    max-width: 860px;
  }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .kicker {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
  }
  .kicker.orange { color: var(--orange); }
  .kicker.pink { color: var(--pink); }
  .kicker.navy { color: var(--navy); }
  .section-title {
    font-size: clamp(24px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
  }
  .section-title .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section-lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.7;
  }
  .section-head.center .section-lead { margin-left: auto; margin-right: auto; }

  /* ============================================================
     LEGAL LAYOUT — sidebar + content
     ============================================================ */
  .legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    align-items: start;
  }
  .legal-nav {
    position: sticky;
    top: 100px;
  }
  .legal-nav-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
  }
  .legal-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .legal-nav li a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    line-height: 1.35;
  }
  .legal-nav li a:hover {
    color: var(--navy-dark);
    background: var(--navy-50);
    border-left-color: var(--navy);
  }
  .legal-nav li a.active {
    color: var(--navy-dark);
    background: var(--navy-50);
    border-left-color: var(--pink);
    font-weight: 700;
  }

  .legal-content {
    min-width: 0;
  }

  /* ============================================================
     LEGAL SECTIONS
     ============================================================ */
  .legal-section {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
  }
  .legal-section:last-child { margin-bottom: 0; }

  .legal-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .legal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .legal-icon.navy { background: var(--navy-50); color: var(--navy); }
  .legal-icon.pink { background: var(--pink-50); color: var(--pink); }
  .legal-icon.orange { background: var(--orange-50); color: var(--orange); }
  .legal-icon.grad { background: var(--grad); color: #fff; }

  .legal-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.015em;
    line-height: 1.25;
  }

  .legal-section h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-top: 28px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .legal-section p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .legal-section p:last-child { margin-bottom: 0; }

  .legal-section ul,
  .legal-section ol {
    margin: 12px 0 18px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .legal-section ul li,
  .legal-section ol li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    padding-left: 26px;
    position: relative;
  }
  .legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad);
  }
  .legal-section ol {
    counter-reset: legal-counter;
  }
  .legal-section ol li {
    counter-increment: legal-counter;
  }
  .legal-section ol li::before {
    content: counter(legal-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.65;
  }

  .legal-section a {
    color: var(--pink);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--pink-soft);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
  }
  .legal-section a:hover { text-decoration-color: var(--pink); }

  /* ============================================================
     INFO BOX
     ============================================================ */
  .info-box {
    background: var(--navy-50);
    border: 1px solid rgba(45, 58, 125, 0.15);
    border-left: 3px solid var(--navy);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 18px 0;
  }
  .info-box.pink {
    background: var(--pink-50);
    border-color: rgba(233, 30, 133, 0.15);
    border-left-color: var(--pink);
  }
  .info-box.orange {
    background: var(--orange-50);
    border-color: rgba(245, 128, 36, 0.15);
    border-left-color: var(--orange);
  }
  .info-box p {
    font-size: 14.5px;
    color: var(--navy-dark);
    margin: 0;
    line-height: 1.65;
  }
  .info-box strong { font-weight: 700; }

  /* ============================================================
     CONTACT CARD
     ============================================================ */
  .contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: var(--sh-md);
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
  }
  .contact-card-body {
    flex: 1;
    min-width: 200px;
  }
  .contact-card-body strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .contact-card-body span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    display: block;
  }
  .contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px -6px rgba(230, 70, 68, 0.5);
    white-space: nowrap;
  }
  .contact-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(230, 70, 68, 0.65);
  }

  /* ============================================================
     COOKIE TABLE
     ============================================================ */
  .cookie-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--sh-md);
  }
  table.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
  }
  table.cookie-table thead {
    background: var(--navy-deeper);
    color: #fff;
  }
  table.cookie-table thead th {
    padding: 13px 18px;
    text-align: left;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  table.cookie-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }
  table.cookie-table tbody tr:last-child { border-bottom: none; }
  table.cookie-table tbody tr:hover { background: var(--surface); }
  table.cookie-table td {
    padding: 13px 18px;
    color: var(--text-muted);
    line-height: 1.55;
    vertical-align: top;
  }
  table.cookie-table td:first-child {
    font-weight: 700;
    color: var(--navy-dark);
    font-family: 'Courier New', monospace;
    font-size: 12.5px;
    white-space: nowrap;
  }
  table.cookie-table .cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
    font-family: var(--font);
  }
  table.cookie-table .cat-badge.necessary {
    background: #e8f7ee;
    color: #1d8a4a;
  }
  table.cookie-table .cat-badge.analytics {
    background: var(--navy-50);
    color: var(--navy);
  }
  table.cookie-table .cat-badge.marketing {
    background: var(--orange-50);
    color: #c26000;
  }

  /* ============================================================
     RIGHTS GRID
     ============================================================ */
  .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
  }
  .right-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 22px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border-color 0.25s;
  }
  .right-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-soft);
  }
  .right-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .right-card-icon.navy { background: var(--navy-50); color: var(--navy); }
  .right-card-icon.pink { background: var(--pink-50); color: var(--pink); }
  .right-card-icon.orange { background: var(--orange-50); color: var(--orange); }
  .right-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .right-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
  }

  /* ============================================================
     CTA BAND
     ============================================================ */
  .cta-band {
    background: var(--navy-deeper);
    padding: 88px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(127, 84, 179, 0.28) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cta-band h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.90);
  }
  .cta-band h2 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
  }
  .cta-band p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.68);
    margin-bottom: 30px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.55);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -8px rgba(230, 70, 68, 0.7);
  }

  /* ============================================================
     THIRD-PARTY SECTION — provider badges
     ============================================================ */
  .provider-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }
  .provider-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .provider-item:hover {
    border-color: var(--pink-soft);
    box-shadow: var(--sh-md);
  }
  .provider-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .provider-body { flex: 1; min-width: 0; }
  .provider-body strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .provider-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 6px 0;
  }
  .provider-body a {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: rgba(45,58,125,0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
  }
  .provider-body a:hover { text-decoration-color: var(--navy); }

  /* ============================================================
     REVEAL ANIMATIONS
     ============================================================ */
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-reveal].in { opacity: 1; transform: translateY(0); }
  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-reveal-stagger].in > * { opacity: 1; transform: translateY(0); }
  [data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.04s; }
  [data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.09s; }
  [data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.14s; }
  [data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.19s; }
  [data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.24s; }
  [data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.29s; }
  [data-reveal-stagger].in > *:nth-child(7) { transition-delay: 0.34s; }
  [data-reveal-stagger].in > *:nth-child(8) { transition-delay: 0.39s; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1024px) {
    .legal-layout { grid-template-columns: 1fr; gap: 48px; }
    .legal-nav { position: static; }
    .legal-nav ul {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 6px;
    }
    .legal-nav li a {
      padding: 7px 14px;
      border-left: none;
      border-bottom: 2px solid transparent;
      border-radius: 999px;
      background: var(--surface);
    }
    .legal-nav li a:hover,
    .legal-nav li a.active {
      background: var(--navy-50);
      border-bottom-color: var(--pink);
      border-left-color: transparent;
    }
  }
  @media (max-width: 700px) {
    .rights-grid { grid-template-columns: 1fr; }
    .contact-card { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero-legal { padding: 110px 0 56px; }
    .block { padding: 64px 0; }
    .section-head { margin-bottom: 40px; }
    .cta-band { padding: 64px 0; }
    table.cookie-table thead th,
    table.cookie-table td { padding: 11px 14px; font-size: 12.5px; }
  }
