/* ════════════════════════════════════════════════════
   HOMEPAGE STYLES - EXTRACTED FROM page-homepage.php
   All CSS consolidated into single file
════════════════════════════════════════════════════ */

.vendor-grid-section {
  content-visibility: visible
}

.hero,
nav,
.vendor-spotlight-section,
.roi-banner,
.cta-section {
  content-visibility: visible !important;
  contain: none;
}

.showcase-card,
.cat-cell {
  contain: layout style
}

/* ── Hero category cell (Humanoid) ── */
.cat-cell--hero {
  grid-column: span 2;          /* takes 2 columns width */
  background: var(--ink);
  border-color: var(--ink) !important;
  position: relative;
  overflow: hidden;
}

.cat-cell--hero .cat-icon {
  font-size: 52px;              /* larger icon */
  margin-bottom: 10px;
}

.cat-cell--hero img.cat-chip-img {
  max-height: 110px;
}

.cat-cell--hero .cat-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--concrete);
}

.cat-cell--hero .cat-count {
  color: rgba(255,255,255,0.55);
}

.cat-cell--hero .cat-arrow {
  color: rgba(255,255,255,0.4);
}

.cat-cell--hero::before {
  content: "HERO CATEGORY";
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--red);
  position: absolute;
  top: 14px;
  right: 16px;
  font-weight: 600;
}

.cat-cell--hero:hover {
  background: var(--steel) !important;
}

@font-face {
  font-family: 'Montserrat-fallback';
  size-adjust: 100%;
  ascent-override: 85%;
  src: local('Arial Black')
}

:root {
  --ink: #1D1D1F;
  --steel: #2C2C2C;
  --slate: #555555;
  --ash: #888888;
  --cloud: #C8C8C8;
  --smoke: #E8E8E8;
  --concrete: #F8F8F8;  
  --concrete-light: #FDFDFD;
  --concrete-dark: #F5F5F7;
  --baby-blue: #E8EAF0;
  --baby-blue-border: #B8BCCC;
  --red: #E63946;
  --blue: #0071e3;;
  --green: #0D9488;
  --gold: #F59E0B;
  --display: 'Montserrat', sans-serif;
  --body: "Outfit","Outfit-fb",system-ui,sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --nav-h: 72px;
  --radius: 50px;
  --radius-lg: 12px;
  --radius-xl: 16px
  }

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--body);
  background:var(--concrete-dark);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash)
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: .5px;
  width: 0%;
  background: var(--red);
  z-index: 9999;
  will-change: width
}

/*NAV*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: auto;
  min-height: var(--nav-h);
  background:var(--concrete);
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease
}

nav.menu-open {
  background:var(--concrete-dark);
  box-shadow: none
}

.nav-inner {
  padding-left: clamp(20px, 5vw, 100px);
  padding-right: clamp(20px, 5vw, 100px);
  min-height: var(--nav-h);
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between
}

.logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: .5px;
  flex-shrink: 0
}

.logo-dot {
  color: var(--red)
}

.logo:hover{
transform: scale(1.1);  
}

/* Logo lottie wrapper */
.logo-lottie-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-lottie-wrap .logo {
  position: relative;
  z-index: 99;        
}

.logo-lottie-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 99;
  opacity: 0.5;
  filter: grayscale(1) brightness(1.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding-left : inherit
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -.5px;
  left: 0;
  right: 0;
  height: .5px;
  background:var(--concrete-dark);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left
}

.nav-links a:hover {
   color: var(--ink)
}

.nav-links a:hover::after {
  transform: scaleX(1);
  background: var(--red)
}

.nav-links a.active {
  color: var(--concrete);
  font-weight: 600
}

.nav-links a.active::after {
  transform: scaleX(1)
}

.new-tag{
  background: var(--cloud);
  font-size: 10px;
  padding-left: .5px;
  padding-right: .5px;
  font-weight: 600;
  color: var(--ink);
  border-radius: .5px;
  align-items: center;
  text-transform: uppercase;
  transition: background .2s;
}

.new-tag:hover{
background: var(--red);
color: var(--concrete);
transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 6); 
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.btn-sm {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.btn-outline {
  color: var(--ink);
  background:var(--concrete-dark);
  border: .5px solid var(--cloud)
}
.btn-outline:hover {
  color: var(--concrete);
  background: var(--red);
  border: .5px solid var(--red)
}
.btn-solid {
  color: var(--ink);
  background:var(--concrete-dark);
  border: .5px solid var(--cloud)
}
.btn-solid:hover {
  color: var(--concrete);
  background: var(--red);
  border: .5px solid var(--red)
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2010;
  flex-shrink: 0
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red);
  border-radius: .5px;
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.25s ease, width 0.3s ease
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* categories */

.cat-strip {
  position: static !important;
  padding-top: clamp(28px, 3.5vw, 52px);
  padding-bottom: clamp(12px, 2vw, 24px);
  top: var(--nav-h);
  z-index: 1500;
  background: var(--concrete);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip-inner {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-width: 100%;
  width: max-content;
  padding: 0 clamp(20px, 5vw, 80px);
  justify-content: center;
}

.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 18px 22px;
  text-decoration: none;
  color: var(--slate);
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}

.cat-chip-icon {
  width: clamp(36px 1vw 50px);
  height: clamp(36px 1vw 50px);
  flex-shrink: 0;
  transition: color 0.2s;
  transition: transform 0.2s ease-in-out;
}

.cat-chip-img {
  max-height: 78px;
  border-radius: 10%;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cat-chip-img:hover{ filter: brightness(1.05) ; transform: translateY(-3px) }

.cat-chip-icon-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26,5,162,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cat-chip-label {
 display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.cat-chip-label::first-letter {
  text-transform: uppercase;
}

.type-strip-wrap {
  position: relative;
}
.type-strip {
  position: static !important;
  padding-top: clamp(28px, 3.5vw, 52px);
  padding-bottom: clamp(12px, 2vw, 24px);
  top: var(--nav-h);
  z-index: 1500;
  background: var(--concrete);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.type-strip::-webkit-scrollbar { display: none; }
.type-strip-inner {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-width: 100%;
  width: max-content;
  padding: 0 clamp(20px, 5vw, 80px);
  justify-content: center;
}
.type-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 18px 22px;
  text-decoration: none;
  color: var(--slate);
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}

.type-chip .type-chip-img {
  max-height: 120px;  
}

.type-chip:hover, .type-chip.active {
.cat-chip-img:hover{ filter: brightness(1.05) ; transform: translateY(-3px) }
}

.type-chip .type-chip-label {
  font-size: 14px;
}
.type-chip-count {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ash);
  background: var(--concrete-dark);
  border-radius: 50px;
  padding: 1px 6px;
}
.type-chip:hover .type-chip-count, .type-chip.active .type-chip-count {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .cat-strip-inner { justify-content: flex-start; }
  .cat-chip { padding: 8px 14px 22px; }
}

/* hero section starts*/
.hero {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--concrete-dark);
  position: relative;
  overflow: hidden;
  min-height: calc(50vh - var(--nav-h))
}

.hero-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 1
}

/* ══════════════════════════════════════════
   DENSE MARKETPLACE HERO
══════════════════════════════════════════ */

