/* ==========================================================
   PRINT'X — Brand landing page (product-focused)
   Palette tied to El-Shakikan theme:
   navy  #1B2A4A (--rr-theme-primary) / blue #3B82F6 (--rr-theme-secondary)
   ========================================================== */

.printx-page {
  --px-navy-900: #0B1D33;
  --px-navy-800: #12284C;
  --px-navy: #1B2A4A;
  --px-blue: #1b2a4a;
  --px-sky: #38BDF8;
  --px-ink: #101828;
  --px-body: #4E5A6C;
  --px-muted: #8593A7;
  --px-line: #E6EBF2;
  --px-soft: #F4F7FC;
  --px-white: #FFFFFF;
  --px-radius: 18px;
  --px-shadow-sm: 0 20px 45px -28px rgba(11, 29, 51, .22);
  --px-shadow-lg: 0 45px 90px -32px rgba(11, 29, 51, .5);
  font-family: 'Rubik', sans-serif;
  color: var(--px-body);
  background: #fff;
  overflow-x: clip;
}

.printx-page h1,
.printx-page h2,
.printx-page h3,
.printx-page h4,
.printx-page h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--px-navy-900);
}
.px-hero-content * {
    color: #fff !important;
}
.printx-page section {
  scroll-margin-top: 100px;
}

.printx-page .px-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.px-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.px-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.px-btn-primary {
  background: linear-gradient(90deg, var(--px-blue), var(--px-sky));
  color: #fff;
  box-shadow: 0 16px 34px -12px rgba(59, 130, 246, .65);
}

.px-btn-primary:hover {
  color: #fff;
  box-shadow: 0 22px 44px -14px rgba(59, 130, 246, .8);
}

.px-btn-outline {
  background: transparent;
  color: var(--px-navy);
  border: 2px solid var(--px-navy);
}

.px-btn-outline:hover {
  background: var(--px-navy);
  color: #fff;
  border-color: var(--px-navy);
}

.px-btn-white {
  background: #fff;
  color: var(--px-navy);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .35);
}

.px-btn-white:hover {
  color: var(--px-blue);
}

.px-btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

/* ---------- Eyebrow ---------- */
.px-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--px-blue);
}

.px-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--px-blue);
}

.px-eyebrow.px-eyebrow-light {
  color: var(--px-sky);
}

.px-eyebrow.px-eyebrow-light::before {
  background: var(--px-sky);
}

/* ---------- Print'X navbar ---------- */
.px-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--px-line);
}

.px-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 12px 24px;
}

.px-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.px-brand:hover {
  text-decoration: none;
}

.px-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--px-navy), var(--px-blue));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .5px;
  box-shadow: 0 10px 20px -8px rgba(27, 42, 74, .5);
}

.px-brand-txt {
  line-height: 1;
}

.px-brand-word {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 2.6px;
  color: var(--px-navy);
}

.px-brand-sub {
  display: block;
  margin-top: 3px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--px-muted);
}

.px-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.px-nav-links > li > a {
  display: block;
  padding: 9px 13px;
  border-radius: 10px;
  color: #334155;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: all .18s ease;
}

.px-nav-links > li > a:hover {
  color: var(--px-blue);
  background: #EEF4FF;
  text-decoration: none;
}

.px-nav-cta {
  margin-inline-start: 8px;
}

.px-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.px-burger span {
  width: 22px;
  height: 2px;
  background: var(--px-navy);
  border-radius: 99px;
  transition: .25s;
}

@media (max-width: 991.98px) {
  .px-burger {
    display: inline-flex;
  }

  .px-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--px-line);
    box-shadow: 0 30px 40px -20px rgba(11, 29, 51, .25);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 20px;
    display: none;
  }

  .px-nav-links.px-nav-open {
    display: flex;
  }

  .px-nav-links > li > a {
    padding: 12px 14px;
    font-size: 14px;
  }

  .px-nav-cta {
    margin-inline-start: 0;
    margin-top: 6px;
  }
}

