:root {
  --ink: #0b0c0c;
  --ink-soft: #000000;
  --paper: #ffffff;
  --paper-dim: #ffffff;
  --line: #d8d4c4;
  --amber: #204099;
  --amber-dark: #204099;
  --red: #204099;
  --teal: #2e8b74;
  --teal-dark: #22664f;
  --brand-blue: #204099;
  --brand-blue-dark: #204099;
}

/* IMPORTANT — PAGE LOAD GLITCH FIX */

html {
  scroll-behavior: auto !important;
}

body {
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 6px;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

.barcode-rule {
  height: 14px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--ink) 0px,
    var(--ink) 2px,
    transparent 2px,
    transparent 5px,
    var(--ink) 5px,
    var(--ink) 6px,
    transparent 6px,
    transparent 11px,
    var(--ink) 11px,
    var(--ink) 14px,
    transparent 14px,
    transparent 17px,
    var(--ink) 17px,
    var(--ink) 18px,
    transparent 18px,
    transparent 23px
  );
  background-size: 130px 100%;
  opacity: 0.85;
}

.barcode-rule.on-dark {
  background-image: repeating-linear-gradient(
    90deg,
    var(--paper) 0px,
    var(--paper) 2px,
    transparent 2px,
    transparent 5px,
    var(--paper) 5px,
    var(--paper) 6px,
    transparent 6px,
    transparent 11px,
    var(--paper) 11px,
    var(--paper) 14px,
    transparent 14px,
    transparent 17px,
    var(--paper) 17px,
    var(--paper) 18px,
    transparent 18px,
    transparent 23px
  );
}

.ibadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.ibadge.x {
  background: rgba(198, 73, 63, 0.12);
  color: var(--red);
}

.ibadge.check {
  background: rgba(46, 139, 116, 0.14);
  color: var(--teal-dark);
}

.ibadge svg {
  width: 12px;
  height: 12px;
}

.top-bar {
  background: var(--brand-blue);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  position: relative;
}

.top-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
}

.top-bar .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.top-bar .contact-item svg {
  width: 14px;
  height: 14px;
  color: #fff;
  flex: none;
}

.top-bar .contact-item:hover {
  color: #fff;
  text-decoration: underline;
}

.top-bar .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-icons a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.social-icons a:hover {
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 575px) {
  .top-bar .contact-item.email-item {
    display: none;
  }
}

.site-nav {
  background: rgba(245, 245, 240, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.25s ease;
}

.site-nav.scrolled {
  box-shadow: 0 8px 24px -18px rgba(23, 35, 61, 0.4);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
}

.brand-mark .logo-icon {
  width: 80px;
  height: 50px;
  border-radius: 8px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark .logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}

.brand-mark .word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-mark .word .l1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.brand-mark .word .l1 span {
  color: var(--brand-blue);
}

.brand-mark .word .l2 {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.nav-link-custom {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft) !important;
  padding: 0.4rem 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--ink) !important;
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
}

.btn-amber {
  background: linear-gradient(135deg, #204099, var(--amber) 60%);
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  font-size: 0.92rem;
  box-shadow: 3px 3px 0 var(--ink);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-amber:hover {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn-amber .arrow {
  transition: transform 0.2s ease;
}

.btn-amber:hover .arrow {
  transform: translateX(3px);
}

.btn-outline-ink {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  font-size: 0.92rem;
  background: transparent;
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: 3px;
  font-size: 0.92rem;
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: #fff;
}

/* ================= MOBILE HAMBURGER MENU ================= */
.hamburger-btn {
  width: 42px;
  height: 42px;
  flex: none;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.hamburger-btn:active {
  transform: scale(0.94);
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease,
    background 0.2s ease;
}

.hamburger-btn.open {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.hamburger-btn.open span {
  background: #fff;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

#mobileNavMenu {
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 32px -18px rgba(23, 35, 61, 0.28);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 0.75rem clamp(1rem, 4vw, 1.6rem) 1.4rem;
  gap: 0.4rem;
  max-width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "IBM Plex Sans";
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink) !important;
  letter-spacing: 0.01em;
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  background: var(--paper-dim);
  border: 1px solid transparent;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.15s ease,
    padding-left 0.18s ease;
}

.mobile-nav-link:active {
  transform: scale(0.98);
}

.mobile-nav-link:hover {
  background: rgba(32, 64, 153, 0.07);
  border-color: rgba(32, 64, 153, 0.18);
  color: var(--brand-blue) !important;
}

.mnl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(32, 64, 153, 0.1);
  color: var(--brand-blue);
}

.mnl-icon svg {
  width: 17px;
  height: 17px;
}

.mnl-txt {
  flex: 1;
  min-width: 0;
}

.mnl-arrow {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--line);
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

.mnl-arrow svg {
  width: 15px;
  height: 15px;
}

.mobile-nav-link:hover .mnl-arrow {
  transform: translateX(3px);
  color: var(--brand-blue);
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #204099, var(--amber) 60%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 20px -8px rgba(32, 64, 153, 0.5);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -8px rgba(32, 64, 153, 0.55);
  color: #fff !important;
}

.mobile-nav-cta:active {
  transform: translateY(0) scale(0.98);
}

/* Small phones */
@media (max-width: 380px) {
  .mobile-menu-inner {
    padding: 0.65rem 0.85rem 1.1rem;
    gap: 0.32rem;
  }

  .mobile-nav-link,
  .mobile-nav-cta {
    padding: 0.68rem 0.7rem;
    font-size: 0.88rem;
  }

  .mnl-icon {
    width: 30px;
    height: 30px;
  }

  .mnl-icon svg {
    width: 15px;
    height: 15px;
  }

  .hamburger-btn {
    width: 38px;
    height: 38px;
  }
}

/* Tablets: comfier spacing */
@media (min-width: 576px) and (max-width: 991px) {
  .mobile-menu-inner {
    max-width: 420px;
    margin: 0 auto;
  }
}
/* =================================================================== */

section {
  padding: 5rem 0;
}

.eyebrow {
  font-family: "IBM Plex Mono";
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  font-weight: 600;
}

.eyebrow.on-dark {
  color: var(--amber);
}

.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-item {
  transition:
    transform 0.7s ease-in-out,
    opacity 0.5s ease;
}

.hero {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 26px 26px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(232, 166, 59, 0.28),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(46, 139, 116, 0.16),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero.tone-dark {
  background-color: var(--ink);
  background-image: radial-gradient(
    circle,
    rgba(245, 245, 240, 0.06) 1px,
    transparent 1px
  );
}

.hero.tone-dark h1,
.hero.tone-dark .lede {
  color: var(--paper);
}

.hero.tone-dark .lede {
  color: rgba(245, 245, 240, 0.72);
}

.hero.tone-paper2 {
  background-color: var(--paper-dim);
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
}

.hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--paper) 0%,
    rgba(245, 245, 240, 0.93) 32%,
    rgba(245, 245, 240, 0.72) 52%,
    rgba(245, 245, 240, 0.35) 72%,
    rgba(245, 245, 240, 0.08) 100%
  );
}

.hero.tone-dark .hero-photo-bg img {
  filter: grayscale(0.3) saturate(0.7) brightness(0.7);
}

.hero.tone-dark .hero-photo-bg::after {
  background: linear-gradient(
    100deg,
    var(--ink) 0%,
    rgba(23, 35, 61, 0.94) 32%,
    rgba(23, 35, 61, 0.78) 52%,
    rgba(23, 35, 61, 0.45) 72%,
    rgba(23, 35, 61, 0.12) 100%
  );
}

.hero.tone-paper2 .hero-photo-bg::after {
  background: linear-gradient(
    100deg,
    var(--paper-dim) 0%,
    rgba(234, 232, 222, 0.94) 32%,
    rgba(234, 232, 222, 0.74) 52%,
    rgba(234, 232, 222, 0.36) 72%,
    rgba(234, 232, 222, 0.08) 100%
  );
}

.hero .row {
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-photo-bg::after {
    background: linear-gradient(
      180deg,
      var(--paper) 0%,
      rgba(245, 245, 240, 0.94) 45%,
      rgba(245, 245, 240, 0.88) 100%
    ) !important;
  }

  .hero.tone-dark .hero-photo-bg::after {
    background: linear-gradient(
      180deg,
      var(--ink) 0%,
      rgba(23, 35, 61, 0.94) 45%,
      rgba(23, 35, 61, 0.88) 100%
    ) !important;
  }

  .hero.tone-paper2 .hero-photo-bg::after {
    background: linear-gradient(
      180deg,
      var(--paper-dim) 0%,
      rgba(234, 232, 222, 0.94) 45%,
      rgba(234, 232, 222, 0.88) 100%
    ) !important;
  }
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  position: relative;
}

.hero .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 32rem;
  position: relative;
}

.hero .row {
  position: relative;
  z-index: 1;
  width: 100%;
}

.slide-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.1rem 1.3rem;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 14px 26px -16px rgba(23, 35, 61, 0.2);
}

.slide-stat .v {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
}

