@charset "UTF-8";
/* ============================================================
   PaySpot ME — Platni promet (bill payment) page
   Used ONLY by usluga-platni-promet-cg/-en.html.

   Self-contained + namespaced under .pp so it never collides with
   the legacy css/style.css. The shared header/footer keep
   css/site-chrome.css + js/site.js; this file styles the page body
   that lives inside the fixed-scroll .root.

   Design: the PaySpot "ink vault" language — near-black surfaces,
   brand red, the diamond mark — shared with css/transfer.css so the
   service pages read as one family. Signature here is the live
   "payment receipt": pick a biller, set the amount, choose cash or
   card, and the slip stamps PLAĆENO and locks in a confirmation code.
   No fees are invented — the source page quotes none.
   Type roles: Space Grotesk (display/figures), Poppins (body, matches
   the site), Space Mono (codes + money data).
   ============================================================ */

.pp {
  /* ---- tokens (mirror the brand system) ---- */
  --red: #e10000;
  --red-600: #c20000;
  --red-700: #a30000;
  --red-300: #ff6a62;
  --red-soft: #ffecec;

  --ink: #0e0f14;
  --ink-1: #14151a;
  --ink-2: #1a1c24;
  --panel: #15161d;
  --text: #1f2330;
  --muted: #626875;
  --muted-2: #8a909c;
  --line: #e9ebf0;
  --line-2: #f0f2f6;

  --paper: #ffffff;
  --soft: #eef0f4;

  --radius-xl: 30px;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;

  --shadow-md: 0 16px 40px rgba(16, 18, 27, 0.1);
  --shadow-lg: 0 34px 80px rgba(16, 18, 27, 0.18);
  --shadow-red: 0 18px 40px rgba(225, 0, 0, 0.3);

  --grad-red: linear-gradient(120deg, #ff3b30 0%, #e10000 55%, #b00000 100%);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --disp: "Space Grotesk", "Poppins", system-ui, sans-serif;
  --body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "Space Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  --mark-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.06' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");
  --mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23e6eaf1' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E");

  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

.pp *,
.pp *::before,
.pp *::after {
  box-sizing: border-box;
}
.pp h1,
.pp h2,
.pp h3,
.pp h4,
.pp p {
  margin: 0;
}
/* The reset above (.pp p = spec 0,1,1) out-specifies single-class paragraph
   margins like .pp-lead (0,1,0), so they silently collapse to 0. Re-assert
   them with the .pp prefix — margin only, so color/variant rules such as
   .pp-sub--light are untouched. */
.pp .pp-lead {
  margin-top: 26px;
}
.pp .pp-sub {
  margin-top: 14px;
}
.pp .pp-slip-note {
  margin-top: 16px;
}
.pp a {
  color: inherit;
  text-decoration: none;
}
.pp ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pp img {
  display: block;
  max-width: 100%;
}
.pp :focus-visible {
  outline: 3px solid rgba(225, 0, 0, 0.5);
  outline-offset: 3px;
  border-radius: 6px;
}

.pp-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* shared eyebrow — uppercase red micro-label with a leading bar */
.pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.pp-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.pp-eyebrow--light {
  color: var(--red-300);
}
.pp-eyebrow--light::before {
  background: var(--red-300);
}
.pp-eyebrow--center {
  justify-content: center;
}

/* section heading block */
.pp-head {
  max-width: 740px;
  margin: 0 auto 52px;
  text-align: center;
}
.pp-head .pp-eyebrow {
  margin-bottom: 16px;
}
.pp-title {
  font-family: var(--disp);
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pp-title .hl {
  color: var(--red);
}
.pp-title--light {
  color: #fff;
}
.pp-sub {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--muted);
}
.pp-sub--light {
  color: rgba(255, 255, 255, 0.66);
}

/* buttons */
.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
/* scoped under .pp so the color wins over `.pp a { color: inherit }`
   (which otherwise out-specifies a single-class button rule) */
.pp .pp-btn-primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.pp .pp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(225, 0, 0, 0.4);
}
.pp .pp-btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.pp .pp-btn-light:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}
.pp .pp-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.pp .pp-btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

/* ============================================================
   HERO  —  copy + live payment receipt on an ink stage
   ============================================================ */
