/* ==========================================================================
   POSWAY — 2026 Design System
   A ground-up visual replacement for the legacy Mobirise theme. Loaded last,
   after style.css / mbr-additional.css. New nav shape, new type, new color
   language, new components — built as an independent system, not a patch.
   ========================================================================== */

:root {
  /* Color */
  --bg: #ffffff;
  --bg-soft: #f6f9ff;
  --bg-soft-2: #eaf2ff;
  --ink: #0b1220;
  --ink-2: #0f2a5f;
  --deep: #071a3a;
  --deep-2: #0b2a5c;
  --muted: #5b6b83;
  --faint: #94a3b8;
  --blue: #1677ff;
  --blue-2: #2563eb;
  --blue-light: #eaf2ff;
  --border: #e6edf7;
  --border-2: #d7e3f5;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 1px 1px rgba(15,23,42,.03);
  --shadow: 0 12px 28px rgba(15,23,42,.08);
  --shadow-lg: 0 30px 70px rgba(15,23,42,.16);
  --shadow-blue: 0 16px 36px rgba(22,119,255,.28);

  /* Shape */
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22,.9,.32,1);
  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Reset / base ---------------------------------------------- */
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { background: var(--bg) !important; }
body { overflow-x: hidden; }
body {
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-font-smoothing: antialiased;
}
section { background-color: transparent !important; }
html, body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, button, input, textarea,
.mbr-fonts-style, .mbr-section-title, .mbr-section-subtitle, .mbr-text,
.card-title, .item-title, .item-subtitle, .navbar-caption, .nav-link {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
img { max-width: 100%; }
a { text-decoration: none; }
.container, .container-fluid { max-width: var(--container); }

/* ---------- Buttons ------------------------------------------------------ */
.btn-2026,
.mbr-section-btn a, .btn.btn-info {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  line-height: 1 !important;
  border: none !important;
  background: var(--ink-2) !important;
  color: #fff !important;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn-2026:hover, .mbr-section-btn a:hover, .btn.btn-info:hover {
  background: var(--blue-2) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-2026--ghost {
  background: #fff !important;
  color: var(--ink-2) !important;
  border: 1px solid var(--border-2) !important;
  box-shadow: none;
}
.btn-2026--ghost:hover {
  background: var(--bg-soft-2) !important;
  color: var(--blue-2) !important;
  box-shadow: none;
  border-color: var(--blue-2) !important;
}

/* ==========================================================================
   NAVIGATION — full-width glass bar
   ========================================================================== */
.menu2 { position: fixed !important; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; pointer-events: none; }
.menu2 * { pointer-events: auto; }
.menu2 nav.navbar {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #ffffff !important;
  border: none;
  border-bottom: 1px solid rgba(15,23,42,.06);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: .6rem 2.5rem !important;
  transition: box-shadow .25s var(--ease), padding .25s var(--ease);
}
.menu2 nav.navbar.navbar-short {
  padding: .4rem 2.5rem !important;
  box-shadow: var(--shadow-lg);
}
.menu2 .container-fluid {
  padding: 0; max-width: none; width: 100%;
  display: flex; align-items: center;
}
@media (max-width: 991px) { .menu2 nav.navbar { padding: .6rem 1.25rem !important; } }

/* Logo (left) / links (center) / lang + search + toggler (right) */
.menu2 .navbar-brand { order: 1; flex-shrink: 0; }
.menu2 .navbar-toggler { order: 5; }
@media (min-width: 992px) {
  .menu2 .navbar-collapse { order: 2; flex: 1 1 auto; display: flex; justify-content: center !important; }
}
@media (max-width: 991px) { .menu2 .navbar-collapse { order: 2; } }
.menu2 .navbar-lang { order: 3; flex-shrink: 0; }
.menu2 .navbar-search { order: 4; flex-shrink: 0; margin-left: .75rem; }

/* Language toggle pill (ENG / AR) */
.menu2 .navbar-lang {
  display: flex; align-items: center; gap: 0; padding: .2rem;
  background: var(--bg-soft-2); border-radius: var(--r-pill); font-size: .78rem; font-weight: 700;
}
.menu2 .navbar-lang__opt {
  padding: .3rem .7rem; border-radius: var(--r-pill); color: var(--muted); transition: all .18s ease; cursor: pointer;
}
.menu2 .navbar-lang__opt.active { background: var(--ink-2); color: #fff; }
.menu2 .navbar-lang__opt:not(.active):hover { color: var(--ink-2); }
@media (max-width: 991px) { .menu2 .navbar-lang { order: 3; margin: 0 .5rem 0 auto; } }

.menu2 .navbar-caption {
  color: var(--ink-2) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em;
  font-size: 1.1rem !important;
}
.menu2 .navbar-nav { align-items: center; }
.menu2 .nav-item { margin: 0 .15rem; }
.menu2 .nav-link {
  color: var(--ink) !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
  padding: .45rem .8rem !important;
  border-radius: var(--r-pill);
  transition: background .18s ease, color .18s ease;
}
.menu2 .nav-link:hover { background: var(--bg-soft-2); color: var(--blue-2) !important; }
.menu2 .navbar-cta {
  display: inline-flex !important;
  align-items: center;
  margin-left: .75rem;
  padding: .65rem 1.4rem !important;
  background: var(--ink-2) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  border-radius: var(--r-pill) !important;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.menu2 .navbar-cta:hover { background: var(--blue-2) !important; transform: translateY(-1px); box-shadow: var(--shadow-blue); color: #fff !important; }

/* Search */
.menu2 .navbar-search { position: relative; display: flex; align-items: center; }
.menu2 .navbar-search__btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; border: none; background: transparent;
  color: var(--ink-2); cursor: pointer; transition: background .18s ease;
}
.menu2 .navbar-search__btn:hover { background: var(--bg-soft-2); }
.menu2 .navbar-search__form {
  position: absolute; top: calc(100% + 10px); right: 0; width: 280px;
  display: flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--border-2); border-radius: var(--r-pill);
  padding: .4rem .4rem .4rem 1rem; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.menu2 .navbar-search.is-open .navbar-search__form { opacity: 1; visibility: visible; transform: translateY(0); }
.menu2 .navbar-search__input {
  flex: 1; border: none; outline: none; font-size: .9rem; font-family: inherit; color: var(--ink); background: transparent;
}
.menu2 .navbar-search__submit {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--blue-2); color: #fff; cursor: pointer; flex-shrink: 0;
}
@media (max-width: 991px) {
  .menu2 .navbar-cta { margin: .75rem 0 0; justify-content: center; width: 100%; }
  .menu2 .navbar-search__form { right: -12px; width: 240px; }
}
body { padding-top: 64px; }
@media (max-width: 991px) { body { padding-top: 56px; } }
.cid-ufjlIOMv0x, .menu2 { position: fixed !important; }

/* Mega menu — glass panel under the floating pill */
.mega-dropdown { position: static; }
.menu2 .mega-menu {
  display: block;
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  width: min(920px, 92vw);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-lg), 0 1px 0 rgba(255,255,255,.9) inset;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.78));
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity .3s ease, transform .38s cubic-bezier(.22,1,.36,1), visibility 0s linear .3s;
}
.menu2 .mega-menu::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 10% 0%, rgba(255,255,255,.6), transparent 60%),
              radial-gradient(80% 50% at 100% 0%, rgba(22,119,255,.16), transparent 60%);
  pointer-events: none;
}
.menu2 .mega-dropdown.open > .mega-menu, .menu2 .mega-dropdown.show > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .3s ease, transform .38s cubic-bezier(.22,1,.36,1), visibility 0s linear 0s;
}
/* Open on cursor hover for desktop pointer devices (click/tap still works via .open/.show) */
@media (hover: hover) and (min-width: 992px) {
  .menu2 .mega-dropdown:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity .3s ease, transform .38s cubic-bezier(.22,1,.36,1), visibility 0s linear 0s;
  }
}
.menu2 .mega-menu-inner { position: relative; display: flex; min-height: 360px; }
.menu2 .mega-cats {
  display: flex; flex-direction: column; gap: .3rem; width: 240px; flex-shrink: 0;
  padding: 1.4rem; background: rgba(255,255,255,.4); border-right: 1px solid rgba(255,255,255,.7);
}
.menu2 .mega-cat {
  appearance: none; border: 1px solid transparent; background: transparent; text-align: left;
  padding: .7rem .95rem; border-radius: var(--r); font-weight: 600; font-size: .92rem;
  color: var(--ink); cursor: pointer; transition: all .18s ease;
}
.menu2 .mega-cat:hover { background: rgba(255,255,255,.6); }
.menu2 .mega-cat.active {
  background: linear-gradient(135deg, rgba(22,119,255,.16), rgba(22,119,255,.05));
  border-color: rgba(22,119,255,.35); color: var(--ink-2);
  box-shadow: 0 4px 14px rgba(22,119,255,.15);
  transform: translateX(2px);
}
.menu2 .mega-cats-cta { display: block !important; margin: auto 0 0 !important; text-align: center; width: 100%; }
.menu2 .mega-items { position: relative; flex: 1; padding: 1.6rem; }
.menu2 .mega-items-grid { display: none; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.menu2 .mega-items-grid.active { display: grid; animation: megaFade .2s ease; }
@keyframes megaFade { from { opacity: 0; transform: translateY(4px);} to { opacity: 1; transform: translateY(0);} }
.menu2 .mega-item {
  display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 1rem .6rem;
  border-radius: var(--r); text-align: center; background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.8); transition: all .18s ease;
}
.menu2 .mega-item:hover { background: #fff; border-color: rgba(22,119,255,.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.menu2 .mega-item-img { width: 100%; aspect-ratio: 1.3/1; border-radius: var(--r-sm); background-color: var(--blue-light); background-repeat: no-repeat; background-position: center; background-size: 42%; }
.menu2 .mega-item-name { color: var(--ink-2); font-weight: 600; font-size: .84rem; line-height: 1.25; }

/* Hover-swap: "screen off / screen on" product image effect. Two layers
   sit on top of a fallback icon/color on the container; each layer's
   background-image is only visible once the real file exists at that path,
   so nothing breaks before the real assets are dropped in. */
.hover-swap { position: relative; overflow: hidden; }
.hover-swap__layer {
  position: absolute; inset: 0;
  background-repeat: no-repeat; background-position: center; background-size: contain;
  transition: opacity .35s ease;
}
.hover-swap__layer--off { opacity: 1; }
.hover-swap__layer--on { opacity: 0; }
.hover-swap:hover .hover-swap__layer--off { opacity: 0; }
.hover-swap:hover .hover-swap__layer--on { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hover-swap__layer { transition: none; } }

.menu2 .mega-item-img.hover-swap { background-size: 42%; }
.menu2 .mega-item-img .hover-swap__layer { background-size: 62%; }

/* Hover-swap variant for real <img> product photos on hub pages: the real
   photo IS the "off" state; only an "-on" layer is added on top. */
.hover-swap__base { display: block; width: 100%; transition: opacity .35s ease; }
.hover-swap:hover .hover-swap__base { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .hover-swap__base { transition: none; } }
@media (max-width: 991px) {
  .menu2 .mega-menu { position: static; transform: none; width: 100%; box-shadow: none; border: none; border-top: 1px solid var(--border); border-radius: 0; margin-top: .5rem; backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .menu2 .mega-menu::before { display: none; }
  .menu2 .mega-menu-inner { flex-direction: column; min-height: 0; }
  .menu2 .mega-cats { width: 100%; flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--border); background: transparent; padding: .75rem 0; }
  .menu2 .mega-cat { flex: 1 1 auto; }
  .menu2 .mega-cats-cta { margin-top: .5rem; }
  .menu2 .mega-items { padding: 1rem 0; }
  .menu2 .mega-items-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   HERO 2 (homepage) — Arino-inspired: centered statement + marquee +
   overlapping stat card, in POSWAY navy/blue.
   ========================================================================== */
.hero-arino {
  position: relative; overflow: visible;
  padding: 150px 20px 10rem;
  background: radial-gradient(120% 90% at 50% -10%, #143869 0%, var(--deep) 55%, #050f24 100%);
  text-align: center;
}
.hero-arino__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(45% 45% at 20% 20%, rgba(22,119,255,.35), transparent 60%),
    radial-gradient(40% 40% at 82% 15%, rgba(120,170,255,.22), transparent 60%),
    radial-gradient(50% 40% at 50% 100%, rgba(22,119,255,.18), transparent 60%);
}
.hero-arino__inner {
  position: relative; z-index: 2; max-width: 1440px; margin: 0 auto;
  text-align: left;
}
.hero-arino__copy { max-width: 620px; }
.hero-arino__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: #cfe0ff; font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-arino h1 { font-size: clamp(2rem, 3.4vw, 2.9rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; color: #fff; margin-bottom: 1.25rem; }
.hero-arino__lead { font-size: 1.08rem; color: #a9bde3; line-height: 1.6; max-width: 48ch; margin: 0 0 2.25rem; }
.hero-arino__cta { display: flex; gap: .9rem; flex-wrap: wrap; }

.hero-arino__visual { position: absolute; top: -58px; right: 0; z-index: 1; display: flex; justify-content: flex-end; pointer-events: none; }
.hero-arino__visual img {
  width: auto; max-width: 100%; height: auto; max-height: min(620px, 78vh);
  display: block; border-radius: var(--r-xl); object-fit: contain;
  box-shadow: 0 40px 90px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  transform: scale(1.2); transform-origin: right center;
}
.hero-arino__visual::before {
  content: ""; position: absolute; inset: -8%; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(22,119,255,.35), transparent 70%);
  filter: blur(10px);
}
/* Graceful fallback until assets/images/Hero.webp is uploaded */
.hero-arino__visual.is-empty img { display: none; }
.hero-arino__visual.is-empty {
  aspect-ratio: 4/3; border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px dashed rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #7f9ac9; font-size: .85rem; font-weight: 600;
}
.hero-arino__visual.is-empty::after { content: "Hero.webp"; }
@media (max-width: 900px) {
  .hero-arino__inner { text-align: center; }
  .hero-arino__cta { justify-content: center; }
  .hero-arino__copy { max-width: 100%; }
  .hero-arino__visual {
    position: static; top: auto; right: auto; z-index: auto;
    justify-content: center; pointer-events: auto;
    max-width: 420px; margin: 2rem auto 0;
  }
  .hero-arino__visual img { transform: none; }
}
.btn-2026--ghost-dark {
  background: rgba(255,255,255,.08) !important; color: #fff !important; border: 1px solid rgba(255,255,255,.25) !important; box-shadow: none;
}
.btn-2026--ghost-dark:hover { background: rgba(255,255,255,.16) !important; color: #fff !important; box-shadow: none; }

/* Marquee strip — runs as a band just above the stat-overlap card */
.hero-arino__marquee {
  position: absolute; left: 0; right: 0; bottom: 3.5rem; top: auto; z-index: 3; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 1.1rem 0;
  background: rgba(5,15,36,.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
@media (max-width: 900px) {
  .hero-arino__marquee {
    position: relative; top: auto; left: auto; right: auto; z-index: 1;
    margin-top: 2.5rem; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  }
}
.hero-arino__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.hero-arino__track span {
  font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,.5); padding: 0 1.5rem; white-space: nowrap;
}
.hero-arino__track span.dot { color: var(--blue); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-arino__track { animation: none; } }

/* Show once the page has fully finished loading (window "load", not just paint) */
.hero-arino__marquee, .stat-overlap__card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.hero-arino__marquee { transition-delay: .15s; }
.stat-overlap__card { transition-delay: .3s; }
body.is-page-loaded .hero-arino__marquee,
body.is-page-loaded .stat-overlap__card {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-arino__marquee, .stat-overlap__card { transition: none; opacity: 1; transform: none; }
}

/* Overlapping stat card */
.stat-overlap { position: relative; padding: 0 20px; margin-top: -2rem; z-index: 2; }
.stat-overlap__card {
  max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(135deg, var(--deep-2), var(--deep)); border-radius: var(--r-xl);
  padding: 2.75rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
}
.stat-overlap__label p { color: #a9bde3; font-size: .95rem; line-height: 1.55; margin-top: .6rem; }
.stat-overlap__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stat-overlap__grid strong { display: block; font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat-overlap__grid span { color: #8fa6d4; font-size: .82rem; }
@media (max-width: 900px) {
  .stat-overlap__card { grid-template-columns: 1fr; padding: 2rem; }
  .stat-overlap__grid { grid-template-columns: repeat(2, 1fr); }
  .hero-arino { padding: 112px 20px 4.5rem; }
  .hero-arino__visual img { max-height: 55vh; }
}

/* Alternating product showcase (Portfolio-inspired) */
.showcase-2026 { display: flex; flex-direction: column; gap: 2px; margin-top: 3rem; }
.showcase-2026__row {
  display: grid; grid-template-columns: 1.1fr .9fr; height: 440px; background: var(--bg-soft);
}
.showcase-2026__row--rev { grid-template-columns: .9fr 1.1fr; }
.showcase-2026__row--rev .showcase-2026__media { order: 2; }
.showcase-2026__row--rev .showcase-2026__copy { order: 1; }
.showcase-2026__media { overflow: hidden; height: 100%; min-height: 0; }
.showcase-2026__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.showcase-2026__row:hover .showcase-2026__media img { transform: scale(1.04); }
.showcase-2026__copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 4rem; }
.showcase-2026__tag {
  position: absolute; top: 2.5rem; left: 1.25rem; writing-mode: vertical-rl; transform: rotate(180deg);
  color: var(--blue-2); font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}
.showcase-2026__copy h3 { font-size: 1.8rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: .85rem; }
.showcase-2026__copy p { color: var(--muted); font-size: .98rem; line-height: 1.6; margin-bottom: 1.25rem; max-width: 38ch; }
.showcase-2026__link { display: inline-flex; font-weight: 700; font-size: .92rem; color: var(--blue-2); }
@media (max-width: 900px) {
  .showcase-2026__row, .showcase-2026__row--rev { grid-template-columns: 1fr; height: auto; }
  .showcase-2026__row--rev .showcase-2026__media, .showcase-2026__row--rev .showcase-2026__copy { order: initial; }
  .showcase-2026__media { height: 260px; }
  .showcase-2026__copy { padding: 2.5rem 1.75rem 2.5rem 3rem; }
}

/* ==========================================================================
   NEW HERO (homepage) — .hero-2026
   ========================================================================== */
.hero-2026 {
  position: relative;
  padding: 168px 20px 100px;
  overflow: hidden;
  background: var(--bg);
}
.hero-2026__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 780px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 25% 20%, rgba(22,119,255,.16), transparent 60%),
    radial-gradient(50% 50% at 85% 10%, rgba(15,42,95,.12), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 70%);
}
.hero-2026__container {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr .95fr; gap: 3.5rem; align-items: center;
}
.hero-2026__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .9rem; border-radius: var(--r-pill);
  background: var(--blue-light); color: var(--blue-2); font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-2026__eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero-2026 h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.08; color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero-2026 h1 em { font-style: normal; color: var(--blue-2); }
.hero-2026__lead { font-size: 1.15rem; color: var(--muted); line-height: 1.6; max-width: 46ch; margin-bottom: 2.1rem; }
.hero-2026__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero-2026__trust { display: flex; gap: 2.25rem; flex-wrap: wrap; }
.hero-2026__trust div { display: flex; flex-direction: column; }
.hero-2026__trust strong { font-size: 1.5rem; font-weight: 800; color: var(--ink-2); letter-spacing: -.02em; }
.hero-2026__trust span { font-size: .82rem; color: var(--muted); font-weight: 500; }

.hero-2026__visual { position: relative; height: 480px; }
.hero-2026__card {
  position: absolute; border-radius: var(--r-xl); overflow: hidden;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.hero-2026__card--main { inset: 6% 4% 6% 14%; padding: 14px; }
.hero-2026__card--main img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); display: block; }
.hero-2026__chip {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem; border-radius: var(--r-lg);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  font-weight: 700; font-size: .82rem; color: var(--ink-2);
  animation: floatY 5s ease-in-out infinite;
}
.hero-2026__chip svg { flex-shrink: 0; }
.hero-2026__chip--a { top: 8%; left: -2%; animation-delay: 0s; }
.hero-2026__chip--b { bottom: 12%; right: -4%; animation-delay: 1.2s; }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }
@media (max-width: 991px) {
  .hero-2026 { padding: 130px 20px 70px; }
  .hero-2026__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-2026__visual { height: 340px; order: -1; }
  .hero-2026__lead { max-width: none; }
}

/* Trust / marquee strip */
.strip-2026 {
  padding: 1.6rem 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.strip-2026__row {
  max-width: var(--container); margin: 0 auto; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 2.5rem; color: var(--muted); font-weight: 600; font-size: .85rem;
  letter-spacing: .02em; text-transform: uppercase;
}

/* Section shell */
.section-2026 { padding: 6rem 20px; }
.section-2026--soft { background: var(--bg-soft) !important; }
.section-2026__head { max-width: 640px; margin: 0 auto 3.25rem; text-align: center; }
.section-2026__eyebrow { color: var(--blue-2); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; display: block; }
.section-2026__head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-bottom: .9rem; }
.section-2026__head p { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.section-2026__inner { max-width: var(--container); margin: 0 auto; }

/* Category grid */
.cat-grid-2026 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.cat-card-2026 {
  display: flex; flex-direction: column; gap: 1rem; padding: 1.75rem 1.5rem;
  border-radius: var(--r-lg); background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all .25s var(--ease);
}
.cat-card-2026:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(22,119,255,.3); }
.cat-card-2026__icon {
  width: 52px; height: 52px; border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #fff); color: var(--blue-2);
}
.cat-card-2026 h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink-2); letter-spacing: -.01em; }
.cat-card-2026 p { font-size: .88rem; color: var(--muted); line-height: 1.55; flex: 1; }
.cat-card-2026__link { font-size: .85rem; font-weight: 700; color: var(--blue-2); display: inline-flex; align-items: center; gap: .35rem; }
.cat-card-2026:hover .cat-card-2026__link { gap: .55rem; }
@media (max-width: 1100px) { .cat-grid-2026 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .cat-grid-2026 { grid-template-columns: repeat(2, 1fr); } }