.hero { min-height: auto !important; }
.hero-main {
  grid-template-columns: 1fr 1fr !important;
  text-align: left !important;
  padding-top: clamp(56px, 10vw, 196px) !important;
  padding-bottom: clamp(40px, 5vw, 72px) !important;
  padding-left: clamp(20px, 5vw, 100px) !important;
  padding-right: clamp(20px, 5vw, 100px) !important;
  align-items: center !important;
  gap: 48px !important;
}

.hero-content { display: contents; }
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding-left: 40px;
  border-left: .5px solid var(--smoke);
}
.hero h1 {
  font-size: clamp(28px, 3vw, 48px) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em;
}

.hero-ctas {
  display: flex !important;
  align-items: flex-end !important;
  gap: 60px !important;
  margin-top: 24px;
  justify-content: space-between;
}
.hero-link-cta {
font-family: var(--mono);
font-size: 13px;
font-weight: 600;
color: var(--blue);
text-decoration: none;
letter-spacing: 0.02em;
display: inline-flex;
align-items: center;
gap: 6px;
white-space: nowrap;
transition: color 0.15s;
flex-shrink: 0;
}
.hero-link-cta:hover { gap: 8px; }
.hero-link-cta::after { content: '↗'; font-size: 12px; }

@media (max-width: 768px) {
  .hero-main {
grid-template-columns: 1fr !important;
text-align: center !important;
padding-top: calc(var(--nav-h) +  28px) !important;
padding-left: clamp(20px, 5vw, 40px) !important;
padding-right: clamp(20px, 5vw, 40px) !important;
  }
  .hero-left { align-items: center; }
  .hero-right {
align-items: center;
text-align: center;
padding-left: 0;
border-left: none;

  }

  .hero-desc { text-align: center !important; }
  .hero-ctas { align-items: center !important; }
  .hero h1 { font-size: clamp(32px, 8vw, 52px) !important; }
}

/* ── Featured strip section ── */
.hero-feat-section {
  padding: clamp(20px, 3vw, 40px) 0 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* ── Featured header ── */
.hero-feat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 clamp(20px, 5vw, 100px);
}
.hero-feat-label {
  font-family: var(--body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.hero-feat-label::before { content: ''; width: 13px; height: .5px; background: var(--cloud); flex-shrink: 0; }

/* ── Grid ── */
.hero-feat-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 clamp(20px, 5vw, 100px) 28px;
  box-sizing: border-box;
}

.hfg-card {
  position: relative !important;
  background: var(--concrete);
  width: 260px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 12px !important;
  border: .5px solid var(--cloud) !important;
  text-decoration: none !important;
  outline: none !important;
  overflow: visible !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2 !important;
}
.hfg-card:hover {
  transform: translateY(-6px) !important;
  border: .5px solid var(--cloud) !important;
}
/* ── Card image ── */
.hfg-img {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
  background-color: var(--concrete);
  background-image:
linear-gradient(rgba(0,0,0,0.045) .5px, transparent .5px),
linear-gradient(90deg, rgba(0,0,0,0.045) .5px, transparent .5px);
  background-size: 20px 20px;
}
.hfg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(238,238,238,0.5) 100%);
  pointer-events: none;
}
.hfg-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

/* ── Card body ── */
.hfg-body {
  flex: 1;
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  align-items: center;
  position: relative;
  border-radius: 0 0 11px 11px;
  overflow: hidden;
  background: var(--concrete-light);
}
.hfg-cat { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.hfg-name { font-family: var(--display); font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.2; margin-top: .5px; }
.hfg-vendor { font-size: 10px; color: var(--ash); margin-top: .5px; }
.hfg-price {
  margin-top: auto; padding-top: 8px;
  display: flex; align-items: baseline;
  justify-content: center; gap: 6px; width: 100%;
}
.hfg-price-val { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--ink); }
.hfg-arrow { font-family: var(--mono); font-size: 9px; color: var(--cloud); transition: color 0.18s; }
.hfg-card:hover .hfg-arrow { color: var(--green); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-feat-grid {
justify-content: flex-start;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding-bottom: 8px;
scrollbar-width: none;
  }
  .hero-feat-grid::-webkit-scrollbar { display: none; }
  .hfg-card { width: 200px; scroll-snap-align: start; }
}

/* ─── INFO BAR (ticker + stats merged) ─────────────────── */
.info-bar {
  background: var(--ink);
  display: flex; align-items: stretch;
  overflow: hidden; height: 52px;
}
.info-stats {
  flex-shrink: 0; display: flex; align-items: stretch;
  border-right: .5px solid rgba(255,255,255,0.08);
}
.is-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 20px; border-right: .5px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.is-item:last-child { border-right: none; }
.is-num {
  font-family: var(--display); font-size: 15px; font-weight: 800;
  color: var(--concrete); letter-spacing: -0.03em;
}
.is-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.info-ticker { flex: 1; overflow: hidden; display: flex; align-items: center; min-width: 0; }
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap; align-items: center;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 32px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); white-space: nowrap; flex-shrink: 0;
}
.ticker-item strong { color: var(--concrete); font-weight: 600; }
.ticker-sep { color: var(--red); font-size: 7px; }

 /* ── NAV SEARCH (robots page) ── */
  .nav-search {
position: relative;
flex: 1;
max-width: 420px;
margin: 0 20px;
  }
  .nav-search .nsb-wrap {
display: flex;
align-items: center;
background: var(--concrete-dark);
border: .5px solid var(--cloud);
border-radius: 50px;
overflow: visible;
width: 100%;
transition: background 0.2s ease, border-color 0.2s ease-in-out
  }
  .nav-search .nsb-wrap:focus-within {
background: var(--concrete-light);
border-color: var(--ash);
  }
  .nav-search .nsb-input {
flex: 1;
padding: 9px 16px;
font-size: 13px;
font-family: var(--body);
font-weight: 400;
border: var(--cloud);
outline: none;
background: transparent;
color: var(--slate);
min-width: 0;
letter-spacing: -0.01em;
  }
  .nav-search .nsb-input::placeholder {
color: var(--slate);
font-size: 12px;
  }
  .nav-search .nsb-btn {
position: relative;
overflow: hidden;
width: 32px;
height: 32px;
margin: 3px;
border-radius: 50%;
background:var(--concrete-dark);
color: var(--ink);
border: var(--cloud);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: background 0.15s, transform 0.18s cubic-bezier(.34,1.56,.64,1);
user-select: none;
  }
  .nav-search .nsb-btn:hover { background: var(--red); color: var(--concrete); transform: rotate(45deg); }
  .nav-search .nsb-btn:active { transform: scale(0.88) rotate(45deg); }
  .nav-search .nsb-ripple {
position: absolute;
border-radius: 50%;
background: rgba(255,255,255,0.32);
width: 8px; height: 8px;
margin-top: -4px; margin-left: -4px;
transform: scale(0);
animation: nsb-ripple-anim 0.55s cubic-bezier(0,0,0.2,1) forwards;
pointer-events: none;
  }
  @keyframes nsb-ripple-anim { to { transform: scale(20); opacity: 0; } }

  @media (max-width: 768px) {
.nav-search {
  flex: 1;
  min-width: 0;
  max-width: none;
  margin: 0 8px;
}

.info-stats { display: none; }
.nav-search .nsb-wrap { width: 100%; }
.nav-search .nsb-input { font-size: 16px; padding: 8px 12px; }
  }

 .nav-search .nsb-autocomplete {
  position: absolute;
  top: calc(100% + 6px);
  min-width: unset;
  left: 0;
  right: 0;
  z-index: 2100;
  background:var(--concrete-dark);
}
  .nav-actions {
flex-shrink: 0;
  }
  .logo {
flex-shrink: 0;
  }

