/* ============================================================
   ANALAB — New Header UI Stylesheet
   ============================================================ */

:root {
  /* Neutrals */
  --white: #ffffff;
  --off-white: #f6f8fb;
  --surface: #f1f5fa;
  --light-gray: #e9eef5;
  --border: #e0e7f0;
  --border-strong: #ccd6e3;

  /* Navy / brand blue */
  --navy-900: #0b1a30;
  --navy-800: #0f2238;
  --navy-700: #143052;
  --navy: #1b3b6f;
  /* primary brand blue */
  --navy-500: #2f5da8;
  /* brighter accent */
  --blue-tint: #eef3fb;
  --blue-tint-2: #e3ecf8;

  /* Text */
  --ink: #15202e;
  --ink-soft: #2c3a4d;
  --muted: #5d6c80;
  --muted-2: #8493a6;
  --on-dark: #e8eef6;
  /* --on-dark-muted: #9fb1c8; */
  --on-dark-muted: #dcebff;

  /* Red accent (used sparingly) */
  --red: #d62828;
  --red-dark: #b51f1f;
  --red-tint: #fbeaea;

  /* Type */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15, 34, 56, .06);
  --sh-sm: 0 4px 14px rgba(15, 34, 56, .07);
  --sh-md: 0 14px 36px rgba(15, 34, 56, .10);
  --sh-lg: 0 28px 64px rgba(15, 34, 56, .16);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 84px;
}


html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ---------- Reset / Core overrides specifically for new header elements ---------- */
.topbar *,
.site-header *,
.mobile-nav * {
  box-sizing: border-box;
}

/* ---------- Layout helpers for header ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--on-dark-muted);
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-family: var(--font-body);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 42px;
}

.topbar a {
  color: var(--on-dark-muted);
  transition: color .2s;
  text-decoration: none;
}

.topbar a:hover {
  color: white;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--navy-500);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-socials {
  display: flex;
  gap: 12px;
}

.topbar-socials a {
  display: flex;
  align-items: center;
  color: var(--on-dark-muted);
}

.topbar-socials a svg {
  width: 15px;
  height: 15px;
}

.iso-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(47, 93, 168, .22);
  color: #cfe0f7;
  font-weight: 600;
  font-size: 12px;
}

.iso-chip svg {
  width: 13px;
  height: 13px;
}

/* ---------- Site Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, height .3s;
  font-family: var(--font-body);
}

.site-header.scrolled {
  box-shadow: var(--sh-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-h);
  transition: height .3s;
}

/* .site-header.scrolled .nav {
  height: 70px;
} */

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.logo-mark svg {
  width: 26px;
  height: 26px;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 93, 168, .55), transparent 60%);
}

.logo-text {
  line-height: 1;
}

.logo-text b {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: .04em;
  color: var(--navy);
  display: block;
}

.logo-text span {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
  text-decoration: none;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--navy);
  background: var(--blue-tint);
}

.nav-link .chev {
  width: 15px;
  height: 15px;
  transition: transform .25s;
  opacity: .7;
}

.nav-item.has-mega:hover .nav-link .chev,
.nav-item.has-drop:hover .nav-link .chev {
  transform: rotate(180deg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  background: #fff;
  transition: all .2s;
  text-decoration: none;
  cursor: pointer;
}

.icon-btn:hover {
  color: var(--navy);
  border-color: var(--border-strong);
  background: var(--blue-tint);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(214, 40, 40, .4);
  border: 2px solid #fff;
  pointer-events: none;
}

.cart-count[data-count="0"] {
  display: none;
}

.cart-btn:hover {
  color: var(--red);
  border-color: var(--border-strong);
  background: var(--red-tint);
}

.burger {
  display: none;
}

/* ---- Dropdowns (shared) ---- */
.has-drop {
  position: relative;
}

.drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 120;
}

.has-drop:hover>.drop,
.has-drop:focus-within>.drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.has-drop>a::before,
.drop::before {
  content: "";
  position: absolute;
}

.has-drop>.drop::before {
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* Simple vertical dropdown list */
.drop-list {
  min-width: 244px;
  display: grid;
  gap: 2px;
}

.drop-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .18s, color .18s;
  text-decoration: none;
}

.drop-list a:hover {
  background: var(--blue-tint);
  color: var(--navy);
}

.drop-list a svg {
  width: 15px;
  height: 15px;
  opacity: .6;
}

.drop-label {
  padding: 12px 14px 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.drop-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* ---- Products mega menu (two-pane) ---- */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(1020px, 94vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  /* pointer-events: none; */
  transform: translateX(-50%) translateY(10px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 120;
  overflow: hidden;
}

.nav-item.has-mega:hover .mega,
.nav-item.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  /* pointer-events: auto; */
  transform: translateX(-50%) translateY(0);
}

.mega::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.mega-body {
  display: grid;
  grid-template-columns: 332px 1fr;
}

.mega-cats {
  background: var(--off-white);
  border-right: 1px solid var(--border);
  padding: 12px;
  display: grid;
  gap: 2px;
  align-content: start;
}

.mega-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 11px 13px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .18s, color .18s;
  border: none;
  background: transparent;
}

.mega-cat .mc-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: background .18s, color .18s, border-color .18s;
}

.mega-cat .mc-ico svg {
  width: 19px;
  height: 19px;
}

.mega-cat .mc-name {
  flex: 1;
  line-height: 1.2;
}

.mega-cat .mc-arrow {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s, transform .18s;
  color: var(--red);
}

.mega-cat:hover,
.mega-cat.active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--sh-xs);
}

.mega-cat.active .mc-ico {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.mega-cat.active .mc-arrow {
  opacity: 1;
  transform: none;
}

.mega-panels {
  padding: 22px 24px;
  position: relative;
  min-height: 360px;
}

.mega-panel {
  display: none;
}

.mega-panel.active {
  display: block;
  animation: megaFade .25s ease;
}

@keyframes megaFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mega-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mega-panel-head h4 {
  font-size: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
}

.mega-plist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 14px;
}

.mega-plist a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  transition: background .16s, color .16s;
  text-decoration: none;
}

.mega-plist a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
  flex-shrink: 0;
  transition: background .16s;
  margin-top: 7px;
}

.mega-plist a:hover {
  background: var(--blue-tint);
  color: var(--navy);
}

.mega-plist a:hover::before {
  background: var(--red);
}

.mega-promo {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
}

.mega-promo p {
  font-size: 12.5px;
  color: var(--on-dark-muted);
  margin-top: 2px;
  margin-bottom: 0;
}

.mega-promo b {
  font-family: var(--font-head);
  font-size: 14.5px;
}

/* ---------- Mobile Navigation ---------- */
.burger {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 86vw);
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  padding: 22px;
  font-family: var(--font-body);
}

.mobile-nav.open {
  transform: none;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(11, 26, 48, .5);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
  backdrop-filter: blur(2px);
}

.scrim.open {
  opacity: 1;
  visibility: visible;
}

.mnav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.macc-wrap {
  display: flex;
  flex-direction: column;
}

.macc {
  border-top: 1px solid var(--border);
}

.macc:last-child {
  border-bottom: 1px solid var(--border);
}

.macc-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  border: none;
}

.macc-trigger svg {
  width: 18px;
  height: 18px;
  transition: transform .25s;
  color: var(--muted);
}

.macc.open .macc-trigger svg {
  transform: rotate(180deg);
}

.macc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.macc.open .macc-body {
  max-height: 560px;
}

.macc-body a {
  display: block;
  padding: 11px 4px 11px 16px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
}