/* Benefit grid */
.benefit-grid-2026 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.benefit-card-2026 { padding: 2rem 1.6rem; border-radius: var(--r-lg); background: var(--bg-soft); border: 1px solid var(--border); }
.benefit-card-2026__icon { width: 46px; height: 46px; border-radius: var(--r-sm); background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: var(--blue-2); margin-bottom: 1.1rem; }
.benefit-card-2026 h3 { font-size: 1rem; font-weight: 700; color: var(--ink-2); margin-bottom: .5rem; }
.benefit-card-2026 p { font-size: .88rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 991px) { .benefit-grid-2026 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid-2026 { grid-template-columns: 1fr; } }

/* Stats band */
.stats-2026 {
  margin: 0 20px; border-radius: var(--r-xl); padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  position: relative; overflow: hidden;
}
.stats-2026::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 15% 0%, rgba(22,119,255,.35), transparent 60%),
              radial-gradient(50% 60% at 100% 100%, rgba(22,119,255,.2), transparent 60%);
}
.stats-2026__inner { position: relative; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats-2026__num { font-size: 2.6rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stats-2026__label { color: #9fb4dd; font-size: .88rem; margin-top: .35rem; }
@media (max-width: 700px) { .stats-2026__inner { grid-template-columns: repeat(2, 1fr); } }

/* FAQ */
.faq-2026 { max-width: 820px; margin: 0 auto; }
.faq-2026__item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-2026__item h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink-2); margin-bottom: .55rem; }
.faq-2026__item p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* Final CTA banner */
.cta-2026 {
  margin: 0 20px; border-radius: var(--r-xl); padding: 3.75rem 2rem; text-align: center;
  background: linear-gradient(135deg, var(--blue-light), #fff);
  border: 1px solid var(--border-2);
}
.cta-2026 h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--ink); margin-bottom: .75rem; letter-spacing: -.02em; }
.cta-2026 p { color: var(--muted); margin-bottom: 1.75rem; }
.cta-2026__btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER — redesigned
   ========================================================================== */