/* ---------- Hero ---------- */
.px-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1100px 520px at 85% -12%, rgba(56, 189, 248, .35), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(59, 130, 246, .25), transparent 60%),
    linear-gradient(135deg, #0B1D33 0%, #12284C 46%, #1B3A66 100%);
}

.px-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding: 84px 24px 40px;
}

.px-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: 7px;
  line-height: .95;
  margin: 0;
  background: linear-gradient(90deg, #fff 20%, #9CC4FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.px-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(25px, 3.4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 14px 0 0;
  line-height: 1.22;
}

.px-hero-text {
  color: #B9CDE7;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.75;
  margin: 18px 0 0;
}

.px-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.px-chip {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #E7EFFA;
  padding: 8px 17px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .5px;
}

.px-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.px-hero-foot {
  text-align: center;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: 1200px;
  margin-inline: auto;
}

/* Hero product visual */
.px-hero-visual {
  position: relative;
  min-height: 470px;
}

.px-hv-glow {
  position: absolute;
  inset: 6% -8% -6% -8%;
  background: radial-gradient(closest-side, rgba(56, 189, 248, .28), transparent);
  filter: blur(8px);
}

.px-sheet {
  position: absolute;
  top: 48px;
  left: 5%;
  width: 258px;
  height: 356px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 50px 90px -24px rgba(1, 10, 28, .55);
  padding: 22px 18px;
  transform: rotate(-5deg);
}

.px-sheet-tab {
  position: absolute;
  top: 16px;
  right: -12px;
  background: var(--px-blue);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 6px 11px 6px 9px;
  border-radius: 5px 0 0 5px;
}

.px-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 13px;
}

.px-label {
  height: 86px;
  background: linear-gradient(150deg, #FAFCFF, #EDF3FC);
  border: 1px solid #E0E8F4;
  border-radius: 7px;
  padding: 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.px-label-title {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--px-navy);
}

.px-barcode {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 17px;
}

.px-barcode i {
  width: 2.5px;
  background: var(--px-navy);
  border-radius: 1px;
}

.px-barcode i:nth-child(1) { height: 100%; }
.px-barcode i:nth-child(2) { height: 55%; }
.px-barcode i:nth-child(3) { height: 85%; }
.px-barcode i:nth-child(4) { height: 45%; }
.px-barcode i:nth-child(5) { height: 100%; }
.px-barcode i:nth-child(6) { height: 70%; }
.px-barcode i:nth-child(7) { height: 90%; }

.px-roll {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: 236px;
  height: 150px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 30px 40px rgba(1, 10, 28, .35));
}

.px-roll-body {
  position: relative;
  height: 94px;
  flex: 1;
  background: linear-gradient(180deg, #DCECFC, #ACCAF2);
  border-radius: 14px;
  transform: skewY(-4deg);
  overflow: hidden;
  margin-inline-start: -4px;
}

.px-roll-body::after {
  content: "";
  position: absolute;
  inset: 8px 10px 8px 14px;
  border: 1.5px dashed rgba(27, 42, 74, .3);
  border-radius: 10px;
}

.px-roll-stripe {
  position: absolute;
  left: 26px;
  right: 12px;
  top: 15px;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, #3B82F6, #38BDF8);
}

.px-roll-lines {
  position: absolute;
  left: 26px;
  right: 14px;
  bottom: 13px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--px-navy) 0 6px, transparent 6px 10px);
  opacity: .7;
}

.px-roll-disc {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(150deg, #fff, #E3EDFB);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #CBDDF6;
}

.px-roll-hole {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px #D7E5F8;
}

.px-roll-arc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px;
  border-radius: 50%;
  border: 2px dashed #AEC9EF;
}

.px-chip-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .96);
  color: var(--px-ink);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 13px;
  box-shadow: 0 24px 40px -16px rgba(1, 10, 28, .4);
  white-space: nowrap;
}