.macc-body a:hover {
  color: var(--navy);
}

/* ---------- Media Queries ---------- */
@media (max-width: 980px) {
  .nav-menu {
    display: none !important;
  }

  .burger {
    display: grid;
  }

  .topbar-left .topbar-item.hide-sm {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  :root {
    --header-h: 70px;
  }
}

/* ============================================================
   FOOTER STYLING
   ============================================================ */
.footer {
  color: var(--ink-soft);
  background: var(--off-white);
  padding-top: clamp(46px, 6vw, 70px);
  font-family: var(--font-body);
}

.footer .logo>img {
  /* filter: grayscale(1) brightness(9); */
  /* background-color: #fff; */
  /* padding: 3px 5px; */
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer .logo-text b {
  color: #fff;
}

.footer-about p {
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 340px;
}

.footer-contact {
  margin-top: 24px;
  display: grid;
  gap: 5px;
}

.footer-contact .contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  margin-left: 0;
  margin-right: 0;
}

.footer-contact .contact-row svg {
  width: 18px;
  height: 18px;
  color: var(--red-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact .contact-row span {
  display: inline-block;
}

.footer-contact .contact-row a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact .contact-row a:hover {
  color: #fff;
}

.footer-col h4 {
  color: var(--red-dark);
  font-size: 16px;
  margin-bottom: 15px;
  font-family: var(--font-head);
  font-weight: 700;
  margin-top: 0;
}

.footer-col ul {
  display: grid;
  gap: 3px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.footer-col ul li a {
  font-size: 12.5px;
  transition: color .2s, padding .2s;
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--ink-soft);
  text-decoration: underline;
  /* padding-left: 5px; */
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--on-dark);
}

.footer-badge svg {
  width: 17px;
  height: 17px;
  color: var(--navy-500);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
  color: var(--red-dark);
  border: 1px solid var(--border-strong);
}

.footer-socials a:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 15px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.footer-bottom a {
  color: var(--off-white);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom .links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOMEPAGE HELPERS & SCROLL REVEALS
   ============================================================ */
.section {
  padding-block: clamp(54px, 7vw, 80px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-500);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.eyebrow.center {
  justify-content: center;
}

.section-head {
  max-width: 640px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 50px);
  margin-top: 16px;
  text-wrap: balance;
  font-weight: 700;
  font-family: var(--font-head);
}

.section-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  line-height: 1;
  transition: transform .25s cubic-bezier(.2, .7, .3, 1), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap;
  border: none;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214, 40, 40, .28);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(214, 40, 40, .34);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--sh-sm);
}

.btn-navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--blue-tint);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .34);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.btn-md {
  padding: 11px 23px;
  font-size: 14px;
}

.btn-lg {
  padding: 17px 32px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  transition: gap .25s, color .25s;
  text-decoration: none;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform .25s;
}

.text-link:hover {
  color: var(--red);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: .08s;
}

.reveal[data-delay="2"] {
  transition-delay: .16s;
}

.reveal[data-delay="3"] {
  transition-delay: .24s;
}

.reveal[data-delay="4"] {
  transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trustbar .wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.trust-item {
  align-items: center;
  padding: 26px 22px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item .ti-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.trust-item .ti-ico svg {
  width: 22px;
  height: 22px;
}

.trust-item b {
  font-family: var(--font-head);
  font-size: 15px;
  line-height: 1.1;
  display: block;
  font-weight: 600;
}

.trust-item span {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .trustbar .wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(6) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .trustbar .wrap {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .am-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-media img {
  width: 100%;
}

.am-tall {
  height: 380px;
}

.am-short {
  height: 300px;
  margin-top: 48px;
}

.about-stat {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--sh-lg);
  text-align: center;
}

.about-stat b {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-stat span {
  font-size: 13px;
  color: var(--on-dark-muted);
  margin-top: 6px;
  display: block;
  letter-spacing: .04em;
}

.about-stat .badge-strip {
  position: absolute;
  top: 18px;
  left: -14px;
  width: 6px;
  bottom: 18px;
  background: var(--red);
  border-radius: 4px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 26px;
  margin-top: 30px;
  padding-left: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-list .ck {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-list .ck svg {
  width: 15px;
  height: 15px;
}

.about-list b {
  font-family: var(--font-head);
  font-size: 15.5px;
  display: block;
}

.about-list span {
  font-size: 13.5px;
  color: var(--muted);
}

.about-body p {
  color: var(--muted);
  margin-top: 18px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 34px;
}

.signature {
  line-height: 1.2;
}

.signature b {
  font-family: var(--font-head);
  font-size: 15px;
}

.signature span {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .about .wrap {
    grid-template-columns: 1fr;
  }

  .am-tall {
    height: 320px;
  }

  .am-short {
    height: 260px;
  }
}

/* ============================================================
   COUNTERS
   ============================================================ */
.counters {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 80% 0%, rgba(47, 93, 168, .35), transparent 60%);
}

.counters .wrap {
  position: relative;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.counter {
  text-align: center;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.counter:last-child {
  border-right: 0;
}

.counter .num {
  font-family: var(--font-head);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.counter .num .plus {
  color: #ff6b6b;
}

.counter .lbl {
  margin-top: 12px;
  color: var(--on-dark-muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .counter:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }

  .counter {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .counter:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   REFERENCE HEADERS
   ============================================================ */
:root {
  --navy-ink: #0c2c54;
}

.ref-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.ref-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}

.ref-head h2 {
  color: var(--navy-ink);
  font-size: clamp(30px, 4.2vw, 48px);
  margin-top: 16px;
  text-wrap: balance;
  font-family: var(--font-head);
  font-weight: 700;
}

.ref-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 640px;
  margin-inline: auto;
  text-wrap: pretty;
}

.ref-rule {
  width: 56px;
  height: 4px;
  border-radius: 3px;
  background: var(--red);
  margin: 24px auto 0;
}

/* ============================================================
   SOLUTIONS BY INDUSTRY
   ============================================================ */
.industries {
  background: #fff;
}

.solind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.solind-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 250px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s;
}

.solind-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solind-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(8, 18, 33, .95) 12%, rgba(8, 18, 33, .55) 52%, rgba(8, 18, 33, .22) 100%);
  transition: background .35s;
}

.solind-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.solind-card:hover::after {
  background: linear-gradient(to top, rgba(11, 26, 48, .96) 16%, rgba(27, 59, 111, .6) 66%, rgba(27, 59, 111, .28) 100%);
}

.solind-body {
  padding: 26px;
  position: relative;
}

.solind-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(214, 40, 40, .35);
}

.solind-ico svg {
  width: 24px;
  height: 24px;
}

.solind-body h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 0;
  font-family: var(--font-head);
  font-weight: 700;
}

.solind-body p {
  color: rgba(225, 233, 245, .84);
  font-size: 13.5px;
  margin-top: 9px;
  line-height: 1.55;
}

.solind-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  color: #ff7a7a;
  transition: gap .25s, color .25s;
  text-decoration: none;
}

.solind-link svg {
  width: 15px;
  height: 15px;
  transition: transform .25s;
}

.solind-card:hover .solind-link {
  gap: 11px;
  color: #ff9a9a;
}

/* ============================================================
   WHY ANALAB
   ============================================================ */
.why {
  background: var(--off-white);
}

.why .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: transform .3s, box-shadow .3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.why-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--blue-tint);
  color: var(--navy);
  margin-bottom: 18px;
}

.why-ico svg {
  width: 25px;
  height: 25px;
}