.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background:var(--concrete-dark);
  border: .5px solid var(--ink);
  border-radius: 16px;
  z-index: 500;
  overflow: hidden;
  max-height: 380px;
  overflow-y: auto
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
  color: inherit;
}

.autocomplete-item:last-child {
  border-bottom: none
}

.autocomplete-item:hover,
.autocomplete-item.focused {
  background:var(--concrete-dark)
}

.autocomplete-item-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  overflow: hidden
}

.autocomplete-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.autocomplete-item-info {
  flex: 1;
  min-width: 0
}

.autocomplete-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.autocomplete-item-name mark {
  background: transparent;
  color: var(--red);
  font-weight: 700
}

.autocomplete-item-meta {
  font-size: 11px;
  color: var(--ash);
  margin-top: .5px
}

.autocomplete-section-label {
  padding: 7px 16px 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cloud);
  background:var(--concrete-dark)
}

.autocomplete-search-all {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  background:var(--concrete-dark);
  color: var(--slate);
  font-size: 12px;
  font-weight: 500;
  transition: background 0.12s;
  text-decoration: none
}

.autocomplete-search-all:hover {
  background: var(--cloud);
  color: var(--ink)
}

.autocomplete-no-results {
  padding: 18px 16px;
  text-align: center;
  color: var(--ash);
  font-size: 13px
}

/* Vendor Spotlight*/

.vendor-spotlight-section {
  background:var(--concrete-dark);
  padding: clamp(32px, 4vw, 56px) 0;
  position: relative;
  overflow: hidden
}

.vs-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 100px) 28px;
  gap: 12px;
  flex-wrap: wrap
}

.vs-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px
}

.vs-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite
}

.vs-eyebrow-text {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold)
}

.vs-section-h {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1
}

.vendor-banner-track-wrap {
  position: relative;
  overflow: visible
}

.vendor-banner-track {
  display: flex;
  gap: 16px;
  padding: 4px clamp(16px, 5vw, 100px) 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none
}

.vendor-banner-track::-webkit-scrollbar {
  display: none
}

.vendor-banner-card {
  flex: 0 0 clamp(280px, 70vw, 900px);
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 6;
  display: block;
  text-decoration: none;
  border: .5px solid var(--cloud);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer
}

.vendor-banner-card:hover {
  transform: translateY(-4px) scale(1.01)
}

.vendor-banner-card img,
.vendor-banner-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.vendor-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.1) 60%, transparent 100%);
  pointer-events: none
}

.vendor-banner-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px
}

.vendor-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(6px, 1vw, 9px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: .5px;
  margin-bottom: 8px
}

.vendor-banner-name {
  font-family: var(--display);
  font-size: clamp(16px, 1vw, 22px);
  font-weight: 700;
  color: var(--concrete);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1.1
}

.vendor-banner-tagline {
  font-size: clamp(10px, 1vw, 12px);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em
}

.vendor-banner-placeholder {
  flex: 0 0 clamp(280px, 70vw, 900px);
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 6;
  border: .5px dashed var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background:var(--concrete-dark);
  color: var(--ash);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer
}

.vendor-banner-placeholder:hover {
  background: var(--cloud);
  border-color: var(--cloud)
}

.vendor-banner-placeholder .ph-icon {
  font-size: 44px;
  opacity: 0.35
}

.vendor-banner-placeholder .ph-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  text-align: center;
  line-height: 1.7;
  padding: 0 40px
}

.vendor-banner-placeholder .ph-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  border: .5px solid var(--cloud);
  border-radius: var(--radius);
  padding: 8px 20px;
  transition: all 0.15s
}

.vendor-banner-placeholder:hover .ph-cta {
  background: var(--ink);
  color: var(--concrete);
  border-color: var(--ink)
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 8px
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: .5px solid var(--cloud);
  background:var(--concrete-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0
}

.carousel-btn:hover {
  background: var(--ink);
  border-color: var(--ink)
}

.carousel-btn:hover svg path {
  stroke: var(--concrete-light)
}

.carousel-btn svg path {
  stroke: var(--ink);
  transition: stroke 0.15s
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default
}

.carousel-btn:disabled:hover {
  background:var(--concrete-dark);
  border-color: var(--cloud)
}

.carousel-btn:disabled:hover svg path {
  stroke: var(--ink)
}

.carousel-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding-top: 16px
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cloud);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  padding: 0
}

.carousel-dot.active {
  background: var(--ink);
  width: 18px;
  border-radius: 3px
}

.robots-section {
  padding: clamp(40px, 5vw, 72px) 0;
  background:var(--concrete);
}

.robots-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 clamp(20px, 5vw, 100px)
}

.section-h {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1
}

.link-arrow {
  font-family: var(--mono);
font-size: 12px;
font-weight: 600;
color: var(--blue);
text-decoration: none;
letter-spacing: 0.02em;
display: inline-flex;
align-items: center;
gap: 6px;
white-space: nowrap;
transition: color 0.15s;
flex-shrink: 0;
  }

.link-arrow:hover {
  color: var(--ink)
}

.link-arrow svg {
  transition: transform 0.2s
}

.link-arrow:hover svg {
  transform: translateX(3px)
}

.link-arrow-white {
  font-size: 12px;
  font-weight: 600;
  color: var(--cloud);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.15s;
  flex-shrink: 0
}

.link-arrow-white:hover {
  color: var(--concrete)
}

.link-arrow-white svg {
  transition: transform 0.2s
}

.link-arrow-white:hover svg {
  transform: translateX(3px)
}

.robots-carousel-wrap {
  position: relative;
  overflow: visible
}

.robots-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 14px clamp(20px, 5vw, 100px) 28px;
  scrollbar-width: none
}

.robots-carousel::-webkit-scrollbar {
  display: none
}

.robot-card {
  width: 100%;
  scroll-snap-align: start;
  background:var(--concrete);
  border: .5px solid var(--cloud);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2; 
}

.robot-card:hover,
.robot-card.reveal.visible:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--concrete-light);
border: .5px solid var(--cloud) !important;
}

.robot-card-img {
  width: 100%;
  height: 280px;
  aspect-ratio: 4 / 3;
  background-color: var(--concrete);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Mesh grid — on ::before so inline background shorthand can't kill it */
.robot-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
linear-gradient(rgba(0,0,0,0.045) .5px, transparent .5px),
linear-gradient(90deg, rgba(0,0,0,0.045) .5px, transparent .5px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Radial vignette */
.robot-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(238,238,238,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.robot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.45s cubic-bezier(.21, .6, .35, 1);
  z-index: 5;
}

.robot-card-img img {
  transform: scale(1.08)
}

.robot-card-img .card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background:var(--concrete-dark);
  color: var(--slate);
  padding: 3px 9px;
  border-radius: 3px;
  backdrop-filter: blur(4px)
}

.robot-card-img .card-compare {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 600;
  background: var(--concrete-dark);
  border: .5px solid var(--cloud);
  color: var(--ink);
  padding: 4px 9px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--body);
  opacity: 0;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
  z-index: 99;
}

.robot-card:hover .card-compare {
  opacity: 1
}

.card-compare:hover {
  background: var(--ink) !important;
  color: var(--concrete) !important
}

.robot-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  background:var(--concrete-dark);
  position: relative
}