.px-chip-float-1 {
  top: 40px;
  inset-inline-end: 2%;
}

.px-chip-float-2 {
  bottom: 0;
  inset-inline-start: 0;
}

.px-chip-float-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--px-sky);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .18);
}

.px-chip-float-2 .px-chip-float-dot {
  background: var(--px-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .18);
}

@media (max-width: 991.98px) {
  .px-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 64px;
    text-align: center;
  }

  .px-hero-text {
    margin-inline: auto;
  }

  .px-chips,
  .px-hero-actions {
    justify-content: center;
  }

  .px-hero-visual {
    min-height: 430px;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .px-sheet {
    left: 0;
  }

  .px-roll {
    right: 0;
  }
}

/* ---------- Generic sections ---------- */
.px-section {
  padding: 96px 0;
}

.px-section-soft {
  background: var(--px-soft);
}

.px-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.px-head-left {
  margin-inline: 0;
  text-align: start;
}

.px-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.18;
  margin: 16px 0 0;
}

.px-head p,
.px-lead {
  font-size: 16.5px;
  line-height: 1.75;
  margin: 16px 0 0;
}

/* ---------- About Print'X ---------- */
.px-about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.px-about-visual {
  position: relative;
  min-height: 440px;
}

.px-sheet-lg {
  position: absolute;
  top: 24px;
  left: 4%;
  width: 300px;
  height: 400px;
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 12px;
  box-shadow: var(--px-shadow-lg);
  padding: 26px 22px;
  transform: rotate(2deg);
  z-index: 2;
}

.px-sheet-lg .px-sheet-grid {
  grid-template-columns: repeat(2, 1fr);
}

.px-label-lg .px-label {
  height: 104px;
}

.px-about-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--px-shadow-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--px-ink);
  z-index: 3;
}

.px-about-chip i {
  color: var(--px-blue);
  font-size: 17px;
}

.px-about-chip-1 {
  top: 6%;
  inset-inline-end: 0;
}

.px-about-chip-2 {
  bottom: 14%;
  inset-inline-end: 10%;
}

.px-about-chip-3 {
  bottom: 2%;
  inset-inline-start: 0;
}

.px-about-blob {
  position: absolute;
  inset-inline-start: -6%;
  inset-block-start: 0;
  width: 60%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(59, 130, 246, .16), rgba(56, 189, 248, .22));
  border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  z-index: 1;
  animation: pxFloat 9s ease-in-out infinite;
}

.px-about-photo {
  position: relative;
  z-index: 2;
  width: min(300px, 82%);
  margin: 26px auto 0;
  transform: rotate(2deg);
}

.px-about-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--px-line);
  box-shadow: var(--px-shadow-lg);
}

.px-about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.px-about-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 14px;
  padding: 16px 18px;
}

.px-about-feat i {
  color: var(--px-blue);
  font-size: 18px;
  margin-top: 3px;
}

.px-about-feat strong {
  display: block;
  color: var(--px-navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.px-about-feat span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--px-muted);
}

/* ---------- Products ---------- */
.px-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.px-prod-card {
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.px-prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -24px rgba(11, 29, 51, .28);
  border-color: #CBDDF6;
}

