/* ==========================================================
   PRINT MY CHEQUE — design tokens
   ========================================================== */
:root {
  --navy-deep: #0B2545;
  --navy-2: #123164;
  --navy-3: #1a3f7a;
  --blue-primary: #1E5FBF;
  --blue-primary-dark: #164a99;
  --cyan-accent: #17B6D4;
  --cyan-glow: rgba(23, 182, 212, 0.35);
  --bg-page: #F1F8FF;
  --bg-alt: #E1F0FF;
  --bg-tint: #E8F4FF;
  --ink: #0F1E33;
  --muted: #5B7089;
  --white: #FFFFFF;
  --border-soft: #DCE6F5;
  --shadow-soft: 0 10px 30px -12px rgba(11, 37, 69, 0.18);
  --shadow-lift: 0 18px 44px -14px rgba(11, 37, 69, 0.28);

  --font-display: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(64% 30% at 8% 0%, rgba(191, 226, 255, 0.56), transparent 72%), radial-gradient(52% 24% at 96% 35%, rgba(203, 234, 255, 0.6), transparent 74%), linear-gradient(180deg, #f4faff 0%, var(--bg-page) 28%, #edf7ff 100%);
  overflow-x: hidden;
}

a { text-decoration: none; }

::selection { background: var(--cyan-glow); color: var(--navy-deep); }

/* ==========================================================
   Utility: scroll reveal
   ========================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.22,.9,.25,1), transform 0.7s cubic-bezier(.22,.9,.25,1);
}
[data-reveal].pmc-in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.pmc-navbar {
  padding: 18px 0;
  background: transparent;
  transition: padding 0.35s ease;
  z-index: 1000;
}
.pmc-navbar .container {
  position: relative;
  min-height: 74px;
  padding: 10px 14px 10px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(143, 185, 238, 0.42);
  border-radius: 22px;
  box-shadow: 0 14px 34px -22px rgba(28, 93, 180, 0.34);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: min-height 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.pmc-navbar.pmc-scrolled { padding: 11px 0; }
.pmc-navbar.pmc-scrolled .container {
  min-height: 60px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 16px 36px -20px rgba(28, 93, 180, 0.42);
}
.pmc-navbar.pmc-menu-open .container { border-radius: 22px; box-shadow: 0 18px 40px -20px rgba(28, 93, 180, 0.42); }

.pmc-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  gap: 0;
}
.pmc-brand-mark { color: var(--blue-primary); display: inline-flex; }

.pmc-nav .nav-link {
  color: #42607f;
  font-weight: 500;
  font-size: 0.86rem;
  padding: 8px 10px !important;
  border-radius: 999px;
  transition: all 0.25s ease;
  position: relative;
}
.pmc-nav .nav-link:hover,
.pmc-nav .nav-link:focus-visible {
  color: var(--blue-primary-dark);
  background: rgba(30, 95, 191, 0.08);
}
.pmc-nav .dropdown-toggle::after { vertical-align: 0.12em; }

@media (min-width: 1200px) {
  .pmc-navbar .navbar-collapse { justify-content: flex-end; }
  .pmc-navbar .pmc-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

.pmc-dropdown {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  margin-top: 13px;
  background: rgba(255, 255, 255, 0.98);
}
.pmc-dropdown.show { animation: pmcDropdownIn 0.2s ease-out both; }
@keyframes pmcDropdownIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pmc-dropdown .dropdown-item {
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.pmc-dropdown .dropdown-item i { color: var(--blue-primary); width: 16px; }
.pmc-dropdown .dropdown-item:hover { background: var(--bg-alt); color: var(--navy-deep); }

.pmc-nav-actions { gap: 5px; }
.pmc-link-btn {
  color: var(--navy-deep);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px;
}
.pmc-link-btn:hover { color: var(--blue-primary); }

.pmc-toggler-icon {
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--navy-deep);
  position: relative;
}
.pmc-toggler-icon::before, .pmc-toggler-icon::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy-deep);
}
.pmc-toggler-icon::before { top: -7px; }
.pmc-toggler-icon::after { top: 7px; }
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }

/* Buttons */
.pmc-btn-primary {
  background: linear-gradient(135deg, #2878dc, #1760c1);
  color: var(--white);
  border: none;
  border-radius: 13px;
  padding: 10px 17px;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: 0 10px 24px -10px rgba(30, 95, 191, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pmc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(30, 95, 191, 0.65);
  color: var(--white);
}
.pmc-btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-soft);
  color: var(--navy-deep);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.94rem;
  transition: all 0.25s ease;
}
.pmc-btn-ghost:hover { border-color: var(--blue-primary); color: var(--blue-primary-dark); background: rgba(30,95,191,0.06); }

.pmc-btn-outline-light {
  border: 1.5px solid rgba(30, 95, 191, 0.34);
  color: var(--blue-primary-dark);
  border-radius: 10px;
  padding: 11px 22px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.pmc-btn-outline-light:hover { background: rgba(30, 95, 191, 0.08); color: var(--blue-primary-dark); border-color: var(--blue-primary); }

.pmc-btn-outline-navy {
  border: 1.5px solid var(--blue-primary);
  color: var(--blue-primary-dark);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.pmc-btn-outline-navy:hover { background: var(--blue-primary); color: var(--white); }

/* ==========================================================
   HERO
   ========================================================== */
.pmc-hero {
  position: relative;
  background: radial-gradient(70% 100% at 8% 0%, #c8e6ff 0%, transparent 62%), radial-gradient(60% 80% at 94% 64%, #d7edff 0%, transparent 64%), linear-gradient(145deg, #f9fcff 0%, #e4f2ff 100%);
  padding: 190px 0 108px;
  overflow: hidden;
  color: var(--ink);
}

.pmc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 95, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 95, 191, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 20% 20%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 20% 20%, black 0%, transparent 70%);
  pointer-events: none;
}
.pmc-hero-grid-dark {
  mask-image: radial-gradient(circle at 80% 10%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 80% 10%, black 0%, transparent 65%);
}

.pmc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cyan-accent);
  background: rgba(23, 182, 212, 0.12);
  border: 1px solid rgba(23, 182, 212, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pmc-eyebrow-dark { color: var(--blue-primary-dark); background: rgba(30, 95, 191, 0.08); border-color: rgba(30, 95, 191, 0.25); }

.pmc-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.pmc-hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 30px;
}
.pmc-hero-actions { margin-bottom: 30px; }
.pmc-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.pmc-trust-item { font-size: 0.88rem; color: #55708e; display: flex; align-items: center; gap: 7px; }
.pmc-trust-item i { color: var(--cyan-accent); }

/* Cheque mock */
.pmc-cheque-stage { position: relative; perspective: 1200px; }
.pmc-cheque-mock {
  position: relative;
  background: linear-gradient(180deg, #FCFEFF 0%, #EFF6FF 100%);
  border-radius: 16px;
  padding: 26px 26px 18px;
  color: var(--ink);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(-3.5deg);
  animation: pmcFloat 6s ease-in-out infinite;
  border: 1px solid rgba(11,37,69,0.06);
}
@keyframes pmcFloat {
  0%, 100% { transform: rotate(-3.5deg) translateY(0px); }
  50% { transform: rotate(-3.5deg) translateY(-10px); }
}
.pmc-cheque-corner { position: absolute; width: 16px; height: 16px; border-color: var(--cyan-accent); opacity: 0.8; }
.pmc-cheque-corner-tl { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.pmc-cheque-corner-br { bottom: 10px; right: 10px; border-bottom: 2px solid; border-right: 2px solid; }

.pmc-cheque-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.pmc-cheque-bank { font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.04em; color: var(--navy-deep); display: flex; align-items: center; gap: 6px; }
.pmc-cheque-chip { width: 28px; height: 20px; border-radius: 4px; background: linear-gradient(135deg, #d9c56b, #b89b3f); }

.pmc-cheque-line { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; border-bottom: 1px solid rgba(11,37,69,0.16); padding-bottom: 6px; }
.pmc-cheque-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); flex-shrink: 0; }
.pmc-cheque-fill { font-family: var(--font-display); font-size: 0.98rem; font-weight: 500; color: var(--navy-deep); }
.pmc-cheque-mono { font-family: var(--font-mono); font-size: 0.88rem; }
.pmc-flex-1 { flex: 1; }
.pmc-cheque-row-split { display: flex; gap: 16px; align-items: flex-end; }
.pmc-cheque-amount-box {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.02rem;
  border: 1.5px solid var(--blue-primary);
  border-radius: 8px;
  padding: 7px 12px;
  color: var(--blue-primary-dark);
  background: rgba(30,95,191,0.06);
  margin-bottom: 14px;
}
.pmc-cheque-bottom { margin-top: 4px; }
.pmc-cheque-sign { font-size: 0.72rem; color: var(--muted); font-style: italic; border-top: 1px solid rgba(11,37,69,0.2); padding-top: 4px; align-self: flex-end; }
.pmc-cheque-micr { font-family: var(--font-mono); letter-spacing: 0.15em; font-size: 0.85rem; color: var(--navy-deep); opacity: 0.55; text-align: center; margin-top: 4px; }
.pmc-cheque-badge {
  position: absolute;
  top: -12px; right: 18px;
  background: var(--cyan-accent);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 8px 18px -6px rgba(23,182,212,0.6);
}

.pmc-align-guides { position: absolute; inset: 0; pointer-events: none; }
.pmc-guide-h, .pmc-guide-v { position: absolute; background: repeating-linear-gradient(90deg, var(--cyan-accent) 0 6px, transparent 6px 12px); opacity: 0.35; }
.pmc-guide-h { top: 50%; left: -6%; right: -6%; height: 1px; }
.pmc-guide-v { left: 50%; top: -6%; bottom: -6%; width: 1px; background: repeating-linear-gradient(180deg, var(--cyan-accent) 0 6px, transparent 6px 12px); }

/* Centred banking hero with the supplied cheque preview */
.pmc-hero .container { position: relative; z-index: 1; }
.pmc-hero .row { display: block; }
.pmc-hero .col-lg-6 { width: 100%; }
.pmc-hero-copy { max-width: 730px; margin-left: clamp(0px, 6vw, 92px); margin-right: auto; text-align: left !important; }
.pmc-hero-copy .pmc-h1 { max-width: 650px; margin-left: 0; margin-right: auto; }
.pmc-hero-copy .pmc-hero-text { max-width: 620px; margin-left: 0 !important; margin-bottom: 25px; }
.pmc-hero-copy .pmc-hero-actions { justify-content: flex-start !important; }
.pmc-hero-copy .pmc-hero-trust { justify-content: flex-start !important; }
.pmc-hero-assurance { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pmc-hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(95, 160, 225, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  color: #456d95;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 8px 22px -18px rgba(22, 86, 165, 0.65);
}
.pmc-hero-assurance i { color: #2781d7; font-size: 0.9rem; }
.pmc-hero-cheque-stage { margin-top: 52px; }
.pmc-hero-cheque-stage .pmc-cheque-stage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 9px;
  perspective: none;
  border: 1px solid rgba(86, 150, 222, 0.45);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 28px 58px -30px rgba(25, 92, 174, 0.52), 0 0 0 10px rgba(255, 255, 255, 0.24);
}
.pmc-hero-cheque-stage .pmc-cheque-mock,
.pmc-hero-cheque-stage .pmc-align-guides { display: none; }
.pmc-hero-cheque {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  filter: saturate(1.04) contrast(0.98);
  transform-origin: center;
  transition: filter 0.35s ease;
}
.pmc-hero-cheque.pmc-preview-ready { filter: saturate(1.12) contrast(1); }
.pmc-cheque-status,
.pmc-cheque-live {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(115, 177, 242, 0.46);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px -14px rgba(20, 83, 158, 0.45);
  color: #31689f;
  font-size: 0.76rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.pmc-cheque-status { top: -18px; left: 26px; padding: 8px 12px; border-radius: 999px; }
.pmc-cheque-live { right: 24px; bottom: -18px; padding: 8px 12px; border-radius: 999px; }
.pmc-cheque-live span { width: 7px; height: 7px; border-radius: 50%; background: #24b778; box-shadow: 0 0 0 0 rgba(36, 183, 120, 0.52); animation: pmcLivePulse 1.8s ease-out infinite; }
.pmc-cheque-scan {
  position: absolute;
  z-index: 3;
  left: 5%; right: 5%; top: 10%;
  height: 2px;
  opacity: 0.72;
  background: linear-gradient(90deg, transparent, rgba(30, 126, 227, 0.92), transparent);
  box-shadow: 0 0 16px 3px rgba(49, 142, 235, 0.45);
  animation: pmcChequeScan 4.8s ease-in-out infinite;
  pointer-events: none;
}
.pmc-cheque-detail {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(111, 178, 240, 0.46);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px -17px rgba(20, 83, 158, 0.52);
  color: #5b7896;
  font-size: 0.64rem;
  line-height: 1.15;
  backdrop-filter: blur(9px);
  animation: pmcChequeDetailFloat 4.6s ease-in-out infinite;
}
.pmc-cheque-detail i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  background: #e1f2ff;
  color: #2278cc;
  font-size: 0.78rem;
}
.pmc-cheque-detail span { display: grid; gap: 1px; }
.pmc-cheque-detail strong { color: #275f94; font-size: 0.7rem; }
.pmc-cheque-detail-accurate { top: 26%; left: -46px; }
.pmc-cheque-detail-secure { top: 42%; right: -54px; animation-delay: -1.5s; }
.pmc-cheque-detail-perfect { bottom: 13%; left: -28px; animation-delay: -3s; }
@keyframes pmcChequeDetailFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pmcChequeScan { 0%, 12% { transform: translateY(0); opacity: 0; } 20%, 72% { opacity: 0.72; } 88%, 100% { transform: translateY(400px); opacity: 0; } }
@keyframes pmcLivePulse { 0% { box-shadow: 0 0 0 0 rgba(36, 183, 120, 0.52); } 100% { box-shadow: 0 0 0 8px rgba(36, 183, 120, 0); } }

/* Right-side assurance signals: security, accuracy, and relationship */
.pmc-hero-trust-stack {
  position: absolute;
  z-index: 2;
  top: 224px;
  right: clamp(24px, 16vw, 250px);
  display: grid;
  gap: 12px;
  width: min(230px, 17vw);
  isolation: isolate;
}
.pmc-hero-trust-stack::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -15px -16px;
  border-radius: 25px;
  background: rgba(221, 241, 255, 0.46);
  border: 1px solid rgba(138, 193, 239, 0.22);
  transform: rotate(4deg);
}
.pmc-trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(116, 179, 239, 0.42);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 26px -20px rgba(25, 92, 174, 0.5);
  color: #4c7093;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: pmcTrustSpotlight 9s ease-in-out infinite;
}
.pmc-trust-signal i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 11px;
  background: #e2f2ff;
  color: #2374ca;
  font-size: 1rem;
}
.pmc-trust-signal span { display: grid; gap: 1px; font-size: 0.66rem; line-height: 1.25; }
.pmc-trust-signal strong { color: #245d96; font-size: 0.77rem; }
.pmc-trust-signal small { max-height: 0; overflow: hidden; opacity: 0; color: #557594; font-size: 0.65rem; line-height: 1.3; animation: pmcTrustDetail 9s ease-in-out infinite; }
.pmc-trust-signal-secure { animation-delay: 0s; }
.pmc-trust-signal-accurate { margin-left: 16px; animation-delay: -3s; }
.pmc-trust-signal-care { margin-left: 4px; animation-delay: -6s; }
.pmc-trust-signal-secure small { animation-delay: 0s; }
.pmc-trust-signal-accurate small { animation-delay: -3s; }
.pmc-trust-signal-care small { animation-delay: -6s; }
.pmc-trust-signal-secure { rotate: -2deg; }
.pmc-trust-signal-accurate { rotate: 2deg; }
.pmc-trust-signal-care { rotate: -1deg; }
.pmc-trust-signal-care i { background: #e8f5ff; color: #2393bd; }
@keyframes pmcTrustSpotlight {
  0%, 10%, 100% { transform: translate(0, 0) scale(1); box-shadow: 0 14px 26px -20px rgba(25, 92, 174, 0.5); }
  18%, 38% { transform: translate(-66px, -9px) scale(1.1); box-shadow: 0 22px 34px -17px rgba(25, 92, 174, 0.58); }
  48% { transform: translate(-25px, -3px) scale(1.03); }
}
@keyframes pmcTrustDetail { 0%, 13%, 47%, 100% { max-height: 0; opacity: 0; } 21%, 38% { max-height: 38px; opacity: 1; } }

/* Perforation divider (signature motif) */
.pmc-perforation {
  position: relative;
  height: 34px;
  background: transparent;
}
.pmc-perforation::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 0;
  display: none;
}
.pmc-perforation-light::before { display: none; }

/* ==========================================================
   SECTIONS
   ========================================================== */
.pmc-section { padding: 96px 0; position: relative; }
.pmc-section-tint { background: var(--bg-tint); }
.pmc-section-navy {
  background: linear-gradient(145deg, #f1f8ff 0%, #e4f1ff 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.pmc-section-head { max-width: 720px; margin: 0 auto 52px; }
.pmc-section-head.text-center { text-align: center; }
.pmc-section-lead { max-width: 62ch; margin: 14px auto 0; }

.pmc-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.pmc-h2-light { color: var(--navy-deep); }
.pmc-body-text { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 16px; }

/* Feature tiles */
.pmc-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pmc-feature-tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pmc-feature-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(23,182,212,0.4); }
.pmc-feature-tile i { font-size: 1.5rem; color: var(--cyan-accent); margin-bottom: 12px; display: block; }
.pmc-feature-tile h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; }
.pmc-feature-tile p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Product collage and concise feature overview */
.pmc-product-collage-col > :not(.pmc-product-collage),
.pmc-product-info-col > .pmc-feature-grid { display: none; }
.pmc-product-collage {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}
.pmc-product-collage::before {
  content: '';
  position: absolute;
  inset: 9% 7% 4% 4%;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(145deg, #e3f2ff, #f8fcff 72%);
  border: 1px solid rgba(106, 170, 231, 0.22);
}
.pmc-collage-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(124, 180, 235, 0.45);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 22px 38px -24px rgba(26, 90, 166, 0.45);
}
.pmc-collage-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pmc-collage-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(148, 197, 239, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #396b9d;
  font-size: 0.68rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.pmc-collage-card span i { color: #2181d8; }
.pmc-collage-main { top: 0; left: 10%; width: 76%; height: 300px; z-index: 3; }
.pmc-collage-history { bottom: 12px; left: 0; width: 47%; height: 230px; z-index: 2; }
.pmc-collage-print { right: 2%; bottom: 0; width: 48%; height: 224px; z-index: 4; }
.pmc-collage-detail {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(110, 177, 239, 0.45);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px -16px rgba(26, 90, 166, 0.5);
  color: #3676ad;
  font-size: 0.68rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  animation: pmcCollageDetailFloat 4.2s ease-in-out infinite;
}
.pmc-collage-detail i { color: #2181d8; font-size: 0.82rem; }
.pmc-collage-detail-check { top: 19%; left: -4px; }
.pmc-collage-detail-record { top: 42%; right: -7px; animation-delay: -2.1s; }
.pmc-collage-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(110, 177, 239, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #3676ad;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 12px 24px -16px rgba(26, 90, 166, 0.5);
  animation: pmcCollageChip 3.8s ease-in-out infinite;
}
.pmc-collage-chip i { color: #20b978; font-size: 0.78rem; }
.pmc-collage-chip-live { top: 272px; right: 8%; }
@keyframes pmcCollageChip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pmcCollageDetailFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.pmc-product-info { max-width: 540px; margin-left: auto; padding-left: 22px; }
.pmc-product-info .pmc-eyebrow { margin-bottom: 16px; }
.pmc-product-info .pmc-h2 { max-width: 15ch; }
.pmc-product-info .pmc-body-text { font-size: 0.96rem; line-height: 1.68; margin-bottom: 12px; }
.pmc-product-points { display: grid; gap: 12px; padding: 0; margin: 23px 0 20px; list-style: none; }
.pmc-product-points li { display: flex; align-items: flex-start; gap: 11px; color: #55718e; font-size: 0.84rem; line-height: 1.45; }
.pmc-product-points li > i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 9px;
  background: #e2f1ff;
  color: #2276ca;
}
.pmc-product-points strong { display: block; margin-bottom: 1px; color: #244f7a; font-size: 0.88rem; }
.pmc-product-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #eaf6ff;
  color: #376b99;
  font-size: 0.78rem;
  font-weight: 600;
}
.pmc-product-note i { color: #1f91ca; font-size: 0.95rem; }

.pmc-tile-crosshair { position: absolute; top: 10px; right: 10px; width: 14px; height: 14px; opacity: 0.35; }
.pmc-tile-crosshair::before, .pmc-tile-crosshair::after { content: ''; position: absolute; background: var(--blue-primary); }
.pmc-tile-crosshair::before { top: 6px; left: 0; width: 14px; height: 1.4px; }
.pmc-tile-crosshair::after { top: 0; left: 6px; width: 1.4px; height: 14px; }
.pmc-form-crosshair { top: 18px; right: 18px; }

/* Benefits */
.pmc-benefits-row { margin-top: 8px; }
.pmc-benefit-card {
  position: relative;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(137, 182, 235, 0.36);
  border-radius: 16px;
  padding: 26px 20px 20px;
  height: 100%;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.pmc-benefit-card:hover { transform: translateY(-6px); background: var(--white); border-color: var(--cyan-accent); box-shadow: var(--shadow-soft); }
.pmc-benefit-card i { font-size: 1.35rem; color: var(--cyan-accent); margin-bottom: 10px; display: block; }
.pmc-benefit-card p { margin: 0; font-size: 0.95rem; color: #4b6785; }
.pmc-benefit-index { position: absolute; top: 14px; right: 18px; font-family: var(--font-mono); font-size: 0.78rem; color: #8ba9c8; }
.pmc-benefit-highlight { border-color: var(--cyan-accent); box-shadow: 0 0 0 1px var(--cyan-accent), 0 14px 30px -14px var(--cyan-glow); }

/* Benefits: focused list with product-image collage */
.pmc-benefits-section { background: linear-gradient(145deg, #eaf6ff 0%, #f7fbff 58%, #e0f0ff 100%); overflow: hidden; }
.pmc-benefits-section .pmc-h2 { max-width: 12ch; }
.pmc-benefits-section .pmc-body-text { max-width: 43ch; }
.pmc-benefit-list,
.pmc-benefits-extra { display: grid; gap: 10px; margin: 24px 0 14px; }
.pmc-benefits-extra { margin-top: 0; }
.pmc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(123, 181, 235, 0.36);
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  color: #557490;
  box-shadow: 0 10px 24px -22px rgba(24, 83, 154, 0.6);
}
.pmc-benefit-item > i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  background: #dff1ff;
  color: #2478cc;
  font-size: 1rem;
}
.pmc-benefit-item span { font-size: 0.8rem; line-height: 1.45; }
.pmc-benefit-item strong { display: block; color: #254f79; font-size: 0.88rem; margin-bottom: 1px; }
.pmc-benefit-list .pmc-benefit-item:nth-child(2) { background: linear-gradient(135deg, #123961, #1b548b); border-color: transparent; color: rgba(255,255,255,0.74); }
.pmc-benefit-list .pmc-benefit-item:nth-child(2) strong { color: var(--white); }
.pmc-benefit-list .pmc-benefit-item:nth-child(2) > i { background: rgba(255,255,255,0.14); color: #8ddaff; }
.pmc-benefits-toggle { margin-top: 9px; }
.pmc-benefits-toggle i { transition: transform 0.25s ease; }
.pmc-benefits-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.pmc-benefit-collage { position: relative; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; min-height: 345px; padding: 12px 12px 36px; isolation: isolate; }
.pmc-benefit-collage::before { content: ''; position: absolute; inset: 0; z-index: -1; border-radius: 24px; background: linear-gradient(135deg, #d9edff, #f8fcff); border: 1px solid rgba(117, 181, 235, 0.28); }
.pmc-benefit-image { position: relative; min-width: 0; height: 285px; overflow: hidden; border: 1px solid rgba(112, 177, 235, 0.46); border-radius: 15px; background: var(--white); box-shadow: 0 18px 32px -24px rgba(19, 75, 143, 0.42); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pmc-benefit-image:hover { transform: translateY(-7px); box-shadow: 0 24px 36px -22px rgba(19, 75, 143, 0.52); }
.pmc-benefit-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pmc-benefit-image span,
.pmc-benefit-collage-note { position: absolute; display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(132, 190, 241, 0.48); border-radius: 999px; background: rgba(255,255,255,0.9); color: #3970a5; font-size: 0.68rem; font-weight: 600; backdrop-filter: blur(8px); }
.pmc-benefit-image span { left: 10px; bottom: 10px; padding: 6px 9px; }
.pmc-benefit-image span i, .pmc-benefit-collage-note i { color: #227dce; }
.pmc-benefit-image-formats { z-index: 2; }
.pmc-benefit-image-cheques { z-index: 3; }
.pmc-benefit-image-database { z-index: 4; }
.pmc-benefit-collage-note { right: 20px; bottom: 12px; z-index: 5; padding: 8px 11px; box-shadow: 0 12px 24px -17px rgba(19, 75, 143, 0.48); animation: pmcBenefitNote 4.4s ease-in-out infinite; }
@keyframes pmcBenefitNote { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Chips */
.pmc-chip-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pmc-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0d3159, #1a5289);
  border: 1px solid rgba(111, 181, 238, 0.32);
  color: rgba(255,255,255,0.92);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.25s ease;
}
.pmc-chip:hover { border-color: #88c8ff; background: linear-gradient(135deg, #164a7f, #2473ba); transform: translateY(-3px); box-shadow: 0 12px 22px -14px rgba(12, 52, 95, 0.7); color: var(--white); }
.pmc-chip i { color: #8ed7ff; }

/* Solution accordion (custom, not bootstrap) */
.pmc-solution-rail {
  position: relative;
  overflow: hidden;
  margin: 4px -12px 0;
  padding: 20px 12px 30px;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}
.pmc-solution-track {
  display: flex;
  width: max-content;
  animation: pmcSolutionFlow 34s linear infinite;
}
.pmc-solution-track-copy { display: flex; }
.pmc-solution-card {
  position: relative;
  width: 242px;
  min-height: 190px;
  flex: 0 0 242px;
  margin-right: 18px;
  padding: 24px 20px 20px;
  border: 1px solid rgba(124, 180, 235, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 18px 32px -24px rgba(26, 90, 166, 0.4);
}
.pmc-solution-card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #e3f2ff;
  color: #2279ce;
  font-size: 1.05rem;
}
.pmc-solution-card-number { position: absolute; top: 19px; right: 18px; color: #9ab7d5; font-size: 0.72rem; font-weight: 700; }
.pmc-solution-card h3 { margin: 0 0 7px; color: #244f7a; font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.pmc-solution-card p { margin: 0; color: #5b7896; font-size: 0.82rem; line-height: 1.55; }
.pmc-solution-rail:hover .pmc-solution-track { animation-play-state: paused; }
@keyframes pmcSolutionFlow { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pmc-accordion-solution { display: none; }
.pmc-accordion-solution { max-width: 880px; margin: 0 auto; }
.pmc-sol-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.pmc-sol-item.active { border-color: var(--blue-primary); }
.pmc-sol-head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
}
.pmc-sol-num { font-family: var(--font-mono); color: var(--cyan-accent); font-weight: 600; font-size: 0.95rem; }
.pmc-sol-head h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--navy-deep); margin: 0; flex: 1; }
.pmc-sol-head i { color: var(--muted); transition: transform 0.3s ease; }
.pmc-sol-item.active .pmc-sol-head i { transform: rotate(180deg); color: var(--blue-primary); }
.pmc-sol-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 22px; }
.pmc-sol-item.active .pmc-sol-body { max-height: 220px; padding: 0 22px 20px; }
.pmc-sol-body p { color: var(--muted); margin: 0; line-height: 1.7; font-size: 0.95rem; }

/* Comparison table */
.pmc-compare-wrap { max-width: 960px; margin: 0 auto; padding: 7px; border: 1px solid rgba(110, 176, 233, 0.35); border-radius: 22px; overflow: hidden; background: rgba(224, 241, 255, 0.7); box-shadow: 0 22px 44px -28px rgba(19, 75, 143, 0.35); }
.pmc-compare-table { margin: 0; overflow: hidden; border-radius: 16px; background: var(--white); }
.pmc-compare-table thead th{
  font-family: var(--font-display);
  background-color: #0f3c5e;
  color: var(--white);
  font-weight: 600;
  border: none;
  padding: 18px 20px;
  font-size: 0.92rem;
}
.pmc-compare-table { table-layout: fixed; }
.pmc-compare-feature-col { width: 28%; }
.pmc-compare-pmc-col { width: 26%; }
.pmc-compare-table th, .pmc-compare-table td { padding-left: 11px; padding-right: 11px; }
.pmc-compare-table td { padding-top: 14px; padding-bottom: 14px; vertical-align: middle; font-size: 0.86rem; color: var(--ink); border-color: #e3edf8; font-family: var(--font-mono); }
.pmc-compare-table td:first-child { font-family: var(--font-body); font-weight: 600; color: var(--navy-deep); }
.pmc-col-highlight { background: #e5f3ff; font-weight: 700; color: var(--blue-primary-dark) !important; }
.pmc-compare-table thead .pmc-col-highlight { background: linear-gradient(135deg, #2379ce, #1d5d99); }
.pmc-column-name { color: #dff2ff; font-size: 0.8rem !important; letter-spacing: 0.01em; }
.pmc-pmc-heading { box-shadow: inset 2px 0 0 rgba(255,255,255,0.36), inset -2px 0 0 rgba(255,255,255,0.2); }
.pmc-pmc-heading span { display: block; color: var(--white); font-size: 0.92rem; }
.pmc-pmc-heading small { display: block; margin-top: 2px; color: #c5ebff; font-size: 0.62rem; font-weight: 600; }
.pmc-icon-yes { color: #1d9a5c; }
.pmc-icon-no { color: #c94b4b; opacity: 0.75; }
.pmc-compare-table tbody tr:nth-child(even) td { background: #f8fbff; }
.pmc-compare-table tbody tr { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pmc-compare-table tbody tr:hover td { background: #edf7ff; }
.pmc-compare-table tbody tr:hover .pmc-col-highlight { background: #d8eeff; }

/* How it works steps */
.pmc-steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  margin-top: 10px;
}
.pmc-steps-track::before {
  content: '';
  position: absolute;
  top: 26px; left: 8%; right: 8%;
  height: 2px;
  /* background: linear-gradient(90deg, transparent, #60bff2 8%, #2776bf 50%, #60bff2 92%, transparent); */
  opacity: 0.56;
  z-index: 0;
}
.pmc-step { position: relative; z-index: 1; padding: 14px; border: 1px solid rgba(112, 181, 235, 0.34); border-radius: 18px; background: rgba(255,255,255,0.68); box-shadow: 0 14px 30px -24px rgba(19, 75, 143, 0.45); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.pmc-step:hover { z-index: 3; transform: translateY(-8px); border-color: #55afe8; box-shadow: 0 22px 34px -20px rgba(19, 75, 143, 0.5); }
.pmc-step:not(:last-child)::after { content: '→'; position: absolute; z-index: 4; top: 44%; right: -18px; color: #2776bf; font-size: 1.22rem; font-weight: 700; transition: transform 0.25s ease; }
.pmc-step:hover::after { transform: translateX(4px); }
.pmc-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cyan-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--blue-primary);
  position: relative;
  z-index: 2;
  margin: -40px auto 12px;
  box-shadow: 0 0 0 6px rgba(23,182,212,0.08);
}
.pmc-step-visual { height: 118px; width: 118px; margin-left: 30%; overflow: hidden; border-radius: 50%; background: #edf7ff; border: 1px solid #ffffff; }
.pmc-step-visual img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease, filter 0.35s ease; }
.pmc-step:hover .pmc-step-visual .pmc-step-visual img { transform: scale(1.08); filter: saturate(1.12); border: 2px solid #0d3159;}
.pmc-step h3 { font-family: var(--font-display); font-size: 1.03rem; font-weight: 700; margin-bottom: 7px; color: #254f79; }
.pmc-step p { font-size: 0.9rem; color: #56718e; line-height: 1.65; }

/* FAQ accordion (bootstrap, restyled) */
.pmc-faq-accordion .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--white);
}
.pmc-faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--white);
  padding: 18px 22px;
  font-size: 0.98rem;
}
.pmc-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--blue-primary-dark);
  background: rgba(30,95,191,0.05);
  box-shadow: none;
}
.pmc-faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--border-soft); }
.pmc-faq-accordion .accordion-button::after { filter: hue-rotate(180deg) saturate(2); }
.pmc-faq-accordion .accordion-body { color: var(--muted); font-size: 0.93rem; line-height: 1.75; padding: 4px 22px 22px; }

/* Contact */
.pmc-contact-list { list-style: none; padding: 0; margin: 24px 0; }
.pmc-contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--ink); font-size: 0.95rem; }
.pmc-contact-list i { color: var(--blue-primary); width: 18px; }
.pmc-placeholder { color: var(--muted); font-style: italic; }
.pmc-placeholder-dark { color: rgba(255,255,255,0.55); font-style: italic; }

.pmc-form {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.pmc-form .form-label { font-size: 0.85rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; }
.pmc-form .form-control, .pmc-form .form-select {
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.94rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pmc-form .form-control:focus, .pmc-form .form-select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30,95,191,0.14);
}
.pmc-form-note { font-size: 0.85rem; color: #1d9a5c; margin: 10px 0 0; min-height: 1.2em; }

/* Footer */
.pmc-footer {
  background: radial-gradient(70% 110% at 0% 0%, #1b548b 0%, transparent 58%), linear-gradient(145deg, #082746, #0d365f 65%, #0a2b4c);
  color: rgba(236, 247, 255, 0.8);
  padding: 76px 0 28px;
  position: relative;
  overflow: hidden;
}
.pmc-brand-footer { color: var(--white); margin-bottom: 14px; }
.pmc-footer-about { font-size: 0.9rem; line-height: 1.7; max-width: 34ch; color: rgba(236, 247, 255, 0.68); }
.pmc-footer-head { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; }
.pmc-footer-list { list-style: none; padding: 0; margin: 0; }
.pmc-footer-list li { margin-bottom: 11px; }
.pmc-footer-list a { color: rgba(236, 247, 255, 0.7); font-size: 0.9rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.pmc-footer-list a:hover { color: var(--cyan-accent); padding-left: 4px; }

.pmc-footer-bottom {
  border-top: 1px solid rgba(194, 225, 255, 0.2);
  margin-top: 56px;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.pmc-footer-contact { display: flex; flex-wrap: wrap; gap: 20px; }
.pmc-footer-contact i { color: var(--cyan-accent); margin-right: 6px; }
.pmc-copyright { margin: 0; color: rgba(236, 247, 255, 0.55); }
.pmc-footer .pmc-placeholder-dark { color: rgba(236, 247, 255, 0.62); }

/* Back to top */
.pmc-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 24px -8px rgba(30,95,191,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
}
.pmc-to-top.pmc-show { opacity: 1; visibility: visible; transform: translateY(0); }
.pmc-to-top:hover { background: var(--blue-primary-dark); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 991.98px) {
  .pmc-hero { padding: 140px 0 70px; }
  .pmc-nav { margin: 18px 0; }
  .pmc-nav .nav-link { padding: 10px 14px !important; }
  .pmc-nav-actions { flex-wrap: wrap; gap: 8px !important; padding-bottom: 14px; }
  .pmc-feature-grid { grid-template-columns: 1fr 1fr; }
  .pmc-product-info { max-width: 640px; margin: 0; padding-left: 0; }
  .pmc-benefit-collage { max-width: 680px; margin: 0 auto; }
  .pmc-steps-track { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .pmc-steps-track::before { display: none; }
  .pmc-step:not(:last-child)::after { display: none; }
}

@media (max-width: 767.98px) {
  .pmc-section { padding: 68px 0; }
  .pmc-hero { padding: 130px 0 60px; }
  .pmc-hero-cheque-stage { margin-top: 42px; }
  .pmc-hero-copy { margin-left: 0; text-align: center !important; }
  .pmc-hero-copy .pmc-h1, .pmc-hero-copy .pmc-hero-text { margin-left: auto !important; margin-right: auto; }
  .pmc-hero-copy .pmc-hero-actions, .pmc-hero-copy .pmc-hero-trust, .pmc-hero-assurance { justify-content: center !important; }
  .pmc-hero-cheque-stage .pmc-cheque-stage { padding: 6px; border-radius: 16px; box-shadow: 0 20px 44px -27px rgba(25, 92, 174, 0.48); }
  .pmc-hero-cheque { border-radius: 10px; }
  .pmc-cheque-status { top: -15px; left: 12px; padding: 6px 9px; font-size: 0.64rem; }
  .pmc-cheque-live { right: 10px; bottom: -15px; padding: 6px 9px; font-size: 0.64rem; }
  .pmc-cheque-detail { display: none; }
  .pmc-h1 { font-size: 2rem; }
  .pmc-feature-grid { grid-template-columns: 1fr; }
  .pmc-product-collage { min-height: 400px; }
  .pmc-collage-main { left: 7%; width: 80%; height: 235px; }
  .pmc-collage-history { width: 49%; height: 175px; bottom: 12px; }
  .pmc-collage-print { width: 50%; height: 170px; }
  .pmc-collage-chip-live { top: 211px; right: 4%; }
  .pmc-collage-card span { left: 7px; bottom: 7px; padding: 5px 7px; font-size: 0.59rem; }
  .pmc-product-info .pmc-h2 { max-width: 18ch; }
  .pmc-benefit-collage { display: flex; min-height: 236px; padding: 10px; overflow-x: auto; scrollbar-width: none; }
  .pmc-benefit-collage::-webkit-scrollbar { display: none; }
  .pmc-benefit-image, .pmc-benefit-image-formats, .pmc-benefit-image-cheques, .pmc-benefit-image-database { flex: 0 0 205px; width: 205px; height: 190px; }
  .pmc-benefit-collage-note { right: 16px; bottom: 8px; top: auto; padding: 6px 8px; font-size: 0.58rem; }
  .pmc-solution-card { width: 216px; min-height: 178px; flex-basis: 216px; padding: 20px 17px; }
  .pmc-steps-track { grid-template-columns: 1fr; }
  .pmc-step { margin-top: 18px; }
  .pmc-step-visual { height: 150px; }
  .pmc-cheque-mock { transform: rotate(-2deg); padding: 20px 18px 14px; }
  .pmc-footer-bottom { flex-direction: column; align-items: flex-start; }
  .pmc-compare-table { font-size: 0.85rem; }
}

@media (max-width: 575.98px) {
  .pmc-hero-actions .btn { width: 100%; justify-content: center; }
  .pmc-nav-actions .btn, .pmc-nav-actions .pmc-link-btn { width: 100%; text-align: center; }
  .pmc-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}

@media (max-width: 1199.98px) {
  .pmc-navbar { padding: 10px 12px; }
  .pmc-navbar .container { padding: 8px 14px; }
  .pmc-navbar .navbar-collapse { width: 100%; }
  .pmc-navbar .pmc-nav { margin: 14px 0 8px; }
  .pmc-navbar .pmc-dropdown { margin: 5px 0; border-radius: 12px; }
  .pmc-navbar .pmc-nav-actions { padding: 8px 0 4px; }
  .pmc-hero-trust-stack { display: none; }
}



/* ==========================================================
   CONTACT PAGE — CSS
   ========================================================== */

/* Smaller hero variant for interior pages */
.pmc-hero-sm { padding: 156px 0 80px; }
.pmc-h1-sm { font-size: clamp(2rem, 3.4vw, 2.6rem); }
.pmc-hero-text-center { margin-left: auto; margin-right: auto; text-align: center; }

.pmc-crumb {
  display: inline-flex;
  align-items: start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.pmc-crumb a { color: rgba(255,255,255,0.75); }
.pmc-crumb a:hover { color: var(--cyan-accent); }
.pmc-crumb span { color: var(--cyan-accent); font-weight: 600; }
.pmc-crumb i { font-size: 0.7rem; }

/* Active nav link */
.pmc-nav .nav-link.active {
  color: var(--blue-primary-dark);
  background: rgba(30, 95, 191, 0.1);
  font-weight: 600;
}

/* Pull contact cards up over the hero's perforation edge */
.pmc-section-pull { padding-top: 0; margin-top: -58px; position: relative; z-index: 2; }

.pmc-contact-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 30px 26px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pmc-contact-card:hover { transform: translateY(-6px); border-color: var(--cyan-accent); box-shadow: var(--shadow-lift); }
.pmc-contact-card i {
  font-size: 1.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-3));
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.pmc-contact-card h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; }
.pmc-contact-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.pmc-contact-card p a { color: var(--blue-primary-dark); font-weight: 500; word-break: break-word; }
.pmc-contact-card p a:hover { color: var(--cyan-accent); }

.pmc-cta-banner {
  padding: 64px 0;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}
.pmc-h2-banner { margin-bottom: 10px; }
.pmc-hero-text-banner { color: var(--muted); max-width: 60ch; margin-bottom: 0; }

@media (max-width: 767.98px) {
  .pmc-hero-sm { padding: 132px 0 64px; }
  .pmc-section-pull { margin-top: -40px; }
  .pmc-cta-banner { text-align: center; }
  .pmc-cta-banner .text-lg-end { text-align: center !important; margin-top: 10px; }
}


/* ==========================================================
   ABOUT PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-chip, pmc-benefit-card,
   pmc-faq-accordion, pmc-cta-banner, pmc-perforation, etc.)
   — only the new, page-specific rules are below.
   ========================================================== */

/* "Who We Are" concise feature list and management collage */
.pmc-about-feature-list { display: grid; gap: 8px; margin: 22px 0 12px; max-width: 470px; }
.pmc-about-feature-extra { display: grid; gap: 8px; }
.pmc-about-feature {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 37px;
  padding: 8px 11px;
  border: 1px solid rgba(116, 181, 235, 0.32);
  border-radius: 10px;
  background: rgba(255,255,255,0.72);
  color: #496d8f;
  font-size: 0.82rem;
  font-weight: 600;
}
.pmc-about-feature i { color: #2478cc; font-size: 0.95rem; }
.pmc-about-feature-toggle { margin-top: 3px; }
.pmc-about-feature-toggle i { transition: transform 0.25s ease; }
.pmc-about-feature-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.pmc-about-collage { position: relative; min-height: 455px; isolation: isolate; }
.pmc-about-collage::before { content: ''; position: absolute; z-index: -1; inset: 7% 2% 4% 7%; border: 1px solid rgba(116, 181, 235, 0.25); border-radius: 27px; background: linear-gradient(145deg, #deefff, #f8fcff); }
.pmc-about-collage-card { position: absolute; overflow: hidden; border: 1px solid rgba(116, 181, 235, 0.42); border-radius: 16px; background: var(--white); box-shadow: 0 20px 38px -26px rgba(20, 79, 147, 0.46); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pmc-about-collage-card:hover { z-index: 5; transform: translateY(-7px) scale(1.015); box-shadow: 0 28px 42px -24px rgba(20, 79, 147, 0.54); }
.pmc-about-collage-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pmc-about-collage-card span,
.pmc-about-collage-note { position: absolute; display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(131, 191, 241, 0.5); border-radius: 999px; background: rgba(255,255,255,0.91); color: #3c71a3; font-size: 0.68rem; font-weight: 600; backdrop-filter: blur(8px); }
.pmc-about-collage-card span { left: 10px; bottom: 10px; padding: 6px 9px; }
.pmc-about-collage-card i, .pmc-about-collage-note i { color: #237ed0; }
.pmc-about-collage-layout { top: 0; left: 8%; width: 77%; height: 260px; z-index: 2; }
.pmc-about-collage-payee { left: 0; bottom: 8px; width: 47%; height: 205px; z-index: 3; }
.pmc-about-collage-reports { right: 1%; bottom: 0; width: 50%; height: 198px; z-index: 4; }
.pmc-about-collage-note { top: 231px; right: 3%; z-index: 6; padding: 8px 11px; box-shadow: 0 12px 24px -17px rgba(20, 79, 147, 0.48); animation: pmcAboutCollageNote 4.5s ease-in-out infinite; }
@keyframes pmcAboutCollageNote { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Problem / Solution comparison strip (Our Purpose section) */
.pmc-ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 100%;
  margin: 48px auto 0;
}
.pmc-ps-col {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 30px;
  border: 1px solid var(--border-soft);
}
.pmc-ps-before { border-left: 4px solid #c94b4b; }
.pmc-ps-after { border-left: 4px solid var(--cyan-accent); box-shadow: var(--shadow-soft); }
.pmc-ps-col h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.pmc-ps-before h3 i { color: #c94b4b; }
.pmc-ps-after h3 i { color: var(--cyan-accent); }
.pmc-ps-col ul { list-style: none; padding: 0; margin: 0; }
.pmc-ps-col li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px dashed var(--border-soft);
  line-height: 1.5;
}
.pmc-ps-col li:last-child { border-bottom: none; }
.pmc-ps-after li { color: var(--ink); }
.pmc-ps-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px -8px rgba(30,95,191,0.5);
}

/* Mission & Vision diagonal-cut cards */
.pmc-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.pmc-mv-card {
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, var(--bg-tint) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 34px 32px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pmc-mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.pmc-mv-card > i {
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-3));
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pmc-h2-card { font-size: 1.35rem; margin-bottom: 14px; }
.pmc-mv-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
.pmc-mv-card p:last-child { margin-bottom: 0; }

/* Responsive */
@media (max-width: 991.98px) {
  .pmc-about-collage { max-width: 650px; margin: 0 auto; }
  .pmc-ps-grid { grid-template-columns: 1fr; }
  .pmc-ps-arrow { transform: rotate(90deg); margin: 0 auto; }
  .pmc-mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .pmc-about-collage { min-height: 382px; }
  .pmc-about-collage-layout { left: 6%; width: 82%; height: 210px; }
  .pmc-about-collage-payee { width: 49%; height: 160px; }
  .pmc-about-collage-reports { width: 51%; height: 155px; }
  .pmc-about-collage-note { top: 187px; right: 1%; padding: 6px 8px; font-size: 0.58rem; }
  .pmc-about-collage-card span { left: 7px; bottom: 7px; padding: 5px 7px; font-size: 0.58rem; }
  .pmc-ps-col { padding: 22px 20px; }
  .pmc-mv-card { padding: 26px 22px; clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%); }
}


/* ==========================================================
   FEATURE PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-tile-crosshair,
   pmc-faq-accordion, pmc-cta-banner, pmc-perforation, etc.)
   — only the new, page-specific rules are below.
   ========================================================== */

/* Alternating feature showcase rows */
.pmc-feature-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 42px 0;
  border-bottom: 1px dashed var(--border-soft);
}
.pmc-feature-row:last-child { border-bottom: none; }
.pmc-feature-row-rev { flex-direction: row-reverse; }

.pmc-feature-visual {
  position: relative;
  flex: 0 0 260px;
  height: 200px;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--blue-primary) 0%, var(--navy-3) 60%);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.pmc-feature-row:hover .pmc-feature-visual {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(23, 182, 212, 0.4);
}
.pmc-feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 95, 191, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 95, 191, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
}
.pmc-feature-visual > i {
  position: relative;
  font-size: 3.1rem;
  color: var(--white);
  z-index: 1;
}
.pmc-fvisual-num {
  position: absolute;
  bottom: 14px; left: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  z-index: 1;
}

.pmc-feature-copy { flex: 1; }
.pmc-feature-copy h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.pmc-feature-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
  max-width: 62ch;
}

/* Responsive */
@media (max-width: 767.98px) {
  .pmc-feature-row, .pmc-feature-row-rev {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 30px 0;
  }
  .pmc-feature-visual { flex-basis: auto; width: 100%; height: 160px; }
}


/* ==========================================================
   SOLUTION PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-faq-accordion, pmc-cta-banner,
   pmc-perforation, etc.) — only new, page-specific rules below.

   NOTE: the "Before / After" strip below (.pmc-ps-*) uses the
   same classes as about.css's "Old Way / With Print My Cheque"
   strip. If you've already pasted about.css into your main
   style.css, skip that block here — it's duplicated only so
   this file works standalone. Keep one copy when you merge.
   ========================================================== */

/* Solution card grid */
.pmc-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.pmc-solution-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 26px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pmc-solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(23,182,212,0.4); }
.pmc-solution-card > i {
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-3));
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pmc-sc-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--border-soft);
  letter-spacing: 0.04em;
}
.pmc-solution-card h3 {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 10px;
  padding-right: 34px;
}
.pmc-solution-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}
.pmc-solution-card-highlight {
  border-color: var(--cyan-accent);
  box-shadow: 0 0 0 1px var(--cyan-accent), var(--shadow-soft);
}
.pmc-solution-card-highlight > i { background: linear-gradient(135deg, var(--cyan-accent), var(--blue-primary)); }

/* Solution page: focused cards with a vertical workflow collage */
.pmc-solution-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.5fr);
  gap: 34px;
  align-items: start;
  margin-top: 48px;
}
.pmc-solution-showcase .pmc-solution-grid { margin-top: 0; }
.pmc-solution-showcase .pmc-solution-card { width: auto; min-height: 0; flex: initial; margin-right: 0; }
.pmc-solution-extra:not([hidden]) { display: contents; }
.pmc-solution-photo-stack {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}
.pmc-solution-photo-stack::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 4% 8% 3% 7%;
  border: 1px solid rgba(117, 181, 235, 0.3);
  border-radius: 26px;
  background: linear-gradient(160deg, #e2f2ff, #f9fcff 72%);
}
.pmc-solution-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(112, 177, 235, 0.43);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 36px -25px rgba(20, 79, 147, 0.46);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pmc-solution-photo:hover { z-index: 4; transform: translateY(-7px) scale(1.02); box-shadow: 0 26px 42px -22px rgba(20, 79, 147, 0.55); }
.pmc-solution-photo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.pmc-solution-photo span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(131, 191, 241, 0.5);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #3c71a3;
  font-size: 0.66rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.pmc-solution-photo span i { color: #237ed0; }
.pmc-solution-photo-f-team { top: 0; left: 10%; width: 82%; height: 190px; }
.pmc-solution-photo-multiformat { top: 31%; left: 0; width: 89%; height: 205px; }
.pmc-solution-photo-print { right: 0; bottom: 0; width: 84%; height: 192px; }
.pmc-solution-more-wrap { margin-top: 20px; }
.pmc-solution-more i { transition: transform 0.25s ease; }
.pmc-solution-more[aria-expanded="true"] i { transform: rotate(180deg); }

/* Before / After strip (shared with about.css — see note above) */
.pmc-ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 100%;
  margin: 48px auto 0;
}
.pmc-ps-col {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 30px;
  border: 1px solid var(--border-soft);
}
.pmc-ps-before { border-left: 4px solid #c94b4b; }
.pmc-ps-after { border-left: 4px solid var(--cyan-accent); box-shadow: var(--shadow-soft); }
.pmc-ps-col h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.pmc-ps-before h3 i { color: #c94b4b; }
.pmc-ps-after h3 i { color: var(--cyan-accent); }
.pmc-ps-col ul { list-style: none; padding: 0; margin: 0; }
.pmc-ps-col li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px dashed var(--border-soft);
  line-height: 1.5;
}
.pmc-ps-col li:last-child { border-bottom: none; }
.pmc-ps-after li { color: var(--ink); }
.pmc-ps-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px -8px rgba(30,95,191,0.5);
}

/* Responsive */
@media (max-width: 767.98px) {
  .pmc-solution-showcase { grid-template-columns: 1fr; gap: 28px; }
  .pmc-solution-photo-stack { max-width: 400px; min-height: 420px; margin: 0 auto; width: 100%; }
  .pmc-solution-photo-format { height: 140px; }
  .pmc-solution-photo-preview { height: 150px; }
  .pmc-solution-photo-print { height: 140px; }
  .pmc-solution-more-wrap { text-align: left !important; }
  .pmc-solution-grid { grid-template-columns: 1fr; }
  .pmc-ps-grid { grid-template-columns: 1fr; }
  .pmc-ps-arrow { transform: rotate(90deg); margin: 0 auto; }
}


/* ==========================================================
   BANKS PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-cheque-mock, pmc-cheque-stage,
   pmc-faq-accordion, pmc-cta-banner, pmc-perforation, etc.)
   — only new, page-specific rules are below.
   ========================================================== */

/* Sample field breakdown list next to the cheque preview */
.pmc-bank-fields {
  margin: 26px 0 18px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}
.pmc-bank-field {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--white);
}
.pmc-bank-field:last-child { border-bottom: none; }
.pmc-bank-field:nth-child(even) { background: var(--bg-tint); }
.pmc-bank-field span { color: var(--muted); }
.pmc-bank-field strong { color: var(--navy-deep); font-weight: 600; text-align: right; }

.pmc-bank-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}
.pmc-bank-disclaimer i { color: var(--cyan-accent); margin-top: 2px; }

/* Static cheque mock variant — no idle float, sits calmer in a content section */
.pmc-cheque-mock-static { animation: none; transform: rotate(-2deg); }

/* Supported bank grid */
.pmc-bank-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.pmc-bank-tile {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pmc-bank-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--cyan-accent); }
.pmc-bank-tile img { width: 100%; height: 100%; display: flex; margin-bottom: 10px; justify-content: center; align-items: center; object-fit: contain; }
.pmc-bank-tile span { font-size: 0.86rem; font-weight: 500; color: var(--navy-deep); line-height: 1.35; display: block; }

/* Vertical step list (7 steps — too many for a horizontal track) */
.pmc-bank-steps {
  max-width: 640px;
  margin: 44px auto 0;
  position: relative;
}
.pmc-bank-steps::before {
  content: '';
  position: absolute;
  top: 6px; bottom: 6px; left: 21px;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--cyan-accent) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}
.pmc-bank-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 30px;
}
.pmc-bank-step:last-child { padding-bottom: 0; }
.pmc-bank-step-num {
  position: relative;
  z-index: 1;
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--cyan-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--cyan-accent);
}
.pmc-bank-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--blue-primary-dark); margin: 6px 0 4px; }
.pmc-bank-step p { font-size: 0.88rem; color: var(--navy-deep); margin: 0; line-height: 1.6; }

/* Responsive */
@media (max-width: 991.98px) {
  .pmc-bank-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px) {
  .pmc-bank-grid { grid-template-columns: repeat(2, 1fr); }
  .pmc-bank-field { flex-direction: column; gap: 2px; }
  .pmc-bank-field strong { text-align: left; }
}


/* ==========================================================
   INDUSTRY PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-faq-accordion, pmc-cta-banner,
   pmc-perforation, etc.) — only new, page-specific rules below.
   ========================================================== */

.pmc-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pmc-industry-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-top: 3px solid transparent;
  border-radius: 14px;
  padding: 26px 24px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}
.pmc-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-top-color: var(--cyan-accent);
}
.pmc-ic-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 4px 14px 14px 14px;
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-3));
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.pmc-industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.pmc-industry-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
  margin: 0;
}
.pmc-industry-card-highlight {
  border-top-color: var(--cyan-accent);
  box-shadow: 0 0 0 1px var(--cyan-accent), var(--shadow-soft);
}

@media (max-width: 991.98px) {
  .pmc-industry-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .pmc-industry-grid { grid-template-columns: 1fr; }
}


/* ==========================================================
   FAQ PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-faq-accordion, pmc-cta-banner,
   pmc-perforation, etc.) — only new, page-specific rules below.
   ========================================================== */

/* Category tab row */
.pmc-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.pmc-faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pmc-faq-tab i { font-size: 1rem; color: var(--muted); transition: color 0.25s ease; }
.pmc-faq-tab:hover { border-color: var(--blue-primary); color: var(--blue-primary-dark); }
.pmc-faq-tab-active,
.pmc-faq-tab-active:hover {
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-3));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 22px -10px rgba(30,95,191,0.55);
}
.pmc-faq-tab-active i { color: var(--cyan-accent); }

/* Panels */
.pmc-faq-panels { max-width: 860px; margin: 0 auto; }
.pmc-faq-panel { animation: pmcFadeIn 0.35s ease; }
.pmc-faq-panel[hidden] { display: none; }
@keyframes pmcFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pmc-faq-demo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}

/* Responsive */
@media (max-width: 575.98px) {
  .pmc-faq-tabs { gap: 8px; }
  .pmc-faq-tab { padding: 8px 14px; font-size: 0.84rem; }
}


/* ==========================================================
   BLOG PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-cta-banner, pmc-perforation,
   etc.) — only new, page-specific rules below.
   ========================================================== */

/* Toolbar: search + filter chips */
.pmc-blog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.pmc-blog-search {
  position: relative;
  max-width: 420px;
}
.pmc-blog-search i {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.95rem;
}
.pmc-blog-search input {
  width: 100%;
  border: 1.5px solid var(--border-soft);
  border-radius: 999px;
  padding: 11px 18px 11px 42px;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pmc-blog-search input:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30,95,191,0.14);
}

.pmc-blog-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.pmc-blog-filter {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  color: var(--navy-deep);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pmc-blog-filter:hover { border-color: var(--blue-primary); color: var(--blue-primary-dark); }
.pmc-blog-filter-active,
.pmc-blog-filter-active:hover {
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-3));
  border-color: transparent;
  color: var(--white);
}

/* Card grid */
.pmc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pmc-blog-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px 22px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pmc-blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(23,182,212,0.35); }
.pmc-blog-card[hidden] { display: none; }

.pmc-blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--blue-primary-dark);
  background: rgba(30, 95, 191, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pmc-blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 8px;
}
.pmc-blog-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.pmc-blog-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.pmc-blog-soon i { color: var(--cyan-accent); }

/* Load more + empty state */
#blogLoadMore { margin-top: 8px; }
.pmc-blog-empty {
  text-align: center;
  padding: 50px 0;
  color: var(--muted);
}
.pmc-blog-empty i { font-size: 1.8rem; display: block; margin-bottom: 12px; color: var(--border-soft); }

/* Responsive */
@media (max-width: 991.98px) {
  .pmc-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .pmc-blog-grid { grid-template-columns: 1fr; }
  .pmc-blog-search { max-width: 100%; }
}



/* ==========================================================
   DEMO PAGE — additions
   Append this into the bottom of your main style.css.
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-chip, pmc-feature-tile,
   pmc-faq-accordion, pmc-cta-banner, pmc-perforation, etc.)
   — only new, page-specific rules are below.
   ========================================================== */

/* Video placeholder */
.pmc-video-wrap { max-width: 900px; margin: 0 auto; }
.pmc-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lift);
}
.pmc-video-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(23, 182, 212, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 182, 212, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 72%);
}
.pmc-video-play {
  position: relative;
  z-index: 1;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: none;
  background: var(--cyan-accent);
  color: var(--navy-deep);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: not-allowed;
  box-shadow: 0 14px 32px -8px rgba(23,182,212,0.55);
  transition: transform 0.25s ease;
}
.pmc-video-play:hover { transform: scale(1.05); }
.pmc-video-play i { margin-left: 4px; }
.pmc-video-badge {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}
.pmc-video-caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 18px 0 0;
  line-height: 1.6;
}
.pmc-video-caption strong { color: var(--navy-deep); }

/* Once a real embed is added, style the wrapping frame like this: */
.pmc-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.pmc-video-frame iframe,
.pmc-video-frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Vertical step list (10 steps) */
.pmc-demo-steps {
  max-width: 700px;
  margin: 44px auto 0;
  position: relative;
}
.pmc-demo-steps::before {
  content: '';
  position: absolute;
  top: 6px; bottom: 6px; left: 21px;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--blue-primary-dark) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}
.pmc-demo-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 28px;
}
.pmc-demo-step:last-child { padding-bottom: 0; }
.pmc-demo-step-num {
  position: relative;
  z-index: 1;
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--cyan-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--cyan-accent);
}
.pmc-demo-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy-deep); margin: 6px 0 4px; }
.pmc-demo-step p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Responsive */
@media (max-width: 575.98px) {
  .pmc-video-play { width: 66px; height: 66px; font-size: 1.5rem; }
}

/* Small "not ready yet" shake feedback when the placeholder play button is clicked */
.pmc-video-play-shake { animation: pmcShake 0.4s ease; }
@keyframes pmcShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}


/* ==========================================================
   KNOWLEDGE CENTER PAGE — 
   Reuses existing tokens/classes from style.css
   (pmc-hero-sm, pmc-crumb, pmc-cta-banner, pmc-perforation,
   etc.) — only new, page-specific rules below.
   ========================================================== */

/* Resource card grid */
.pmc-kc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pmc-kc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px 22px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pmc-kc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(23,182,212,0.4); }
.pmc-kc-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-primary), var(--navy-3));
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.pmc-kc-card h3 {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.pmc-kc-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.pmc-kc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-primary-dark);
}
.pmc-kc-card:hover .pmc-kc-link { color: var(--cyan-accent); }

/* Glossary */
.pmc-glossary {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.pmc-glossary-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--cyan-accent);
  border-radius: 10px;
  padding: 16px 20px;
}
.pmc-glossary-item dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy-deep);
  margin-bottom: 5px;
}
.pmc-glossary-item dd {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .pmc-kc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767.98px) {
  .pmc-glossary { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .pmc-kc-grid { grid-template-columns: 1fr; }
}