.slide-stat .k {
  font-family: "IBM Plex Mono";
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

.slide-stat.old .v {
  color: var(--red);
}

.slide-stat.new .v {
  color: var(--teal-dark);
}

.stat-arrow {
  font-family: "Space Grotesk";
  font-size: 1.4rem;
  color: var(--ink-soft);
}

.hero-carousel .carousel-indicators {
  position: absolute;
  bottom: 1.1rem;
  margin: 0;
  gap: 0.4rem;
  z-index: 5;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: rgba(23, 35, 61, 0.25);
  border: none;
  opacity: 1;
  margin: 0;
  transition:
    background 0.2s ease,
    width 0.2s ease;
}

.hero-carousel .carousel-indicators .active {
  background: var(--amber);
  width: 38px;
}

.hero.tone-dark ~ .carousel-indicators [data-bs-target],
.tone-dark-indic [data-bs-target] {
  background: rgba(245, 245, 240, 0.3);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 10px 24px -12px rgba(23, 35, 61, 0.3);
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.hero-nav-btn:hover {
  background: var(--ink);
  color: #fff;
}

.hero-nav-btn.prev {
  left: 1.2rem;
}

.hero-nav-btn.next {
  right: 1.2rem;
}

.hero-nav-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .hero-nav-btn {
    display: none;
  }
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 2px 8px -4px rgba(23, 35, 61, 0.15);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -6px rgba(23, 35, 61, 0.25);
}

.feature-tag .ibadge {
  width: 20px;
  height: 20px;
  background: var(--paper-dim);
}

.feature-tag svg {
  width: 11px;
  height: 11px;
  flex: none;
  color: var(--teal-dark);
}

.receipt-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.receipt {
  background: #fff;
  width: 270px;
  padding: 1.6rem 1.4rem 2rem;
  box-shadow: 0 24px 48px -18px rgba(23, 35, 61, 0.35);
  font-family: "IBM Plex Mono";
  font-size: 0.78rem;
  color: var(--ink);
  position: relative;
  transform: rotate(-1.5deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.receipt:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 32px 56px -18px rgba(23, 35, 61, 0.42);
}

.price-sticker {
  position: absolute;
  left: -22px;
  bottom: 32px;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: "Space Grotesk";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  box-shadow: 0 12px 24px -10px rgba(34, 102, 79, 0.6);
  border: 3px dashed rgba(255, 255, 255, 0.55);
}

.price-sticker .t1 {
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.price-sticker .t2 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 18px;
  background:
    linear-gradient(-45deg, #fff 8px, transparent 0),
    linear-gradient(45deg, #fff 8px, transparent 0);
  background-size: 16px 16px;
  background-repeat: repeat-x;
}

.receipt-store {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.receipt-sub {
  text-align: center;
  font-size: 0.68rem;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.receipt hr {
  border-top: 1px dashed var(--line);
  margin: 0.6rem 0;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin: 0.2rem 0;
}

.receipt-row.bad {
  color: var(--red);
}

.wait-counter {
  margin-top: 1rem;
  padding: 0.7rem 0.6rem;
  background: var(--paper);
  border: 1px dashed var(--red);
  text-align: center;
  border-radius: 2px;
}

.wait-counter .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.wait-counter .time {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
}

.receipt-flag {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.4rem 0.6rem;
  border-radius: 2px;
  transform: rotate(4deg);
}

.about-section {
  background: var(--paper);
  position: relative;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px -10px rgba(21, 94, 168, 0.5);
}

.about-badge svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.about-section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.about-section .lede-p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 1.1rem;
  max-width: 34rem;
}

.about-section .lede-p strong {
  color: var(--ink);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2.2rem;
  max-width: 34rem;
}

.about-stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 14px 26px -20px rgba(23, 35, 61, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -16px rgba(23, 35, 61, 0.3);
}

.about-stat-box .v {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
}

.about-stat-box .k {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  font-weight: 500;
}

.about-cta {
  margin-top: 2.2rem;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(23, 35, 61, 0.4);
  aspect-ratio: 4/3.1;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(23, 35, 61, 0.55) 100%
  );
}

.about-float-card {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 3;
  background: #fff;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 20px 40px -18px rgba(23, 35, 61, 0.4);
  max-width: 230px;
}

.about-float-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  background: rgba(198, 73, 63, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-float-card .icon svg {
  width: 18px;
  height: 18px;
}

.about-float-card .txt-1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.2;
}

.about-float-card .txt-2 {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.about-tag-pill {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.about-side-icons {
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 4;
}

.about-side-icons .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(23, 35, 61, 0.4);
}

.about-side-icons .dot.g {
  background: var(--teal);
}

.about-side-icons .dot.r {
  background: var(--red);
}

.about-side-icons svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 991px) {
  .about-side-icons {
    display: none;
  }
}

.pain-close {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
  margin-top: 2rem;
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
  font-family: "IBM Plex Mono";
  font-size: 0.95rem;
  max-width: 34rem;
}

.pain-close .cmt {
  color: var(--teal);
  opacity: 0.8;
}

.loss-quote {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.25;
  max-width: 40rem;
}

.loss-quote .accent {
  color: var(--red);
}

.loss-footer {
  margin-top: 2.5rem;
  font-family: "IBM Plex Mono";
  font-size: 1.2rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.loss-grid {
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

@media (max-width: 991px) {
  .loss-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .loss-grid {
    grid-template-columns: 1fr;
  }
}

.loss-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3.1;
  box-shadow: 0 20px 36px -22px rgba(23, 35, 61, 0.4);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.loss-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 44px -20px rgba(23, 35, 61, 0.45);
}

.loss-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.loss-item:hover img {
  transform: scale(1.06);
}

.loss-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 35, 61, 0) 30%,
    rgba(23, 35, 61, 0.88) 100%
  );
}

.loss-item .loss-x {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(198, 73, 63, 0.6);
}

.loss-item .loss-x svg {
  width: 14px;
  height: 14px;
}

.loss-item .loss-label {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.25;
}

.trust-section {
  background: var(--paper-dim);
}

.stamp {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  color: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  flex: none;
  font-family: "Space Grotesk";
}

.stamp .yr {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.stamp .txt {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.industry-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.18s ease;
  display: inline-block;
}

.industry-chip:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  max-width: 40rem;
}

@media (max-width: 767px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 14px 26px -20px rgba(23, 35, 61, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.trust-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -16px rgba(23, 35, 61, 0.28);
}

.trust-stat-box .v {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teal-dark);
  line-height: 1;
}

.trust-stat-box .k {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.trust-visual {
  position: relative;
}

.trust-visual-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.3;
  box-shadow: 0 34px 60px -26px rgba(23, 35, 61, 0.35);
}

.trust-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(23, 35, 61, 0.6) 100%
  );
}

.trust-badge-card {
  position: absolute;
  left: -1.2rem;
  bottom: -1.2rem;
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 24px 44px -20px rgba(23, 35, 61, 0.4);
  max-width: 230px;
}

@media (max-width: 991px) {
  .trust-badge-card {
    left: 1rem;
  }
}

.trust-badge-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  background: rgba(46, 139, 116, 0.14);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-card .icon svg {
  width: 20px;
  height: 20px;
}

.trust-badge-card .txt-1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.2;
}

.trust-badge-card .txt-2 {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.trust-visual-pill {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -16px rgba(23, 35, 61, 0.25);
  background: var(--ink);
}

.industry-card:hover span,
.industry-card:hover .txt {
  color: #fff !important;
}

.industry-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  background: rgba(46, 139, 116, 0.14);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card .icon svg {
  width: 16px;
  height: 16px;
}

.industry-card .txt {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.solution-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-panel h3 {
  color: var(--paper);
  font-size: 1.5rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 1.4rem;
  column-count: 2;
  column-gap: 1.5rem;
}

.spec-list li {
  font-family: "IBM Plex Mono";
  font-size: 0.83rem;
  padding: 0.35rem 0;
  break-inside: avoid;
  display: flex;
  gap: 0.5rem;
}

.spec-list li::before {
  content: "›";
  color: var(--amber);
  font-weight: 700;
}

.solution-cta {
  margin-top: auto;
  padding-top: 1.8rem;
  border-top: 1px dashed rgba(245, 245, 240, 0.18);
}

.solution-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(245, 245, 240, 0.05);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
}

.solution-cta-inner .txt-1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--paper);
}

.solution-cta-inner .txt-2 {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.6);
  margin-top: 0.2rem;
}

.solution-cta-inner .btn-amber {
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.solution-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 1.6rem;
  box-shadow: 0 24px 44px -20px rgba(0, 0, 0, 0.55);
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 24, 48, 0) 40%,
    rgba(15, 24, 48, 0.85) 100%
  );
}

.solution-img .chip {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  z-index: 2;
  background: var(--amber);
  color: var(--ink);
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.why-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px -20px rgba(23, 35, 61, 0.3);
  border-color: transparent;
}

.why-card .thumb {
  position: relative;
  width: 100%;
  height: 190px;

  aspect-ratio: 16/9;
  flex: none;
  overflow: hidden;
}

.why-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-card:hover .thumb img {
  transform: scale(1.06);
}

.why-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 35, 61, 0) 55%,
    rgba(23, 35, 61, 0.5) 100%
  );
}

.why-card .thumb .num {
  position: absolute;
  left: 1rem;
  bottom: -18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono";
  font-size: 0.78rem;
  font-weight: 600;
  border: 3px solid #fff;
  box-shadow: 0 8px 16px -6px rgba(34, 102, 79, 0.5);
}

.why-card .body-txt {
  padding: 1.75rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-card .body-txt h4 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.why-card .body-txt p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -20px rgba(23, 35, 61, 0.3);
}

.logo {
  width: 182px;
  height: auto;
}

.product-card .tag {
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  padding: 0.5rem 1.2rem;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card .tag .ribbon {
  background: var(--amber);
  color: white;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  font-size: 0.65rem;
}

.product-card .body {
  padding: 1.5rem 1.4rem 1.8rem;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card ul li {
  font-family: "IBM Plex Mono";
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px dotted var(--line);
  display: flex;
  justify-content: space-between;
}

.product-card ul li:last-child {
  border-bottom: none;
}

.proof-strip {
  background: #204098;
  color: #fff;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.tips-section {
  background: var(--paper);
}

.tip-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 34px -22px rgba(23, 35, 61, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 44px -20px rgba(23, 35, 61, 0.4);
}

.tip-card-media {
  position: relative;
  aspect-ratio: 4/3.1;
  overflow: hidden;
}

.tip-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tip-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 35, 61, 0.55) 0%,
    rgba(23, 35, 61, 0.15) 42%,
    rgba(23, 35, 61, 0.55) 100%
  );
}