.why-card h3 {
  font-size: 17.5px;
  margin-bottom: 0;
}

.why-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 8px;
}

.why-card:nth-child(odd) {
  transform: translateY(22px);
}

.why-card:nth-child(odd):hover {
  transform: translateY(17px);
}

@media (max-width: 980px) {
  .why .wrap {
    grid-template-columns: 1fr;
  }

  .why-card:nth-child(odd) {
    transform: none;
  }

  .why-card:nth-child(odd):hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AWARDS & CERTIFICATIONS
   ============================================================ */
.awards {
  background: var(--off-white);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.award-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--border-strong);
}

.award-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.award-ico svg {
  width: 25px;
  height: 25px;
}

.award-ico.red {
  background: var(--red);
  color: #fff;
}

.award-ico.navy {
  background: var(--blue-tint);
  color: var(--navy);
}

.award-ico.amber {
  background: #fdf0d5;
  color: #cc8800;
}

.award-ico.green {
  background: #e4f6ea;
  color: #1ca85a;
}

.award-ico.purple {
  background: #efeafd;
  color: #6b4ad9;
}

.award-card h3 {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0;
}

.award-card p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.55;
  flex: 1;
}

.award-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  transition: color .2s, gap .2s;
  text-decoration: none;
}

.award-dl svg {
  width: 16px;
  height: 16px;
}

.award-dl:hover {
  color: var(--red);
  gap: 11px;
}

/* ============================================================
   RECENT INSTALLATIONS
   ============================================================ */
.installs {
  background: var(--navy-900);
  color: #fff;
}

.installs .eyebrow {
  color: #8fb4ec;
}

.installs .section-title {
  color: #fff;
}

.installs .section-sub {
  color: var(--on-dark-muted);
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.install-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}

.install-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.install-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.install-body {
  padding: 24px;
}

.install-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.install-tags span {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(47, 93, 168, .25);
  color: #cfe0f7;
}

.install-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 0;
}

.install-meta {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.install-meta .d-flex-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--on-dark-muted);
  margin-left: 0;
  margin-right: 0;
}

.install-meta .d-flex-row svg {
  width: 16px;
  height: 16px;
  color: var(--navy-500);
  flex-shrink: 0;
}

.install-meta .d-flex-row b {
  color: var(--on-dark);
  font-weight: 600;
}

/* ============================================================
   CLIENTS (logo marquee)
   ============================================================ */
.clients {
  padding-block: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
}

.clients .label {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0;
}

.marquee {
  margin-top: 38px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 6px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: #97a6b8;
  letter-spacing: .02em;
  /* filter: grayscale(1); */
  opacity: 1;
  transition: filter .3s, opacity .3s, color .3s;
  white-space: nowrap;
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  color: var(--navy);
}

.client-logo svg {
  width: 26px;
  height: 26px;
}

/* ============================================================
   VIDEO TESTIMONIALS
   ============================================================ */
.vtesti {
  background: var(--off-white);
}

.vtesti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
}

.vtesti-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}

.vtesti-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.vt-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-800);
}

.vt-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.vt-badge .d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.vt-badge.red {
  background: var(--red);
}

.vt-badge.navy {
  background: var(--navy-ink);
  color: #cfe0f7;
}

.vt-badge.green {
  background: #178b52;
}

.vt-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 5;
  pointer-events: none;
}

.vt-play .pb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(8, 18, 33, .3);
  transition: transform .3s, background .3s;
}

.vt-thumb:hover .vt-play .pb {
  transform: scale(1.09);
  background: #fff;
}

.vt-play .pb svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
  margin-left: 3px;
}

.vt-dur {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 4;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(8, 18, 33, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-head);
}

.vt-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vt-role {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.vt-quote {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 12px;
  text-wrap: pretty;
}

.vt-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.vt-author .ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.vt-author b {
  font-family: var(--font-head);
  font-size: 14.5px;
  display: block;
  color: var(--ink);
}

.vt-author span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   BLOGS SECTION
   ============================================================ */
.blog .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: none;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.blog-thumb {
  position: relative;
}

.blog-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/0.5;
}

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(4px);
  display: none;
}

.blog-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.blog-date svg {
  width: 15px;
  height: 15px;
  color: var(--navy-500);
}

.blog-card h3 {
  font-size: 19px;
  margin-top: 14px;
  line-height: 1.25;
  margin-bottom: 0;
}

.blog-card h3 a {
  text-decoration: none;
  color: inherit;
}

.blog-card h3 a:hover {
  color: var(--navy);
}

.blog-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */
.precta {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.precta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 12% -5%, rgba(47, 93, 168, .35), transparent 58%),
    radial-gradient(700px 500px at 100% 110%, rgba(27, 59, 111, .45), transparent 62%);
}

.precta::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 30% 30%, #000, transparent 75%);
}

.precta .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-block: clamp(48px, 6vw, 80px);
  text-align: center;
  z-index: 1;
  flex-direction: column;
}

.precta h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  max-width: 620px;
  margin: 0 auto 14px;
  font-family: var(--font-head);
  font-weight: 700;
}

.precta p {
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  max-width: 880px;
  margin: 14px auto 14px;
}

.precta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.precta-actions .btn-light {
  color: var(--red);
}

.precta-actions .btn-light:hover {
  color: var(--red-dark);
}

/* ============================================================
   STICKY BOTTOM CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 95;
  display: flex;
  gap: 10px;
  padding: 9px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  transition: opacity .4s, transform .4s, visibility .4s;
}

.sticky-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sticky-cta .btn {
  box-shadow: none;
  padding: 12px 22px;
}

.sticky-cta .btn-primary {
  box-shadow: 0 8px 20px rgba(214, 40, 40, .26);
}

.sticky-cta .btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   LEAD CAPTURE MODAL, DRAWER & VIDEO LIGHTBOX
   ============================================================ */
.lead-scrim {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 33, .62);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.lead-scrim.open {
  opacity: 1;
  visibility: visible;
}

.lead-modal {
  position: fixed;
  z-index: 310;
  top: 50%;
  left: 50%;
  width: min(660px, 94vw);
  max-height: 92vh;
  overflow-y: auto;
  transform: translate(-50%, -46%) scale(.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, transform .35s, visibility .35s;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--sh-lg);
}

.lead-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.lead-drawer {
  position: fixed;
  z-index: 310;
  top: 0;
  right: 0;
  height: 100%;
  width: min(470px, 94vw);
  overflow-y: auto;
  background: #fff;
  box-shadow: var(--sh-lg);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
}

.lead-drawer.open {
  transform: none;
}

.lead-head {
  padding: 30px 32px 0;
  position: relative;
}

.lead-eyebrow,
.c-inquiry-form-wrapper .lead-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
}

.lead-head h3,
.c-inquiry-form-wrapper h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--navy-ink);
  margin-top: 8px;
  margin-bottom: 0;
}

.lead-head>p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.lead-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--border);
  background: #fff;
  transition: all .2s;
}

.lead-close:hover {
  color: var(--red);
  border-color: var(--border-strong);
  background: var(--red-tint);
}

.lead-close svg {
  width: 20px;
  height: 20px;
}

.lead-body {
  padding: 24px 32px 32px;
}

.lead-form .form-grid {
  margin-top: 0;
}

.lead-cart-list {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
}

.lcl-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--navy-ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lcl-label svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.lcl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.lcl-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.lcl-chip button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--light-gray);
  font-size: 13px;
  line-height: 1;
  transition: background .2s, color .2s;
  border: none;
}

.lcl-chip button:hover {
  background: var(--red);
  color: #fff;
}

