/* ── TOKENS (Preserving ntagz Brand Identity) ── */

    /* ── TOP STRIP ── */

    /* ── NAV ── */

    /* ── CONTENT LAYOUT ── */
    .wrap {
      max-width: 1100px;
      margin: auto;
      padding: 0 24px;
    }

    .policy-container {
      padding: 60px 0 120px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    @media (min-width: 768px) {
      .policy-container {
        grid-template-columns: 280px 1fr;
      }
    }

    /* Sidebar Navigation */
    .policy-sidebar {
      position: Skinner;
      top: 100px;
      height: max-content;
    }

    @media (min-width: 768px) {
      .policy-sidebar {
        position: sticky;
      }
    }

    .policy-sidebar h3 {
      font-family: var(--ff-head);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--ink-3);
      margin-bottom: 16px;
    }

    .sidebar-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sidebar-menu a {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-2);
      transition: all 0.2s var(--ease);
    }

    .sidebar-menu a:hover {
      color: var(--tagz);
      padding-left: 4px;
    }

    /* Main Content Styling */
    .policy-content h1 {
      font-family: var(--ff-head);
      font-size: clamp(32px, 5vw, 44px);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .policy-content .subtitle {
      font-size: 16px;
      color: var(--ink-2);
      margin-bottom: 40px;
    }

    .policy-section {
      margin-bottom: 48px;
      scroll-margin-top: 90px;
    }

    .policy-section h2 {
      font-family: var(--ff-head);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--ink);
    }

    .policy-section p {
      font-size: 15px;
      color: var(--ink-2);
      margin-bottom: 16px;
    }

    /* Highlights & Cards */
    .highlight-box {
      background: #fff;
      border: 1px solid var(--paper);
      border-radius: var(--r);
      padding: 24px;
      margin: 24px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    .grid-metrics {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 16px;
    }

    @media (min-width: 540px) {
      .grid-metrics { grid-template-columns: 1fr 1fr; }
    }

    .metric-card {
      background: var(--warm);
      padding: 16px;
      border-radius: var(--r);
      text-align: center;
    }

    .metric-card span {
      display: block;
      font-family: var(--ff-head);
      font-size: 24px;
      font-weight: 700;
      color: var(--tagz);
    }

    .metric-card label {
      font-size: 12px;
      color: var(--ink-3);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Callout Alert Banner */
    .block-alert {
      background: var(--tagz-lt);
      border-left: 4px solid var(--tagz);
      padding: 16px;
      border-radius: 0 var(--r) var(--r) 0;
      font-size: 14px;
      color: var(--ink-2);
      margin-top: 16px;
    }

    /* ── FOOTER STYLES ── */

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

      /* ── PRODUCT HERO ── */
    .prod-hero {
      padding: 48px 0 24px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    @media (min-width: 860px) {
      .prod-hero { grid-template-columns: 1fr 1fr; align-items: center; }
    }
    .prod-media {
      background: var(--warm);
      border: 1px solid var(--paper);
      border-radius: var(--r-lg);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .prod-media img { width: 100%; height: 100%; object-fit: cover; }
    .prod-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
    .ptag2 {
      font-size: 12px; font-weight: 600; font-family: var(--ff-head);
      background: var(--tagz-lt); color: var(--tagz-dk);
      padding: 5px 12px; border-radius: 20px; letter-spacing: 0.02em;
    }
    .prod-hero h1 {
      font-family: var(--ff-head);
      font-size: clamp(28px, 4.5vw, 42px);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
      line-height: 1.1;
    }
    .prod-tagline { font-size: 17px; color: var(--ink-2); margin-bottom: 24px; line-height: 1.6; }
    .prod-price-box {
      background: #fff; border: 1px solid var(--paper); border-radius: var(--r);
      padding: 20px 24px; margin-bottom: 24px; display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .prod-price { font-family: var(--ff-head); font-size: 30px; font-weight: 700; color: var(--ink); }
    .prod-price span { font-size: 14px; font-weight: 500; color: var(--ink-3); }
    .prod-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

    /* ── SPECS ── */
    .specs-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
    .specs-table tr { border-bottom: 1px solid var(--paper); }
    .specs-table tr:last-child { border-bottom: none; }
    .specs-table td { padding: 12px 8px; font-size: 14px; }
    .specs-table td:first-child { color: var(--ink-3); font-weight: 600; width: 40%; }
    .specs-table td:last-child { color: var(--ink); }

    /* ── USE CASES ── */
    .use-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 16px 0; }
    @media (min-width: 640px) { .use-grid { grid-template-columns: 1fr 1fr; } }
    .use-card { background: var(--warm); border-radius: var(--r); padding: 18px; font-size: 14px; color: var(--ink-2); }
    .use-card b { display: block; color: var(--ink); font-family: var(--ff-head); font-size: 14px; margin-bottom: 4px; }

    /* ── FAQ ── */
    .faq-item { border-bottom: 1px solid var(--paper); padding: 18px 0; }
    .faq-item h3 { font-family: var(--ff-head); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .faq-item p { font-size: 14px; color: var(--ink-2); }

    /* ── RELATED ── */
    .related-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }
    @media (min-width: 640px) { .related-row { grid-template-columns: repeat(3, 1fr); } }
    .related-card {
      background: #fff; border: 1px solid var(--paper); border-radius: var(--r);
      padding: 16px; transition: all 0.2s var(--ease);
    }
    .related-card:hover { border-color: var(--tagz); transform: translateY(-2px); }
    .related-card .rn { font-family: var(--ff-head); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
    .related-card .rp { font-size: 13px; color: var(--tagz); font-weight: 600; }