.tip-card-logo {
  position: absolute;
  top: 0.9rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.tip-card-logo .mark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.tip-card-logo .mark svg {
  width: 12px;
  height: 12px;
  color: white;
}

.tip-card-logo span {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.tip-card-heading {
  position: absolute;
  top: 2.6rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  text-align: center;
}

.tip-card-heading .h {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.tip-card-heading .s {
  font-size: 0.66rem;
  color: rgba(245, 245, 240, 0.85);
  margin-top: 0.4rem;
  line-height: 1.4;
  font-family: "IBM Plex Mono";
}

.tip-card-date {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 0.74rem;
  padding: 0.4rem 0.9rem;
}

.tip-card-url {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(23, 35, 61, 0.75);
  color: #fff;
  font-family: "IBM Plex Mono";
  font-size: 0.62rem;
  padding: 0.45rem 0.8rem;
}

.tip-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tip-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.tip-card-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.tip-card-dashed {
  border: none;
  border-top: 1.5px dashed var(--teal);
  margin-top: 1.2rem;
  opacity: 0.6;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  background: transparent;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 1.1rem 0;
  box-shadow: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: "+";
  font-family: "IBM Plex Mono";
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin-right: 0.9rem;
  transition: transform 0.25s ease;
  flex: none;
}

.accordion-button:not(.collapsed)::before {
  content: "–";
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--teal-dark);
}

.accordion-body {
  padding: 0 0 1.2rem 2.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.stab-section {
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(232, 166, 59, 0.1),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(46, 139, 116, 0.12),
      transparent 45%
    ),
    var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 6rem 0;
}

.stab-section .line {
  font-family: "IBM Plex Mono";
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.65);
  margin: 0.3rem 0;
}

.stab-section h2 {
  color: var(--paper);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 1.3rem;
}

.stab2 {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.stab2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(245, 245, 240, 0.14) 1.5px,
    transparent 1.5px
  );
  background-size: 16px 16px;
  -webkit-mask-image: linear-gradient(135deg, #000 30%, transparent 75%);
  mask-image: linear-gradient(135deg, #000 30%, transparent 75%);
}

.stab2-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;
}

@media (max-width: 991px) {
  .stab2-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.stab2-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 4.5rem 2.5rem 4.5rem 3.5rem;
}

@media (max-width: 767px) {
  .stab2-content {
    padding: 3rem 1.3rem;
  }
}

.stab2-card {
  background: rgba(23, 35, 61, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 14px;
  padding: 2.3rem 2.1rem;
  max-width: 440px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

.stab2-card .line {
  font-family: "IBM Plex Mono";
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.6);
  margin: 0.28rem 0;
}

.stab2-card h2 {
  color: var(--paper);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  margin-top: 1.1rem;
  font-weight: 700;
}

.stab2-media {
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .stab2-media {
    height: 340px;
  }
}

.stab2-blob {
  position: absolute;
  top: -25%;
  left: -15%;
  width: 150%;
  height: 150%;
  z-index: 1;
  background: radial-gradient(
    circle at 60% 40%,
    var(--amber) 0%,
    var(--amber) 55%,
    transparent 72%
  );
  border-radius: 50%;
}

.stab2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.08);
  display: block;
  z-index: 2;
}

.stab2-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(23, 35, 61, 0) 22%);
}

.stab2-lines {
  position: absolute;
  left: 2.2rem;
  bottom: 1.8rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.stab2-lines span {
  display: block;
  width: 2.5px;
  height: 34px;
  border-radius: 2px;
  transform: rotate(-20deg);
}

.stab2-lines span:nth-child(1) {
  background: var(--amber);
}

.stab2-lines span:nth-child(2) {
  background: var(--amber);
  opacity: 0.6;
  height: 26px;
  align-self: flex-end;
}

.stab2-lines span:nth-child(3) {
  background: var(--teal);
  height: 40px;
}

.stab2-lines span:nth-child(4) {
  background: var(--teal);
  opacity: 0.5;
  height: 22px;
  align-self: flex-end;
}

.stab2-lines span:nth-child(5) {
  background: rgba(245, 245, 240, 0.4);
  height: 30px;
}

.stab2-top-btn {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 26px -10px rgba(34, 102, 79, 0.6);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.stab2-top-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
}

.stab2-top-btn svg {
  width: 20px;
  height: 20px;
}

.cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 64px -30px rgba(23, 35, 61, 0.3);
}

.cta-card .row {
  margin: 0;
}

.cta-left {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 2.6rem;
  position: relative;
  overflow: hidden;
}

.cta-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(232, 166, 59, 0.22),
    transparent 70%
  );
}

.cta-left .eyebrow {
  position: relative;
}

.cta-left h2 {
  color: var(--paper);
  position: relative;
}

.cta-right {
  padding: 3rem 2.6rem;
}

.cta-check {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  position: relative;
}

.cta-check li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  display: flex;
  gap: 0.6rem;
  color: rgba(245, 245, 240, 0.85);
}

.cta-check .tick {
  color: var(--amber);
  font-weight: 700;
}

.form-control-custom {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
  width: 100%;
  margin-bottom: 0.8rem;
  font-family: "IBM Plex Sans";
}

.form-control-custom:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

.thankyou {
  display: none;
  background: var(--paper-dim);
  border: 1px dashed var(--teal);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  margin-top: 1rem;
}

footer {
  background: var(--ink);
  color: rgba(245, 245, 240, 0.55);
  padding: 4rem 0 0;
  font-size: 0.85rem;
}

footer a {
  color: rgba(245, 245, 240, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 768px) {

    .brand-mark {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }

    .brand-mark .logo-icon {
        display: flex !important;
        align-items: center !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .brand-mark .logo {
        width: 100px !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }

}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex: none;
  background: linear-gradient(135deg, #fff, var(--brand-blue));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.footer-logo .word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo .word .l1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--paper);
}

.footer-logo .word .l1 span {
  color: #5fa8e8;
}

.footer-logo .word .l2 {
  font-family: "IBM Plex Mono";
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 240, 0.5);
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: white;
  max-width: 26rem;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.18s ease;
}

.footer-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
  color: white;
}

.footer-col ul li a {
  font-size: 0.88rem;
  transition:
    color 0.15s ease,
    padding-left 0.15s ease;
  color: white;
}

.footer-col ul li a:hover {
  color: var(--amber);
  padding-left: 0.3rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: white;
  line-height: 1.5;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 0.15rem;
  color: var(--amber);
}

.footer-contact li a {
  color: rgba(245, 245, 240, 0.75);
}

.footer-contact li a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.82rem;
  color: white;
}

.footer-bottom a {
  color: white;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--amber);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

a:focus-visible,
button:focus-visible,
.accordion-button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  section {
    padding: 3.2rem 0;
  }

  .receipt {
    width: 230px;
  }

  .spec-list {
    column-count: 1;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .about-stat-box {
    padding: 1rem 0.6rem;
  }

  .about-stat-box .v {
    font-size: 1.25rem;
  }
}

/* =================================barcode============= */

:root {
  --vp-navy: #204099;
  --vp-navy-soft: #15399c75;
  --vp-blue: #2e5ee0;
  --vp-blue-dark: #1e44ae;
  --vp-ice: #f4f7fc;
  --vp-line: #dce3ef;
  --vp-ink: #16202b;
  --vp-ink-soft: #111;
  --vp-green: #1e8f5f;
  --vp-white: #ffffff;
}
.vp-section {
  padding: 90px 0;
}
.vp-wrap {
  width: 88%;
  max-width: 1220px;
  margin: 0 auto;
}
.vp-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vp-blue-dark);
  margin-bottom: 14px;
  display: block;
}
.vp-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--vp-navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.vp-sub {
  color: var(--vp-ink-soft);
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 48px;
}
.vp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  text-decoration: none;
}
.vp-btn:hover {
  transform: translateY(-2px);
}
.vp-btn-primary {
  background: var(--vp-blue);
  color: #fff;
  box-shadow: 0 10px 26px rgba(46, 94, 224, 0.28);
}
.vp-btn-primary:hover {
  background: var(--vp-blue-dark);
}
.vp-btn-outline {
  background: transparent;
  border: 1.5px solid var(--vp-line);
  color: var(--vp-navy);
}
.vp-btn-outline:hover {
  border-color: var(--vp-blue);
  color: var(--vp-blue);
}

/* barcode-style divider (kept consistent with your footer's .barcode-rule) */
.barcode-rule {
  height: 16px;
  margin: 0 auto;
  background-image: repeating-linear-gradient(
    90deg,
    var(--vp-navy) 0 2px,
    transparent 2px 5px,
    var(--vp-navy) 5px 6px,
    transparent 6px 11px
  );
  opacity: 0.15;
}
.barcode-rule.on-dark {
  background-image: repeating-linear-gradient(
    90deg,
    #fff 0 2px,
    transparent 2px 5px,
    #fff 5px 6px,
    transparent 6px 11px
  );
  opacity: 0.18;
}