.pp-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      1000px 640px at 84% 14%,
      rgba(225, 0, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #15161d 0%, #0e0f14 60%, #101117 100%);
  color: #fff;
  /* clears the fixed header (top bar ~42 + nav ~84) and breathes */
  padding: clamp(132px, 15vh, 176px) 0 clamp(64px, 8vh, 104px);
}
/* diamond watermark on the stage */
.pp-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 520px;
  height: 620px;
  background: var(--mark-white) center / contain no-repeat;
  pointer-events: none;
}
/* closing red hairline beam */
.pp-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(760px, 86%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(225, 0, 0, 0.75),
    transparent
  );
}
.pp-hero .pp-wrap {
  position: relative;
  z-index: 2;
}
.pp-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: center;
}
.pp-hero-copy .pp-eyebrow {
  margin-bottom: 22px;
}
.pp-hero h1 {
  font-family: var(--disp);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
/* the key phrase in a solid red stamp — a marker swipe, not the
   gradient-text default */
.pp-hero h1 .hl {
  display: inline-block;
  white-space: nowrap;
  background: var(--grad-red);
  color: #fff;
  padding: 0.02em 0.26em 0.1em;
  border-radius: 0.16em;
  box-shadow: 0 14px 36px rgba(225, 0, 0, 0.36);
}
.pp-lead {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.pp-lead b {
  color: #fff;
  font-weight: 600;
}
.pp-lead a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 106, 98, 0.7);
}

/* three proofs as a hairline-divided row */
.pp-why {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.pp-why-item {
  padding: 20px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.pp-why-item:first-child {
  border-left: 0;
}
.pp-why-item b {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--disp);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
  color: #fff;
}
.pp-why-item b::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.34em; /* optically center the diamond on the first line */
  background: var(--red-300);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.pp-why-item span {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}
/* while the hero is two-column the why labels sit in narrow cells and a
   longer one (e.g. "Gotovina ili kartica") wraps to two lines — reserve the
   two-line height on all three so their descriptions stay on one baseline */
@media (min-width: 981px) {
  .pp-why-item b {
    min-height: 2.5em;
  }
}

/* ----- the live fee calculator (amount → provizija → total) ----- */
.pp-slip {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  border-radius: 26px;
  padding: 28px clamp(22px, 2.3vw, 30px) 26px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.02) 62%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}
/* top hairline beam */
.pp-slip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 98, 0.6),
    transparent
  );
}
.pp-slip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}
.pp-slip-brand {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.66);
}
.pp-slip-brand b {
  color: #fff;
}
/* "Tarifa naknada" tag — signals the figures are tariff-driven */
.pp-slip-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-300);
  padding: 5px 11px;
  border-radius: var(--pill);
  background: rgba(225, 0, 0, 0.14);
  border: 1px solid rgba(255, 106, 98, 0.3);
  white-space: nowrap;
}
.pp-slip-tag svg {
  width: 12px;
  height: 12px;
}

/* biller chips — each prefills a representative bill amount */
.pp-billers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pp-biller {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.66);
  padding: 8px 13px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.pp-biller:hover {
  color: #fff;
  border-color: rgba(255, 106, 98, 0.45);
}
.pp-biller.is-on {
  background: var(--grad-red);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(225, 0, 0, 0.32);
}

.pp-slip-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.pp-amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 14px;
}
.pp-amount input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  font-family: var(--disp);
  font-size: clamp(38px, 5.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  -moz-appearance: textfield;
}
.pp-amount input::-webkit-outer-spin-button,
.pp-amount input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pp-amount .cur {
  flex: 0 0 auto;
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 600;
  color: var(--red-300);
}

/* range */
.pp-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.14);
  background-image: linear-gradient(var(--red), var(--red));
  background-repeat: no-repeat;
  background-size: var(--p, 12%) 100%;
  outline: none;
  cursor: pointer;
}
.pp-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.pp-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.pp-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* result rows: provizija + total */
.pp-rows {
  margin-top: 22px;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.pp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(20, 21, 26, 0.5);
}
.pp-row .k {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.66);
}
.pp-row .v {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: right;
}
.pp-row--total {
  background: rgba(225, 0, 0, 0.14);
}
.pp-row--total .k {
  color: #fff;
  font-weight: 600;
}
.pp-row--total .v {
  color: var(--red-300);
  font-size: 18px;
}