.robot-card-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  padding-right: 40px;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: .5px;
  line-height: 1.2
}

.robot-card-vendor {
  font-size: 11px;
  color: var(--ash);
  margin-bottom: 10px;
  letter-spacing: 0.01em
}

.robot-specs {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 12px;
  }

  .spec-chip {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
font-size: 11px;
background: var(--baby-blue);
border: .5px solid var(--baby-blue-border);
color: var(--slate);
padding: 5px 12px;
border-radius: var(--radius);
width: 100%;
  }

  .spec-chip-label {
font-weight: 400;
color: var(--slate);
display: flex;
align-items: center;
gap: 5px;
white-space: nowrap;
  }

  .spec-chip-value {
font-weight: 700;
color: var(--ink);
white-space: nowrap;
  }

.spec-pill {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--slate);
  background:var(--concrete-dark);
  padding: 3px 7px;
  border-radius: .5px;
  letter-spacing: 0.02em
}

.robot-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: auto
}

.robot-card-price {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink)
}

.robot-card-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s
}

.robot-card:hover .robot-card-link {
  color: var(--ink)
}

@keyframes shimmer {
  0% {
background-position: -200% 0
  }

  100% {
background-position: 200% 0
  }
}

.skel-img {
  width: 100%;
  height: 180px;
  min-height: 180px;
  background: linear-gradient(90deg, #ebebeb 25%, #e0e0e0 50%, #ebebeb 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite
}

.skel-body {
  padding: 16px
}

.skel-line {
  height: 11px;
  border-radius: .5px;
  margin-bottom: 9px;
  background: linear-gradient(90deg, #ebebeb 25%, #e0e0e0 50%, #ebebeb 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite
}

.skel-line.s-long {
  width: 80%
}

.skel-line.s-med {
  width: 55%
}

.skel-line.s-short {
  width: 40%
}

.robots-error {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 20px
}

.robots-error h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px
}

.robots-error p {
  font-size: 13px;
  color: var(--slate)
}

/* ─── HOW-IT-WORKS STRIP ───────────────────────────────── */
.how-strip {
  background: var(--concrete-dark);
}
.how-strip-inner {
  display: flex; align-items: stretch;
  padding: 0 var(--px);
}
.hs-step {
  flex: 1; padding: 24px 28px; display: flex;
  flex-direction: column; gap: 5px;
  border-right: .5px solid var(--smoke);
}
.hs-step:last-child { border-right: none; }
.hs-num { font-family:var(--mono); font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ash); margin-bottom:4px; }
.hs-step h4 { font-family:var(--display); font-size:15px; font-weight:800; letter-spacing:-0.03em; color:var(--ink); }
.hs-step p { font-size:12.5px; color:var(--slate); line-height:1.55; }
.hs-lottie { width:36px; height:36px; margin-bottom:8px; }

/* ── Vendor grid strip (replaces marquee) ── */
.vendor-grid-section {
  background: var(--ink);
  overflow: hidden
}

.vendor-grid-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
  padding: 18px 0 0;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.vendor-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  min-height: 58px;
  overflow: hidden;
}

/* remove right border on last column */
.vendor-slot:nth-child(4n) { border-right: none; }
/* remove bottom border on last row */
.vendor-slot:nth-child(n+5) { border-bottom: none; }

.vsn {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  color: var(--cloud);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  opacity: 1;
  filter: blur(0px);
  transition: opacity 0.45s ease;
  will-change: opacity;
}

@media (max-width: 768px) {
  .vendor-grid {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
  }
  /* hide the 7th and 8th slots (desktop-only) */
  .vendor-slot-desktop-only { display: none; }
}

.trust-section {
  background: var(--ink);
  padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 100px);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent calc(100% / 12 - .5px), rgba(255, 255, 255, 0.07) calc(100% / 12 - .5px), rgba(255, 255, 255, 0.07) calc(100% / 12));
  pointer-events: none
}

.trust-inner {
  position: relative;
  z-index: 1
}

.trust-header {
  text-align: center;
  margin-bottom: 48px
}

.trust-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.trust-eyebrow::before,
.trust-eyebrow::after {
  content: '';
  width: 24px;
  height: .5px;
  background: rgba(255, 255, 255, 0.12)
}

.trust-h {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--concrete);
  letter-spacing: -0.04em;
  line-height: 1
}

.trust-h em {
  color: var(--red);
  font-style: normal
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5px;
  background: var(--steel);
  border: .5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.trust-card {
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(24px, 3vw, 40px);
  position: relative;
  transition: background 0.2s
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.05)
}

.robots-carousel-wrap {
  padding-left: 10px;
}

.trust-quote-mark {
  font-family: var(--display);
  font-size: 48px;
  line-height: 0.8;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
  font-weight: 900
}

.trust-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 20px;
  letter-spacing: -0.01em
}

.trust-author-row {
  display: flex;
  align-items: center;
  gap: 10px
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: .5px solid rgba(255, 255, 255, 0.12)
}

.trust-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--concrete)
}

.trust-author-role {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ash);
  letter-spacing: 0.06em;
  text-transform: uppercase
}

.tskel {
  border-radius: 3px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.8s infinite linear
}

.tskel-long {
  height: 12px;
  width: 90%
}

.tskel-med {
  height: 12px;
  width: 70%
}

.tskel-short {
  height: 10px;
  width: 45%;
  margin-top: 20px
}

.recently-added-section {
  background:var(--concrete-dark);
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: hidden;  position: relative;
}

.ra-scroll-btn {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: x solid var(--cloud);
  background:var(--concrete-dark);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s,
          transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ra-scroll-btn:hover {
  background: var(--ink);
  border-color: var(var(--ink));
  transform: translateY(-50%) scale(1.1);
}
.ra-scroll-btn:hover svg path { stroke: #fff; }
.ra-scroll-btn svg path { transition: stroke 0.2s; stroke: var(--ink); }

.ra-scroll-btn-left  { left: 6px; }
.ra-scroll-btn-right { right: 6px; }
.ra-scroll-btn[hidden] { display: none !important; }

@media (max-width: 768px) {
  .ra-scroll-btn { display: none !important; }
}

.ra-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 100px) 28px;
  flex-wrap: wrap;
  gap: 12px
}

.recently-strip {
  display: flex;
  gap: 0;
  padding: 0 clamp(20px, 5vw, 100px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch
}

.recently-strip::-webkit-scrollbar {
  display: none
}

.recently-item {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: .5px solid var(--cloud);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  cursor: pointer;
  gap: 8px
}

.recently-item:first-child {
  border-left: .5px solid var(--cloud)
}

.recently-item:hover {
  background:var(--concrete-dark);
}

.recently-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  background:var(--concrete);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  overflow: hidden;
  flex-shrink: 0
}

.recently-item-img:hover {
transform: scale(1.1);
transition: transform 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); 
}

.recently-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px
}

.recently-item-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2
}

.recently-item-vendor {
  font-size: 11px;
  color: var(--ash)
}

.recently-new-badge {
  display: inline-block;
  background: var(--green);
  color: var(--concrete);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: .5px 7px;
  border-radius: .5px
}

.roi-banner {
  background: var(--ink);
  position: relative;
  overflow: hidden
}

.roi-banner::before {
   content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent calc(100% / 12 - .5px), rgba(255, 255, 255, 0.07) calc(100% / 12 - .5px), rgba(255, 255, 255, 0.07) calc(100% / 12));
  pointer-events: none
}