/* scroll reveal (matches the IntersectionObserver already wired in your script) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO ---------- */
.vp-hero {
  background: var(--vp-navy);
  color: #fff;
  padding: 70px 0 0;
  overflow: hidden;
}
.vp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 56px;
}
.vp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono";
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgb(255, 255, 255);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.vp-eyebrow::before {
  content: "●";
  font-size: 8px;
}
.vp-hero h1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
  margin-bottom: 20px;
  color: white;
}
.vp-hero h1 span {
  color: #fbfbfb;
}
.vp-hero p {
  color: #fff;
  font-size: 16.5px;
  max-width: 500px;
  margin-bottom: 30px;
}
.vp-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.vp-wait-card {
  background: var(--vp-navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 22px 26px;
  max-width: 420px;
}
.vp-wait-label {
  font-family: "IBM Plex Mono";
  font-size: 12px;
  color: #fdfeff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.vp-wait-timer {
  font-family: "IBM Plex Mono";
  font-size: 38px;
  font-weight: 600;
  color: #2e8b74;
  line-height: 1;
}
.vp-wait-note {
  font-size: 13px;
  color: hsl(210, 17%, 98%);
  margin-top: 8px;
}

/* hero image */
.vp-receipt-stage {
  display: flex;
  justify-content: center;
}
.vp-hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- SOLUTION (old vs new) ---------- */
.vp-solution {
  background: var(--vp-ice);
}
.vp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 27, 51, 0.08);
}
.vp-why-col {
  padding: 40px 36px;
}
.vp-why-col.old {
  background: #fff;
}
.vp-why-col.new {
  background: var(--vp-navy);
  color: #fff;
}
.vp-why-head {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.vp-why-col.old .vp-why-head {
  color: #b4402e;
}
.vp-why-col.new .vp-why-head {
  color: #6c9bff;
}
.vp-why-item {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  font-size: 14.5px;
}
.vp-why-item.old-item::before {
  content: "✕";
  color: #c24c4c;
  font-weight: 700;
}
.vp-why-item.new-item::before {
  content: "✓";
  color: #6c9bff;
  font-weight: 700;
}
@media (max-width: 760px) {
  .vp-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PRODUCTS ---------- */
.vp-products {
  background: #fff;
}
.vp-prod-card {
  background: var(--vp-ice);
  border: 1px solid var(--vp-line);
  border-radius: 12px;
  padding: 30px 26px;
  height: 100%;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.vp-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 27, 51, 0.1);
}
.vp-prod-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  color: #2e8b74 !important;
  border: 1px solid var(--vp-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.vp-prod-card h3 {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 18px;
  color: var(--vp-navy);
  margin-bottom: 8px;
}
.vp-prod-card p {
  font-size: 14px;
  color: var(--vp-ink-soft);
  margin-bottom: 16px;
}
.vp-prod-card a {
  font-family: "IBM Plex Mono";
  font-size: 12.5px;
  color: var(--vp-blue);
  font-weight: 600;
  text-decoration: none;
}
.vp-prod-card a:hover {
  text-decoration: underline;
}

/* ---------- TRUST ---------- */
.vp-trust {
  background: var(--vp-navy);
  color: #fff;
}
.vp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.vp-stat {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 10px;
}
.vp-stat:first-child {
  border-left: none;
}
.vp-stat-num {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 32px;
  color: #2e8b74;
}
.vp-stat-label {
  font-family: "IBM Plex Mono";
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fdfeff;
  margin-top: 6px;
}
.vp-trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
.vp-trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #ffffff;
}
.vp-trust-item .num {
  font-family: "IBM Plex Mono";
  color: #6c9bff;
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 760px) {
  .vp-stats,
  .vp-trust-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- FAQ ---------- */
.vp-faq {
  background: var(--vp-ice);
}
.vp-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--vp-line);
  background: transparent;
}
.vp-accordion .accordion-button {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 16px;
  color: var(--vp-navy);
  background: transparent;
  padding: 22px 4px;
  box-shadow: none;
}
.vp-accordion .accordion-button:not(.collapsed) {
  color: var(--vp-blue);
  background: transparent;
}
.vp-accordion .accordion-button::after {
  filter: invert(28%) sepia(60%) saturate(1800%) hue-rotate(206deg);
}
.vp-accordion .accordion-body {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--vp-ink-soft);
}

/* ==================product============= */

/* DESKTOP PRODUCTS */

.desktop-products-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.products-chevron {
  font-size: 11px;
  margin-left: 4px;
}

.desktop-products-menu {
  position: absolute;

  top: calc(100% + 5px);
  left: 0;

  min-width: 220px;

  background: #fff;

  border-radius: 8px;

  padding: 7px 0;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition: all 0.2s ease;

  z-index: 99999;
}

.desktop-products-menu a {
  display: block;
  padding: 11px 18px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  font-family: "IBM Plex Sans", sans-serif;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.desktop-products-menu a:hover {
  background: #f5f5f5;
  color: #204099;
}

.desktop-products-dropdown:hover .desktop-products-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-products-menu {
  width: 100%;
}
.mobile-product-submenu {
  margin-left: 47px;
  margin-right: 15px;

  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.mobile-product-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-product-submenu a:hover {
  color: #204099;
}

/* MOBILE ARROW */
.mobile-products-toggle[aria-expanded="true"] .mnl-arrow svg {
  transform: rotate(90deg);
}

.mobile-products-toggle .mnl-arrow svg {
  transition: transform 0.2s ease;
}

/* DESKTOP PAR MOBILE SUBMENU HIDE */

@media (min-width: 992px) {
  .mobile-products-menu {
    display: none;
  }
}

/* MOBILE PAR DESKTOP SUBMENU HIDE */

@media (max-width: 991px) {
  .desktop-products-dropdown {
    display: none;
  }

  .mobile-products-menu {
    display: block;
  }
}

/* ====================== */
.vp-prod-card {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 2px !important;

  border-radius: 8px !important;
  overflow: hidden;
}

.vp-prod-image {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  text-align: center;
}

.vp-prod-image img {
  display: block;

  width: 98% !important;
  height: auto !important;

  margin: 2px auto 0 auto !important;
  padding: 0 !important;

  border-radius: 6px;
}

/* ========================== */
/* =========================================================
   IMPORTANT — HERO SECTION RESPONSIVE ONLY
   Desktop CSS ko touch nahi karega
========================================================= */

/* =========================
   TABLET — IMPORTANT
   991px and below
========================= */

@media (max-width: 991px) {
  .vp-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .vp-hero-grid > div {
    min-width: 0;
  }

  .vp-hero h1 {
    font-size: clamp(38px, 5vw, 52px);
    line-height: 1.1;
  }

  .vp-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .vp-hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .vp-wait-card {
    max-width: 100%;
  }
}

/* =========================
   MOBILE — VERY IMPORTANT
   767px and below
========================= */

@media (max-width: 767px) {
  .vp-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .vp-hero-grid > div {
    width: 100%;
  }

  /* LEFT CONTENT */
  .vp-hero-grid > div:first-child {
    width: 100%;
  }

  .vp-hero h1 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.08;
  }

  .vp-hero h1 span {
    display: inline;
  }

  .vp-hero p {
    width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  /* WAIT CARD */
  .vp-wait-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .vp-wait-label {
    font-size: 10px;
    line-height: 1.5;
  }

  .vp-wait-timer {
    font-size: 42px;
  }

  .vp-wait-note {
    font-size: 13px;
    line-height: 1.6;
  }

  /* IMAGE */
  .vp-receipt-stage {
    width: 100%;
  }

  .vp-hero-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

/* =========================
   SMALL MOBILE — IMPORTANT
   480px and below
========================= */

@media (max-width: 480px) {
  .vp-hero-grid {
    gap: 30px;
  }

  .vp-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .vp-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .vp-wait-card {
    width: 100%;
  }

  .vp-wait-timer {
    font-size: 38px;
  }

  .vp-hero-img {
    max-width: 320px;
  }
}

/* =========================
   EXTRA SMALL MOBILE
   360px and below
========================= */

@media (max-width: 360px) {
  .vp-hero h1 {
    font-size: 30px;
  }

  .vp-hero p {
    font-size: 13px;
  }

  .vp-hero-img {
    max-width: 290px;
  }

  .vp-wait-timer {
    font-size: 34px;
  }
}

/* =======================================tsc================= */

/* =========================================================
   TSC TE-244 PRODUCT PAGE
   WHITE + BLUE PREMIUM THEME
========================================================= */

.tsc-product-page {
    --ink: #0b0c0c;
    --ink-soft: #000000;
    --paper: #ffffff;
    --paper-dim: #ffffff;
    --line: #d8d4c4;
    --amber: #204099;
    --amber-dark: #204099;
    --red: #204099;

    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow: hidden;
}

.tsc-product-page *,
.tsc-product-page *::before,
.tsc-product-page *::after {
    box-sizing: border-box;
}

.tsc-container {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}



.tsc-hero {
    position: relative;
    background: #ffffff;
    color: var(--ink);
    padding: 18px 0 80px;
}

.tsc-hero::after {
    content: "";
    position: absolute;
    right: -180px;
    top: 80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(32, 64, 153, .045);
    pointer-events: none;
}

.tsc-breadcrumb {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: #222;
    margin-bottom: 50px;
}

.tsc-breadcrumb span {
    color: var(--amber);
    margin: 0 9px;
}

.tsc-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.tsc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--amber);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tsc-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
}

.tsc-hero h1 {
    font-size: clamp(44px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -3px;
    margin: 0 0 22px;
    font-weight: 800;
}

.tsc-hero h1 strong {
    display: block;
    color: var(--ink);
    font-size: .43em;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 16px;
}

.tsc-hero-subtitle {
    color: var(--amber);
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 15px;
}

.tsc-hero-text {
    max-width: 560px;
    color: #111;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.tsc-hero-points {
    display: flex;
    gap: 35px;
    margin: 30px 0;
}

.tsc-hero-points div {
    padding-left: 14px;
    border-left: 2px solid var(--amber);
}

.tsc-hero-points span {
    display: block;
    color: var(--amber);
    font-size: 10px;
    margin-bottom: 5px;
}

.tsc-hero-points b {
    display: block;
    font-size: 18px;
    color: var(--ink);
}

.tsc-hero-points small {
    color: #222;
    font-size: 10px;
}

.tsc-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tsc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 50px;
    padding: 0 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.tsc-btn-primary {
    background: var(--amber);
    color: #fff;
    border: 1px solid var(--amber);
}

.tsc-btn-primary:hover {
    background: #173476;
    color: #fff;
    transform: translateY(-3px);
}

.tsc-btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.tsc-btn-outline:hover {
    color: var(--amber);
    border-color: var(--amber);
}

.tsc-hero-image {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tsc-image-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(32, 64, 153, .055);
}

.tsc-product-image-wrap {
    position: relative;
    z-index: 2;
    width: 92%;
}

.tsc-product-image-wrap img {
    width: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,.13));
    transition: .45s ease;
}