.cid-ufjKxM5vBw {
  background: linear-gradient(180deg, var(--deep) 0%, #050f24 100%) !important;
  padding-top: 4.5rem !important; padding-bottom: 2rem !important;
}
.cid-ufjKxM5vBw, .cid-ufjKxM5vBw .mbr-text, .cid-ufjKxM5vBw .mbr-section-subtitle,
.cid-ufjKxM5vBw .copyright, .cid-ufjKxM5vBw li { color: #93a5c9 !important; }
.cid-ufjKxM5vBw h5, .cid-ufjKxM5vBw h5 strong { color: #fff !important; font-weight: 700 !important; }
.cid-ufjKxM5vBw .text-primary, .cid-ufjKxM5vBw a { color: #b7c6e6 !important; transition: color .15s ease; }
.cid-ufjKxM5vBw a:hover { color: #fff !important; }
.cid-ufjKxM5vBw .media-wrap img { opacity: 1; filter: none; max-width: 150px; }
.cid-ufjKxM5vBw .row.mbr-white { border-top: 1px solid rgba(255,255,255,.08); }
.cid-ufjKxM5vBw .col-12.mt-4 { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; margin-top: 2.5rem !important; }

/* ==========================================================================
   RETROFIT — apply the new visual language to the legacy Mobirise sections
   that still ship on the 40 inner (product/category/info) pages, so nothing
   sitewide still reads as "the old theme" even where HTML wasn't rebuilt.
   ========================================================================== */
h1, h2, h3, h4, .mbr-section-title, .card-title { color: var(--ink-2); font-weight: 800 !important; letter-spacing: -.02em; }
.mbr-text, .mbr-section-subtitle { color: var(--muted); }
a.text-primary { color: var(--blue-2) !important; }

/* Product/category page hero bands (header4/header7) — darken for legible
   text WITHOUT touching background-image (each page has its own photo). */
.header4, .header7 { position: relative; background-color: var(--deep) !important; }
.header4::before, .header7::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,26,58,.82) 0%, rgba(7,26,58,.5) 45%, rgba(7,26,58,.15) 75%);
  pointer-events: none;
}
.header4 .mbr-overlay, .header7 .mbr-overlay { background: rgba(7,26,58,.5) !important; opacity: 1 !important; }
.header4 .container, .header7 .container { position: relative; z-index: 1; }
.header4 h1, .header7 h1 { color: #fff !important; }
.header4 p.mbr-text, .header7 p.mbr-text { color: #c3d2ec !important; }
.header4 .btn, .header7 .btn { background: #fff !important; color: var(--ink-2) !important; }
.header4 .btn:hover, .header7 .btn:hover { background: var(--blue-2) !important; color: #fff !important; }

/* Family-level composition variants — five hardware families read
   differently from each other, not one reskinned template. */

/* Terminals: default — left-aligned, full navy scrim (set above) */
.family-terminal .header4 h1, .family-terminal .header7 h1 { letter-spacing: -.03em; }

/* Printers: centered statement, tighter band, teal-leaning deep tone */
.family-printer .header4, .family-printer .header7 { min-height: 60vh !important; }
.family-printer .header4 .container, .family-printer .header7 .container { text-align: center; }
.family-printer .header4 .content-wrap, .family-printer .header7 .row { justify-content: center; text-align: center; }
.family-printer .header4::before, .family-printer .header7::before {
  background: linear-gradient(180deg, rgba(7,26,58,.15) 0%, rgba(7,26,58,.75) 100%);
}
.family-printer .header4 h1, .family-printer .header7 h1 { font-size: 3.4rem !important; }

/* Cash Drawers: steel-gray diagonal split, right-aligned copy */
.family-cashdrawer .header4, .family-cashdrawer .header7 { background-color: #1c2430 !important; }
.family-cashdrawer .header4::before, .family-cashdrawer .header7::before {
  background: linear-gradient(260deg, rgba(15,20,28,.85) 0%, rgba(15,20,28,.35) 55%, rgba(15,20,28,.05) 80%);
}
.family-cashdrawer .header4 .container, .family-cashdrawer .header7 .container { text-align: right; margin-left: auto; }
.family-cashdrawer .header4 .row, .family-cashdrawer .header7 .row { justify-content: flex-end; }

/* Scanners: angled clip accent for a technical, precise feel */
.family-scanner .header4::after, .family-scanner .header7::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 62%, rgba(22,119,255,.5) 62.4%, rgba(22,119,255,.5) 63%, transparent 63.4%);
}
.family-scanner .header4 h1, .family-scanner .header7 h1 { font-size: 3rem !important; }

/* Peripherals: compact, minimal band — these are accessories, not heroes */
.family-peripheral .header4, .family-peripheral .header7 { min-height: 46vh !important; padding-top: 3rem !important; padding-bottom: 3rem !important; }
.family-peripheral .header4 h1, .family-peripheral .header7 h1 { font-size: 2.5rem !important; }

/* Feature/spec cards (features13, features15, team2) */
.features13 .card, .features15, .team2 .card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg) !important;
  box-shadow: var(--shadow-sm);
}
.features13 .mbr-overlay { background: var(--deep) !important; opacity: .92 !important; }
.features13 .card { background: rgba(255,255,255,.06) !important; border-color: rgba(255,255,255,.14) !important; }
.features13 .card-title { color: #fff !important; }
.features13 .mbr-iconfont { color: #7fb0ff !important; fill: #7fb0ff !important; }
.team2 .card { padding: 1.5rem; }
.features15 .btn, .team2 .btn { }

/* Generic Mobirise cards / galleries used on category + home pages */
.gallery3 .item-wrapper, .content3 .item-wrapper, .content18, .content5 {
  border-radius: var(--r-lg) !important;
}
.tabs.content18 .nav-tabs .nav-link { border-radius: var(--r-pill) !important; }

/* Contact form (legacy selector, kept for safety) */
.form7 .form-control { border-radius: var(--r-sm) !important; border: 1px solid var(--border-2) !important; }

/* ==========================================================================
   CONTACT — split conversion layout
   ========================================================================== */
.contact-2026__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-2026__h1 { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-bottom: 1rem; }
.contact-2026__lead { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 2.25rem; max-width: 42ch; }
.contact-2026__channels { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-2026__channel { display: flex; gap: 1rem; align-items: flex-start; }
.contact-2026__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-sm); background: var(--blue-light); color: var(--blue-2); display: flex; align-items: center; justify-content: center; }
.contact-2026__channel strong { display: block; color: var(--ink-2); font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.contact-2026__channel span { color: var(--muted); font-size: .86rem; }
.contact-2026__panel { position: relative; }
.contact-2026__card {
  background: rgba(255,255,255,.7); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,.8); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.contact-2026__card h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink-2); margin-bottom: .4rem; }
.contact-2026__sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.contact-2026__card .form-control {
  border-radius: var(--r-sm) !important; border: 1px solid var(--border-2) !important; background: #fff !important;
  padding: .8rem 1rem !important; margin-bottom: 1rem;
}
.contact-2026__submit { width: 100%; }
@media (max-width: 900px) { .contact-2026__grid { grid-template-columns: 1fr; gap: 2.5rem; } .contact-2026__card { padding: 1.75rem; } }

/* ==========================================================================
   ABOUT — editorial brand story
   ========================================================================== */
.about-2026-hero { padding: 168px 20px 3rem; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.about-2026-hero__h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--ink); max-width: 16ch; margin-bottom: 1.25rem; }
.about-2026-hero__lead { font-size: 1.1rem; color: var(--muted); line-height: 1.6; max-width: 60ch; }
.about-2026-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: center; }
.about-2026-split__media { background: var(--bg-soft); border-radius: var(--r-xl); padding: 3rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.about-2026-split__media img { width: 100%; max-width: 260px; }
.about-2026-split__copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: 1.1rem; }
.about-2026-split__copy p { color: var(--muted); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1rem; }
@media (max-width: 900px) { .about-2026-split { grid-template-columns: 1fr; gap: 2rem; } }
.about-2026-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.about-2026-value { padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); }
.about-2026-value__num { font-size: .85rem; font-weight: 800; color: var(--blue-2); letter-spacing: .05em; }
.about-2026-value h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink-2); margin: .6rem 0 .5rem; }
.about-2026-value p { color: var(--muted); font-size: .92rem; line-height: 1.55; }
@media (max-width: 900px) { .about-2026-values { grid-template-columns: 1fr; } }