.px-prod-visual {
  position: relative;
  height: 230px;
  background:
    radial-gradient(340px 200px at 50% -10%, rgba(56, 189, 248, .14), transparent 60%),
    linear-gradient(160deg, #F6F9FE, #EDF3FB);
  border-bottom: 1px solid var(--px-line);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* product mini visual: a4 sheet */
.px-mini-sheet {
  position: relative;
  width: 128px;
  height: 174px;
  background: #fff;
  border: 1px solid #D6E2F3;
  border-radius: 7px;
  box-shadow: 0 22px 45px -18px rgba(11, 29, 51, .35);
  padding: 14px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  transform: rotate(-3deg);
}

.px-mini-sheet .px-label {
  height: auto;
}

.px-badge-tag {
  position: absolute;
  z-index: 3;
  top: 18px;
  inset-inline-end: -12px;
  background: var(--px-navy);
  color: #fff;
  font-size: 9px;
  letter-spacing: 1.6px;
  font-weight: 700;
  padding: 6px 12px 6px 10px;
  border-radius: 5px 0 0 5px;
}

/* iSize mini visual */
.px-mini-isize {
  position: relative;
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
}

.px-isize-sheet {
  position: relative;
  width: 132px;
  height: 168px;
  border: 2px dashed var(--px-blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
}

.px-isize-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 40px;
  transform: translate(-50%, -50%);
  background: linear-gradient(140deg, #E1ECFB, #C7DBF7);
  border: 1px solid #B5CFF1;
  border-radius: 5px;
}

.px-dim-h {
  position: absolute;
  top: -26px;
  left: -14px;
  right: -14px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--px-blue);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.px-dim-h::before,
.px-dim-h::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 1.5px solid var(--px-blue);
}

.px-dim-h::before { margin-inline-end: 6px; }
.px-dim-h::after { margin-inline-start: 6px; }

.px-dim-v {
  position: absolute;
  left: -28px;
  top: -14px;
  bottom: -14px;
  width: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--px-blue);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.px-dim-v::before,
.px-dim-v::after {
  content: "";
  width: 0;
  flex: 1;
  border-inline-start: 1.5px solid var(--px-blue);
}

.px-dim-v::before { margin-block-start: 6px; }
.px-dim-v::after { margin-block-end: 6px; }

/* thermal roll mini visual */
.px-mini-roll {
  position: relative;
  width: 190px;
  height: 130px;
  display: flex;
  align-items: center;
}

.px-prod-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.px-prod-body h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.px-prod-meta {
  display: inline-block;
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--px-blue);
}

.px-prod-body p {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 14px 0 20px;
}

.px-prod-link {
  margin-top: auto;
}

.px-link-under {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--px-navy);
  text-decoration: none;
}

.px-link-under:hover {
  color: var(--px-blue);
  text-decoration: none;
}

.px-link-under i {
  transition: transform .2s ease;
}

.px-link-under:hover i {
  transform: translateX(4px);
}

[dir="rtl"] .px-link-under:hover i {
  transform: translateX(-4px);
}

/* ---------- iSize hero section ---------- */
.px-isize {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 500px at 88% 10%, rgba(56, 189, 248, .3), transparent 60%),
    linear-gradient(135deg, #0B1D33, #143258 55%, #173E6E);
}

.px-isize-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 96px 24px;
  max-width: 1200px;
  margin-inline: auto;
}

.px-isize .px-title,
.px-isize h2,
.px-isize h3 {
  color: #fff;
}

.px-isize-sub {
  display: block;
  margin-top: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 1px;
  color: #EAF2FF;
  text-shadow: 0 0 30px rgba(56, 189, 248, .4);
}

.px-isize-text {
  color: #B9CDE7;
  font-size: 16.5px;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 520px;
}

.px-isize-cta {
  margin-top: 30px;
}

/* iSize photo */
.px-isize-visual {
  display: grid;
  gap: 28px;
}

.px-isize-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .6);
}

.px-isize-photo img {
  display: block;
  width: 100%;
  height: clamp(230px, 28vw, 320px);
  object-fit: cover;
  object-position: center;
}

/* iSize flow visual */
.px-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10px;
}

.px-flow-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 20px 22px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.px-flow-step-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 19px;
}

.px-flow-step strong {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.px-flow-brand {
  background: linear-gradient(90deg, var(--px-blue), var(--px-sky));
  border-color: transparent;
  box-shadow: 0 20px 45px -16px rgba(59, 130, 246, .55);
  justify-content: center;
}

.px-flow-brand strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
}

.px-flow-arrow {
  align-self: center;
  display: grid;
  place-items: center;
  width: 38px;
  height: 46px;
  color: var(--px-sky);
  font-size: 22px;
}

