
    :root {
      --orange:     #DF3A08;
      --orange-h:   #C8330A;
      --orange-soft:#FEF0ED;
      --blue:       #1CAAC8;
      --blue-soft:  #E8F8FC;
      --ink:        #000000;
      --ink2:       #2D2D2D;
      --muted:      #6B7280;
      --bg:         #FAFAFA;
      --white:      #FFFFFF;
      --border:     #E5E7EB;
      --dark:       #0D0D0D;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'PT Sans', sans-serif;
      background: var(--bg);
      color: var(--ink2);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'PT Sans', sans-serif;
      color: var(--ink);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    a { color: var(--orange); text-decoration: none; transition: opacity .2s; }
    a:hover { opacity: .75; }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 99px; }

    /* ─── TOPBAR ─────────────────────────────────────── */
    .topbar {
      background: var(--dark);
      padding: 16px 0;
      border-bottom: 3px solid var(--orange);
      position: sticky; top: 0; z-index: 100;
    }
    .topbar-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .topbar-logo { display: flex; align-items: center; gap: 10px; }
    .tl-icon {
      width: 36px; height: 36px; border-radius: 9px;
      background: var(--orange); display: grid; place-items: center;
    }
    .tl-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
    .tl-name { font-family: 'PT Sans', sans-serif; font-size: 20px; font-weight: 800; color: white; }
    .tl-name span { color: var(--orange); }
    .btn-back {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
      padding: 8px 16px; border-radius: 99px;
      border: 1px solid rgba(255,255,255,.15); transition: all .2s;
    }
    .btn-back:hover { color: white; border-color: var(--orange); opacity: 1; }

    /* ─── HERO ───────────────────────────────────────── */
    .policy-hero {
      background: linear-gradient(135deg, var(--dark) 0%, #1A1A1A 100%);
      padding: 72px 0 64px; text-align: center;
      position: relative; overflow: hidden;
    }
    .policy-hero::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(223,58,8,.1) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(28,170,200,.07) 0%, transparent 55%);
    }
    .policy-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
    .ph-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(223,58,8,.15); border: 1px solid rgba(223,58,8,.3);
      border-radius: 99px; padding: 7px 18px;
      font-size: 12px; font-weight: 600; color: #FF8A6A;
      letter-spacing: .5px; margin-bottom: 24px;
    }
    .policy-hero h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 800; color: white; margin-bottom: 18px; }
    .policy-hero > .policy-hero-inner > p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 28px; }
    .ph-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; font-size: 12px; color: rgba(255,255,255,.35); }
    .ph-meta span { display: flex; align-items: center; gap: 6px; }
    .ph-meta i { color: var(--orange); }

    /* ─── LAYOUT ─────────────────────────────────────── */
    .layout {
      max-width: 1100px; margin: 0 auto; padding: 60px 24px 96px;
      display: grid; grid-template-columns: 255px 1fr; gap: 52px; align-items: start;
    }
    @media(max-width:900px) { .layout { grid-template-columns: 1fr; gap: 36px; } }

    /* ─── SIDEBAR ────────────────────────────────────── */
    .toc { position: sticky; top: 80px; background: white; border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
    @media(max-width:900px) { .toc { position: static; } }
    .toc-head { background: var(--orange); padding: 16px 20px; display: flex; align-items: center; gap: 8px; font-family: 'PT Sans', sans-serif; font-size: 12px; font-weight: 700; color: white; letter-spacing: 1px; text-transform: uppercase; }
    .toc-body { padding: 10px 0; }
    .toc-link { display: flex; align-items: flex-start; gap: 8px; padding: 9px 18px; font-size: 12.5px; color: var(--muted); border-left: 2px solid transparent; transition: all .2s; line-height: 1.4; text-decoration: none; }
    .toc-link:hover, .toc-link.active { background: var(--orange-soft); color: var(--orange); border-left-color: var(--orange); opacity: 1; }
    .toc-link span { font-size: 9px; font-weight: 700; color: var(--orange); opacity: .6; margin-top: 2px; flex-shrink: 0; }
    .toc-sep { height: 1px; background: var(--border); margin: 8px 16px; }
    .toc-legal { margin: 10px 14px 14px; background: var(--bg); border-radius: 10px; padding: 12px; border: 1px solid var(--border); font-size: 11px; color: var(--muted); line-height: 1.6; }
    .toc-legal strong { color: var(--orange); }

    /* ─── CONTENT ────────────────────────────────────── */
    .content { display: flex; flex-direction: column; gap: 40px; }

    /* Alerts */
    .alert-box { background: var(--orange-soft); border: 1.5px solid rgba(223,58,8,.2); border-left: 4px solid var(--orange); border-radius: 14px; padding: 18px 22px; display: flex; gap: 12px; }
    .alert-box i { font-size: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
    .alert-box p { font-size: 14px; color: var(--ink2); line-height: 1.75; }
    .info-box { background: var(--blue-soft); border: 1.5px solid rgba(28,170,200,.2); border-left: 4px solid var(--blue); border-radius: 14px; padding: 18px 22px; display: flex; gap: 12px; margin-top: 18px; }
    .info-box i { font-size: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
    .info-box p { font-size: 14px; color: var(--ink2); line-height: 1.75; }

    /* Section card */
    .ps { background: white; border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; scroll-margin-top: 90px; }
    .ps-head { display: flex; align-items: center; gap: 12px; padding: 22px 26px; border-bottom: 1.5px solid var(--border); background: var(--bg); }
    .ps-n { width: 36px; height: 36px; border-radius: 10px; background: var(--orange); display: grid; place-items: center; font-family: 'PT Sans',sans-serif; font-size: 15px; font-weight: 800; color: white; flex-shrink: 0; }
    .ps-n.b { background: var(--blue); } .ps-n.d { background: var(--dark); }
    .ps-head h2 { font-size: 19px; font-weight: 800; margin: 0; color: var(--ink); }
    .ps-body { padding: 26px; }
    .ps-body p { font-size: 14px; color: var(--ink2); line-height: 1.85; margin-bottom: 14px; }
    .ps-body p:last-child { margin-bottom: 0; }
    .ps-body strong { color: var(--ink); font-weight: 600; }

    /* Table */
    .dt { width: 100%; border-collapse: collapse; }
    .dt th { background: var(--dark); color: white; font-family: 'PT Sans',sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 11px 14px; text-align: left; }
    .dt th:first-child { border-radius: 10px 0 0 0; } .dt th:last-child { border-radius: 0 10px 0 0; }
    .dt td { padding: 12px 14px; font-size: 13.5px; color: var(--ink2); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.6; }
    .dt tr:hover td { background: var(--bg); } .dt tr:last-child td { border-bottom: none; }
    .dt td:first-child { font-weight: 600; color: var(--ink); width: 36%; }

    /* Rights */
    .rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
    @media(max-width:600px) { .rights-grid { grid-template-columns: 1fr; } }
    .rc { display: flex; align-items: flex-start; gap: 10px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 14px; transition: all .2s; }
    .rc:hover { border-color: var(--orange); background: var(--orange-soft); }
    .rc-ico { width: 34px; height: 34px; border-radius: 9px; background: var(--orange-soft); display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
    .rc:hover .rc-ico { background: rgba(223,58,8,.15); }
    .rc h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
    .rc p { font-size: 12px; color: var(--muted); line-height: 1.55; }

    /* Obligations */
    .obl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
    @media(max-width:600px) { .obl-grid { grid-template-columns: 1fr; } }
    .obl { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 14px; }
    .obl i { font-size: 18px; color: var(--blue); margin-bottom: 7px; display: block; }
    .obl h5 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
    .obl p { font-size: 12px; color: var(--muted); line-height: 1.6; }

    /* List */
    .pl { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
    .pl li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink2); line-height: 1.7; }
    .pl li i { font-size: 15px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

    /* Contact dark card */
    .cc { background: linear-gradient(135deg, var(--dark), #1A1A1A); border-radius: 16px; padding: 30px; position: relative; overflow: hidden; margin-top: 10px; }
    .cc::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(223,58,8,.1) 0%, transparent 55%); }
    .cc h3 { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; position: relative; }
    .cc > p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 22px; position: relative; }
    .cc-rows { display: flex; flex-direction: column; gap: 12px; position: relative; }
    .cc-row { display: flex; align-items: center; gap: 12px; }
    .cc-ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
    .cc-lbl { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; }
    .cc-val { font-size: 14px; font-weight: 600; color: white; }

    /* Version note */
    .vn { background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 18px 22px; display: flex; align-items: flex-start; gap: 12px; margin-top: 18px; }
    .vn i { font-size: 20px; color: var(--muted); flex-shrink: 0; margin-top: 2px; }
    .vn p { font-size: 13px; color: var(--muted); line-height: 1.7; }

    /* Terms section */
    .terms-section { background: white; border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; scroll-margin-top: 90px; }
    .terms-head { background: var(--dark); padding: 22px 26px; display: flex; align-items: center; gap: 12px; border-bottom: 3px solid var(--orange); }
    .terms-head h2 { font-size: 20px; font-weight: 800; color: white; }
    .terms-body { padding: 26px; }
    .terms-body h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 22px 0 9px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
    .terms-body h3:first-child { margin-top: 0; }
    .terms-body p { font-size: 14px; color: var(--ink2); line-height: 1.85; margin-bottom: 10px; }
    .terms-body ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 10px; }
    .terms-body ul li { display: flex; gap: 8px; font-size: 14px; color: var(--ink2); line-height: 1.6; }
    .terms-body ul li::before { content: '→'; color: var(--orange); flex-shrink: 0; font-weight: 700; }
    .terms-note { margin-top: 22px; padding: 14px 18px; background: var(--bg); border-radius: 10px; font-size: 13px; color: var(--muted); border: 1px solid var(--border); }

    /* Footer */
    .page-footer { background: var(--dark); padding: 28px 24px; text-align: center; border-top: 3px solid var(--orange); }
    .page-footer p { font-size: 13px; color: rgba(255,255,255,.3); }
    .page-footer a { color: var(--orange); }

    /* WA */
    .wa-btn { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: grid; place-items: center; font-size: 24px; color: white; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: transform .2s; }
    .wa-btn:hover { transform: scale(1.1); color: white; opacity: 1; }
  