/* applicable tariff tier — transparency hint under the result */
.pp-rule {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #0c0d12;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}
.pp-rule svg {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  flex: 0 0 auto;
  color: var(--red-300);
}
.pp-rule b {
  color: var(--red-300);
  font-weight: 700;
}

.pp-slip-note {
  margin-top: 16px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}

/* ============================================================
   BILL CATEGORIES — "pay everything in one place"
   light slate canvas, ink-vault tiles
   ============================================================ */
.pp-bills {
  position: relative;
  background: var(--soft);
  background-image: var(--mark-light), var(--mark-light);
  background-repeat: no-repeat;
  background-position: right -150px top -90px, left -170px bottom -120px;
  background-size: 380px auto, 340px auto;
  padding: clamp(70px, 9vw, 110px) 0;
}
.pp-bill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.pp-bill {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px 24px;
  border-radius: var(--radius);
  background-color: var(--ink-1);
  background-image: radial-gradient(
    220px 160px at 120% -20%,
    rgba(225, 0, 0, 0.22),
    transparent 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease);
}
.pp-bill:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 98, 0.4);
  box-shadow: 0 28px 56px rgba(8, 9, 14, 0.4);
}
.pp-bill-ico {
  width: 52px;
  height: 52px;
  margin: 4px 0 22px 6px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--red-300);
  background: rgba(225, 0, 0, 0.14);
  border: 1px solid rgba(255, 106, 98, 0.3);
  transform: rotate(45deg);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.pp-bill-ico svg {
  width: 23px;
  height: 23px;
  transform: rotate(-45deg);
}
.pp-bill:hover .pp-bill-ico {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.pp-bill h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.pp-bill p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
/* the closing tile: a red "and everything else" statement */
.pp-bill--all {
  background-color: var(--red-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath fill='%23ffffff' fill-opacity='.14' d='M94 16L16 94L76 94L94 76ZM106 16L184 94L124 94L106 76ZM184 106L136 154L106 124L124 106ZM16 106L140 230L170 200L76 106Z'/%3E%3C/svg%3E"),
    var(--grad-red);
  background-repeat: no-repeat;
  background-position: right -40px bottom -60px, 0 0;
  background-size: 180px auto, auto;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-red);
}
.pp-bill--all .pp-bill-ico {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.pp-bill--all:hover .pp-bill-ico {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
}
.pp-bill--all p {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   HOW IT WORKS — numbered steps on an ink stage
   ============================================================ */
.pp-how {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: radial-gradient(
      900px 540px at 12% 0%,
      rgba(225, 0, 0, 0.14),
      transparent 60%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -120px bottom -150px;
  background-size: auto, 420px auto;
  color: #fff;
  padding: clamp(70px, 9vw, 110px) 0;
}
.pp-how .pp-title {
  color: #fff;
}
.pp-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
/* dashed flight-line behind the step icons */
.pp-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    var(--red-300) 0 14px,
    transparent 14px 26px
  );
  background-size: 26px 2px;
  opacity: 0.5;
  z-index: 0;
}
.pp-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px 28px;
  border-radius: var(--radius);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.pp-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 98, 0.4);
}
.pp-step-ico {
  width: 54px;
  height: 54px;
  margin: 0 0 22px 6px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
  box-shadow: 0 12px 26px rgba(225, 0, 0, 0.34);
}
.pp-step-ico svg {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
}
.pp-step-n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red-300);
}
.pp-step h3 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.pp-step p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   SECURITY — control card (ink) + Central Bank card (light)
   ============================================================ */