/* ==========================================================================
   DOWNLOADS — software ecosystem cards
   ========================================================================== */
.dl-2026-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.dl-2026-card {
  display: flex; flex-direction: column; gap: 1.1rem; padding: 2rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); transition: all .25s var(--ease);
}
.dl-2026-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(22,119,255,.3); }
.dl-2026-card__icon { width: 54px; height: 54px; border-radius: var(--r); background: var(--blue-light); color: var(--blue-2); display: flex; align-items: center; justify-content: center; }
.dl-2026-card__body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink-2); margin-bottom: .4rem; }
.dl-2026-card__body p { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.dl-2026-card__cta { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .86rem; color: var(--blue-2); margin-top: auto; }
@media (max-width: 900px) { .dl-2026-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SOLUTIONS — alternating problem → solution storytelling
   ========================================================================== */
.sol-2026 { display: flex; flex-direction: column; gap: 5rem; }
.sol-2026__row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.sol-2026__row--rev .sol-2026__media { order: 2; }
.sol-2026__row--rev .sol-2026__copy { order: 1; }
.sol-2026__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.sol-2026__media img { width: 100%; height: 340px; object-fit: cover; display: block; }
.sol-2026__tag { display: inline-block; color: var(--blue-2); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; }
.sol-2026__copy h3 { font-size: 1.7rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin-bottom: 1.1rem; }
.sol-2026__copy p { font-size: .96rem; color: var(--muted); line-height: 1.65; margin-bottom: .85rem; }
.sol-2026__copy strong { color: var(--ink-2); }
.sol-2026__link { display: inline-flex; font-weight: 700; font-size: .9rem; color: var(--blue-2); margin-top: .5rem; }
@media (max-width: 900px) {
  .sol-2026__row, .sol-2026__row--rev { grid-template-columns: 1fr; gap: 1.5rem; }
  .sol-2026__row--rev .sol-2026__media, .sol-2026__row--rev .sol-2026__copy { order: initial; }
}

/* ==========================================================================
   TERMINALS HUB — featured product + horizontal strip
   ========================================================================== */
.term-2026-featured {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
  background: linear-gradient(135deg, var(--deep), var(--deep-2)); border-radius: var(--r-xl);
  padding: 3rem; margin-bottom: 2.5rem; overflow: hidden; position: relative;
}
.term-2026-featured__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.term-2026-featured__badge { display: inline-block; padding: .35rem .8rem; border-radius: var(--r-pill); background: rgba(255,255,255,.12); color: #cfe0ff; font-weight: 700; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.term-2026-featured__copy h3 { font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: .75rem; }
.term-2026-featured__copy p { color: #b9c9ea; font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 40ch; }
@media (max-width: 900px) { .term-2026-featured { grid-template-columns: 1fr; padding: 2rem; } }

.term-2026-strip { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: .5rem; scroll-snap-type: x proximity; }
.term-2026-strip__item {
  flex: 0 0 200px; scroll-snap-align: start; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; transition: all .2s var(--ease);
}
.term-2026-strip__item:hover { border-color: rgba(22,119,255,.3); box-shadow: var(--shadow); transform: translateY(-4px); }
.term-2026-strip__item img { width: 100%; height: 110px; object-fit: contain; }
.term-2026-strip__name { font-weight: 700; color: var(--ink-2); font-size: .92rem; }
.term-2026-strip__tag { color: var(--muted); font-size: .78rem; line-height: 1.4; }

/* ==========================================================================
   PRINTERS HUB — comparison pair + spec strip
   ========================================================================== */
.prn-2026-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.prn-2026-card { display: block; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; transition: all .25s var(--ease); }
.prn-2026-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(22,119,255,.3); }
.prn-2026-card__media { padding: 2.5rem; display: flex; align-items: center; justify-content: center; background: #fff; }
.prn-2026-card__media img { max-height: 220px; width: auto; }
.prn-2026-card__body { padding: 1.75rem; }
.prn-2026-card__body h3 { font-size: 1.4rem; font-weight: 800; color: var(--ink-2); margin-bottom: .5rem; }
.prn-2026-card__body p { color: var(--muted); font-size: .92rem; margin-bottom: .9rem; }
@media (max-width: 800px) { .prn-2026-pair { grid-template-columns: 1fr; } }

.prn-2026-specs { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.prn-2026-specs > div { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink-2); font-size: .92rem; }
.prn-2026-specs__icon { color: var(--blue-2); display: inline-flex; }

/* ==========================================================================
   CUSTOM CURSOR — two-part follow cursor (small dot + lagging ring)
   ========================================================================== */
.cs-cursor_lg, .cs-cursor_sm {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999; pointer-events: none;
}
/* Default (over light/white areas): navy blue */
.cs-cursor_lg {
  width: 40px; height: 40px; border: 1.5px solid var(--ink-2);
  transition: width .15s ease, height .15s ease, border-color .15s ease, background-color .15s ease;
}
.cs-cursor_sm { width: 8px; height: 8px; background-color: var(--ink-2); transition: background-color .15s ease; }
.cs-cursor_lg.is-active { width: 64px; height: 64px; }
/* Over dark sections (hero, stat band, footer, spec bands, etc.): white */
.cs-cursor_lg.on-dark { border-color: #fff; }
.cs-cursor_sm.on-dark { background-color: #fff; }
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; }
@media (max-width: 991px), (hover: none) {
  .cs-cursor_lg, .cs-cursor_sm { display: none !important; }
  body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: auto; }
}

/* Scroll-to-top control — pin properly, match the new system */
#scrollToTop {
  position: fixed !important;
  top: auto !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  z-index: 500 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.85) !important;
  border: 1px solid var(--border-2) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(12px);
}
#scrollToTop a { color: var(--ink-2) !important; }