.tsc-product-image-wrap img:hover {
    transform: scale(1.035) translateY(-7px);
}

.tsc-floating-label {
    position: absolute;
    right: 0;
    bottom: 45px;
    z-index: 4;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    padding: 12px 17px;
    font-size: 11px;
    color: #222;
}

.tsc-floating-label span {
    width: 7px;
    height: 7px;
    background: var(--amber);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}




/* =========================================================
   ABOUT
========================================================= */

.tsc-about {
    padding: 40px 0;
    background: #fff;
}

.tsc-section-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.tsc-about-image {
    position: relative;
}

.tsc-image-frame {
    background: #f7f8fb;
    padding: 50px;
    position: relative;
    border: 1px solid var(--line);
}

.tsc-image-frame::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(32,64,153,.15);
}

.tsc-image-frame img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.tsc-about-badge {
    position: absolute;
    right: -20px;
    bottom: -20px;
    background: var(--amber);
    color: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 30px rgba(32,64,153,.2);
}

.tsc-about-badge strong {
    font-size: 21px;
}

.tsc-about-badge span {
    font-size: 10px;
    line-height: 1.5;
}

.tsc-section-tag {
    display: inline-block;
    color: var(--amber);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.tsc-about-content h2,
.tsc-section-heading h2,
.tsc-spec-content h2,
.tsc-seo-inner h2 {
    font-size: clamp(34px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0 0 22px;
}

.tsc-about-content h2 span,
.tsc-section-heading h2 span,
.tsc-spec-content h2 span {
    color: var(--amber);
}

.tsc-about-content p {
    color: #111;
    line-height: 1.85;
    font-size: 15px;
    text-align: justify;
}

.tsc-check-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.tsc-check-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
}

.tsc-check-list i {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: var(--amber);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 10px;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.tsc-specifications {
    padding: 100px 0;
    background: #fff;
    color: var(--ink);
}

.tsc-spec-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
}

.tsc-spec-content h2 {
    margin-bottom: 15px;
}

.tsc-spec-content > p {
    color: #111;
    margin-bottom: 30px;
}

.tsc-spec-table {
    border-top: 1px solid var(--line);
}

.tsc-spec-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 12px 15px;
    border-bottom: 1px solid #ebe8df;
    font-size: 12px;
}

.tsc-spec-row:nth-child(even) {
    background: #f8f8f6;
}

.tsc-spec-row span {
    color: #222;
}

.tsc-spec-row strong {
    color: var(--ink);
    font-weight: 600;
}

.tsc-spec-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
}

.tsc-spec-image-bg {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: #f3f5fa;
}

.tsc-spec-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,.12));
}

.tsc-spec-stamp {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 4;
    width: 78px;
    height: 78px;
    border: 2px solid var(--amber);
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    background: #fff;
    color: #222;
    font-size: 8px;
}

.tsc-spec-stamp span {
    color: var(--amber);
    font-size: 19px;
    font-weight: 800;
}


/* =========================================================
   SEO CONTENT
========================================================= */

.tsc-seo-content {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.tsc-seo-inner {
    max-width: 100%;
    margin: auto;
}

.tsc-seo-inner h2 {
    font-size: clamp(30px, 4vw, 40px);
}

.tsc-seo-inner p {
    color: #111;
    line-height: 1.9;
    font-size: 15px;
    text-align: justify;
}

.tsc-seo-inner strong {
    color: var(--amber);
}


/* =========================================================
   CTA
========================================================= */

.tsc-cta {
    background: #fff;
    padding: 60px 0 90px;
}

.tsc-cta-box {
    position: relative;
    background: #f5f7fb;
    border: 1px solid var(--line);
    padding: 50px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

.tsc-cta-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--amber);
}

.tsc-cta-content > span {
    color: var(--amber);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.tsc-cta-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    margin: 12px 0;
}

.tsc-cta-content h2 strong {
    display: block;
    color: var(--amber);
}

.tsc-cta-content p {
    color: #111;
    margin: 0;
}

.tsc-cta-action {
    min-width: 210px;
    text-align: center;
}

.tsc-cta-action small {
    display: block;
    color: #222;
    margin-top: 11px;
    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .tsc-hero-grid,
    .tsc-section-grid,
    .tsc-spec-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .tsc-hero-content {
        max-width: 700px;
    }

    .tsc-hero-image {
        min-height: 380px;
        max-width: 650px;
        margin: auto;
    }

    .tsc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tsc-application-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tsc-spec-image {
        max-width: 600px;
        margin: auto;
    }
}