.lead-form .form-foot {
  margin-top: 22px;
}

.lead-form .btn-primary {
  width: 100%;
}

.lead-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
  justify-content: center;
}

.lead-trust svg {
  width: 15px;
  height: 15px;
  color: var(--navy-500);
}

/* Video lightbox */
.vlb-scrim {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 22, .86);
  backdrop-filter: blur(6px);
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.vlb-scrim.open {
  opacity: 1;
  visibility: visible;
}

.vlb-box {
  width: min(960px, 96vw);
  transform: scale(.96);
  transition: transform .35s;
}

.vlb-scrim.open .vlb-box {
  transform: none;
}

.vlb-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #05080f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  display: grid;
  place-items: center;
}

.vlb-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vlb-ph {
  text-align: center;
  color: #9fb1c8;
  padding: 24px;
}

.vlb-ph .pbig {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid;
  place-items: center;
}

.vlb-ph .pbig svg {
  width: 32px;
  height: 32px;
  color: #fff;
  margin-left: 4px;
}

.vlb-ph code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  color: #cfe0f7;
  background: rgba(255, 255, 255, .06);
  padding: 5px 10px;
  border-radius: 7px;
  display: inline-block;
  margin-top: 6px;
}

.vlb-cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  color: #fff;
  flex-wrap: wrap;
}

.vlb-cap b {
  font-family: var(--font-head);
  font-size: 17px;
}

.vlb-cap span {
  color: var(--on-dark-muted);
  font-size: 13.5px;
}

.vlb-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  transition: background .2s;
  flex-shrink: 0;
  cursor: pointer;
}

.vlb-close:hover {
  background: rgba(255, 255, 255, .24);
}

.vlb-close svg {
  width: 22px;
  height: 22px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .solind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vtesti-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .award-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {

  .solind-grid,
  .vtesti-grid,
  .award-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(110%);
    border-radius: 18px 18px 0 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-bottom: 0;
    justify-content: stretch;
  }

  .sticky-cta.show {
    transform: translateY(0);
  }

  .sticky-cta .btn {
    flex: 1;
    padding: 13px 14px;
  }

  .wa-float {
    bottom: 88px;
  }

  .to-top {
    bottom: 88px;
  }

  .lead-head,
  .lead-body {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* ============================================================
   FORM FIELDS & VALIDATION STYLING
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.field label .req {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 15px;
  background-color: var(--off-white);
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
  /* min-height: 110px; */
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235d6c80' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(27, 59, 111, .1);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--red);
  background-color: var(--red-tint);
}

.field .err-msg {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  display: none;
}

.field.error .err-msg {
  display: block;
}

.field.valid input,
.field.valid select {
  border-color: #46d17f;
}

.form-foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--navy-500);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.show {
  display: block;
}

.form-success .ok-ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e9f9ef;
  color: #1ca85a;
  display: grid;
  place-items: center;
}

.form-success .ok-ico svg {
  width: 38px;
  height: 38px;
}

.form-success h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
  margin-top: 10px;
}

/* ============================================================
   WHATSAPP FLOAT & SCROLL TO TOP UTILITIES
   ============================================================ */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
  transition: transform .25s;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  border: none;
  cursor: pointer;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--red);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   ANALAB — Product Detail Page
   Builds on styles.css tokens (navy / white / minimal red).
   ============================================================ */

/* ---------- Page sub-header / breadcrumb ---------- */
.pd-subhead {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pd-subhead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 380px at 8% -20%, rgba(47, 93, 168, .4), transparent 60%);
}

.pd-subhead .wrap {
  position: relative;
  padding-block: clamp(22px, 3vw, 34px);
}

.pd-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--on-dark-muted);
}

.pd-crumb a {
  color: var(--on-dark-muted);
  transition: color .2s;
}

.pd-crumb a:hover {
  color: #fff;
}

.pd-crumb svg {
  width: 15px;
  height: 15px;
  opacity: .55;
}

.pd-crumb .cur {
  color: #fff;
  font-weight: 600;
}

.pd-subhead h1 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 42px);
  margin-top: 14px;
  letter-spacing: -.025em;
  max-width: 900px;
  text-wrap: balance;
}

.pd-subhead .sub-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pd-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  color: #dbe6f5;
}

.pd-pill svg {
  width: 14px;
  height: 14px;
  color: #8fb4ec;
}

.pd-pill b {
  color: #fff;
  font-weight: 700;
}

.pd-pill.ok svg {
  color: #46d17f;
}

/* ============================================================
   HERO  (gallery + buy column)
   ============================================================ */
.pd-hero {
  padding-block: clamp(40px, 4vw, 40px);
}

.pd-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* ----- Gallery ----- */
.pd-gallery {
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.pd-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: zoom-in;
  box-shadow: var(--sh-sm);
}

.pd-stage .pd-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  transform-origin: center center;
}

.pd-stage .pd-slide.active {
  opacity: 1;
  visibility: visible;
}

.pd-stage image-slot {
  width: 100%;
  height: 100%;
}

.pd-stage .pd-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: opacity .25s;
}

.pd-zoom-hint>svg {
  height: 20px;
  width: 20px;
}

.pd-stage:hover .pd-zoom-hint {
  opacity: 0;
}

.pd-stage .pd-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.pd-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  background: var(--surface);
  transition: border-color .2s, transform .2s;
}

.pd-thumb image-slot {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pd-thumb.active {
  border-color: var(--navy);
}

.pd-thumb:hover {
  transform: translateY(-2px);
}

.pd-thumb .thumb-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.pd-thumb.active .thumb-hit {
  display: none;
}

/* ----- Buy column ----- */
.pd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-500);
}

.pd-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.pd-info h2 {
  font-size: clamp(24px, 2.4vw, 28px);
  margin-top: 14px;
  letter-spacing: -.02em;
  line-height: 1.12;
  font-family: var(--font-head);
  font-weight: 700;
  word-break: break-word;
}

.pd-rate {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pd-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5a623;
}

.pd-stars svg {
  width: 17px;
  height: 17px;
}

.pd-rate .rv {
  font-size: 13.5px;
  color: var(--muted);
}

.pd-rate .rv b {
  color: var(--ink);
  font-family: var(--font-head);
}

.pd-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 24px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.pd-meta-grid .cell {
  background: #fff;
  padding: 14px 18px;
}

.pd-meta-grid .cell span {
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  font-family: var(--font-head);
}

.pd-meta-grid .cell b {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: .01em;
}

.pd-summary {
  color: var(--muted);
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.6;
}

.pd-summary h2 {
  font-size: clamp(16px, 2vw, 20px);
  margin-top: 14px;
  letter-spacing: -.02em;
  line-height: 1.12;
  font-family: var(--font-head);
  font-weight: 700;
}

.pd-avail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #e9f9ef;
  color: #157a43;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
}

.pd-avail .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1ca85a;
  box-shadow: 0 0 0 4px rgba(28, 168, 90, .18);
}

/* CTAs */
.pd-cta-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.pd-cta-row .btn {
  width: 100%;
}