.px-flow-arrow svg {
  width: 20px;
  height: 26px;
}

.px-flow-arrow.px-flow-arrow-h {
  display: none;
}

/* ---------- Why Print'X ---------- */
.px-why-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.px-why-hl {
  position: relative;
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 22px;
  padding: 34px 30px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.px-why-hl:hover {
  transform: translateY(-6px);
  box-shadow: var(--px-shadow-sm);
}

.px-why-hl::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--px-blue), var(--px-sky));
}

.px-why-hl-icon {
  width: 60px;
  height: 60px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, .14), rgba(56, 189, 248, .2));
  color: var(--px-blue);
  font-size: 26px;
  margin-bottom: 20px;
}

.px-why-hl-icon svg {
  width: 30px;
  height: 30px;
}

.px-why-hl h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 0;
}

.px-why-hl p {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 12px 0 0;
}

.px-why-hl-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--px-blue);
}

.px-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  margin-top: 30px;
}

.px-why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 14px;
  padding: 16px 18px;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.px-why-item:hover {
  border-color: #CBDDF6;
  box-shadow: var(--px-shadow-sm);
}

.px-why-item i {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, .1);
  color: var(--px-blue);
  font-size: 16px;
}

.px-why-item strong {
  display: block;
  color: var(--px-navy);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.px-why-item span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--px-muted);
}

/* ---------- Applications ---------- */
.px-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.px-app-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 16px;
  padding: 18px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.px-app-item:hover {
  transform: translateY(-4px);
  border-color: #CBDDF6;
  box-shadow: var(--px-shadow-sm);
}

.px-app-item i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, .13), rgba(56, 189, 248, .18));
  color: var(--px-blue);
  font-size: 20px;
  flex: 0 0 auto;
}

.px-app-item strong {
  color: var(--px-navy);
  font-size: 15px;
  font-weight: 700;
}

.px-app-quote {
  text-align: center;
  max-width: 760px;
  margin: 40px auto 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--px-body);
}

/* ---------- Partners ---------- */
.px-partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

.px-partner-logo {
  width: 148px;
  height: 92px;
  background: #fff;
  border: 1px solid var(--px-line);
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.px-partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--px-shadow-sm);
}

.px-partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: .75;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease;
}

.px-partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* ---------- About the brand ---------- */
.px-grade {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 480px at 92% 0%, rgba(56, 189, 248, .22), transparent 60%),
    linear-gradient(135deg, #12284C, #0E2445 60%, #14315A);
}

.px-grade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding: 96px 24px;
}

.px-grade .px-eyebrow,
.px-grade h2 {
  color: #fff;
}

.px-grade-text {
  color: #B9CDE7;
  font-size: 16px;
  line-height: 1.8;
  margin: 18px 0 0;
}

.px-grade-text strong {
  color: #fff;
}

.px-grade-mark {
  position: relative;
  min-height: 340px;
}

.px-brand-photo {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55);
}

.px-brand-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.px-brand-photo figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 34px 20px 16px;
  background: linear-gradient(to top, rgba(7, 16, 30, .88), rgba(7, 16, 30, 0));
}

.px-brand-photo figcaption strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
}

.px-brand-photo figcaption span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #C8E2FF;
}

.px-grade-big {
  position: absolute;
  inset-inline-start: 8%;
  inset-block-start: 8%;
  width: 78%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background:
    radial-gradient(420px 250px at 70% 0%, rgba(56, 189, 248, .35), transparent 60%),
    linear-gradient(145deg, #183C6E, #2783C4);
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, .55);
  transform: rotate(4deg);
}

.px-grade-brand {
  text-align: center;
  color: #fff;
}

.px-grade-brand strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: 6px;
}

.px-grade-brand span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #C8E2FF;
}

.px-grade-ring {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px dashed rgba(56, 189, 248, .6);
  animation: pxSpin 26s linear infinite;
}

