  /* ── Privacy-specific overrides ── */
  .priv-hero { text-align: center; margin-bottom: 48px; }
  .priv-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 12px; line-height: 1.15; }
  .priv-hero p { font-size: .9rem; color: var(--text2); max-width: 460px; margin: 0 auto; line-height: 1.7; }
  .priv-hero .priv-date {
    display: inline-block;
    margin-top: 14px;
    font-size: .68rem;
    font-family: 'Geist Mono', monospace;
    color: var(--text3);
    background: var(--bg1);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 4px 10px;
    letter-spacing: .5px;
  }

  .priv-section-title {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    font-family: 'Geist Mono', monospace;
    margin: 40px 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .priv-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }

  .priv-card {
    background: var(--bg1);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 8px;
    transition: border-color .2s;
  }
  .priv-card:hover { border-color: var(--line2); }

  .priv-card h2 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.35;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 9px;
  }
  .priv-card h2 .priv-num {
    font-size: .6rem;
    font-family: 'Geist Mono', monospace;
    color: var(--blue);
    background: rgba(79,124,255,.08);
    border: 1px solid rgba(79,124,255,.18);
    border-radius: 5px;
    padding: 2px 7px;
    letter-spacing: .5px;
    flex-shrink: 0;
  }

  .priv-card p, .priv-card li {
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.78;
    font-family: 'Geist Mono', monospace;
    margin: 0 0 8px;
  }
  .priv-card p:last-child, .priv-card li:last-child { margin-bottom: 0; }

  .priv-card ul {
    padding-left: 18px;
    margin: 8px 0 0;
  }
  .priv-card ul li { margin-bottom: 4px; }

  .priv-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,160,40,.05);
    border: 1px solid rgba(255,160,40,.2);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 10px;
  }
  .priv-warning-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
    color: #ffb030;
  }
  .priv-warning p {
    color: rgba(255,190,80,.85) !important;
    margin: 0 !important;
  }

  .priv-contact-card {
    background: linear-gradient(135deg, rgba(79,124,255,.06) 0%, rgba(79,124,255,.02) 100%);
    border: 1px solid rgba(79,124,255,.22);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 8px;
  }
  .priv-contact-card h2 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Inter', sans-serif;
  }
  .priv-contact-card p {
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.78;
    font-family: 'Geist Mono', monospace;
    margin: 0 0 6px;
  }
  .priv-contact-card a {
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(79,124,255,.3);
    transition: border-color .2s, color .2s;
  }
  .priv-contact-card a:hover { color: #7da4ff; border-color: rgba(79,124,255,.6); }

  .priv-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 32px;
    transition: all .2s;
  }
  .priv-back:hover {
    color: var(--text);
    border-color: var(--line2);
    background: var(--bg2);
  }