.roi-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1
}

.roi-banner-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px
}

.roi-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0
}

.roi-banner-title {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--concrete);
  margin-bottom: 16px
}

.roi-banner-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  margin-bottom: 28px;
  letter-spacing: -0.01em
}

.btn-roi {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--concrete);
  background: var(--red);
  border: .5px solid var(--red);
  padding: 11px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-roi:hover {
  transform: translateY(-.5px);
}

.roi-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--steel);
  border: .5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2.5vw, 32px);
  margin-bottom: 12px;
  position: relative
}

.roi-metrics::before,
.roi-metrics::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid
}

.roi-metrics::before {
  top: -.5px;
  left: -.5px;
  border-width: .5px 0 0 .5px
}

.roi-metrics::after {
  bottom: -.5px;
  right: -.5px;
  border-width: 0 .5px .5px 0
}

.roi-metric {
  text-align: center;
  flex: 1;
  padding: 0 16px
}

.roi-metric-num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--concrete);
  margin-bottom: 6px
}

.roi-metric-num span {
  font-size: 20px;
  color: var(--red)
}

.roi-metric-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7)
}

.roi-metric-divider {
  width: .5px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0
}

.roi-cta-note {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: center
}

.cta-section {
  background: var(--ink);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: .5px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%
}

.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px
}

.cta-tag::before,
.cta-tag::after {
  content: '';
  width: 20px;
  height: .5px;
  background: rgba(255, 255, 255, 0.7)
}

.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--concrete);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px
}

.cta-section h2 em {
  color: var(--red);
  font-style: normal
}

.cta-section p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  line-height: 1.6;
  letter-spacing: -0.01em
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-cta-primary {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background:var(--concrete-dark);
  border: .5px solid var(--concrete);
  border-radius: var(--radius);
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s
}

.btn-cta-primary:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--concrete-light);
  transform: scale(1.03);
}

.btn-cta-ghost {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  background:var(--concrete-dark);
  border: .5px solid var(--concrete);
  border-radius: var(--radius);
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s
}

.btn-cta-ghost:hover {
  border-color: #25D369;
  background: #25D369;
  color: var(--concrete-light);
  transform: scale(1.03);
}

footer {
  background: var(--ink)
}

.footer-top {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 100px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  color: var(--concrete);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 12px
}

.footer-logo span {
  color: var(--red)
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 240px;
  letter-spacing: -0.01em;
  margin-bottom: 20px
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.15s
}

.footer-col a:hover {
  color: var(--concrete)
}

.footer-bottom {
  padding: 18px clamp(20px, 5vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase
}

.footer-vendor-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: .5px solid rgba(244, 168, 35, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s
}

.footer-vendor-cta:hover {
  background: var(--gold);
  color: var(--ink)
}

.compare-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  border: .5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2000;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap
}

.compare-bar.show {
  transform: translateX(-50%) translateY(0)
}

.compare-bar-info {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7)
}

.compare-bar-info strong {
  color: var(--concrete);
  font-family: var(--mono)
}

.compare-dots {
  display: flex;
  gap: 4px
}

.compare-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s
}

.compare-dot.filled {
  background: var(--red)
}

.btn-compare {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background:var(--concrete-dark);
  border: none;
  border-radius: var(--radius);
  padding: 8px 16px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.15s
}

.btn-compare:hover {
  background: var(--red);
  color: var(--concrete)
}

.btn-clear {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  transition: color 0.15s;
  letter-spacing: 0.04em
}

.btn-clear:hover {
  color: var(--concrete)
}

@media (max-width:1100px) {
  .hero-main {
grid-template-columns: 1fr
  }

  .categories-grid {
grid-template-columns: repeat(4, 1fr)
  }

  .roi-banner-inner {
grid-template-columns: 1fr;
gap: 40px
  }

  .footer-top {
grid-template-columns: 1fr 1fr;
gap: 32px
  }

  .trust-grid {
grid-template-columns: 1fr
  }
}

@media (max-width:768px) {
  .hero-ctas {
display: flex;
flex-wrap: wrap;
gap: 12px
  }

  .btn-outline {
display: none
  }

  .btn-solid {
display: none
  }

  .nav-links {
display: none
  }

  .hamburger {
display: flex
  }

  .hero {
overflow: visible;
  }

  .hero-desc {
  font-size: 13px;
  max-width: 95%;
}

  .section-header-row {
flex-direction: column;
align-items: flex-start;
gap: 8px
  }

  .how-strip-inner { flex-direction: column; }
  .hs-step { border-right: none; }
  .hs-step:last-child { border-bottom: none; }

  .categories-grid {
grid-template-columns: repeat(3, 1fr)
  }

  .categories-grid .cat-cell:nth-child(3n) {
border-right: none
  }

  .categories-scroll-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
  }

  .categories-scroll-wrap::-webkit-scrollbar {
display: none
  }

  .categories-scroll-wrap .categories-grid {
display: flex;
flex-wrap: nowrap;
width: max-content
  }

  .categories-scroll-wrap .cat-cell {
flex: 0 0 140px;
min-width: 140px;
border-right: .5px solid var(--cloud) !important;
  }

  .categories-scroll-wrap .cat-cell:last-child {
border-right: none !important
  }

  .roi-metrics {
flex-direction: column;
gap: 24px;
padding: 24px 16px
  }

  .roi-metric {
padding: 0
  }

  .roi-metric-divider {
width: 48px;
height: .5px
  }

  .roi-metric-num {
font-size: 36px
  }

  .footer-top {
grid-template-columns: 1fr 1fr;
gap: 28px
  }

  .footer-bottom {
flex-direction: column;
gap: 6px;
text-align: center
  }

  .compare-bar {
bottom: 12px;
padding: 10px 14px;
gap: 10px;
max-width: calc(100vw - 24px)
  }

  .cta-section {
padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px)
  }

  .vs-header {
flex-direction: column;
align-items: flex-start;
gap: 12px
  }

  .vendor-banner-card,
  .vendor-banner-placeholder {
flex: 0 0 calc(100vw - 40px);
max-width: calc(100vw - 40px)
  }

  .vendor-banner-track {
padding: 4px 20px 20px;
gap: 12px
  }

   .robots-section-header {
flex-direction: row;
align-items: baseline;
justify-content: space-between;
gap: 12px
  }

  .robots-carousel {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 14px;
padding: 14px 20px 40px
  }

  .robots-carousel .robot-card {
flex: 0 0 75vw;
width: auto;
scroll-snap-align: start
  }

}

@media (max-width:480px) {

  .robot-card-img {
height: 220px
  }

  .cat-cell--hero {
  grid-column: 1 / -1; /* full width on tiny screens */
}
.cat-cell--hero .cat-icon { font-size: 36px; }
.cat-cell--hero .cat-name { font-size: 15px; }

  .categories-grid {
grid-template-columns: repeat(2, 1fr);
margin-left: 10px;
  }

  .cat-cell {
padding: 20px 16px
  }

  .cat-icon {
font-size: 22px;
margin-bottom: 10px
  }

  .cta-btns {
flex-direction: column;
align-items: center
  }

  .btn-cta-primary,
  .btn-cta-ghost {
width: 100%;
text-align: center;
justify-content: center
  }

  .footer-top {
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 0;
padding: 28px 16px 20px
  }

  .footer-brand {
grid-column: 1 / -1;
display: flex;
align-items: baseline;
gap: 12px;
padding-bottom: 18px;
margin-bottom: 18px;
  }

  .footer-logo {
font-size: 19px;
margin-bottom: 0
  }

  .footer-tagline {
display: none
  }

  .footer-col {
padding-right: 8px
  }

  .footer-col h5 {
font-size: 9px;
margin-bottom: 10px
  }

  .footer-col ul {
gap: 8px
  }

  .footer-col a {
font-size: 12px
  }

  .footer-bottom {
padding: 12px 16px;
font-size: 9px;
flex-direction: column;
gap: 4px;
text-align: center
  }

  .compare-bar-info,
  .compare-dots {
display: none
  }

  .trust-grid {
grid-template-columns: 1fr
  }
}

