.pds-new-country-pages {
  /* =====================================================
   Product Data Scrape — MASTER SHARED STYLESHEET
   Single source of truth for ALL pages
   
   Save to: /assets/pds-styles.css
   Load in <head> of every page:
   <link rel="stylesheet" href="assets/pds-styles.css">
   ===================================================== */

  /* === DESIGN TOKENS === */
  :root {
    /* Neutrals */
    --paper: #f4f6fa;
    --paper-2: #e9edf4;
    --ink: #15181f;
    --ink-soft: #5b6172;
    --cream: #fff;
    --line: #d9dfe9;
    /* Brand */
    --accent: #2f6df6;
    --accent-d: #2156d4;
    --teal: #0e1a38;
    /* Semantic */
    --red: #e23b52;
    --amber: #d98a13;
    --green: #1f9d57;
    --orange: #ff6a3d;
    --purple: #a855f7;
    /* Industry accents */
    --c-beauty: #c54c8a;
    --c-toys: #f5a623;
    --c-sport: #00874c;
    --c-auto: #c9302c;
    --c-baby: #a3c5e8;
    --c-furn: #8b6f47;
    --c-pharma: #1f9d57;
    --c-appliance: #374151;
    --c-restaurant: #dc2626;
    --c-b2b: #1e40af;
    --c-pet: #f59e0b;
    --c-jewelry: #a855f7;
    --c-office: #3b82f6;
    --c-tools: #ea580c;
    --c-books: #7c3aed;
    --c-garden: #16a34a;
    /* Country accents */
    --c-uae: #00732f;
    --c-au: #012169;
    --c-ca: #d80621;
    --c-de: #dd0000;
    --c-sg: #ed2e38;
    /* Marketplace accents */
    --c-amazon: #ff9900;
    --c-walmart: #0071ce;
    --c-flipkart: #2874f0;
    --c-myntra: #ff3f6c;
    --c-meesho: #f43397;
    --c-blinkit: #f8cb46;
    --c-zepto: #7c3aed;
    --c-swiggy: #fc8019;
    /* Radius */
    --r: 14px;
    --r-sm: 9px;
    --r-lg: 18px;
  }

  /* === RESET === */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "IBM Plex Sans", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  img,
  svg {
    display: block;
    max-width: 100%;
  }
  button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
  }
  input,
  textarea,
  select {
    font-family: inherit;
    font-size: inherit;
  }

  /* === LAYOUT === */
  .wrap {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 32px;
  }
  section {
    position: relative;
  }
  .sec {
    padding: 74px 0;
  }
  .sec-head {
    max-width: 680px;
    margin-bottom: 40px;
  }
  .sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .sec-head h2 {
    font-size: clamp(27px, 3.1vw, 38px);
    margin: 12px 0;
  }
  .sec-head p {
    color: var(--ink-soft);
    font-size: 16px;
  }

  /* === TYPOGRAPHY === */
  .mono {
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: "IBM Plex Mono";
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .eyebrow::before {
    content: "";
    width: 24px;
    height: 1.5px;
    background: var(--accent);
  }
  .eyebrow.center {
    justify-content: center;
  }
  .eyebrow.center::after {
    content: "";
    width: 24px;
    height: 1.5px;
    background: var(--accent);
  }

  /* === BUTTONS === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 999px;
    cursor: pointer;
    border: 1.5px solid var(--ink);
    transition: all 0.15s;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-family: "IBM Plex Sans";
    white-space: nowrap;
  }
  .btn:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-2px);
  }
  .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .btn-primary:hover {
    /* background: var(--accent);
    border-color: var(--accent);
    color: #fff; */
    background: var(--ink);
        color: var(--paper);
        transform: translateY(-2px);
  }
  .btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
  }
  .btn-light:hover {
    transform: translateY(-2px);
  }
  .btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
  .btn-ghost-light:hover {
    background: #fff;
    color: var(--ink);
  }
  .btn .arr {
    transition: transform 0.15s;
  }
  .btn:hover .arr {
    transform: translateX(3px);
  }

  /* === TOPBAR === */
  .pds-topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 12.5px;
    text-align: center;
    padding: 9px 16px;
    line-height: 1.5;
  }
  .pds-topbar b {
    color: #7ca5f4;
    font-weight: 600;
  }

  /* === HEADER NAV === */
  .pds-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(244, 246, 250, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .pds-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
  }
  .pds-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .pds-logo svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  .pds-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-family: "Bricolage Grotesque";
  }
  .pds-logo-text b {
    font-weight: 800;
    font-size: 16.5px;
    color: var(--accent);
    letter-spacing: -0.01em;
  }
  .pds-logo-text i {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    color: var(--ink);
  }
  .pds-items {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }
  .pds-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 13px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition:
      background 0.15s,
      color 0.15s;
    white-space: nowrap;
  }
  .pds-link:hover,
  .pds-link.open,
  .pds-link.active {
    background: var(--paper-2);
    color: var(--accent);
  }
  .pds-link .pds-chev {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
    margin-top: -3px;
    display: inline-block;
  }
  .pds-link.open .pds-chev {
    transform: rotate(-135deg);
    margin-top: 2px;
  }
  .pds-link .pds-new-badge {
    font-family: "IBM Plex Mono";
    font-size: 8.5px;
    background: var(--green);
    color: #fff;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .pds-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
  }

  /* === MEGA MENU === */
  .pds-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(21, 24, 31, 0.08);
    padding: 28px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.22s ease;
    z-index: 9998;
  }
  .pds-mega.show {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .pds-mega-grid {
    display: grid;
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .pds-mega-col h5 {
    font-family: "Bricolage Grotesque";
    font-size: 11.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 9px;
    border-bottom: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .pds-mega-col h5 .pds-ct {
    color: var(--accent);
    font-weight: 600;
  }
  .pds-mega-col h5 .pds-nu {
    background: var(--green);
    color: #fff;
    font-size: 8.5px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-left: auto;
    font-family: "IBM Plex Mono";
  }
  .pds-mega-col a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
    transition: color 0.15s;
    position: relative;
  }
  .pds-mega-col a:hover {
    color: var(--accent);
  }
  .pds-mega-col a .pds-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--line);
    flex-shrink: 0;
    transition: background 0.15s;
    margin-top: 8px;
  }
  .pds-mega-col a:hover .pds-dot {
    background: var(--accent);
  }
  .pds-mega-col a small {
    display: block;
    font-size: 11.5px;
    color: var(--ink-soft);
    font-weight: 400;
    margin-top: 2px;
    line-height: 1.3;
  }
  .pds-mega-col a.pds-feat {
    background: var(--paper-2);
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .pds-mega-col a.pds-feat .pds-dot {
    background: var(--accent);
    margin-top: 7px;
  }
  .pds-mega-col a .pds-new-tag {
    position: absolute;
    right: 0;
    top: 5px;
    background: var(--green);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .pds-prod-card {
    display: block;
    background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
    padding: 18px 20px;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 10px;
    transition: transform 0.15s;
  }
  .pds-prod-card:hover {
    transform: translateY(-2px);
    color: #fff;
  }
  .pds-prod-card .pds-pd-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .pds-prod-card .pds-pd-h {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    display: block;
    color: #fff;
  }
  .pds-prod-card .pds-pd-d {
    font-size: 11.5px;
    color: #cfd3db;
    line-height: 1.4;
    display: block;
    font-weight: 400;
  }
  .pds-mobile {
    display: none;
    background: transparent;
    border: 1.5px solid var(--ink);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .pds-mobile span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
  }
  .pds-mobile span::before,
  .pds-mobile span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }
  .pds-mobile span::before {
    top: -6px;
  }
  .pds-mobile span::after {
    top: 6px;
  }

  /* === BREADCRUMB === */
  .crumb {
    padding: 18px 0 0;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .crumb a:hover {
    color: var(--accent);
  }
  .crumb span {
    color: var(--accent);
  }

  /* === HERO === */
  .hero {
    padding: 36px 0 60px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(33px, 4.2vw, 50px);
  }
  .hero h1 .hl {
    position: relative;
    /* white-space: nowrap; */
  }
  /* .hero h1 .hl::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 4px;
    height: 10px;
    background: var(--accent);
    opacity: 0.22;
    z-index: -1;
  } */
  .hero .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .hero-ctas {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
  }
  .trustline {
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .trustline b {
    color: var(--ink);
    font-weight: 600;
  }

  /* === HERO VISUAL CARD === */
  .viz-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .viz-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .viz-bar .d {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .viz-bar .t {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .viz-bar .b {
    margin-left: auto;
    background: var(--accent);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .viz-body {
    padding: 18px;
  }

  /* === STRIP === */
  .strip {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
  }
  .strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 26px 0;
  }
  .strip-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 18px;
  }
  .strip-card .h {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
  }
  .strip-card .fl {
    font-size: 21px;
  }
  .strip-card .cn {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 15.5px;
  }
  .strip-card .meta {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.7;
  }
  .strip-card .meta b {
    color: var(--ink);
    font-weight: 600;
  }

  /* === DATA GRID === */
  .data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
  .data-cell {
    background: var(--cream);
    padding: 26px 24px;
  }
  .data-cell .di {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 10px;
  }
  .data-cell h4 {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .data-cell p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* === SIGNALS === */
  .signals {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .sig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
  .sig-cell {
    background: var(--cream);
    padding: 26px 28px;
    display: flex;
    gap: 16px;
  }
  .sig-cell .mk {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    /* background: var(--accent); */
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sig-cell h4 {
    font-size: 16.5px;
    margin-bottom: 5px;
  }
  .sig-cell p {
    font-size: 14px;
    color: var(--ink-soft);
  }
  .sig-cell a {
    color: var(--accent);
    font-weight: 600;
  }
  .sig-cell a:hover {
    text-decoration: underline;
  }

  /* === USE CASES === */
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .uc {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 22px;
    border-left: 3px solid var(--accent);
  }
  .uc h4 {
    font-size: 16.5px;
    margin-bottom: 6px;
  }
  .uc p {
    font-size: 13.5px;
    color: var(--ink-soft);
  }

  /* === STEPS === */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .step {
    padding: 28px 24px 0 0;
    border-top: 2px solid var(--ink);
  }
  .step:not(:last-child) {
    padding-right: 28px;
  }
  .step .n {
    font-family: "IBM Plex Mono";
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .step h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .step p {
    font-size: 14px;
    color: var(--ink-soft);
  }

  /* === FAQ === */
  .faq {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .faq-list {
    max-width: 820px;
    margin: 0 auto;
  }
  .qa {
    border-bottom: 1px solid var(--line);
  }
  .qa:first-child {
    border-top: 1px solid var(--line);
  }
  .qa-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
  }
  .qa-q .pm {
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  .qa-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s;
  }
  .qa-a p {
    padding: 0 4px 22px;
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 700px;
  }

  /* === CTA BAND === */
  .ctaband {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 64px 0;
  }
  .ctaband h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    color: #fff;
    max-width: 720px;
    margin: 0 auto 14px;
  }
  .ctaband p {
    color: #dde9ff;
    max-width: 560px;
    margin: 0 auto 22px;
    font-size: 16px;
  }
  .ctaband .ctas {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* === FOOTER === */
  footer {
    background: var(--ink);
    color: #a9aeb9;
    padding: 54px 0 28px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 34px;
  }
  .foot-grid h5 {
    font-family: "Bricolage Grotesque";
    color: var(--paper);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 15px;
  }
  .foot-grid a {
    display: block;
    font-size: 14px;
    margin-bottom: 9px;
    color: #a9aeb9;
  }
  .foot-grid a:hover {
    color: var(--accent);
  }
  .foot-about {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    margin-top: 12px;
  }
  .foot-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  /* === RESOURCE CARDS (resources page) === */
  .res-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 50px;
  }
  .res-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px;
    transition:
      transform 0.2s,
      box-shadow 0.2s,
      border-color 0.2s;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    color: var(--ink);
  }
  .res-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(21, 24, 31, 0.08);
    border-color: var(--accent);
  }
  .res-card .ic {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 21px;
    color: #fff;
  }
  .res-card .ic.blog {
    background: var(--accent);
  }
  .res-card .ic.case {
    background: var(--green);
  }
  .res-card .ic.research {
    background: var(--purple);
  }
  .res-card .ic.white {
    background: var(--ink);
  }
  .res-card .ic.info {
    background: var(--red);
  }
  .res-card .ic.video {
    background: var(--amber);
  }
  .res-card .ic.news {
    background: #00874c;
  }
  .res-card .ic.tech {
    background: #c9302c;
  }
  .res-card .ct {
    flex: 1;
    min-width: 0;
  }
  .res-card .lbl {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
  }
  .res-card h3 {
    font-size: 21px;
    margin-bottom: 7px;
    line-height: 1.2;
    color: var(--ink);
  }
  .res-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 11px;
  }
  .res-card .arr-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    font-family: "IBM Plex Mono";
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: gap 0.15s;
  }
  .res-card:hover .arr-link {
    gap: 10px;
  }

  /* === REVEAL ANIMATIONS === */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.6s,
      transform 0.6s;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* === RESPONSIVE === */
  @media (max-width: 1280px) {
    .pds-link {
      padding: 10px 11px;
      font-size: 14px;
    }
    .pds-items {
      gap: 2px;
    }
  }
  @media (max-width: 1180px) {
    .pds-link {
      padding: 10px 9px;
      font-size: 13.5px;
    }
  }
  @media (max-width: 1100px) {
    .pds-items {
      display: none;
    }
    .pds-mobile {
      display: flex;
    }
    .pds-cta .btn:not(.btn-primary) {
      display: none;
    }
  }
  @media (max-width: 960px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .strip-inner,
    .data-grid,
    .uc-grid {
      grid-template-columns: 1fr 1fr;
    }
    .sig-grid {
      grid-template-columns: 1fr;
    }
    .steps {
      grid-template-columns: 1fr 1fr;
    }
    .foot-grid {
      grid-template-columns: 1fr 1fr;
    }
    .res-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 600px) {
    .wrap {
      padding: 0 20px;
    }
    .strip-inner,
    .data-grid,
    .uc-grid,
    .steps {
      grid-template-columns: 1fr;
    }
    .sec {
      padding: 52px 0;
    }
    .pds-logo-text i {
      display: none;
    }
    .res-card {
      flex-direction: column;
    }
    .foot-grid {
      grid-template-columns: 1fr;
    }
  }

  /* === INDUSTRY ACCENT OVERRIDES === */
  body.acc-beauty .hero h1 .hl::after,
  body.acc-beauty .data-cell .di,
  body.acc-beauty .sig-cell .mk {
    background: var(--c-beauty);
  }
  body.acc-beauty .uc {
    border-left-color: var(--c-beauty);
  }
  body.acc-toys .hero h1 .hl::after,
  body.acc-toys .data-cell .di,
  body.acc-toys .sig-cell .mk {
    background: var(--c-toys);
  }
  body.acc-toys .uc {
    border-left-color: var(--c-toys);
  }
  body.acc-sport .hero h1 .hl::after,
  body.acc-sport .data-cell .di,
  body.acc-sport .sig-cell .mk {
    background: var(--c-sport);
  }
  body.acc-sport .uc {
    border-left-color: var(--c-sport);
  }
  body.acc-auto .hero h1 .hl::after,
  body.acc-auto .data-cell .di,
  body.acc-auto .sig-cell .mk {
    background: var(--c-auto);
  }
  body.acc-auto .uc {
    border-left-color: var(--c-auto);
  }
  body.acc-baby .hero h1 .hl::after,
  body.acc-baby .data-cell .di,
  body.acc-baby .sig-cell .mk {
    background: var(--c-baby);
  }
  body.acc-baby .uc {
    border-left-color: var(--c-baby);
  }
  body.acc-pet .hero h1 .hl::after,
  body.acc-pet .data-cell .di,
  body.acc-pet .sig-cell .mk {
    background: var(--c-pet);
  }
  body.acc-pet .uc {
    border-left-color: var(--c-pet);
  }

  /* =====================================================
   POPUPS (used across all sections)
   ===================================================== */
  .pds-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .pds-popup.show {
    display: flex;
  }
  .pds-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 24, 31, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
  }
  .pds-popup-content {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  }
  .pds-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #5b6172;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 8px;
  }
  .pds-popup-close:hover {
    background: #f4f6fa;
    color: #15181f;
  }
  .pds-popup-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #15181f;
  }
  .pds-popup-sub {
    color: #5b6172;
    font-size: 14.5px;
    margin-bottom: 22px;
  }
  .pds-popup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .pds-form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #15181f;
    margin-bottom: 5px;
  }
  .pds-form-row input,
  .pds-form-row textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d9dfe9;
    border-radius: 9px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: #15181f;
  }
  .pds-form-row input:focus,
  .pds-form-row textarea:focus {
    outline: none;
    border-color: #2f6df6;
  }
  .pds-contact-info {
    padding: 18px;
    background: #f4f6fa;
    border-radius: 10px;
    margin-top: 8px;
  }
  .pds-contact-info p {
    font-size: 14px;
    margin-bottom: 9px;
    color: #15181f;
  }
  .pds-contact-info p:last-child {
    margin-bottom: 0;
  }
  .pds-contact-info a {
    color: #2f6df6;
    font-weight: 600;
  }
  body.popup-open {
    overflow: hidden;
  }

  /* =====================================================
   pds-countries.css
   Page-UNIQUE styles for Country pages.
   Common selectors (.hero, .btn, .wrap, .topbar, .nav, etc.)
   are handled by pds-common.css with proper responsive rules.
   ===================================================== */

  /* =====================================================
   pds-countries.css
   Page-UNIQUE styles for all Country pages.
   Common selectors handled by pds-common.css.
   ===================================================== */

  /* ============ country-united-states.php ============ */
   .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 13px 6px 8px;
    margin-bottom: 18px;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    font-weight: 600;
  }
   .flag-line .fl {
    font-size: 18px;
  }
   .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .card-bar .badge {
    margin-left: auto;
    background: var(--us-r);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .card-body {
    padding: 14px 16px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
   .ret-tile {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 12px 10px;
    text-align: center;
    font-size: 12px;
  }
   .ret-tile .nm {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 3px;
  }
   .ret-tile .ct {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
   .ret-tile.hl {
    background: #fff5e8;
    border-color: #ffd1a3;
  }
   .ret-tile.hl .nm {
    color: var(--us);
  }
   .ret-foot {
    padding: 11px 14px 4px;
    font-size: 11.5px;
    color: var(--ink-soft);
    text-align: center;
    font-family: "IBM Plex Mono";
    letter-spacing: 0.04em;
  }
   .ret-foot b {
    color: var(--us);
    font-weight: 700;
  }
   .stats {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
  }
   .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
   .stat {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 22px 24px;
  }
   .stat .n {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 32px;
    color: var(--us);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
   .stat .l {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
   .ret-section {
    margin-bottom: 30px;
  }
   .ret-section .ret-h {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--us);
  }
   .ret-section .ret-h .icn {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 12px;
    color: #000;
    background: var(--us);
    padding: 4px 10px;
    border-radius: 5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
   .ret-section .ret-h h3 {
    font-size: 18px;
    color: var(--ink);
  }
   .ret-section .rgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
   .rcard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
   .rcard .name {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 14px;
  }
   .rcard .meta {
    font-size: 11.5px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
   .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
   .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
   .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 5px;
  }
   .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

/* ============ country-united-kingdom.php ============ */
 .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 13px 6px 8px;
    margin-bottom: 18px;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    font-weight: 600;
  }
   .flag-line .fl {
    font-size: 18px;
  }
   .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .card-bar .badge {
    margin-left: auto;
    background: var(--uk-r);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .card-body {
    padding: 14px 16px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
   .ret-tile {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 12px 10px;
    text-align: center;
    font-size: 12px;
  }
   .ret-tile .nm {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 3px;
  }
   .ret-tile .ct {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
   .ret-tile.hl {
    background: #e6f0fa;
    border-color: #b3d1ec;
  }
   .ret-tile.hl .nm {
    color: var(--uk);
  }
   .ret-foot {
    padding: 11px 14px 4px;
    font-size: 11.5px;
    color: var(--ink-soft);
    text-align: center;
    font-family: "IBM Plex Mono";
    letter-spacing: 0.04em;
  }
   .ret-foot b {
    color: var(--uk);
    font-weight: 700;
  }
   .stats {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
  }
   .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
   .stat {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 22px 24px;
  }
   .stat .n {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 32px;
    color: var(--uk);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
   .stat .l {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
   .ret-section {
    margin-bottom: 30px;
  }
   .ret-section .ret-h {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--uk);
  }
   .ret-section .ret-h .icn {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 12px;
    color: #000;
    background: var(--uk);
    padding: 4px 10px;
    border-radius: 5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
   .ret-section .ret-h h3 {
    font-size: 18px;
    color: var(--ink);
  }
   .ret-section .rgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
   .rcard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
   .rcard .name {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 14px;
  }
   .rcard .meta {
    font-size: 11.5px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
   .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
   .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
   .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--ink);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
  }
   .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

/* ============ country-india.php ============ */
 .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 13px 6px 8px;
    margin-bottom: 18px;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    font-weight: 600;
  }
   .flag-line .fl {
    font-size: 18px;
  }
   .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .card-bar .badge {
    margin-left: auto;
    background: var(--ind-o);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .card-body {
    padding: 14px 16px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
   .ret-tile {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 12px 10px;
    text-align: center;
    font-size: 12px;
  }
   .ret-tile .nm {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 3px;
  }
   .ret-tile .ct {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
   .ret-tile.hl {
    background: #fff5e8;
    border-color: #ffd1a3;
  }
   .ret-tile.hl .nm {
    color: #b85e0b;
  }
   .ret-foot {
    padding: 11px 14px 4px;
    font-size: 11.5px;
    color: var(--ink-soft);
    text-align: center;
    font-family: "IBM Plex Mono";
    letter-spacing: 0.04em;
  }
   .ret-foot b {
    color: var(--ind-g);
    font-weight: 700;
  }
   .stats {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
  }
   .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
   .stat {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 22px 24px;
  }
   .stat .n {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 32px;
    color: var(--ind-g);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
   .stat .l {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
   .ret-section {
    margin-bottom: 30px;
  }
   .ret-section .ret-h {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--ind-g);
  }
   .ret-section .ret-h .icn {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 12px;
    color: #000;
    background: var(--ind-g);
    padding: 4px 10px;
    border-radius: 5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
   .ret-section .ret-h h3 {
    font-size: 18px;
    color: var(--ink);
  }
   .ret-section .rgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
   .rcard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
   .rcard .name {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 14px;
  }
   .rcard .meta {
    font-size: 11.5px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
   .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
   .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
   .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 5px;
  }
   .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

/* ============ country-uae.php ============ */
 .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-big {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
   .qf-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .qf-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .qf-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .qf-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .qf-bar .badge {
    margin-left: auto;
    background: var(--uae);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .qf-body {
    padding: 18px;
  }
   .qf-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    font-size: 13px;
  }
   .qf-row:last-child {
    border-bottom: none;
  }
   .qf-row .lbl {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding-top: 2px;
  }
   .qf-row .val {
    color: var(--ink);
    line-height: 1.55;
  }
   .qf-row .val b {
    font-weight: 700;
  }
   .qf-row .val .pill {
    display: inline-block;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #e6f3ec;
    color: var(--uae);
    margin-right: 5px;
    margin-bottom: 3px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
   .ret-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 22px;
    border-top: 3px solid var(--accent);
  }
   .ret-card .rt {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--uae);
    font-weight: 700;
    margin-bottom: 6px;
  }
   .ret-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
   .ret-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 6px;
  }
   .ret-card .lst {
    font-size: 12px;
    color: var(--ink);
    font-family: "IBM Plex Mono";
    line-height: 1.6;
  }
   .sale-timeline {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
   .st-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 18px 20px;
  }
   .st-card .mon {
    font-family: "IBM Plex Mono";
    font-size: 10px;
    color: var(--uae);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
   .st-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .st-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

/* ============ country-australia.php ============ */
 .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-big {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
   .qf-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .qf-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .qf-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .qf-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .qf-bar .badge {
    margin-left: auto;
    background: var(--au);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .qf-body {
    padding: 18px;
  }
   .qf-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    font-size: 13px;
  }
   .qf-row:last-child {
    border-bottom: none;
  }
   .qf-row .lbl {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding-top: 2px;
  }
   .qf-row .val {
    color: var(--ink);
    line-height: 1.55;
  }
   .qf-row .val b {
    font-weight: 700;
  }
   .qf-row .val .pill {
    display: inline-block;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #e6ecf5;
    color: var(--au);
    margin-right: 5px;
    margin-bottom: 3px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
   .ret-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 22px;
    border-top: 3px solid var(--accent);
  }
   .ret-card .rt {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--au);
    font-weight: 700;
    margin-bottom: 6px;
  }
   .ret-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
   .ret-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 6px;
  }
   .ret-card .lst {
    font-size: 12px;
    color: var(--ink);
    font-family: "IBM Plex Mono";
    line-height: 1.6;
  }
   .sale-timeline {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
   .st-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 18px 20px;
  }
   .st-card .mon {
    font-family: "IBM Plex Mono";
    font-size: 10px;
    color: var(--au);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
   .st-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .st-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

/* ============ country-canada.php ============ */
 .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-big {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
   .qf-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .qf-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .qf-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .qf-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .qf-bar .badge {
    margin-left: auto;
    background: var(--ca);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .qf-body {
    padding: 18px;
  }
   .qf-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    font-size: 13px;
  }
   .qf-row:last-child {
    border-bottom: none;
  }
   .qf-row .lbl {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding-top: 2px;
  }
   .qf-row .val {
    color: var(--ink);
    line-height: 1.55;
  }
   .qf-row .val b {
    font-weight: 700;
  }
   .qf-row .val .pill {
    display: inline-block;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #fde6e8;
    color: var(--ca);
    margin-right: 5px;
    margin-bottom: 3px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
   .ret-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 22px;
    border-top: 3px solid var(--accent);
  }
   .ret-card .rt {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ca);
    font-weight: 700;
    margin-bottom: 6px;
  }
   .ret-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
   .ret-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 6px;
  }
   .ret-card .lst {
    font-size: 12px;
    color: var(--ink);
    font-family: "IBM Plex Mono";
    line-height: 1.6;
  }
   .sale-timeline {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
   .st-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 18px 20px;
  }
   .st-card .mon {
    font-family: "IBM Plex Mono";
    font-size: 10px;
    color: var(--ca);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
   .st-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .st-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

/* ============ country-germany.php ============ */
 .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-big {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
   .qf-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .qf-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .qf-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .qf-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .qf-bar .badge {
    margin-left: auto;
    background: var(--de);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .qf-body {
    padding: 18px;
  }
   .qf-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    font-size: 13px;
  }
   .qf-row:last-child {
    border-bottom: none;
  }
   .qf-row .lbl {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding-top: 2px;
  }
   .qf-row .val {
    color: var(--ink);
    line-height: 1.55;
  }
   .qf-row .val b {
    font-weight: 700;
  }
   .qf-row .val .pill {
    display: inline-block;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #fde4e4;
    color: var(--de);
    margin-right: 5px;
    margin-bottom: 3px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
   .ret-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 22px;
    border-top: 3px solid var(---accent);
  }
   .ret-card .rt {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--de);
    font-weight: 700;
    margin-bottom: 6px;
  }
   .ret-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
   .ret-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 6px;
  }
   .ret-card .lst {
    font-size: 12px;
    color: var(--ink);
    font-family: "IBM Plex Mono";
    line-height: 1.6;
  }
   .gdpr {
    background: #f0f7ff;
    border: 1px solid #cfdef8;
    border-radius: 11px;
    padding: 16px 22px;
    margin-top: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
   .gdpr .ic {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    background: var(--accent);
    padding: 4px 9px;
    border-radius: 5px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
   .gdpr p {
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.6;
  }
   .gdpr p b {
    color: var(--accent);
    font-weight: 700;
  }
   .sale-timeline {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
   .st-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 18px 20px;
  }
   .st-card .mon {
    font-family: "IBM Plex Mono";
    font-size: 10px;
    color: var(--de);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
   .st-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .st-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

/* ============ country-singapore.php ============ */
 .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    text-align: center;
    padding: 9px 16px;
  }
   .flag-big {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
   .qf-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
   .qf-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
   .qf-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
   .qf-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
   .qf-bar .badge {
    margin-left: auto;
    background: var(--sg);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
   .qf-body {
    padding: 18px;
  }
   .qf-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    font-size: 13px;
  }
   .qf-row:last-child {
    border-bottom: none;
  }
   .qf-row .lbl {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding-top: 2px;
  }
   .qf-row .val {
    color: var(--ink);
    line-height: 1.55;
  }
   .qf-row .val b {
    font-weight: 700;
  }
   .qf-row .val .pill {
    display: inline-block;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #fde6e8;
    color: var(--sg);
    margin-right: 5px;
    margin-bottom: 3px;
  }
   .ret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
   .ret-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 22px;
    border-top: 3px solid var(--accent);
  }
   .ret-card .rt {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sg);
    font-weight: 700;
    margin-bottom: 6px;
  }
   .ret-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
   .ret-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 6px;
  }
   .ret-card .lst {
    font-size: 12px;
    color: var(--ink);
    font-family: "IBM Plex Mono";
    line-height: 1.6;
  }
   .asean {
    background: #fff;
    border: 2px solid var(--sg);
    border-radius: var(--r);
    padding: 24px 28px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    margin-top: 30px;
  }
   .asean .flags {
    font-size: 34px;
    line-height: 1;
    letter-spacing: 2px;
  }
   .asean h4 {
    font-size: 17px;
    margin-bottom: 5px;
  }
   .asean p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
   .asean p b {
    color: var(--sg);
    font-weight: 700;
  }
   .sale-timeline {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
   .st-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
   .st-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 18px 20px;
  }
   .st-card .mon {
    font-family: "IBM Plex Mono";
    font-size: 10px;
    color: var(--sg);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
   .st-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
   .st-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  @media (max-width: 960px) {
     .stats-inner {
      grid-template-columns: 1fr 1fr;
    }
     .ret-section .rgrid {
      grid-template-columns: 1fr 1fr;
    }
     .del-grid {
      grid-template-columns: 1fr 1fr;
    }
     .ret-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
     .stats-inner,
     .ret-section .rgrid,
     .del-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 960px) {
     .stats-inner {
      grid-template-columns: 1fr 1fr;
    }
     .ret-section .rgrid {
      grid-template-columns: 1fr 1fr;
    }
     .del-grid {
      grid-template-columns: 1fr 1fr;
    }
     .ret-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
     .stats-inner,
     .ret-section .rgrid,
     .del-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 960px) {
     .stats-inner {
      grid-template-columns: 1fr 1fr;
    }
     .ret-section .rgrid {
      grid-template-columns: 1fr 1fr;
    }
     .del-grid {
      grid-template-columns: 1fr 1fr;
    }
     .ret-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
     .stats-inner,
     .ret-section .rgrid,
     .del-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 960px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 960px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 960px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 960px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 960px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr 1fr;
    }
     .asean {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 600px) {
     .ret-grid,
     .st-grid {
      grid-template-columns: 1fr;
    }
  }
}
/* === EMERGING COUNTRY PAGES (shared rt-card style) === */
.rt-card .rt-row{display:grid;grid-template-columns:1.4fr 1.4fr .9fr;gap:11px;padding:10px 12px;border:1px solid var(--line);border-radius:8px;margin-bottom:6px;align-items:center;font-family:'IBM Plex Mono'}
.rt-card .rt-row.hot{background:#fef5e7;border-color:#fcd9a3}
.rt-card .rt-row.down{background:#fef2f2;border-color:#fca5a5}
.rt-card .rt-nm{font-family:'IBM Plex Sans';font-weight:600;font-size:12.5px;color:var(--ink)}
.rt-card .rt-mid{font-size:11px;color:var(--ink-soft)}
.rt-card .rt-end{font-size:12px;font-weight:800;color:var(--green);text-align:right}
.rt-card .rt-row.down .rt-end{color:var(--red)}
.rt-card .rt-legend{margin-top:10px;font-family:'IBM Plex Mono';font-size:10px;color:var(--ink-soft);text-transform:uppercase;letter-spacing:.04em;text-align:center}

@media(max-width:600px){
.rt-card .rt-row{grid-template-columns:1fr;gap:4px}
.rt-card .rt-end{text-align:left}
}