.pd-pdf-row {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.pd-pdf-row .btn {
  flex: 1;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pd-cta-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.pd-cta-sub .btn {
  flex: 1;
  min-width: 150px;
}

.btn-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.btn-qty button {
  width: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: background .2s;
}

.btn-qty button:hover {
  background: var(--blue-tint);
}

.btn-qty button svg {
  width: 16px;
  height: 16px;
}

.btn-qty input {
  width: 44px;
  text-align: center;
  border: 0;
  border-inline: 1.5px solid var(--border);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  background: #fff;
  -moz-appearance: textfield;
}

.btn-qty input::-webkit-outer-spin-button,
.btn-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pd-add-wrap {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 26px;
}

.pd-add-wrap .btn {
  flex: 1;
}

/* Micro trust row */
.pd-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pd-trust-row .t {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pd-trust-row .t .ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pd-trust-row .t .ic svg {
  width: 19px;
  height: 19px;
}

.pd-trust-row .t b {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  line-height: 1.15;
}

.pd-trust-row .t span {
  font-size: 11.5px;
  color: var(--muted);
}

.pd-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.pd-share span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.pd-share .ss {
  display: flex;
  gap: 8px;
}

.pd-share a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all .2s;
}

.pd-share a:hover {
  color: var(--navy);
  border-color: var(--border-strong);
  background: var(--blue-tint);
  transform: translateY(-2px);
}

.pd-share a svg {
  width: 17px;
  height: 17px;
}

/* ============================================================
   STICKY PURCHASE BAR
   ============================================================ */
.purchase-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 96;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transform: translateY(-110%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.purchase-bar.show {
  transform: none;
}

.purchase-bar .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 11px;
}

.purchase-bar .pb-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--surface);
}

.purchase-bar .pb-thumb image-slot {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.purchase-bar .pb-info {
  min-width: 0;
  flex: 1;
}

.purchase-bar .pb-info b {
  font-family: var(--font-head);
  font-size: 15.5px;
  display: block;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-bar .pb-info span {
  font-size: 12.5px;
  color: var(--muted);
}

.purchase-bar .pb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.purchase-bar .pb-actions .btn {
  padding: 12px 22px;
}

.purchase-bar .pb-actions .btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   KEY HIGHLIGHTS
   ============================================================ */
.pd-highlights {
  background: var(--off-white);
  border-block: 1px solid var(--border);
}

.pd-highlights .wrap {
  padding-block: clamp(48px, 6vw, 84px);
}

.hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.hl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.hl-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.hl-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: background .3s, color .3s;
}

.hl-card:hover .hl-ico {
  background: var(--navy);
  color: #fff;
}

.hl-ico svg {
  width: 25px;
  height: 25px;
}

.hl-card h3 {
  font-size: 16.5px;
  margin-top: 18px;
}

.hl-card p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 7px;
  line-height: 1.5;
}

/* ============================================================
   TABS
   ============================================================ */
.pd-tabs-section .wrap {
  padding-block: clamp(48px, 6vw, 90px);
}

.pd-tabnav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  background: #fff;
  z-index: 40;
  overflow-x: auto;
  scrollbar-width: none;
}

.pd-tabnav::-webkit-scrollbar {
  display: none;
}

.pd-tab {
  position: relative;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s;
  flex-shrink: 0;
}

.pd-tab::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s;
}

.pd-tab:hover {
  color: var(--navy);
}

.pd-tab.active {
  color: var(--navy);
}

.pd-tab.active::after {
  transform: scaleX(1);
}

.pd-tab .cnt {
  font-size: 11px;
  color: var(--muted-2);
  margin-left: 6px;
  font-weight: 700;
}

.pd-panel {
  display: none;
  padding-top: 40px;
  animation: pdFade .3s ease;
}

.pd-panel.active {
  display: block;
}

@keyframes pdFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- Overview panel ---- */
.ov-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 4vw, 60px);
}

.ov-body h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.ov-body h3:not(:first-child) {
  margin-top: 32px;
}

.ov-body p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.ov-benefits {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.ov-benefits li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.ov-benefits .ck {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ov-benefits .ck svg {
  width: 15px;
  height: 15px;
}

.ov-benefits b {
  font-family: var(--font-head);
  font-size: 15.5px;
}

.ov-benefits span {
  color: var(--muted);
  font-size: 13.5px;
  display: block;
}

.ov-aside {
  position: sticky;
  top: calc(var(--header-h) + 80px);
}

.ov-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
}

.ov-box h4 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.ov-box h4 svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.ov-supplied {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ov-supplied li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.ov-supplied li svg {
  width: 16px;
  height: 16px;
  color: var(--navy-500);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- Specs panel ---- */
.spec-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.spec-search {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 1;
  min-width: 240px;
  max-width: 420px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 11px 16px;
  background: var(--off-white);
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.spec-search:focus-within {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 59, 111, .1);
}

.spec-search svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
  flex-shrink: 0;
}

.spec-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: none;
  font-size: 15px;
}

.spec-toolbar .spec-expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.spec-toolbar .spec-expand svg {
  width: 17px;
  height: 17px;
}

.spec-group {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}

.spec-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 17px 22px;
  background: var(--off-white);
  cursor: pointer;
  transition: background .2s;
  text-align: left;
}

.spec-group-head:hover {
  background: var(--blue-tint);
}

.spec-group-head .gh-left {
  display: flex;
  align-items: center;
  gap: 13px;
}

.spec-group-head .gh-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.spec-group-head .gh-ico svg {
  width: 19px;
  height: 19px;
}

.spec-group-head h4 {
  font-size: 16.5px;
  margin-bottom: 0;
}

.spec-group-head .gh-chev {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform .3s;
  flex-shrink: 0;
}

.spec-group.open .gh-chev {
  transform: rotate(180deg);
}

.spec-rows {
  display: none;
}

.spec-group.open .spec-rows {
  display: block;
}

.spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 15px 22px;
  border-top: 1px solid var(--border);
}

.spec-row dd {
  margin: 0;
}

.spec-row:nth-child(odd) {
  background: #fcfdfe;
}

.spec-row dt {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.spec-row dd {
  font-size: 14.5px;
  color: var(--bs-black);
  line-height: 1.55;
}

.spec-row dd ul {
  display: grid;
  gap: 5px;
}

.spec-row dd li {
  padding-left: 16px;
  position: relative;
}

.spec-row dd li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-500);
}

.spec-row dd .note {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 13px;
}

.spec-row mark {
  background: #fff2b8;
  color: inherit;
  border-radius: 3px;
  padding: 0 1px;
}

.spec-noresults {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--muted);
}

.spec-noresults.show {
  display: block;
}

/* ---- Applications panel ---- */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.app-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  background: #fff;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.app-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(214, 40, 40, .25);
}

.app-ico svg {
  width: 26px;
  height: 26px;
}

.app-card h4 {
  font-size: 18px;
  margin-top: 18px;
}

.app-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.55;
}

/* ---- Downloads panel ---- */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.dl-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--border-strong);
}

.dl-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--red-tint);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dl-ico svg {
  width: 25px;
  height: 25px;
}

.dl-card .dl-meta {
  flex: 1;
  min-width: 0;
}

.dl-card b {
  font-family: var(--font-head);
  font-size: 15.5px;
  display: block;
}

.dl-card span {
  font-size: 12.5px;
  color: var(--muted);
}

.dl-card .dl-arrow {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: all .2s;
}

.dl-card:hover .dl-arrow {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.dl-card .dl-arrow svg {
  width: 18px;
  height: 18px;
}

/* ---- FAQ panel ---- */
.faq-list {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  transition: color .2s;
}

.faq-q:hover {
  color: var(--navy);
}

.faq-q .fq-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .3s;
}

.faq-q .fq-ico svg {
  width: 17px;
  height: 17px;
  transition: transform .3s;
}

.faq-item.open .fq-ico {
  background: var(--navy);
  color: #fff;
}