/* ── MOBILE MENU: full-screen overlay ──────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background:var(--concrete-dark);
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(8px, 2vh, 12px) clamp(32px, 8vw, 80px) clamp(40px, 6vh, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1999;
  overflow: hidden
}

@media (max-width:768px) {
  .mobile-menu {
display: flex
  }
}

nav.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto
}

.mobile-menu .mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 0
}

.mobile-menu .mobile-nav-links li a {
  display: block;
  font-family: var(--body);
  font-size: clamp(20px, 6vw, 34px);
  font-weight: 600;
  color:var(--ink);
  text-decoration: none;
  padding: 12px 0;
  letter-spacing: -0.03em;
  transition: color 0.15s
}

.mobile-menu .mobile-nav-links li:last-child a {
  border-bottom: none
}

.mobile-menu .mobile-nav-links li a:hover,
.mobile-menu .mobile-nav-links li a:active {
  color: var(--red);
  background: transparent
}

.mobile-menu .mobile-actions {
  display: flex;
  gap: 12px;
  padding: 28px 0 0;
  margin-top: 28px;
}

.mobile-menu .mobile-actions a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.15s
}

.mobile-menu .mobile-actions .mob-btn-outline {
  color: var(--ink);
  background: transparent;
  border: .5px solid var(--cloud)
}

.mobile-menu .mobile-actions .mob-btn-outline:hover {
  background: var(--ink);
  color: var(--concrete)
}

.mobile-menu .mobile-actions .mob-btn-solid {
  color: var(--concrete);
  background: var(--ink);
  border: .5px solid var(--ink)
}

.mobile-menu .mobile-actions .mob-btn-solid:hover {
  background: var(--red);
  color: var(--concrete);
  border-color: var(--red)
}

/* Mobile nenu ends*/

@media (hover:none) {

.btn-cta-primary:active,
.btn-cta-ghost:active,
.robot-card:active,
.cat-cell:active {
  transform: scale(0.97) !important;
  transition: transform 0.1s ease-out !important;
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important
  }

  .vsn {
transition: none !important
  }
}

.vs-advertise-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: .5px solid rgba(244, 168, 35, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s;
  flex-shrink: 0
}

.vs-advertise-link:hover {
  background: var(--gold);
  color: var(--ink)
}

.robot-card-vendor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.card-vendor-avatar {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background:var(--concrete-dark);
  border: .5px solid var(--cloud);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 11px;
  color: var(--ink);
  overflow: hidden;
}

.card-vendor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

/* ════ LOTTIE GLOBAL ════════════════════════════════════════ */
dotlottie-wc { display: block; }

/* CTA section top icon */
.cta-lottie {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: block;
}

/* Vendor placeholder lottie */
.ph-lottie {
  width: 60px;
  height: 60px;
  opacity: 0.45;
  filter: grayscale(0.3);
}

/* ── Cat-strip scroll arrow wrapper ── */
.cat-strip-wrap {
  position: relative;
}

.cat-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: .5px solid var(--cloud);
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cat-scroll-btn:hover {
  background: var(--teal, #0D9488);
  border-color: var(--teal, #0D9488);
  transform: translateY(-50%) scale(1.1);
}
.cat-scroll-btn:hover svg path {
  stroke: #fff;
}
.cat-scroll-btn svg path {
  transition: stroke 0.2s;
  stroke: var(--ink);
}

.cat-scroll-btn-left  { left: 8px; }
.cat-scroll-btn-right { right: 8px; }

/* Hide when not needed */
.cat-scroll-btn[hidden] { display: none !important; }

/* On mobile: no arrows needed, native scroll works */
@media (max-width: 768px) {
  .cat-scroll-btn { display: none !important; }
}

/* Backdrop overlay — sits behind dropdown, blurs page content */
#searchBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1800;
  opacity: 0;
  transition: opacity 0.25s ease;
}
#searchBackdrop.active {
  display: block;
  opacity: 1;
}

/* ── Autocomplete: full nav width when search is active ── */
nav.search-expanded {
  position: relative; /* anchor for the dropdown */
}

nav.search-expanded .autocomplete-dropdown {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0 0 20px 20px;
  border-left: none;
  border-right: none;
  border-top: .5px solid var(--smoke);
  max-height: 420px;
  z-index: 1900;
}

/* Section label + items padding — more breathing room at full width */
nav.search-expanded .autocomplete-section-label {
  padding: 10px clamp(20px, 5vw, 100px) 6px;
}

nav.search-expanded .autocomplete-item {
  padding: 12px clamp(20px, 5vw, 100px);
}

nav.search-expanded .autocomplete-search-all {
  padding: 12px clamp(20px, 5vw, 100px);
}

nav.search-expanded .autocomplete-no-results {
  padding: 24px clamp(20px, 5vw, 100px);
  text-align: left;
}

/* Type Chip Label Container */
.type-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* Info Button */
.type-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cloud);
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
  cursor: help;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-family: sans-serif;
}

.type-info-btn:hover {
  background: var(--ink);
  color: var(--concrete);
}

/* Tooltip */
.type-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: 12px 14px;
  background: var(--ink);
  color: var(--concrete);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Prevents tooltip from blocking clicks when hidden */
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

/* Tooltip arrow */
.type-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--ink) transparent transparent transparent;
  margin-left: 0;
}

/* Show tooltip ONLY on icon hover — removed chip hover and all focus states */
.type-info-btn:hover + .type-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Info button — prevent clicks and text selection */
.type-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cloud);
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
  cursor: help;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-family: sans-serif;
  user-select: none; /* Prevents text selection on click */
  pointer-events: auto; /* Ensures hover works but clicks do nothing */
}

.type-info-btn:hover {
  background: var(--ink);
  color: var(--concrete);
}

/* Mobile: Disable click-to-show (removed the previous behavior) */
@media (hover: none) {
  .type-tooltip {
width: 220px;
font-size: 11px;
max-width: 90vw;
  }
  /* Remove the previous mobile click logic that was showing tooltips on tap */
  .type-chip:active .type-tooltip,
  .type-info-btn:active + .type-tooltip {
opacity: 0;
visibility: hidden;
  }
}

/* ════════════════════════════════════════════════════
   HOMEPAGE — Recently Added Spare Parts (Matching robotics-spare-parts page)
════════════════════════════════════════════════════ */
.sp-parts-section {
  background: var(--concrete-dark);
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: hidden;
  position: relative;
  border-top: .5px solid var(--smoke);
}

.sp-parts-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 100px) 28px;
  flex-wrap: wrap;
  gap: 12px;
}

