 /* ===== Privacy page (matches your hero / glass theme) ===== */
  .policy-wrap{
    padding: clamp(18px, 2.6vw, 34px) 0 46px;
  }

  .policy-hero{
    border-radius: 26px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 18px 50px rgba(2,10,28,.12);
    position: relative;
    overflow: hidden;
  }
  .policy-hero:before{
    content:"";
    position:absolute; inset:-1px;
    background:
      radial-gradient(900px 300px at 18% 0%, rgba(21,120,190,.14), transparent 62%),
      radial-gradient(900px 320px at 88% 20%, rgba(212,0,0,.09), transparent 62%),
      radial-gradient(900px 340px at 50% 110%, rgba(4,64,124,.10), transparent 60%);
    pointer-events:none;
  }
  .policy-hero > *{ position: relative; z-index: 1; }

  .policy-pill{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    padding:.35rem .7rem;
    border-radius:999px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(15,23,42,.10);
    color: rgba(11,18,32,.76);
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 10px 26px rgba(2,10,28,.06);
  }
  .policy-pill .dot{
    width: 10px; height: 10px; border-radius: 999px;
    background: #1578be;
    box-shadow: 0 0 0 4px rgba(21,120,190,.14);
  }

  .policy-title{
    font-weight: 1000;
    letter-spacing: -.03em;
    margin: .4rem 0 .25rem;
    color: rgba(11,18,32,.94);
    line-height: 1.06;
  }
  .policy-sub{
    color: rgba(11,18,32,.72);
    margin: 0;
    max-width: 70ch;
  }

  .policy-meta{
    display:flex;
    flex-wrap: wrap;
    gap: .5rem .6rem;
    margin-top: .9rem;
  }
  .meta-badge{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    padding:.38rem .7rem;
    border-radius:999px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(15,23,42,.10);
    color: rgba(11,18,32,.76);
    font-size: .85rem;
    font-weight: 700;
  }
  .meta-badge i{ opacity:.85; }

  .policy-card{
    border-radius: 22px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 12px 34px rgba(2,10,28,.10);
    overflow:hidden;
  }
  .policy-card .head{
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(15,23,42,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:.8rem;
  }
  .policy-card .head h2{
    font-weight: 950;
    font-size: 1.05rem;
    letter-spacing: -.02em;
    margin: 0;
    display:flex;
    align-items:center;
    gap:.55rem;
    color: rgba(11,18,32,.92);
  }
  .policy-card .head h2 i{ color:#1578be; }

  .policy-card .body{
    padding: 1rem 1.1rem 1.1rem;
    color: rgba(11,18,32,.80);
  }
  .policy-card .body p{ margin-bottom: .85rem; }
  .policy-card .body ul{
    margin: 0 0 .85rem 1.1rem;
  }
  .policy-card .body li{
    margin-bottom: .35rem;
  }

  .notice{
    border-radius: 18px;
    padding: .9rem 1rem;
    border: 1px solid rgba(21,120,190,.18);
    background: rgba(21,120,190,.08);
    color: rgba(11,18,32,.82);
  }
  .notice strong{ color: rgba(4,64,124,.95); }

  .toc{
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.62);
    padding: .9rem 1rem;
  }
  .toc a{
    text-decoration:none;
    color: rgba(11,18,32,.80);
    font-weight: 700;
  }
  .toc a:hover{ text-decoration: underline; }

  .anchor{
    scroll-margin-top: 110px;
  }

  .policy-actions .btn{
    border-radius: 14px;
    padding: .6rem .9rem;
    font-weight: 800;
  }
  .btn-primaryx{
    background: linear-gradient(135deg, #1578be, #04407c);
    border: 0;
    color: #fff;
    box-shadow: 0 16px 34px rgba(21,120,190,.22);
  }
  .btn-ghost{
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(15,23,42,.12);
    color: rgba(11,18,32,.86);
  }
  .btn-ghost:hover{
    background: rgba(255,255,255,.78);
  }

  /* ✅ ADD: sticky + responsive behavior (no design change) */
  .toc-sticky{
    position: sticky;
    top: 92px; /* adjust to your navbar height */
    align-self: flex-start;
  }
  @media (max-width: 991.98px){
    /* disable sticky on tablets/phones so it doesn't eat screen */
    .toc-sticky{ position: static; top: auto; }
  }

  @media (max-width: 576px){
    .policy-card .head, .policy-card .body{ padding: .9rem; }
  }