@media (max-width: 700px) {

    .tsc-container {
        width: calc(100% - 28px);
    }

    .tsc-hero {
        padding-bottom: 55px;
    }

    .tsc-breadcrumb {
        margin-bottom: 35px;
    }

    .tsc-hero h1 {
        font-size: 45px;
    }

    .tsc-hero-points {
        gap: 15px;
        justify-content: space-between;
    }

    .tsc-hero-points b {
        font-size: 16px;
    }

    .tsc-hero-image {
        min-height: 300px;
    }

    .tsc-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tsc-trust-item {
        border-bottom: 1px solid var(--line);
    }

    .tsc-about,
    .tsc-features,
    .tsc-specifications,
    .tsc-applications {
        padding: 70px 0;
    }

    .tsc-image-frame {
        padding: 30px;
    }

    .tsc-check-list {
        grid-template-columns: 1fr;
    }

    .tsc-feature-grid {
        grid-template-columns: 1fr;
    }

    .tsc-application-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tsc-application-image {
        height: 150px;
    }

    .tsc-cta-box {
        padding: 40px 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .tsc-cta-action {
        text-align: left;
    }
}


@media (max-width: 480px) {

    .tsc-hero h1 {
        font-size: 39px;
    }

    .tsc-hero-points {
        flex-wrap: wrap;
    }

    .tsc-hero-points div {
        width: 30%;
    }

    .tsc-buttons {
        flex-direction: column;
    }

    .tsc-btn {
        width: 100%;
    }

    .tsc-application-grid {
        grid-template-columns: 1fr;
    }

    .tsc-application-image {
        height: 190px;
    }

    .tsc-spec-row {
        grid-template-columns: .9fr 1.1fr;
        gap: 10px;
    }
}



.ngxsp-page{
    --ngxsp-primary:#204099;
    --ngxsp-primary-light:#eef4ff;
    --ngxsp-dark:#111;
    --ngxsp-text:#030303;
    --ngxsp-muted:#050505;
    --ngxsp-light:#f8fafc;
    --ngxsp-border:#e4e7ec;
    --ngxsp-white:#fff;
    --ngxsp-green:#12b76a;

  font-family: "IBM Plex Sans", sans-serif;
    color:var(--ngxsp-dark);
    background:#fff;
    line-height:1.6;
}



.ngxsp-container{
    width:88%;
    max-width:100%;
    margin:auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.ngxsp-breadcrumb-wrap{
    /* background:#f8fafc; */
    border-bottom:1px solid #edf0f4;
}

.ngxsp-breadcrumb{
    padding:15px 0;
    font-size:13px;
    color:#111;
}

.ngxsp-breadcrumb a{
    color:#111;
    text-decoration:none;
}

.ngxsp-breadcrumb span{
    margin:0 8px;
    color:#111;
}


/* =========================================================
   HERO
========================================================= */

.ngxsp-product{
    padding:55px 0 75px;
}

.ngxsp-product-grid{
    display:grid;
    grid-template-columns:0.8fr 1.08fr;
    gap:60px;
    align-items:start;
}


/* PRODUCT IMAGE */

.ngxsp-product-image-box{
    position:sticky;
    top:30px;
    
    /* min-height:400px; */
    padding:25px;
    border:1px solid var(--ngxsp-border);
    border-radius:25px;
    background:linear-gradient(145deg,#fff,#f5f8fc);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.ngxsp-product-image-box::before{
    content:"";
    position:absolute;
    width:90%;
    height:90%;
    border-radius:50%;
    background:rgba(11,94,215,.07);
    top:-90px;
    right:-70px;
}

.ngxsp-product-image-box::after{
    content:"";
    position:absolute;
  width:90%;
    height:90%;
    border-radius:50%;
    background:rgba(18,183,106,.06);
    bottom:-60px;
    left:-60px;
}

.ngxsp-product-image{
   width:100%;
    height:100%;
    border-radius: 10px;
    object-fit:contain;
    position:relative;
    z-index:2;
    transition:.4s ease;
}

.ngxsp-product-image-box:hover .ngxsp-product-image{
    transform:scale(1.04);
}


/* HERO CONTENT */

.ngxsp-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 14px;
    margin-bottom:17px;
    background:#eef4ff;
    color:#204099;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.ngxsp-tag-dot{
    width:7px;
    height:7px;
    background:#204099;
    border-radius:50%;
}

.ngxsp-title{
    margin:0 0 18px;
    color:#101828;
    font-size:38px;
    line-height:1.22;
    letter-spacing:-1px;
    font-weight:750;
}

.ngxsp-description{
    margin:0 0 30px;
    color:#111;
    font-size:16px;
}


/* HIGHLIGHTS */

.ngxsp-highlight-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.ngxsp-highlight{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border:1px solid #e4e7ec;
    border-radius:13px;
    background:#fff;
    transition:.3s;
}

.ngxsp-highlight:hover{
    border-color:#b2ccff;
    box-shadow:0 8px 25px rgba(16,24,40,.07);
    transform:translateY(-2px);
}

.ngxsp-highlight-icon{
    min-width:38px;
    height:38px;
    border-radius:10px;
    background:#eff6ff;
    color:#204099;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

.ngxsp-highlight strong{
    display:block;
    color:#204099;
    font-size:14px;
}

.ngxsp-highlight small{
    color:#111;
    font-size:14px;
    font-weight: 400;
  font-family: "IBM Plex Sans", sans-serif;
}


/* QUICK BOX */

.ngxsp-quick-box{
    margin-top:25px;
    padding:24px;
    background:#204099;
    border-radius:18px;
    color:#fff;
}

.ngxsp-quick-title{
    margin:0 0 17px;
    font-size:17px;
    color:#fff;
}

.ngxsp-quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    
}

.ngxsp-quick-item{
    border-right:1px solid rgba(255,255,255,.14);
}

.ngxsp-quick-item:last-child{
    border-right:none;
}

.ngxsp-quick-item small{
    display:block;
    color:#ffffff;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.ngxsp-quick-item strong{
    display:block;
    margin-top:3px;
    font-size:14px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.ngxsp-section{
    padding:40px 0;
}

.ngxsp-section-light{
    background:#f8fafc;
}

.ngxsp-section-head{
    max-width:720px;
    margin-bottom:42px;
}

.ngxsp-section-label{
    display:block;
    margin-bottom:8px;
    color:#175cd3;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.ngxsp-section-title{
    margin:0 0 10px;
    color:#101828;
    font-size:32px;
    line-height:1.25;
}

.ngxsp-section-subtitle{
    margin:0;
    color:#111;
}


/* =========================================================
   FEATURES
========================================================= */

.ngxsp-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.ngxsp-feature-card{
    position:relative;
    overflow:hidden;
    padding:25px;
    border:1px solid #e4e7ec;
    border-radius:17px;
    background:#fff;
    transition:.3s;
}

.ngxsp-feature-card:hover{
    transform:translateY(-5px);
    border-color:#b2ccff;
    box-shadow:0 15px 35px rgba(16,24,40,.08);
}

.ngxsp-feature-number{
    margin-bottom:16px;
    color:#175cd3;
    font-size:12px;
    font-weight:700;
}

.ngxsp-feature-card h3{
    margin:0 0 8px;
    color:#101828;
    font-size:18px;
}

.ngxsp-feature-card p{
    margin:0;
    color:#111;
    font-size:14px;
}


/* =========================================================
   HARDWARE SPECIFICATIONS
   LEFT FIXED + RIGHT INTERNAL SCROLL
========================================================= */

.ngxsp-hardware-section{
    padding:20px 0;
    background:#fff;
}

.ngxsp-hardware-head{
    max-width:720px;
    margin-bottom:42px;
}

.ngxsp-hardware-label{
    display:block;
    margin-bottom:8px;
    color:#175cd3;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.ngxsp-hardware-title{
    margin:0 0 10px;
    color:#101828;
    font-size:34px;
    line-height:1.2;
}

.ngxsp-hardware-subtitle{
    margin:0;
    color:#111;
    font-size:16px;
}


/* TWO COLUMN */

.ngxsp-hardware-layout{
    display:grid;
    grid-template-columns:310px minmax(0,1fr);
    gap:55px;
    align-items:stretch;

    /* SAME HEIGHT */
    height:560px;
}


/* =========================================================
   LEFT SIDE
   FIXED
========================================================= */

.ngxsp-hardware-info{
    height:560px;
    padding:35px 5px 35px 0;
    background:transparent;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#111;
}

.ngxsp-hardware-icon{
    width:54px;
    height:54px;
    margin-bottom:24px;

    border-radius:14px;

    background:#eef4ff;
    color:#204099;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;
}

.ngxsp-hardware-info h3{
    margin:0 0 10px;
    color:#111;
    font-size:25px;
    line-height:1.3;
}

.ngxsp-hardware-info > p{
    margin:0 0 28px;
    max-width:280px;
    color:#111;
    font-size:15px;
    line-height:1.7;
}

.ngxsp-hardware-stat{
    padding:13px 0;
    border-bottom:1px solid #eaecf0;
}

.ngxsp-hardware-stat:last-child{
    border-bottom:none;
}

.ngxsp-hardware-stat span{
    display:block;
    margin-bottom:3px;
    color:#204099;
    font-size:10px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.ngxsp-hardware-stat strong{
    color:#111;
    font-size:14px;
    font-weight:600;
}

.ngxsp-hardware-scroll{
    height:560px;

    overflow-y:auto;
    overflow-x:hidden;

    padding-right:25px;

    scrollbar-width:none;
    -ms-overflow-style:none;
}

.ngxsp-hardware-scroll::-webkit-scrollbar{
    display:none;
    width:0;
    height:0;
}


/* SPEC GROUP */

.ngxsp-spec-group{
    margin:0;
    padding:0;
    border-bottom:1px solid #eaecf0;
}

.ngxsp-spec-group:first-child{
    border-top:1px solid #eaecf0;
}

.ngxsp-spec-group:last-child{
    border-bottom:none;
}


/* GROUP TITLE */

.ngxsp-spec-group-title{
    position:sticky;
    top:0;
    z-index:5;

    margin:0;
    padding:17px 0 14px;

    background:#fff;

    color:#101828;
    font-size:17px;
    font-weight:700;
    line-height:1.4;

    border-bottom:1px solid #eaecf0;
}


/* SPEC ROW */

.ngxsp-spec-row{
    display:grid;
    grid-template-columns:220px minmax(0,1fr);
    gap:30px;

    padding:16px 0;

    border-bottom:1px solid #f2f4f7;

    transition:background .2s ease;
}

.ngxsp-spec-row:last-child{
    border-bottom:none;
}

/* .ngxsp-spec-row:hover{
    background:#fafcff;
} */

.ngxsp-spec-name{
    color:#344054;
    font-size:13px;
    font-weight:600;
    line-height:1.5;
}

.ngxsp-spec-value{
    color:#111;
    font-size:13px;
    line-height:1.6;
}


/* =========================================================
   SOFTWARE
========================================================= */

.ngxsp-software-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.ngxsp-software-card{
    display:flex;
    align-items:center;
    gap:10px;
    padding:17px;
    border:1px solid #eaecf0;
    border-radius:13px;
    background:#fff;
    color:#344054;
    font-size:14px;
    transition:.25s;
}

.ngxsp-software-card:hover{
    border-color:#84adff;
    background:#f5f8ff;
}

.ngxsp-check{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:23px;
    width:23px;
    height:23px;
    border-radius:50%;
    background:#ecfdf3;
    color:#039855;
    font-size:12px;
    font-weight:bold;
}


/* =========================================================
   MANUFACTURER
========================================================= */

.ngxsp-manufacturer{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:40px;
    align-items:center;
    padding:45px;
    border-radius:24px;
    background:linear-gradient(120deg,#101828,#1d2939);
    color:#fff;
}

.ngxsp-manufacturer h2{
    margin:0 0 12px;
    font-size:28px;
}

.ngxsp-manufacturer p{
    margin:0;
    color:#d0d5dd;
}

.ngxsp-manufacturer-details{
    padding:20px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    background:rgba(255,255,255,.07);
}

.ngxsp-manufacturer-details strong{
    display:block;
    margin-bottom:7px;
}

.ngxsp-manufacturer-details address{
    color:#d0d5dd;
    font-size:14px;
    font-style:normal;
    line-height:1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .ngxsp-product-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .ngxsp-product-image-box{
        position:relative;
        top:0;
        min-height:420px;
    }

    .ngxsp-features{
        grid-template-columns:repeat(2,1fr);
    }

    .ngxsp-hardware-layout{
        grid-template-columns:1fr;
        height:auto;
        gap:35px;
    }

    .ngxsp-hardware-info{
        height:auto;
        padding:0;
    }

    .ngxsp-hardware-scroll{
        height:500px;
        padding-right:15px;
    }

    .ngxsp-software-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .ngxsp-manufacturer{
        grid-template-columns:1fr;
    }
}


@media(max-width:768px){

    .ngxsp-product{
        padding:35px 0 50px;
    }

    .ngxsp-title{
        font-size:29px;
    }

    .ngxsp-section,
    .ngxsp-hardware-section{
        padding:55px 0;
    }

    .ngxsp-section-title,
    .ngxsp-hardware-title{
        font-size:27px;
    }

    .ngxsp-features{
        grid-template-columns:1fr;
    }

    .ngxsp-software-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ngxsp-spec-row{
        grid-template-columns:1fr;
        gap:5px;
    }
}


@media(max-width:550px){

    .ngxsp-container{
        width:90%;
    }

    .ngxsp-product-image-box{
        min-height:100%;
        padding:25px;
    }

    .ngxsp-highlight-grid{
        grid-template-columns:1fr;
    }

    .ngxsp-quick-grid{
        grid-template-columns:1fr;
    }

    .ngxsp-quick-item{
        padding-bottom:12px;
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .ngxsp-quick-item:last-child{
        border-bottom:none;
    }

    .ngxsp-software-grid{
        grid-template-columns:1fr;
    }

    .ngxsp-hardware-scroll{
        height:430px;
    }

    .ngxsp-spec-row{
        padding:14px 0;
    }

    .ngxsp-spec-group-title{
        padding:15px 0;
    }

    .ngxsp-manufacturer{
        padding:28px 22px;
    }
}


/* ================= HIGHLIGHT CARDS FIX ================= */

.ngxsp-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ngxsp-highlight-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 12px;
    padding: 16px;
}

.ngxsp-highlight-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.ngxsp-highlight-card > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    text-align: left !important;
}

.ngxsp-highlight-card strong {
    display: block;
    text-align: left !important;
}

.ngxsp-highlight-card span {
    display: block;
    text-align: left !important;
}


/* MOBILE */
@media (max-width: 600px) {

    .ngxsp-highlight-grid {
        grid-template-columns: 1fr;
    }

    .ngxsp-highlight-card {
        width: 100%;
    }

}



 
.xpos-features {
    padding: 70px 0;
    background: #f8f9fb;
}

.xpos-features-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.xpos-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.xpos-feature-card {
    position: relative;
    min-height: 245px;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s ease;
}

.xpos-feature-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -35px;
    bottom: -35px;
    border-radius: 50%;
    background: #f1f3f7;
    transition: .3s ease;
}

.xpos-feature-card:hover {
    transform: translateY(-6px);
    border-color: #b8c1ff;
    box-shadow: 0 18px 45px rgba(20, 25, 45, .09);
}

.xpos-feature-card:hover::after {
    transform: scale(1.8);
    background: #eef1ff;
}

.xpos-feature-number {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 32px;
    border-radius: 50%;
    background: #f2f4f8;
    color: #111;
    font-size: 15px;
    font-weight: 600;
}

.xpos-feature-title {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;
    max-width: 230px;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 500;
    color: #111111;
    letter-spacing: -.5px;
}

.xpos-feature-text {
    position: relative;
    z-index: 2;
    max-width: 245px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #111;
}

/* Highlight card */
.xpos-feature-card.highlight {
    background: #204099;
    border-color: #204099;
}

.xpos-feature-card.highlight .xpos-feature-number {
    background: #fff;
    color: #204099;
}

.xpos-feature-card.highlight .xpos-feature-title {
    color: #fff;
}

.xpos-feature-card.highlight .xpos-feature-text {
    color: #fff;
}

.xpos-feature-card.highlight::after {
    background: #22664f;
}

.xpos-feature-card.highlight:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* ===============================
   TABLET
================================ */
@media (max-width: 991px) {
    .xpos-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 575px) {
    .xpos-features {
        padding: 45px 0;
    }

    .xpos-features-wrap {
        padding: 0 15px;
    }

    .xpos-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .xpos-feature-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .xpos-feature-number {
        margin-bottom: 24px;
    }

    .xpos-feature-title {
        font-size: 23px;
    }
}



.ngxsp-page{
    background:#fff;
    color:#111;
  font-family: "IBM Plex Sans", sans-serif;
}

.ngxsp-container{
    width:88%;
    max-width:1200px;
    margin:auto;
}

/* ================= BREADCRUMB ================= */

.ngxsp-breadcrumb-wrap{
    background:#f7f7f5;
    padding:16px 0;
}

.ngxsp-breadcrumb{
    font-size:14px;
    color:#111;
}

.ngxsp-breadcrumb a{
    color:#000;
    text-decoration:none;
}

.ngxsp-breadcrumb span{
    margin:0 8px;
    color:#111;
    font-size: 15px;
}

/* ================= HERO ================= */

.ngxsp-product{
    padding:65px 0 55px;
}

.ngxsp-product-grid{
    display:grid;
    grid-template-columns:48% 52%;
    gap:55px;
    align-items:center;
}

.ngxsp-product-image-box{
    background:#f7f7f5;
    border-radius:18px;
    min-height:480px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px;
}

.ngxsp-product-image{
    width:100%;
    max-width:480px;
    height:auto;
    object-fit:contain;
}

.ngxsp-product-content{
    padding-right:10px;
}

.ngxsp-tag{
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.2px;
    color:#111;
    margin-bottom:15px;
}

.ngxsp-tag-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#204099;
}

.ngxsp-title{
    font-size:36px;
    line-height:1.08;
    margin:0 0 20px;
    color:#111;
    font-weight:700;
}

.ngxsp-description{
    font-size:16px;
    line-height:1.8;
    color:#111;
    margin-bottom:28px;
}

/* ================= HIGHLIGHTS ================= */

.ngxsp-highlight-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.ngxsp-highlight{
    border:1px solid #e7e7e2;
    border-radius:12px;
    padding:15px;
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
}

.ngxsp-highlight-icon{
    width:42px;
    height:42px;
    border-radius:10px;
    background:#f1f1ed;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#204099;
    font-size:18px;
    flex-shrink:0;
}

.ngxsp-highlight strong{
    display:block;
    font-size:14px;
    color:#111;
    margin-bottom:3px;
}

.ngxsp-highlight span{
    font-size:12px;
    color:#111;
}

/* ================= QUICK INFO ================= */

.ngxsp-quick-box{
    margin-top:28px;
    padding:24px;
    border-radius:14px;
    background:#204099;
    color:#fff;
}

.ngxsp-quick-title{
    font-size:16px;
    font-weight:700;
    margin-bottom:18px;
}

.ngxsp-quick-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.ngxsp-quick-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.ngxsp-quick-item i{
    color:#fff;
    font-size:17px;
}

.ngxsp-quick-item strong{
    display:block;
    font-size:13px;
}

.ngxsp-quick-item span{
    display:block;
    font-size:11px;
    color:#fff;
    margin-top:2px;
}

/* ================= COMMON SECTION ================= */

.ngxsp-section{
    padding:75px 0;
}

.ngxsp-section-light{
    background:#f7f7f5;
}

.ngxsp-section-head{
    max-width:100%;
    margin:0 auto 45px;
    text-align:center;
}

.ngxsp-section-label{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#111;
    font-weight:700;
    margin-bottom:12px;
}

.ngxsp-section-title{
    font-size:38px;
    line-height:1.15;
    color:#111;
    margin:0 0 14px;
      font-family: "IBM Plex Sans", sans-serif;

}

.ngxsp-section-subtitle{
    color:#111;
    line-height:1.7;
    font-size:16px;
}

/* ================= FEATURES ================= */

.ngxsp-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.ngxsp-feature-card{
    background:#fff;
    border:1px solid #e8e8e3;
    border-radius:16px;
    padding:28px 22px;
    transition:.3s ease;
}

.ngxsp-feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.07);
}