.pp-secure {
  background: var(--soft);
  background-image: var(--mark-light);
  background-repeat: no-repeat;
  background-position: left -170px top -110px;
  background-size: 380px auto;
  padding: clamp(66px, 8vw, 100px) 0;
}
.pp-secure-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 24px;
  align-items: stretch;
}
/* dark "strict control systems" statement card */
.pp-secure-dark {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 46px);
  border-radius: var(--radius-xl);
  background-color: var(--ink-1);
  background-image: radial-gradient(
      600px 320px at 110% -10%,
      rgba(225, 0, 0, 0.22),
      transparent 60%
    ),
    var(--mark-white);
  background-repeat: no-repeat;
  background-position: 0 0, right -100px bottom -120px;
  background-size: auto, 320px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.pp-secure-dark .pp-eyebrow {
  margin-bottom: 16px;
}
.pp-secure-dark h3 {
  font-family: var(--disp);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.pp-secure-dark p {
  margin-top: 16px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 48ch;
}
.pp-secure-dark p b {
  color: #fff;
  font-weight: 600;
}
/* security proof chips at the foot of the dark card */
.pp-secure-chips {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pp-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.pp-chip svg {
  width: 15px;
  height: 15px;
  color: var(--red-300);
}

/* light Central Bank compliance card */
.pp-secure-light {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--paper);
  background-image: var(--mark-light);
  background-repeat: no-repeat;
  background-position: right -70px top -80px;
  background-size: 230px auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.pp-shield {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid #ffd6d2;
  margin-bottom: 22px;
}
.pp-shield svg {
  width: 28px;
  height: 28px;
}
.pp-secure-light .pp-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.pp-secure-light h3 {
  margin-top: 10px;
  font-family: var(--disp);
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pp-secure-light p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
}
.pp-secure-light p b {
  color: var(--ink);
  font-weight: 600;
}
.pp-reg {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}
.pp-reg::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ============================================================
   LOCATIONS + CTA BAND
   ============================================================ */
.pp-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 160% at 0% 0%, #2a0d12, #0e0f14 60%);
}
.pp-band::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -70px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(225, 0, 0, 0.5), transparent 65%);
  filter: blur(54px);
}
.pp-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mark-white) left -120px center / 320px auto no-repeat;
  pointer-events: none;
}
.pp-band .pp-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: clamp(56px, 7vw, 76px);
  padding-bottom: clamp(56px, 7vw, 76px);
}
.pp-band-copy {
  max-width: 560px;
}
.pp-band-copy .pp-eyebrow {
  margin-bottom: 14px;
}
.pp-band h2 {
  font-family: var(--disp);
  color: #fff;
  font-size: clamp(25px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.pp-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.pp-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   REVEAL  (driven by site.js [data-reveal] -> .in)
   ============================================================ */
.pp [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
.pp [data-reveal].in {
  opacity: 1;
  transform: none;
}
/* containers that aren't the hover-cards get the simple transition */
.pp-head[data-reveal],
.pp-hero-copy[data-reveal],
.pp-slip[data-reveal],
.pp-secure-dark[data-reveal],
.pp-secure-light[data-reveal],
.pp-band-copy[data-reveal],
.pp-band-actions[data-reveal] {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* staggered grid entrances — restated so hover transform/shadow survive
   (the bare reveal rule would otherwise drop them) */
.pp-bill-grid > [data-reveal],
.pp-steps > [data-reveal] {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease), opacity 0.6s var(--ease);
}
.pp-bill-grid > [data-reveal]:nth-child(2),
.pp-steps > [data-reveal]:nth-child(2) {
  transition-delay: 70ms;
}
.pp-bill-grid > [data-reveal]:nth-child(3),
.pp-steps > [data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}
.pp-bill-grid > [data-reveal]:nth-child(4),
.pp-steps > [data-reveal]:nth-child(4) {
  transition-delay: 210ms;
}
.pp-bill-grid > [data-reveal]:nth-child(5) {
  transition-delay: 280ms;
}
.pp-bill-grid > [data-reveal]:nth-child(6) {
  transition-delay: 350ms;
}
.pp-bill-grid > [data-reveal]:nth-child(7) {
  transition-delay: 420ms;
}
.pp-bill-grid > [data-reveal]:nth-child(8) {
  transition-delay: 490ms;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .pp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pp-slip {
    max-width: 520px;
    margin: 0 auto;
  }
  .pp-bill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pp-secure-grid {
    grid-template-columns: 1fr;
  }
  .pp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pp-steps::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .pp-wrap {
    padding: 0 18px;
  }
  .pp-why {
    grid-template-columns: 1fr;
  }
  .pp-why-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pp-why-item:first-child {
    border-top: 0;
  }
  .pp-bill-grid {
    grid-template-columns: 1fr;
  }
  .pp-steps {
    grid-template-columns: 1fr;
  }
  .pp-slip {
    padding: 24px 18px 22px;
  }
  .pp-band .pp-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp * {
    transition-duration: 0.001ms !important;
    animation: none !important;
  }
  .pp [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