.faq-item.open .fq-ico svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  color: var(--muted);
  padding: 0 4px 24px;
  line-height: 1.7;
  max-width: 720px;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.pd-compare {
  background: var(--off-white);
  border-block: 1px solid var(--border);
}

.pd-compare .wrap {
  padding-block: clamp(48px, 6vw, 84px);
}

.cmp-scroll {
  margin-top: 44px;
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--sh-sm);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.cmp-table th,
.cmp-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.cmp-table thead th {
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  position: relative;
}

.cmp-table thead th:first-child {
  border-top-left-radius: 0;
}

.cmp-table tbody tr.is-this {
  background: var(--blue-tint);
}

.cmp-table tbody tr:hover {
  background: var(--off-white);
}

.cmp-table tbody tr.is-this:hover {
  background: var(--blue-tint-2);
}

.cmp-model {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cmp-model b {
  font-family: var(--font-head);
  font-size: 15.5px;
  color: var(--ink);
}

.cmp-model .badge-this {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cmp-model .badge-this svg {
  width: 11px;
  height: 11px;
}

.cmp-table .yes {
  color: #1ca85a;
}

.cmp-table .yes svg {
  width: 19px;
  height: 19px;
}

.cmp-table .no {
  color: var(--muted-2);
}

.cmp-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cmp-actions .btn {
  padding: 9px 16px;
  font-size: 13px;
}

/* ============================================================
   RELATED PRODUCTS
   ============================================================ */
.pd-related .wrap {
  padding-block: clamp(48px, 6vw, 84px);
}

.rel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.rel-nav {
  display: flex;
  gap: 10px;
}

.rel-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: all .25s;
}

.rel-nav button:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.rel-nav button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.rel-nav button:disabled:hover {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}

.rel-nav svg {
  width: 20px;
  height: 20px;
}

.rel-viewport {
  margin-top: 40px;
  overflow: hidden;
}

.rel-track {
  display: flex;
  gap: 22px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.rel-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.rel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.rel-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}

.rel-thumb image-slot {
  width: 100%;
  height: 100%;
}

.rel-thumb .rel-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.rel-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rel-body h3 {
  font-size: 17px;
  line-height: 1.25;
}

.rel-body .rel-model {
  font-size: 12.5px;
  color: var(--navy-500);
  font-weight: 600;
  font-family: var(--font-head);
  margin-top: 5px;
}

.rel-body p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
  flex: 1;
}

.rel-foot {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.rel-foot .btn {
  flex: 1;
  padding: 11px 14px;
  font-size: 13.5px;
}

/* ============================================================
   INQUIRY (navy)
   ============================================================ */
.pd-inquiry {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pd-inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 500px at 0% 0%, rgba(47, 93, 168, .3), transparent 55%);
}

.pd-inquiry .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding-block: clamp(56px, 7vw, 100px);
}

.pd-inquiry .eyebrow {
  color: #8fb4ec;
}

.pd-inquiry h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 700;
}

.pd-inquiry .lede {
  color: var(--on-dark-muted);
  margin-top: 18px;
  max-width: 440px;
}

.inq-points {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.inq-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.inq-points .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 93, 168, .25);
  color: #cfe0f7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.inq-points .ic svg {
  width: 22px;
  height: 22px;
}

.inq-points b {
  font-family: var(--font-head);
  font-size: 15.5px;
  display: block;
}

.inq-points span {
  font-size: 13.5px;
  color: var(--on-dark-muted);
}

.inq-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 42px);
  box-shadow: var(--sh-lg);
  color: var(--ink);
}

.inq-card h3 {
  font-size: 23px;
}

.inq-card>p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 6px;
}

/* ============================================================
   WHY CHOOSE ANALAB
   ============================================================ */
.pd-why .wrap {
  padding-block: clamp(48px, 6vw, 90px);
}

.why6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.why6-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}

.why6-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.why6-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.why6-ico svg {
  width: 26px;
  height: 26px;
}

.why6-card h4 {
  font-size: 17px;
}

.why6-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 7px;
  line-height: 1.55;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.pd-ctabanner {
  background: var(--red);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pd-ctabanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 90% 120%, rgba(0, 0, 0, .25), transparent 60%);
}

.pd-ctabanner .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-block: clamp(48px, 6vw, 80px);
}

.pd-ctabanner .cta-copy {
  max-width: 560px;
}

.pd-ctabanner h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 42px);
  font-family: var(--font-head);
  font-weight: 700;
}

.pd-ctabanner p {
  color: rgba(255, 255, 255, .88);
  margin-top: 14px;
  font-size: 17px;
}

.pd-ctabanner .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pd-ctabanner .btn-light {
  color: var(--red);
}

.pd-ctabanner .btn-light:hover {
  color: var(--red-dark);
}

/* ============================================================
   TOAST
   ============================================================ */
.pd-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 320;
  transform: translateX(-50%) translateY(30px);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  border-radius: 14px;
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
  max-width: 92vw;
}

.pd-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.pd-toast .tk {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1ca85a;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pd-toast .tk svg {
  width: 19px;
  height: 19px;
  color: #fff;
}

.pd-toast b {
  font-family: var(--font-head);
  font-size: 14.5px;
  display: block;
}

.pd-toast span {
  font-size: 12.5px;
  color: var(--on-dark-muted);
}

.pd-toast .tclose {
  margin-left: 8px;
  color: var(--on-dark-muted);
}

.pd-toast .tclose svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   IMAGE LIGHTBOX
   ============================================================ */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 330;
  background: rgba(6, 12, 22, .9);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 4vh 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.pd-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.pd-lightbox .lb-stage {
  width: min(900px, 92vw);
  aspect-ratio: 4 / 3;
  background: #05080f;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  transform: scale(.96);
  transition: transform .35s;
}

.pd-lightbox.open .lb-stage {
  transform: none;
}

.pd-lightbox .lb-stage image-slot {
  width: 100%;
  height: 100%;
}

.pd-lightbox .lb-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  transition: background .2s;
}

.pd-lightbox .lb-close:hover {
  background: rgba(255, 255, 255, .24);
}

.pd-lightbox .lb-close svg {
  width: 22px;
  height: 22px;
}

.pd-lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  transition: background .2s;
}

.pd-lightbox .lb-nav:hover {
  background: rgba(255, 255, 255, .24);
}

.pd-lightbox .lb-nav svg {
  width: 24px;
  height: 24px;
}

.pd-lightbox .lb-prev {
  left: 3vw;
}

.pd-lightbox .lb-next {
  right: 3vw;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pd-hero .wrap {
    grid-template-columns: 1fr;
  }

  .pd-gallery {
    position: static;
    max-width: 620px;
  }

  .hl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ov-grid {
    grid-template-columns: 1fr;
  }

  .ov-aside {
    position: static;
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why6-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-inquiry .wrap {
    grid-template-columns: 1fr;
  }

  .rel-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 720px) {
  .pd-cta-row {
    grid-template-columns: 1fr;
  }

  .pd-pdf-row {
    flex-direction: column;
  }

  .hl-grid,
  .app-grid,
  .dl-grid,
  .why6-grid {
    grid-template-columns: 1fr;
  }

  .pd-meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-trust-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spec-row dt {
    color: var(--navy);
  }

  .rel-card {
    flex-basis: calc((100% - 22px) / 1.15);
  }

  .purchase-bar .pb-actions .btn span.lbl {
    display: none;
  }

  .purchase-bar .pb-actions .btn {
    padding: 12px 16px;
  }

  .pd-share {
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .purchase-bar {
    top: auto;
    bottom: 0;
    border-bottom: 0;
    border-top: 1px solid var(--border);
    transform: translateY(110%);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ============================================================
   ANALAB — Bento hero banner (slider-style)
   Uses tokens from styles.css (navy + red, Sora / Manrope)
   Class prefix: hb-
   ============================================================ */

.hb {
  position: relative;
  background:
    radial-gradient(900px 520px at 12% -10%, var(--blue-tint), transparent 60%),
    var(--off-white);
  padding-block: clamp(12px, 2vh, 20px);
  overflow: hidden;
}

/* Full-bleed: hero spans the full viewport width */
.hb>.wrap {
  max-width: none;
  padding-inline: clamp(16px, 2.6vw, 40px);
}

.hb-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.62fr 1.06fr;
  gap: 18px;
  align-items: stretch;
  min-height: clamp(570px, 55vh, 670px);
}

.hb-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  height: 100%;
}

/* ---------- Shared card ---------- */
.hb-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-md);
  min-height: 0;
}