.ngxsp-feature-number{
    width:42px;
    height:42px;
    border-radius:11px;
    background:#f0f0eb;
    color:#204099;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    margin-bottom:20px;
}

.ngxsp-feature-card h3{
    font-size:18px;
    margin:0 0 10px;
    color:#111;
      font-family: "IBM Plex Sans", sans-serif;

}

.ngxsp-feature-card p{
    font-size:15px;
    line-height:1.7;
    color:#111;
    margin:0;
      font-family: "IBM Plex Sans", sans-serif;

}

/* ================= HARDWARE ================= */

.ngxsp-hardware-section{
    background:#091538;
    color:#fff;
    padding:80px 0;
}

.ngxsp-hardware-head{
    max-width:700px;
    margin-bottom:45px;
}

.ngxsp-hardware-label{
    color:#fff;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:12px;
}

.ngxsp-hardware-title{
    color:#fff;
    font-size:40px;
    line-height:1.15;
    margin:0 0 14px;
}

.ngxsp-hardware-subtitle{
    color:#fff;
    font-size:15px;
    line-height:1.7;
}

.ngxsp-hardware-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:35px;
    align-items:start;
}

.ngxsp-hardware-info{
    position:sticky;
    top:20px;
    background:#204099;
    border:1px solid #ffffff;
    border-radius:16px;
    padding:25px;
}

.ngxsp-hardware-icon{
    width:55px;
    height:55px;
    border-radius:13px;
    background:#091538;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:23px;
    margin-bottom:20px;
}

.ngxsp-hardware-info h3{
    margin:0 0 8px;
    color:#fff;
    font-size:19px;
}

.ngxsp-hardware-info p{
    margin:0 0 25px;
    color:#fff;
    font-size:13px;
    line-height:1.7;
}

.ngxsp-hardware-stat{
    border-top:1px solid #fff;
    padding-top:16px;
    margin-top:16px;
}

.ngxsp-hardware-stat strong{
    display:block;
    font-size:18px;
    color:#fff;
}

.ngxsp-hardware-stat span{
    color:#fff;
    font-size:11px;
}

/* ================= SPEC TABLE ================= */

.ngxsp-hardware-scroll{
    width:100%;
}

.ngxsp-spec-group{
    margin-bottom:25px;
    background:#204099;
    border:1px solid #0a215f;
    border-radius:15px;
    overflow:hidden;
}