/* ---------- CTA ---------- */
.px-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 10% 120%, rgba(56, 189, 248, .3), transparent 60%),
    linear-gradient(90deg, var(--px-navy), #27406E);
  color: #fff;
  text-align: center;
  padding: 84px 24px;
}

.px-cta-inner {
  max-width: 720px;
  margin-inline: auto;
}

.px-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
}

.px-cta p {
  color: #C3D5EC;
  font-size: 16.5px;
  line-height: 1.75;
  margin: 18px auto 0;
  max-width: 560px;
}

.px-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.px-cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.px-cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #E7EFFA;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
}

.px-cta-contact a:hover {
  color: var(--px-sky);
  text-decoration: none;
}

.px-cta-contact i {
  color: var(--px-sky);
  font-size: 17px;
}

/* ---------- Print'X footer ---------- */
.px-footer {
  background: #0A1728;
  color: #AFC3DC;
}

.px-footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 72px 24px 54px;
}

.px-footer-brand .px-brand-word {
  color: #fff;
}

.px-footer-brand .px-brand-sub {
  color: #7C93B0;
}

.px-footer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin: 18px 0 0;
  max-width: 360px;
}

.px-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.px-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #CFE0F4;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s ease;
}

.px-footer-social a:hover {
  background: linear-gradient(90deg, var(--px-blue), var(--px-sky));
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}

.px-footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .8px;
  margin: 6px 0 22px;
}

.px-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.px-footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.px-footer-contact li i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  background: rgba(59, 130, 246, .14);
  color: var(--px-sky);
  display: grid;
  place-items: center;
  font-size: 15px;
}

.px-footer-contact li a {
  color: #CFE0F4;
  text-decoration: none;
}

.px-footer-contact li a:hover {
  color: var(--px-sky);
  text-decoration: none;
}

.px-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 24px;
  text-align: center;
  font-size: 12.5px;
  color: #6E85A3;
}

.px-footer-bottom a {
  color: var(--px-sky);
  text-decoration: none;
}

.px-footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------- Animations ---------- */
@keyframes pxFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

@keyframes pxSpin {
  to { transform: rotate(360deg); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .px-about-grid,
  .px-isize-grid,
  .px-grade-grid {
    gap: 40px;
  }

  .px-product-grid-note {
    font-size: 13px;
  }
}

@media (max-width: 991.98px) {
  .px-section {
    padding: 68px 0;
  }

  .px-about-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .px-about-visual {
    min-height: 400px;
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }

  .px-products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .px-isize-grid {
    grid-template-columns: 1fr;
    padding: 68px 24px;
  }

  .px-flow {
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }

  .px-isize-visual {
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }

  .px-why-highlights {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .px-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .px-grade-grid {
    grid-template-columns: 1fr;
  }

  .px-grade-mark {
    min-height: 300px;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .px-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .px-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .px-about-feats,
  .px-why-list,
  .px-apps-grid {
    grid-template-columns: 1fr;
  }

  .px-hero-visual {
    min-height: 380px;
    transform: scale(.92);
  }

  .px-footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 52px;
  }
}

/* ---------- RTL font polish ---------- */
[dir="rtl"] .printx-page,
[dir="rtl"] .printx-page p,
[dir="rtl"] .printx-page li,
[dir="rtl"] .printx-page span,
[dir="rtl"] .printx-page a,
[dir="rtl"] .printx-page strong {
  font-family: 'Cairo', 'Rubik', sans-serif;
}

[dir="rtl"] .printx-page h1,
[dir="rtl"] .printx-page h2,
[dir="rtl"] .printx-page h3,
[dir="rtl"] .printx-page h4,
[dir="rtl"] .px-brand-word,
[dir="rtl"] .px-hero-title,
[dir="rtl"] .px-isize-sub,
[dir="rtl"] .px-flow-brand strong {
  font-family: 'Cairo', 'Poppins', sans-serif;
  letter-spacing: 0;
}