/* ---------- Image cards ---------- */
.hb-imgcard {
  flex: 1;
}

.hb-imgcard image-slot {
  width: 100%;
  height: 100%;
  display: block;
}

.hb-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hb-card:hover img {
  transform: scale(1.06);
}

.hb-imgcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 26, 48, .42));
  pointer-events: none;
  z-index: 1;
}

.hb-left .hb-imgcard {
  flex: 1.32;
}

.hb-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .01em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(15, 34, 56, .16);
}

/* ---------- Soft (R&D) card ---------- */
.hb-soft {
  flex: 1;
  background:
    radial-gradient(120% 90% at 100% 0%, var(--blue-tint-2), transparent 60%),
    var(--light-gray);
}

.hb-soft .hb-label {
  background: #fff;
}

/* ============================================================
   CENTER SLIDER CARD
   ============================================================ */
.hb-slider {
  background:
    radial-gradient(620px 460px at 88% 8%, rgba(47, 93, 168, .40), transparent 62%),
    radial-gradient(540px 420px at 6% 104%, rgba(214, 40, 40, .18), transparent 60%),
    var(--navy-900);
  color: #fff;
  box-shadow: var(--sh-lg);
  display: flex;
}

.hb-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 78% 18%, #000, transparent 72%);
  z-index: 1;
}

.hb-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  padding: clamp(20px, 3vw, 40px);
}

.hb-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 620px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
  position: relative;
  overflow: hidden;
}

.hb-slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* Slider Revolution-style staggered entrance.
   Base state is visible; the hidden→shown entrance only applies once the
   hero is "played" (document visible), so a background-tab load never
   leaves text stuck invisible. */
.hb-an {
  transition: opacity .72s cubic-bezier(.2, .7, .3, 1), transform .72s cubic-bezier(.2, .7, .3, 1);
}

.hb-play .hb-slide .hb-an {
  opacity: 0;
  transform: translateY(28px);
}

.hb-play .hb-slide.is-active .hb-an {
  opacity: 1;
  transform: none;
  transition-delay: var(--d, 0s);
}

.hb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(214, 40, 40, .34);
}

.hb-eyebrow {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #9db8e0;
}

.hb-title {
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: .96;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hb-title .red {
  color: #ff5a5a;
  display: block;
}

.hb-sub {
  margin-top: 14px;
  max-width: 440px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--on-dark);
  line-height: 1.5;
}

.hb-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hb-btn-dark {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .22);
}

.hb-btn-dark:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px);
}

/* ---- Controls ---- */
.hb-controls {
  position: absolute;
  z-index: 3;
  left: clamp(30px, 4vw, 56px);
  right: clamp(30px, 4vw, 56px);
  bottom: clamp(24px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hb-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hb-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28) !important;
  transition: width .35s cubic-bezier(.2, .7, .3, 1), background .35s;
  border: none !important;
  cursor: pointer;
  padding: 0 !important;
  box-shadow: none !important;
}

.hb-dot.is-active {
  width: 30px;
  background: var(--red) !important;
}

.hb-arrows {
  display: flex;
  gap: 10px;
}

.hb-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .24) !important;
  background: rgba(255, 255, 255, .05) !important;
  transition: background .22s, border-color .22s, transform .22s;
  cursor: pointer;
  padding: 0 !important;
  box-shadow: none !important;
}

.hb-arrow svg {
  width: 19px;
  height: 19px;
}

.hb-arrow:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
  transform: translateY(-2px);
}

/* ============================================================
   RIGHT COLUMN — testimonial + image + brochure tab
   ============================================================ */