/* Exact card styling from robotics-spare-parts page */
.sp-part-card {
  background: var(--concrete-light);
  border: .5px solid var(--smoke);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-part-card:hover {
  border-color: var(--cloud);
  transform: translateY(-4px);
}

/* Image area matching spare parts page */
.sp-part-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--concrete-dark);
  position: relative;
}

.sp-part-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}

.sp-part-card:hover .sp-part-img-wrap img {
  transform: scale(1.04);
}

.sp-part-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
}

/* Stock badge - exact match */
.sp-part-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sp-part-stock-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.sp-stock-in {
  background: rgba(13,148,136,0.1);
  color: var(--green);
  border: .5px solid rgba(13,148,136,0.25);
}

.sp-stock-in::before {
  background: var(--green);
}

.sp-stock-low {
  background: rgba(245,158,11,0.1);
  color: var(--gold);
  border: .5px solid rgba(245,158,11,0.25);
}

.sp-stock-low::before {
  background: var(--gold);
}

.sp-stock-out {
  background: rgba(230,57,70,0.1);
  color: var(--red);
  border: .5px solid rgba(230,57,70,0.25);
}

.sp-stock-out::before {
  background: var(--red);
}

/* Wishlist button */
.sp-part-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(248,248,248,0.9);
  backdrop-filter: blur(4px);
  border: .5px solid var(--smoke);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  color: var(--cloud);
}

.sp-part-wishlist-btn:hover {
  color: var(--red);
  border-color: var(--red);
}

.sp-part-wishlist-btn.wishlisted {
  color: var(--red);
  border-color: var(--red);
}

.sp-part-wishlist-btn.wishlisted svg {
  fill: var(--red);
}

/* Card body */
.sp-part-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Category tag - exact typography match */
.sp-part-cat-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 6px;
}

/* Part name - exact font weight and size */
.sp-part-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* OEM/Aftermarket badges - exact colors */
.badge-oem {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #d1fae5;
  color: #065f46;
  border: .5px solid #6ee7b7;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.badge-aftermarket {
display: inline-flex;
align-items: center;
gap: 4px;
font-family: var(--mono);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
background: #dbeafe;
color: #1e40af;
border: .5px solid #93c5fd;
padding: 2px 7px;
border-radius: 4px;
}

/* Compatibility tags */
.sp-part-compat {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.sp-compat-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--slate);
  background: var(--concrete-dark);
  border: .5px solid var(--smoke);
  border-radius: 4px;
  padding: 2px 6px;
}

.sp-compat-more {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--ash);
  padding: 2px 6px;
}

/* Price styling - exact match */
.sp-part-price {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-original {
  text-decoration: line-through;
  color: var(--ash);
  font-size: 12px;
  font-weight: 400;
  font-family: var(--mono);
}

.price-disc {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: 4px;
}

.sp-part-price-note {
  font-size: 11px;
  color: var(--ash);
  margin-bottom: 14px;
}

/* Vendor row - exact layout */
.sp-part-vendor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-top: .5px solid var(--smoke);
  margin-bottom: 12px;
}

.sp-vendor-logo-sm {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--concrete-dark);
  border: .5px solid var(--smoke);
}

.sp-vendor-logo-init {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--concrete);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-vendor-name-sm {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
}

.sp-vendor-badge-sm {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(13,148,136,0.08);
  border: .5px solid rgba(13,148,136,0.2);
  border-radius: 4px;
  padding: 2px 6px;
}

/* Sold by row */
.sp-sold-by-row {
  margin-top: 6px;
  padding-top: 6px;
  border-top: .5px solid var(--smoke);
}

.sp-sold-by-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-right: 2px;
}

/* Actions */
.sp-part-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.sp-btn-buy-now {
  flex: 1;
  background: var(--ink);
  color: var(--concrete);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-btn-buy-now:hover {
  background: var(--red);
}

.sp-btn-buy-now:disabled,
.sp-btn-buy-now[data-disabled] {
  background: var(--cloud);
  cursor: not-allowed;
}

.sp-btn-quote {
  flex: 1;
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: .5px solid var(--cloud);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  text-decoration: none;
}

.sp-btn-quote:hover {
  border-color: var(--ink);
}

.sp-btn-see-details {
  width: 100%;
  background: var(--ink);
  color: var(--concrete);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.sp-btn-see-details:hover {
  background: var(--red);
}

.sp-part-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

/* Strip layout */
.sp-parts-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 4px clamp(20px, 5vw, 100px) 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sp-parts-strip::-webkit-scrollbar {
  display: none;
}

/* Scroll buttons */
.sp-scroll-btn {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: .5px solid var(--cloud);
  background: var(--concrete);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-scroll-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-50%) scale(1.1);
}

.sp-scroll-btn:hover svg path {
  stroke: #fff;
}

.sp-scroll-btn svg path {
  transition: stroke 0.2s;
  stroke: var(--ink);
}

.sp-scroll-btn-left {
  left: 6px;
}

.sp-scroll-btn-right {
  right: 6px;
}

.sp-scroll-btn[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-scroll-btn {
display: none !important;
  }
  .sp-part-card {
width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  dotlottie-wc { display: none !important; }
}
/* ════════════════════════════════════════════════════════════ */

-e 

/* ════════════════════════════════════════════════════
   SECTION DOCK & BACK TO TOP STYLES
════════════════════════════════════════════════════ */

  /* ── CLS prevention: reserve space before JS injects content ── */
#hero-feat-grid {
  min-height: 270px;
}
#robotsCarousel {
  min-height: 360px;
}
#vendorBannerTrack {
  min-height: 200px;
}
#catStripInner {
  min-height: 100px;
}
#recentlyStrip {
  min-height: 160px;
}
#categoriesGrid {
  min-height: 120px;
}
#backToTop {
  position: fixed !important;
  bottom: 18px !important;
  left: 18px !important;
  top: auto !important;
  z-index: 3000;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--concrete);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.15s;
  pointer-events: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#backToTop:hover { transform: translateY(-3px); }

/* ── Section Dock ── */
#sectionDock {
  position: fixed !important;
  bottom: 18px !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(20px) !important;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.15s;
  pointer-events: none;
  /* reset any inherited nav styles */
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  min-height: unset;
  height: auto;
  flex-direction: row;
  width: auto;
}
#sectionDock.visible {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
  pointer-events: auto;
}
.dock-inner {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 6px;
  background: var(--steel);
  border-radius: 16px;
  padding: 6px 6px 6px 6px;
  width: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.15s;
  min-height: unset;
}
.dock-brand {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--concrete);
  background: #222222;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  }
.dock-item {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--concrete);
  background: #3b3b3b;
  text-decoration: none;
  padding: 18px 16px;
  border-radius: 10px;
  transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), background 0.15s;
  white-space: nowrap;
  letter-spacing: 0em;
  display: block;
}
.dock-item:hover {
  background: rgba(255,255,255,0.09);
  color: var(--concrete);
  border: .5px dashed var(--cloud);
}
.dock-item.active {
  color: var(--concrete);
  font-weight: 600;
  border: .5px solid var(--cloud);
  
}
.dock-cta {
  background:var(--concrete-dark) !important;
  color: var(--ink) !important;
  font-weight: 600 !important;
  margin-left: 4px;
}
.dock-cta:hover {
  background: var(--smoke) !important;
  color: var(--ink) !important;
}
.dock-cta.active {
  background:var(--concrete-dark) !important;
  color: var(--ink) !important;
}

@media (max-width: 600px) {
  #sectionDock { display: none !important; }
  #backToTop {display: none !important;}
}
-e 