.ngxsp-spec-group-title{
    padding:17px 20px;
    background:#15348a;
    color:#fff;
    font-size:15px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

.ngxsp-spec-group-title i{
    color:#fff;
}

.ngxsp-spec-row{
    display:grid;
    grid-template-columns:40% 60%;
    border-top:1px solid #0a1e57;
}

.ngxsp-spec-name,
.ngxsp-spec-value{
    padding:14px 20px;
    font-size:13px;
}

.ngxsp-spec-name{
    color:#fff;
}

.ngxsp-spec-value{
    color:#f4f4f1;
    line-height:1.6;
}

/* ================= ABOUT / APPLICATION ================= */

.ngxsp-software-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.ngxsp-software-card{
    background:#fff;
    border:1px solid #e5e5df;
    border-radius:15px;
    padding:24px;
}

.ngxsp-software-card i{
    font-size:22px;
    color:#fff;
    margin-bottom:16px;
}

.ngxsp-software-card h3{
    margin:0 0 9px;
    font-size:17px;
}

.ngxsp-software-card p{
    margin:0;
    color:#111;
    font-size:13px;
    line-height:1.7;
}

.ngxsp-check{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin-bottom:12px;
}

.ngxsp-check i{
    color:#666955;
    margin-top:3px;
}

.ngxsp-check span{
    color:#111;
    font-size:14px;
    line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .ngxsp-product-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .ngxsp-product-image-box{
        min-height:380px;
    }

    .ngxsp-title{
        font-size:38px;
    }

    .ngxsp-features{
        grid-template-columns:repeat(2,1fr);
    }

    .ngxsp-hardware-layout{
        grid-template-columns:1fr;
    }

    .ngxsp-hardware-info{
        position:relative;
        top:auto;
    }

    .ngxsp-software-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .ngxsp-product{
        padding:40px 0;
    }

    .ngxsp-product-image-box{
        min-height:280px;
        padding:20px;
    }

    .ngxsp-title{
        font-size:31px;
    }

    .ngxsp-description{
        font-size:14px;
        line-height:1.7;
    }

    .ngxsp-highlight-grid{
        grid-template-columns:1fr;
    }

    .ngxsp-quick-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .ngxsp-section{
        padding:55px 0;
    }

    .ngxsp-section-title{
        font-size:30px;
    }

    .ngxsp-features{
        grid-template-columns:1fr;
    }

    .ngxsp-hardware-title{
        font-size:31px;
    }

    .ngxsp-spec-row{
        grid-template-columns:1fr;
    }

    .ngxsp-spec-name{
        padding-bottom:5px;
        font-weight:600;
    }

    .ngxsp-spec-value{
        padding-top:5px;
    }

    .ngxsp-software-grid{
        grid-template-columns:1fr;
    }
}

/* ================= CONTACT SECTION ================= */

.ngx-contact-section {
    padding: 80px 20px;
    background: #f7f7f5;
}

.ngx-contact-container {
    max-width: 1180px;
    margin: 0 auto;
}

.ngx-contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: stretch;
}

/* ================= FORM ================= */

.ngx-contact-form-box {
    background: #ffffff;
    padding: 42px;
    border-radius: 18px;
    border: 1px solid #e5e5e2;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

.ngx-contact-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ngx-contact-input,
.ngx-contact-textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 8px;
    padding: 13px 15px;
    font-size: 14px;
    color: #222;
    outline: none;
    transition: 0.25s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.ngx-contact-input {
    height: 48px;
}

.ngx-contact-textarea {
    min-height: 125px;
    resize: vertical;
}

.ngx-contact-input:focus,
.ngx-contact-textarea:focus {
    border-color: #666955;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102,105,85,0.10);
}

.ngx-contact-field {
    margin-bottom: 20px;
}

.ngx-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ngx-contact-submit {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 8px;
    background: #204099;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.ngx-contact-submit:hover {
    background: #081b50;
}

/* ================= RIGHT INFO ================= */

.ngx-contact-info {
    background: #204099;
    border-radius: 18px;
    padding: 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ngx-contact-info::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    right: -80px;
    bottom: -80px;
}

.ngx-contact-info-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.ngx-contact-info-title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 15px;
    color: #fff;
    font-weight: 700;
}

.ngx-contact-info-text {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 35px;
}

/* ================= CONTACT ITEMS ================= */

.ngx-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.ngx-contact-item:last-child {
    border-bottom: 0;
}

.ngx-contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
}

.ngx-contact-item-label {
    display: block;
    font-size: 12px;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.ngx-contact-item a,
.ngx-contact-item span {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
}

.ngx-contact-item a:hover {
    color: #c4c6af;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 850px) {

    .ngx-contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ngx-contact-form-box,
    .ngx-contact-info {
        padding: 30px 25px;
    }

    .ngx-contact-info-title {
        font-size: 28px;
    }
}

@media (max-width: 550px) {

    .ngx-contact-section {
        padding: 55px 15px;
    }

    .ngx-contact-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ngx-contact-form-box,
    .ngx-contact-info {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .ngx-contact-info-title {
        font-size: 25px;
    }
}


/*=============================*/


        /* =====================================================
           MAIN SEO SECTION
        ===================================================== */

        .vpos-barcode-seo-main{
            width:100%;
            padding:80px 20px;
            background:#ffffff;
            font-family:Arial, Helvetica, sans-serif;
            color:#0b0c0c;
        }

        .vpos-barcode-seo-main *,
        .vpos-barcode-seo-main *::before,
        .vpos-barcode-seo-main *::after{
            box-sizing:border-box;
        }

        .vpos-barcode-seo-wrap{
            width:100%;
            max-width:1200px;
            margin:0 auto;
        }

        /* =========================
           HEADLINE
        ========================= */

        .vpos-barcode-seo-content h2{
            margin:0 0 22px;
            font-size:clamp(20px,4vw,32px);
            line-height:1.08;
            font-weight:600;
            letter-spacing:-1.5px;
            color:#0b0c0c;
        }

        .vpos-barcode-seo-content h2 span{
            color:#204099;
        }

        /* =========================
           PARAGRAPHS
        ========================= */

        .vpos-barcode-seo-content p{
            margin:0;
            max-width:1080px;
            color:#000;
            font-size:16px;
            line-height:1.85;
        }

        /* =========================
           SUB HEADING
        ========================= */

        .vpos-barcode-seo-content h3{
            margin:55px 0 17px;
            font-size:clamp(18px,3vw,28px);
            line-height:1.2;
            font-weight:600;
            color:#0b0c0c;
        }

        /* =========================
           TECHNOLOGY CARDS
        ========================= */

        .vpos-barcode-tech-grid{
            display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:22px;
            margin-top:28px;
        }

        .vpos-barcode-tech-card{
            position:relative;
            padding:30px;
            background:#f7f8fb;
            border:1px solid #e2e5eb;
            border-radius:17px;
            overflow:hidden;
            transition:all .3s ease;
        }

        .vpos-barcode-tech-card::before{
            content:"";
            position:absolute;
            top:0;
            left:0;
            width:5px;
            height:100%;
            background:#204099;
        }

        .vpos-barcode-tech-card:hover{
            transform:translateY(-4px);
            border-color:rgba(32,64,153,.3);
            box-shadow:0 12px 30px rgba(0,0,0,.07);
        }

        .vpos-barcode-tech-card strong{
            display:block;
            margin-bottom:12px;
            font-size:19px;
            line-height:1.3;
            color:#0b0c0c;
        }

        .vpos-barcode-tech-card p{
            font-size:15px;
            line-height:1.75;
        }


        /* =====================================================
           GET IN TOUCH - SEPARATE SECTION
        ===================================================== */

        .vpos-barcode-contact-section{
            width:100%;
            padding:0 20px 80px;
            background:#ffffff;
            font-family:Arial, Helvetica, sans-serif;
        }

        .vpos-barcode-contact-section *,
        .vpos-barcode-contact-section *::before,
        .vpos-barcode-contact-section *::after{
            box-sizing:border-box;
        }

        .vpos-barcode-contact-wrap{
            width:100%;
            max-width:1200px;
            margin:0 auto;
        }

        .vpos-barcode-contact-card{
            position:relative;
            width:100%;
            padding:55px 60px;
            border-radius:24px;
            overflow:hidden;
            background:#0b0c0c;
        }

        /* BLUE GLOW */

        .vpos-barcode-contact-card::before{
            content:"";
            position:absolute;
            width:360px;
            height:360px;
            right:-130px;
            top:-190px;
            border-radius:50%;
            background:rgba(32,64,153,.45);
        }

        .vpos-barcode-contact-card::after{
            content:"";
            position:absolute;
            width:220px;
            height:220px;
            left:-130px;
            bottom:-150px;
            border-radius:50%;
            background:rgba(32,64,153,.22);
        }

        .vpos-barcode-contact-content{
            position:relative;
            z-index:2;
            max-width:850px;
        }

        .vpos-barcode-contact-content h3{
            margin:0 0 15px;
            color:#ffffff;
            font-size:clamp(30px,4vw,45px);
            line-height:1.1;
            font-weight:800;
            letter-spacing:-1px;
        }

        .vpos-barcode-contact-content p{
            margin:0 0 28px;
            color:#d9dbe1;
            font-size:16px;
            line-height:1.8;
        }

        .vpos-barcode-contact-btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-width:155px;
            padding:14px 26px;
            border-radius:8px;
            background:#204099;
            color:#ffffff !important;
            text-decoration:none !important;
            font-size:14px;
            font-weight:700;
            transition:all .25s ease;
        }

        .vpos-barcode-contact-btn:hover{
            background:#ffffff;
            color:#204099 !important;
            transform:translateY(-2px);
        }


        /* =====================================================
           TABLET
        ===================================================== */

        @media(max-width:800px){

            .vpos-barcode-seo-main{
                padding:60px 18px;
            }

            .vpos-barcode-tech-grid{
                grid-template-columns:1fr;
            }

            .vpos-barcode-seo-content h3{
                margin-top:45px;
            }

            .vpos-barcode-contact-section{
                padding:0 18px 60px;
            }

            .vpos-barcode-contact-card{
                padding:42px 30px;
                border-radius:20px;
            }

        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media(max-width:500px){

            .vpos-barcode-seo-main{
                padding:50px 15px;
            }

            .vpos-barcode-seo-content h2{
                font-size:31px;
                letter-spacing:-.8px;
            }

            .vpos-barcode-seo-content h3{
                font-size:25px;
                margin-top:40px;
            }

            .vpos-barcode-seo-content p{
                font-size:15px;
                line-height:1.75;
            }

            .vpos-barcode-tech-card{
                padding:25px 22px;
                border-radius:14px;
            }

            .vpos-barcode-tech-card strong{
                font-size:18px;
            }

            .vpos-barcode-tech-card p{
                font-size:14.5px;
            }

            .vpos-barcode-contact-section{
                padding:0 15px 50px;
            }

            .vpos-barcode-contact-card{
                padding:35px 22px;
                border-radius:17px;
            }

            .vpos-barcode-contact-content h3{
                font-size:29px;
            }

            .vpos-barcode-contact-content p{
                font-size:15px;
                line-height:1.7;
            }

            .vpos-barcode-contact-btn{
                width:100%;
            }

        }
  