.hb-testi {
  flex: 1;
  background:
    radial-gradient(120% 100% at 100% 0%, #fff, transparent 55%),
    var(--red-tint);
  border: 1px solid #f3d9d9;
  padding: clamp(20px, 2vw, 26px);
  display: flex;
  flex-direction: column;
}

.hb-testi h4 {
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hb-testi h4 .q {
  color: var(--red);
}

.hb-testi h4 .q svg {
  width: 20px;
  height: 20px;
}

.hb-quote {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  font-style: italic;
}

.hb-testi-author {
  margin-top: auto;
  padding-top: 16px;
}

.hb-testi-author b {
  display: block;
  font-family: var(--font-head);
  font-size: 14.5px;
  color: var(--navy);
}

.hb-testi-author span {
  font-size: 12.5px;
  color: var(--muted);
}

.hb-right {
  position: relative;
}

.hb-right .hb-imgcard {
  flex: 1;
}

/* ============================================================
   LOAD-IN ENTRANCE (cards rise on first paint)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .hb.hb-play .hb-anim {
    animation: hbRise .8s cubic-bezier(.2, .7, .3, 1) both;
    animation-delay: calc(var(--i, 0) * .09s);
  }

  @keyframes hbRise {
    from {
      opacity: 0;
      transform: translateY(30px) scale(.985);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Side cards slide in together with each center slide change */
  .hb-sync.hb-from-left.hb-slidein {
    animation: hbInLeft .7s cubic-bezier(.2, .7, .3, 1) both;
    animation-delay: var(--sd, 0s);
  }

  .hb-sync.hb-from-right.hb-slidein {
    animation: hbInRight .7s cubic-bezier(.2, .7, .3, 1) both;
    animation-delay: var(--sd, 0s);
  }

  @keyframes hbInLeft {
    from {
      opacity: 0;
      transform: translateX(-34px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes hbInRight {
    from {
      opacity: 0;
      transform: translateX(34px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* Reduced motion: everything visible immediately */
@media (prefers-reduced-motion: reduce) {
  .hb-slide {
    transition: none;
  }

  .hb-an {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Custom slider styles for dynamic bento slide elements */
.hb-left-slide,
.hb-right-slide {
  display: none;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  width: 100%;
  height: 100%;
}

.hb-left-slide.is-active,
.hb-right-slide.is-active {
  display: flex;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hb-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    min-height: 0;
  }

  .hb-slider {
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .hb-left {
    order: 2;
  }

  .hb-right {
    order: 3;
  }
}

@media (max-width: 640px) {
  .hb-grid {
    grid-template-columns: 1fr;
  }

  .hb-left,
  .hb-right {
    flex-direction: row;
  }

  .hb-left .hb-card,
  .hb-right .hb-card {
    flex: 1;
    min-height: 200px;
  }

  .hb-slider {
    min-height: 420px;
  }

  .hb-stage {
    padding: 26px;
  }

  .hb-controls {
    left: 26px;
    right: 26px;
  }

  .hb-left-slide,
  .hb-right-slide {
    flex-direction: row;
  }
}

@media (max-width: 460px) {

  .hb-left,
  .hb-right {
    flex-direction: column;
  }

  .hb-left-slide,
  .hb-right-slide {
    flex-direction: column;
  }
}

/* ============================================================
   MESSAGE FROM CEO SECTION
   ============================================================ */
.ceo-message-section {
  padding-block: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}

.ceo-message-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--blue-tint) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

.ceo-image-container {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.ceo-image-border {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--blue-tint-2);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.ceo-image-container:hover .ceo-image-border {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--navy-500);
}

.ceo-image {
  position: relative;
  z-index: 2;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--white);
  transition: transform 0.5s ease;
}

.ceo-image-container:hover .ceo-image {
  transform: translateY(-5px);
}

.ceo-experience-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--white);
  box-shadow: var(--sh-md);
  padding: 16px 24px;
  border-radius: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

.ceo-image-container:hover .ceo-experience-card {
  transform: translateY(-8px) scale(1.02);
}

.ceo-exp-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.2;
}

.ceo-exp-subtitle {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}

.ceo-quote-mark {
  display: flex;
  align-items: center;
}

.ceo-quote-mark svg {
  color: var(--navy-500);
}

.ceo-lead-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
  position: relative;
}

.ceo-body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  opacity: 0.9;
}

.ceo-signature {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.ceo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
}

.ceo-designation {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE STYLES FOR CEO SECTION
   ============================================================ */
@media (max-width: 991px) {
  .ceo-image-container {
    max-width: 380px;
    margin-bottom: 40px;
  }

  .ceo-experience-card {
    left: 16px;
    right: auto;
    bottom: -16px;
  }

  .ceo-text-wrap {
    margin-top: 20px;
  }

  .ceo-lead-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .ceo-experience-card {
    position: relative;
    left: 0;
    right: auto;
    bottom: 0;
    margin-top: 16px;
    align-self: flex-start;
  }

  .ceo-lead-text {
    font-size: 17px;
  }

  .ceo-body-text {
    font-size: 15px;
  }
}

/* ============================================================
   CHILD CATEGORY PAGE OVERRIDES & IMPROVEMENTS
   ============================================================ */

/* Disable overlay for subcategory boxes */
.products-subcategory-wrap-box::before {
  display: none !important;
}

.products-subcategory-wrap-box .hover-detail {
  display: none !important;
}

/* Subcategory Card Wrapper (now the single anchor tag) */
.products-subcategory-card-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.12);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding-bottom: 24px;
}

.products-subcategory-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 32px 0px rgba(149, 157, 165, 0.22);
  border-color: var(--border-strong);
}

/* Reset image wrapper styles since the card handles the border and shadow */
.products-subcategory-card-item .products-subcategory-wrap-box {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
}

.products-subcategory-card-item .products-subcategory-wrap-box img {
  transition: transform 0.4s ease;
}

.products-subcategory-card-item:hover .products-subcategory-wrap-box img {
  transform: scale(1.03);
}

/* Info section below image card */
.products-subcategory-info {
  padding: 10px 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.subcategory-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-top: 10px;
  margin-bottom: 15px;
  min-height: 52px;
  /* ensure aligned buttons across rows */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.products-subcategory-card-item:hover .subcategory-name {
  color: #D12026;
  /* Brand red on hover */
}

/* Premium view details button styling */
.products-subcategory-card-item .theme-btn {
  padding: 10px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
  background-color: #D12026;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(209, 32, 38, 0.2);
  display: inline-block;
}

.products-subcategory-card-item:hover .theme-btn {
  background-color: var(--navy);
  box-shadow: 0 4px 12px rgba(27, 59, 111, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive adjustments for subcategory page */
@media (max-width: 991px) {
  .subcategory-name {
    font-size: 18px;
    min-height: 48px;
  }
}

@media (max-width: 575px) {
  .subcategory-name {
    font-size: 17px;
    min-height: auto;
    margin-bottom: 10px;
  }
}

/* ============================================================
   PRODUCT PAGE OVERRIDES & IMPROVEMENTS
   ============================================================ */

/* Disable overlay for productslist wrap boxes */
.productslist-wrap-box::before {
  display: none !important;
}

.productslist-wrap-box .hover-text {
  display: none !important;
}

.productslist-wrap-box .products-name {
  display: none !important;
}

/* Product Card Wrapper (single anchor tag) */
.productslist-card-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.12);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding-bottom: 24px;
}

.productslist-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 32px 0px rgba(149, 157, 165, 0.22);
  border-color: var(--border-strong);
}

/* Reset image wrapper styles since the card handles the border and shadow */
.productslist-card-item .productslist-wrap-box {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
  padding: 24px 24px 0 24px;
}

.productslist-card-item .productslist-wrap-box img {
  transition: transform 0.4s ease;
}

.productslist-card-item:hover .productslist-wrap-box img {
  transform: scale(1.03);
}

/* Info section below image card */
.productslist-info {
  padding: 10px 15px 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.product-card-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  /* margin-top: 10px; */
  margin-bottom: 12px;
  /* ensure aligned layout across rows */
  transition: color 0.2s ease;
  text-align: center;
  word-break: break-word;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.productslist-card-item:hover .product-card-name {
  color: #D12026;
  /* Brand red on hover */
}

/* Specifications style */
.productslist-card-item .productslist-specification {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.productslist-card-item .productslist-specification ul {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.productslist-card-item .productslist-specification ul>li {
  display: inline-block;
  margin-right: 10px;
}

.productslist-card-item .productslist-specification ul li {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 5px;
  line-height: 1.4;
}

.productslist-card-item .productslist-specification ul li span {
  font-weight: 600;
  color: var(--navy);
}

/* Premium view details button styling */
.productslist-card-item .theme-btn {
  padding: 10px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
  background-color: #D12026;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(209, 32, 38, 0.2);
  display: inline-block;
  margin-top: auto;
  /* Push button to the bottom of the card */
}

.productslist-card-item:hover .theme-btn {
  background-color: var(--navy);
  box-shadow: 0 4px 12px rgba(27, 59, 111, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive adjustments for product list page */
@media (max-width: 991px) {
  .product-card-name {
    font-size: 18px;
    min-height: 48px;
  }
}

@media (max-width: 575px) {
  .product-card-name {
    font-size: 17px;
    min-height: auto;
    margin-bottom: 10px;
  }

  .productslist-card-item .productslist-specification {
    margin-bottom: 10px;
  }
}

/* ============================================================
   CART PAGE OVERRIDES & IMPROVEMENTS
   ============================================================ */
.about-products-wrap h2 a.hover-red {
  color: var(--navy-800);
  transition: color 0.2s ease;
  text-decoration: none;
}

.about-products-wrap h2 a.hover-red:hover {
  color: #D12026 !important;
}

/* Align cart details and elements */
.products-detail-items {
  align-items: center;
}

/* Cart quantity input box styling */
.cart-qty-input {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-qty-input:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 3px rgba(47, 93, 168, 0.15);
  outline: none;
}

/* ============================================================
   OUR OFFICES SECTION STYLING
   ============================================================ */
.our-offices-section {
  border-top: 1px solid var(--border);
  padding: 80px 0;
  background-color: var(--off-white) !important;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  height: 100%;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--border-strong);
}

.office-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  color: var(--navy-500);
  flex-shrink: 0;
}

.office-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.office-city {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

.office-address {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 991px) {
  .our-offices-section {
    padding: 55px 0;
  }
}

.dd-logo img {
  object-fit: contain;
  width: 18px;
  /* filter: grayscale(1) brightness(9); */
}