/* ════════════════════════════════════════════════════
   ANIMATION & REVEAL STYLES
════════════════════════════════════════════════════ */

/* ── Easing tokens (Framer-style) ───────────────────────── */
:root {
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);      /* smooth snappy out */
 --ease-spring: cubic-bezier(0.25, 0.46, 0.45, 0.94); /* smooth decelerate */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);        /* material standard */
}

/* ─────────────────────────────────────────────────────────
   1. HERO ENTRANCE
   Left column slides from left, right column from right,
   feat cards fade up — all on page load with stagger.
───────────────────────────────────────────────────────── */
@keyframes mx-hero-left {
  from { opacity: 0; transform: translateX(-52px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes mx-hero-right {
  from { opacity: 0; transform: translateX(52px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes mx-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mx-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Applied by JS on DOMContentLoaded */
.mx-hero-left-animate {
  animation: mx-hero-left 0.95s var(--ease-expo) 0.1s both;
}
.mx-hero-right-animate {
  animation: mx-hero-right 0.95s var(--ease-expo) 0.25s both;
}
.mx-feat-animate {
  animation: mx-fade-up 0.9s var(--ease-expo) 0.5s both;
}
.mx-infobar-animate {
  animation: mx-fade-up 0.75s var(--ease-expo) 0.72s both;
}

/* ─────────────────────────────────────────────────────────
   2. CATEGORY STRIP CHIPS
   Each chip fades up with stagger (delay set inline by JS)
───────────────────────────────────────────────────────── */
.cat-chip {
  opacity: 0;
  transform: translateY(14px) scale(0.94);
  transition: opacity 0.5s var(--ease-expo),
          transform 0.5s var(--ease-expo);
  will-change: transform, opacity;
}
/* Preserve existing hover transform */
.cat-chip.mx-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cat-chip.mx-revealed:hover .cat-chip-icon {
  filter: brightness(1.15) drop-shadow(0 .5px 6px rgba(107,203,119,0.35));
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────────────
   3. GENERIC SCROLL REVEAL
   Applied to elements via data-mx-reveal attribute by JS.
   Supports: up | left | right | scale | fade
───────────────────────────────────────────────────────── */
[data-mx-reveal] {
  will-change: transform, opacity;
  transition: opacity 0.75s var(--ease-expo),
          transform 0.75s var(--ease-expo);
}
[data-mx-reveal="up"]    { opacity: 0; transform: translateY(36px); }
[data-mx-reveal="left"]  { opacity: 0; transform: translateX(-36px); }
[data-mx-reveal="right"] { opacity: 0; transform: translateX(36px); }
[data-mx-reveal="scale"] { opacity: 0; transform: scale(0.92) translateY(20px); }
[data-mx-reveal="fade"]  { opacity: 0; transform: none; }

[data-mx-reveal].mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   4. HOW-IT-WORKS STEPS
───────────────────────────────────────────────────────── */
.hs-step {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.7s var(--ease-expo),
          transform 0.7s var(--ease-expo);
  will-change: transform, opacity;
}
.hs-step.mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   5. ROBOT CARDS (grid, stagger by JS)
───────────────────────────────────────────────────────── */
.robot-card:not(.skeleton) {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.6s var(--ease-expo),
          transform 0.6s var(--ease-expo);
  will-change: transform, opacity;
}
.robot-card.mx-revealed {
  opacity: 1;
  transform: none !important;
}
/* Keep hover lift working after reveal */
.robot-card.mx-revealed:hover {
  transform: translateY(-4px) !important;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ─────────────────────────────────────────────────────────
   6. HERO FEATURED CARDS (opacity-only to not fight radar-sweep)
───────────────────────────────────────────────────────── */
.hfg-card {
  opacity: 0;
  transition: opacity 0.6s var(--ease-expo),
          transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hfg-card.mx-revealed {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────
   7. VENDOR BANNER CARDS
───────────────────────────────────────────────────────── */
.vendor-banner-card,
.vendor-banner-placeholder {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-expo),
          transform 0.6s var(--ease-expo);
  will-change: transform, opacity;
}
.vendor-banner-card.mx-revealed,
.vendor-banner-placeholder.mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   8. TRUST / TESTIMONIAL CARDS
───────────────────────────────────────────────────────── */
.trust-card:not(.trust-skeleton) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-expo),
          transform 0.65s var(--ease-expo);
  will-change: transform, opacity;
}
.trust-card.mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   9. ROI METRICS NUMBERS (pop in with spring)
───────────────────────────────────────────────────────── */
.roi-metric {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.6s var(--ease-spring),
          transform 0.6s var(--ease-spring);
  will-change: transform, opacity;
}
.roi-metric.mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   10. ROI METRIC DIVIDERS (fade in between metrics)
───────────────────────────────────────────────────────── */
.roi-metric-divider {
  opacity: 0;
  transition: opacity 0.5s var(--ease-expo);
}
.roi-metric-divider.mx-revealed { opacity: 1; }

/* ─────────────────────────────────────────────────────────
   11. VENDOR GRID SECTION
───────────────────────────────────────────────────────── */
.vendor-grid-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-expo),
          transform 0.65s var(--ease-expo);
}
.vendor-grid-section.mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   12. CTA SECTION INNER — scale-up reveal
───────────────────────────────────────────────────────── */
.cta-inner {
  opacity: 0;
  transform: scale(0.96) translateY(28px);
  transition: opacity 0.8s var(--ease-expo),
          transform 0.8s var(--ease-expo);
  will-change: transform, opacity;
}
.cta-inner.mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   13. NAV: smooth hide on scroll-down
───────────────────────────────────────────────────────── */
#nav {
  transition: transform 0.45s var(--ease-expo),
          background 0.35s ease !important;
}
#nav.mx-nav-hidden {
  transform: translateY(-100%);
}

/* ─────────────────────────────────────────────────────────
   14. SECTION HEADINGS — clip-path word reveal
   JS wraps each word in .mx-word > .mx-word-inner
───────────────────────────────────────────────────────── */
.mx-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* Preserve line-height so layout doesn't shift */
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.mx-word-inner {
  display: inline-block;
  transform: translateY(110%) rotate(3deg);
  opacity: 0;
  transition: transform 0.7s var(--ease-expo),
          opacity 0.4s var(--ease-expo);
  will-change: transform;
}
.mx-word.mx-revealed .mx-word-inner {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────
   15. RECENTLY ADDED ITEMS — slide in from right
   (Applied inline by JS, no base CSS override needed)
───────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────
   16. INFO BAR
───────────────────────────────────────────────────────── */
.info-bar {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease-expo),
          transform 0.65s var(--ease-expo);
}
.info-bar.mx-revealed {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────────────────
   REDUCED MOTION: respect user's OS setting
───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mx-hero-left-animate,
  .mx-hero-right-animate,
  .mx-feat-animate,
  .mx-infobar-animate { animation: none !important; opacity: 1 !important; }

  .cat-chip,
  [data-mx-reveal],
  .hs-step,
  .robot-card:not(.skeleton),
  .hfg-card,
  .vendor-banner-card,
  .vendor-banner-placeholder,
  .trust-card:not(.trust-skeleton),
  .roi-metric,
  .roi-metric-divider,
  .vendor-grid-section,
  .cta-inner,
  .info-bar,
  .mx-word-inner {
opacity: 1 !important;
transform: none !important;
transition: none !important;
animation: none !important;
  }
}