/* ============================================================
   STRIXURE — main.css
   All component styles matching the Stitch UI screenshots
   ============================================================ */

/* ── NAVIGATION ─────────────────────────────────────────── */

.stx-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--stx-nav-height);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.stx-nav.is-scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.stx-nav.is-light { background: var(--stx-white); }
.stx-nav.is-light .stx-nav__link { color: var(--stx-text); }
.stx-nav.is-light .stx-nav__logo-text { color: var(--stx-black); }

.stx-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.stx-nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.stx-nav__logo img { height: 32px; width: auto; }
.stx-nav__logo-text {
  font-size: var(--stx-fs-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--stx-white);
}

.stx-nav__menu { flex: 1; display: flex; justify-content: center; }

.stx-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}

.stx-nav__item { position: relative; }

.stx-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
  height: var(--stx-nav-height);
  font-size: var(--stx-fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.stx-nav__link:hover,
.stx-nav__item.is-active > .stx-nav__link {
  color: var(--stx-white);
}

.stx-nav__item.is-active > .stx-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--stx-teal);
  border-radius: 2px 2px 0 0;
}

.stx-nav__chevron { transition: transform 0.2s; opacity: 0.6; }
.stx-nav__item--mega:hover .stx-nav__chevron { transform: rotate(180deg); }

/* Mega Menu */
.stx-mega {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 640px;
  background: var(--stx-dark);
  border: 1px solid var(--stx-border-dark);
  border-radius: 0 0 var(--stx-radius-lg) var(--stx-radius-lg);
  box-shadow: var(--stx-shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  pointer-events: none;
}

.stx-nav__item--mega:hover .stx-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.stx-mega__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0;
  padding: 1.5rem;
  max-width: none;
}

.stx-mega__col { padding: 0 1.5rem; }
.stx-mega__col:first-child { padding-left: 0; border-right: 1px solid var(--stx-border-dark); }
.stx-mega__col:last-child { padding-right: 0; border-left: 1px solid var(--stx-border-dark); }

.stx-mega__label {
  display: block;
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stx-text-muted);
  margin-bottom: 0.75rem;
}

.stx-mega__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: var(--stx-fs-sm);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.stx-mega__link:hover { color: var(--stx-teal); }
.stx-mega__link-icon { font-size: 0.875rem; }

.stx-mega__featured-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: var(--stx-fs-sm);
  transition: color 0.2s;
}
.stx-mega__featured-card:hover { color: var(--stx-teal); }
.stx-mega__featured-img { width: 48px; height: 48px; border-radius: var(--stx-radius); overflow: hidden; background: var(--stx-dark-card); flex-shrink: 0; }
.stx-mega__featured-img img { width: 100%; height: 100%; object-fit: cover; }
.stx-mega__featured-img--ph { background: var(--stx-border-dark); }

.stx-mega__cta-block { display: flex; flex-direction: column; gap: 0.5rem; min-width: 160px; }
.stx-mega__cta-label { font-size: var(--stx-fs-xs); color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }

/* Nav Actions */
.stx-nav__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.stx-nav__whatsapp {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.stx-nav__whatsapp:hover { color: #25D366; }

.stx-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
}
.stx-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--stx-white);
  border-radius: 2px;
  transition: var(--stx-transition-md);
}

/* Mobile Menu */
.stx-mobile-menu {
  position: fixed;
  top: var(--stx-nav-height); left: 0; right: 0; bottom: 0;
  background: var(--stx-dark);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.stx-mobile-menu.is-open { transform: translateX(0); }
.stx-mobile-menu__inner { padding: 1.5rem; }

.stx-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.stx-mobile-overlay.is-visible { opacity: 1; pointer-events: all; }

.stx-mobile-acc { border-bottom: 1px solid var(--stx-border-dark); }
.stx-mobile-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.stx-mobile-acc__title {
  font-size: var(--stx-fs-base);
  font-weight: 600;
  color: var(--stx-white);
  text-decoration: none;
}
.stx-mobile-acc__toggle {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 4px;
  transition: transform 0.2s;
}
.stx-mobile-acc.is-open .stx-mobile-acc__toggle { transform: rotate(180deg); }
.stx-mobile-acc__body {
  display: none;
  padding: 0 0 1rem 1rem;
  flex-direction: column;
  gap: 0.5rem;
}
.stx-mobile-acc.is-open .stx-mobile-acc__body { display: flex; }
.stx-mobile-acc__body a {
  font-size: var(--stx-fs-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.25rem 0;
}
.stx-mobile-acc__body a:hover { color: var(--stx-teal); }
.stx-mobile-menu__actions {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding-top: 1.5rem;
}

/* Hamburger states */
.stx-nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.stx-nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.stx-nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── PAGE TRANSITION ────────────────────────────────────── */

.stx-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--stx-black);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform-origin: left;
}

.stx-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--stx-teal);
  z-index: 10000;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--stx-teal);
}

/* ── HERO ───────────────────────────────────────────────── */

.stx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--stx-black);
  overflow: hidden;
  padding-top: var(--stx-nav-height);
}

.stx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stx-hero__bg img,
.stx-hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.stx-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.3) 100%);
}

.stx-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 6rem;
}

.stx-hero__content { max-width: 580px; }

.stx-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stx-hero__heading {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--stx-white);
  margin-bottom: 1.25rem;
}
.stx-hero__heading .stx-teal { color: var(--stx-teal); }

.stx-hero__sub {
  font-size: var(--stx-fs-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}

.stx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stx-hero__trust {
  font-size: var(--stx-fs-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.stx-hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.stx-hero__visual img {
  max-height: 70vh;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* ── TRUST BAR ──────────────────────────────────────────── */

.stx-trust-bar {
  background: var(--stx-surface);
  border-bottom: 1px solid var(--stx-border);
  padding-block: 1.25rem;
}
.stx-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.stx-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}
.stx-trust-item__icon {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(0,180,166,0.1);
  border-radius: var(--stx-radius);
}
.stx-trust-item__text {
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stx-text);
}
.stx-trust-item__sub {
  font-size: var(--stx-fs-xs);
  color: var(--stx-text-muted);
}

/* ── SECTION HEADERS ────────────────────────────────────── */

.stx-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.stx-section-head__left {}
.stx-section-head__right {
  font-size: var(--stx-fs-sm);
  color: var(--stx-text-muted);
  max-width: 300px;
  text-align: right;
  line-height: 1.5;
}

.stx-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: inherit;
  margin-bottom: 0.5rem;
}
.stx-section-title--dark { color: var(--stx-white); }

.stx-section-sub {
  font-size: var(--stx-fs-base);
  color: var(--stx-text-muted);
  max-width: 480px;
}

/* ── PRODUCT CARD ───────────────────────────────────────── */

.stx-product-card {
  background: var(--stx-white);
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-lg);
  overflow: hidden;
  transition: var(--stx-transition-md);
  display: flex;
  flex-direction: column;
}
.stx-product-card:hover {
  border-color: var(--stx-teal);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.stx-product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--stx-surface);
}
.stx-product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.stx-product-card:hover .stx-product-card__img img { transform: scale(1.04); }

.stx-product-card__badges {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex; gap: 0.375rem;
  flex-wrap: wrap;
}
.stx-product-card__badge {
  padding: 0.2rem 0.5rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--stx-radius-full);
}
.stx-product-card__badge--sport {
  background: rgba(0,180,166,0.9);
  color: var(--stx-white);
}
.stx-product-card__badge--custom {
  background: rgba(255,255,255,0.9);
  color: var(--stx-text);
  display: flex; align-items: center; gap: 3px;
}
.stx-product-card__badge--custom::before {
  content: '●';
  color: var(--stx-teal);
  font-size: 6px;
}

.stx-product-card__body {
  padding: 1.125rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.stx-product-card__name {
  font-size: var(--stx-fs-base);
  font-weight: 700;
  color: var(--stx-text);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.stx-product-card__desc {
  font-size: var(--stx-fs-sm);
  color: var(--stx-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.stx-product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stx-product-card__actions .stx-btn { width: 100%; }
.stx-product-card__quote-link {
  display: block;
  text-align: center;
  font-size: var(--stx-fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stx-text-muted);
  text-decoration: none;
  padding: 0.25rem;
  transition: color 0.2s;
}
.stx-product-card__quote-link:hover { color: var(--stx-teal); }

/* ── SPORT CATEGORY CARD ────────────────────────────────── */

.stx-sport-card {
  position: relative;
  border-radius: var(--stx-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.stx-sport-card__img {
  position: absolute;
  inset: 0;
}
.stx-sport-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.6);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.stx-sport-card:hover .stx-sport-card__img img {
  transform: scale(1.06);
  filter: grayscale(20%) brightness(0.75);
}

.stx-sport-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 60%);
  transition: background 0.3s;
}
.stx-sport-card:hover .stx-sport-card__overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(0,180,166,0.1) 100%);
}

.stx-sport-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}

.stx-sport-card__name {
  font-size: var(--stx-fs-xl);
  font-weight: 800;
  color: var(--stx-white);
  letter-spacing: -0.02em;
}

.stx-sport-card__border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--stx-radius-lg);
  transition: border-color 0.3s;
}
.stx-sport-card:hover .stx-sport-card__border { border-color: var(--stx-teal); }

/* ── CATEGORY BENTO GRID ────────────────────────────────── */

.stx-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 520px;
}

.stx-bento__item {
  position: relative;
  border-radius: var(--stx-radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  min-height: 200px;
}

.stx-bento__item--featured {
  grid-row: 1 / 3;
}

.stx-bento__item__img {
  position: absolute;
  inset: 0;
}
.stx-bento__item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.stx-bento__item:hover .stx-bento__item__img img { transform: scale(1.04); }

.stx-bento__item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), rgba(10,10,10,0.1));
}

.stx-bento__item__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}
.stx-bento__item--featured .stx-bento__item__content { padding: 1.75rem; }

.stx-bento__label {
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stx-teal);
  margin-bottom: 0.375rem;
}
.stx-bento__name {
  font-size: var(--stx-fs-xl);
  font-weight: 800;
  color: var(--stx-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.stx-bento__item--featured .stx-bento__name { font-size: var(--stx-fs-3xl); }
.stx-bento__sub {
  font-size: var(--stx-fs-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

/* ── SPORT QUICK-ACCESS PILLS ────────────────────────────── */

.stx-sport-pills {
  background: var(--stx-surface);
  padding: 0.875rem 0;
  border-top: 1px solid var(--stx-border);
  border-bottom: 1px solid var(--stx-border);
}
.stx-sport-pills__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stx-sport-pills__inner::-webkit-scrollbar { display: none; }
.stx-sport-pills__label {
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stx-text-muted);
  white-space: nowrap;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.stx-sport-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: var(--stx-fs-xs);
  font-weight: 600;
  background: var(--stx-white);
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-full);
  color: var(--stx-text);
  text-decoration: none;
  transition: var(--stx-transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.stx-sport-pill:hover,
.stx-sport-pill.is-active {
  background: var(--stx-teal);
  border-color: var(--stx-teal);
  color: var(--stx-white);
}

/* ── PRODUCT CATALOG SECTION (Sport Page) ────────────────── */

.stx-catalog-section { margin-bottom: 3.5rem; }
.stx-catalog-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--stx-border);
}
.stx-catalog-section__title {
  font-size: var(--stx-fs-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stx-catalog-section__num {
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--stx-text-muted);
  text-transform: uppercase;
}

/* ── CUSTOMIZATION CALLOUT ───────────────────────────────── */

.stx-custom-callout {
  background: linear-gradient(135deg, var(--stx-teal) 0%, var(--stx-teal-dark) 100%);
  border-radius: var(--stx-radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-block: 2rem;
}
.stx-custom-callout__text {
  font-size: var(--stx-fs-base);
  color: var(--stx-white);
  max-width: 540px;
}
.stx-custom-callout__text strong { display: block; font-size: var(--stx-fs-lg); margin-bottom: 0.25rem; }

/* ── HOW IT WORKS ────────────────────────────────────────── */

.stx-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stx-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--stx-teal) 0%, rgba(0,180,166,0.2) 100%);
  z-index: 0;
}

.stx-step { text-align: center; position: relative; z-index: 1; }
.stx-step__num {
  width: 40px; height: 40px;
  border-radius: var(--stx-radius-full);
  background: var(--stx-teal);
  color: var(--stx-white);
  font-size: var(--stx-fs-xl);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.stx-step__num--muted {
  background: transparent;
  border: 1px solid var(--stx-border);
  color: var(--stx-text-muted);
  font-size: var(--stx-fs-4xl);
  font-weight: 900;
  width: auto; height: auto;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.stx-step__title { font-size: var(--stx-fs-base); font-weight: 700; margin-bottom: 0.5rem; }
.stx-step__desc  { font-size: var(--stx-fs-sm); color: var(--stx-text-muted); line-height: 1.5; }

/* ── TESTIMONIALS ────────────────────────────────────────── */

.stx-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stx-testimonial {
  background: var(--stx-white);
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-lg);
  padding: 1.75rem;
  transition: var(--stx-transition-md);
}
.stx-testimonial:hover {
  border-color: var(--stx-teal);
  box-shadow: var(--stx-shadow-md);
}
.stx-testimonial__stars {
  display: flex; gap: 2px;
  margin-bottom: 1rem;
  color: #F59E0B;
  font-size: var(--stx-fs-sm);
}
.stx-testimonial__quote {
  font-size: var(--stx-fs-base);
  line-height: 1.7;
  color: var(--stx-text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.stx-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.stx-testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: var(--stx-radius-full);
  background: var(--stx-surface);
  overflow: hidden;
  flex-shrink: 0;
}
.stx-testimonial__info__name { font-size: var(--stx-fs-sm); font-weight: 700; }
.stx-testimonial__info__role { font-size: var(--stx-fs-xs); color: var(--stx-text-muted); }
.stx-testimonial__sport-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.2rem 0.625rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,180,166,0.1);
  color: var(--stx-teal);
  border-radius: var(--stx-radius-full);
}

/* ── CTA BANNER ──────────────────────────────────────────── */

.stx-cta-banner {
  background: var(--stx-black);
  border-radius: var(--stx-radius-2xl);
  padding: 5rem 4rem;
  text-align: center;
}
.stx-cta-banner__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--stx-white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.stx-cta-banner__sub {
  font-size: var(--stx-fs-lg);
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}
.stx-cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── URGENCY BAR ─────────────────────────────────────────── */

.stx-urgency-bar {
  background: var(--stx-teal);
  padding: 0.875rem 0;
}
.stx-urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.stx-urgency-bar__text {
  font-size: var(--stx-fs-sm);
  font-weight: 600;
  color: var(--stx-white);
}

/* ── FOOTER ──────────────────────────────────────────────── */

.stx-footer {
  background: var(--stx-black);
  color: rgba(255,255,255,0.6);
  padding-top: 4rem;
}
.stx-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--stx-border-dark);
}
.stx-footer__logo-text {
  font-size: var(--stx-fs-2xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--stx-white);
  display: block;
  margin-bottom: 1rem;
}
.stx-footer__tagline {
  font-size: var(--stx-fs-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.stx-footer__social { display: flex; gap: 0.75rem; }
.stx-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--stx-border-dark);
  border-radius: var(--stx-radius);
  color: rgba(255,255,255,0.5);
  transition: var(--stx-transition);
}
.stx-footer__social-link:hover { color: var(--stx-teal); border-color: var(--stx-teal); }

.stx-footer__col-title {
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stx-white);
  margin-bottom: 1rem;
}
.stx-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.stx-footer__links a {
  font-size: var(--stx-fs-sm);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.stx-footer__links a:hover { color: var(--stx-teal); }

.stx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
}
.stx-footer__copy { font-size: var(--stx-fs-xs); color: rgba(255,255,255,0.3); }
.stx-footer__legal {
  display: flex; gap: 1.5rem;
  list-style: none;
}
.stx-footer__legal a {
  font-size: var(--stx-fs-xs);
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.stx-footer__legal a:hover { color: var(--stx-teal); }

/* ── WHATSAPP FAB ────────────────────────────────────────── */

.stx-whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: var(--stx-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stx-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.stx-whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.stx-whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--stx-black);
  color: var(--stx-white);
  font-size: var(--stx-fs-xs);
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--stx-radius);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.stx-whatsapp-fab__tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--stx-black);
  border-right-width: 0;
}
.stx-whatsapp-fab:hover .stx-whatsapp-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── MOBILE STICKY CTA ────────────────────────────────────── */

.stx-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 890;
  padding: 0.875rem 1rem;
  background: var(--stx-white);
  border-top: 1px solid var(--stx-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.stx-mobile-cta-bar .stx-btn { width: 100%; }

/* ── PRODUCT DETAIL PAGE ─────────────────────────────────── */

.stx-product-detail {
  padding-top: calc(var(--stx-nav-height) + 2rem);
}
.stx-product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.stx-product-gallery { position: sticky; top: calc(var(--stx-nav-height) + 2rem); }
.stx-product-gallery__main {
  border-radius: var(--stx-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--stx-surface);
  margin-bottom: 0.75rem;
}
.stx-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.stx-product-info__badge {
  display: inline-block;
  margin-bottom: 1rem;
}
.stx-product-info__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.stx-product-info__desc {
  font-size: var(--stx-fs-base);
  color: var(--stx-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.stx-product-info__label {
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stx-text-muted);
  margin-bottom: 0.625rem;
}
.stx-product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.stx-product-option {
  padding: 0.375rem 0.875rem;
  font-size: var(--stx-fs-sm);
  font-weight: 500;
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-full);
  color: var(--stx-text);
  background: var(--stx-white);
}

.stx-product-cta-block { margin-bottom: 2rem; }
.stx-product-cta-block .stx-btn { width: 100%; margin-bottom: 0.5rem; }
.stx-product-cta-note {
  display: block;
  text-align: center;
  font-size: var(--stx-fs-xs);
  color: var(--stx-text-muted);
}

.stx-product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stx-border);
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.stx-product-spec {
  background: var(--stx-white);
  padding: 1rem;
  text-align: center;
}
.stx-product-spec__value {
  display: block;
  font-size: var(--stx-fs-2xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--stx-teal);
}
.stx-product-spec__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stx-text-muted);
}

.stx-byod-block {
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-lg);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--stx-teal);
}
.stx-byod-block__title { font-weight: 700; margin-bottom: 0.375rem; }
.stx-byod-block__desc { font-size: var(--stx-fs-sm); color: var(--stx-text-muted); margin-bottom: 0.75rem; }
.stx-byod-block a { color: var(--stx-teal); text-decoration: none; font-size: var(--stx-fs-sm); font-weight: 600; }

/* Design Library / Carousel */
.stx-design-library { margin-top: 4rem; }
.stx-design-library__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.stx-design-library__nav { display: flex; gap: 0.5rem; }
.stx-design-nav-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius);
  background: var(--stx-white);
  cursor: pointer;
  transition: var(--stx-transition);
}
.stx-design-nav-btn:hover { border-color: var(--stx-teal); color: var(--stx-teal); }
.stx-design-library__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stx-design-card { cursor: pointer; }
.stx-design-card__img {
  aspect-ratio: 1;
  border-radius: var(--stx-radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--stx-surface);
}
.stx-design-card__img img { width: 100%; height: 100%; object-fit: cover; }
.stx-design-card__name { font-size: var(--stx-fs-sm); font-weight: 700; }
.stx-design-card__sub  { font-size: var(--stx-fs-xs); color: var(--stx-text-muted); }

/* ── CONTACT PAGE ────────────────────────────────────────── */

.stx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.stx-contact-hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.stx-contact-hero-text h1 .stx-teal { color: var(--stx-teal); }

.stx-contact-info-card {
  background: var(--stx-surface);
  border-radius: var(--stx-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.stx-contact-info-card__label {
  font-size: var(--stx-fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stx-teal);
  margin-bottom: 0.625rem;
}
.stx-contact-info-card__text { font-size: var(--stx-fs-sm); color: var(--stx-text); line-height: 1.6; }
.stx-contact-wa-card {
  background: var(--stx-dark);
  border-radius: var(--stx-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.stx-contact-wa-card__title { font-size: var(--stx-fs-base); font-weight: 700; color: var(--stx-white); margin-bottom: 0.375rem; display: flex; align-items: center; gap: 0.5rem; }
.stx-contact-wa-card__desc  { font-size: var(--stx-fs-sm); color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.stx-contact-wa-card__footer { display: flex; align-items: center; gap: 0.5rem; }
.stx-contact-wa-card__guarantee { font-size: var(--stx-fs-xs); color: var(--stx-teal); display: flex; align-items: center; gap: 0.25rem; }
.stx-contact-wa-card__guarantee::before { content: '●'; font-size: 6px; }

.stx-contact-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--stx-border-dark); border-radius: var(--stx-radius-lg); overflow: hidden; }
.stx-contact-stat { background: var(--stx-dark); padding: 1.25rem; }
.stx-contact-stat__value { font-size: var(--stx-fs-3xl); font-weight: 900; color: var(--stx-teal); letter-spacing: -0.03em; }
.stx-contact-stat__label { font-size: var(--stx-fs-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* Quote Form */
.stx-quote-form-wrap {
  background: var(--stx-white);
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-xl);
  padding: 2.5rem;
}
.stx-quote-form-wrap h2 { font-size: var(--stx-fs-2xl); font-weight: 800; margin-bottom: 0.375rem; }
.stx-form-response-badge {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: var(--stx-fs-sm); font-weight: 600; color: var(--stx-teal);
  margin-bottom: 2rem;
}
.stx-form-response-badge::before { content: '✓'; font-weight: 900; }
.stx-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stx-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.stx-form-group--full { grid-column: 1 / -1; }
.stx-form-label { font-size: var(--stx-fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stx-text-muted); }
.stx-form-input,
.stx-form-select,
.stx-form-textarea {
  width: 100%;
  padding: 0.75rem 0;
  font-size: var(--stx-fs-base);
  color: var(--stx-text);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--stx-border);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.stx-form-input:focus,
.stx-form-select:focus,
.stx-form-textarea:focus { border-bottom-color: var(--stx-teal); }
.stx-form-input::placeholder,
.stx-form-textarea::placeholder { color: var(--stx-text-light); }
.stx-form-textarea { resize: vertical; min-height: 100px; }

/* Timeline buttons */
.stx-timeline-btns { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.stx-timeline-btn {
  padding: 0.5rem 1rem;
  font-size: var(--stx-fs-sm);
  font-weight: 600;
  border: 1.5px solid var(--stx-border);
  border-radius: var(--stx-radius);
  background: var(--stx-white);
  cursor: pointer;
  transition: var(--stx-transition);
}
.stx-timeline-btn:hover,
.stx-timeline-btn.is-active { border-color: var(--stx-teal); color: var(--stx-teal); background: rgba(0,180,166,0.05); }

.stx-form-submit {
  width: 100%;
  margin-top: 1.5rem;
  background: var(--stx-teal);
  color: var(--stx-white);
  border: none;
  border-radius: var(--stx-radius);
  height: 56px;
  font-size: var(--stx-fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--stx-transition-md);
}
.stx-form-submit:hover { background: var(--stx-teal-hover); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(0,180,166,0.3); }
.stx-form-note { text-align: center; font-size: var(--stx-fs-xs); color: var(--stx-text-muted); margin-top: 0.875rem; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */

.stx-about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--stx-nav-height);
  background: var(--stx-black);
  overflow: hidden;
}
.stx-about-hero__bg { position: absolute; inset: 0; }
.stx-about-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.stx-about-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--stx-black) 20%, transparent 80%); }
.stx-about-hero__content { position: relative; z-index: 1; padding-bottom: 4rem; }

.stx-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stx-border);
  border: 1px solid var(--stx-border);
  border-radius: var(--stx-radius-lg);
  overflow: hidden;
}
.stx-stat-block { background: var(--stx-white); padding: 2rem; text-align: center; }
.stx-stat-block__value { font-size: var(--stx-fs-4xl); font-weight: 900; color: var(--stx-teal); letter-spacing: -0.03em; display: block; }
.stx-stat-block__label { font-size: var(--stx-fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stx-text-muted); margin-top: 0.25rem; }

.stx-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stx-border);
  border-radius: var(--stx-radius-lg);
  overflow: hidden;
}
.stx-quality-card { background: var(--stx-surface); padding: 2rem; }
.stx-quality-card--teal { background: var(--stx-teal); }
.stx-quality-card--teal .stx-quality-card__title,
.stx-quality-card--teal .stx-quality-card__desc { color: var(--stx-white); }
.stx-quality-card__icon { font-size: 1.5rem; margin-bottom: 1rem; }
.stx-quality-card__title { font-size: var(--stx-fs-base); font-weight: 700; margin-bottom: 0.5rem; }
.stx-quality-card__desc  { font-size: var(--stx-fs-sm); color: var(--stx-text-muted); line-height: 1.6; }

.stx-core-dna { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stx-dna-item__icon {
  width: 40px; height: 40px;
  background: rgba(0,180,166,0.1);
  border-radius: var(--stx-radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.stx-dna-item__title { font-size: var(--stx-fs-sm); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stx-teal); margin-bottom: 0.5rem; }
.stx-dna-item__desc  { font-size: var(--stx-fs-sm); color: var(--stx-text-muted); line-height: 1.6; }

/* ── PORTFOLIO PAGE ──────────────────────────────────────── */

.stx-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stx-portfolio-card {
  position: relative;
  border-radius: var(--stx-radius-xl);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.stx-portfolio-card--featured { grid-column: 1 / -1; min-height: 380px; }
.stx-portfolio-card { min-height: 280px; }
.stx-portfolio-card__img { position: absolute; inset: 0; }
.stx-portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.75); }
.stx-portfolio-card:hover .stx-portfolio-card__img img { transform: scale(1.04); }
.stx-portfolio-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.85), transparent); }
.stx-portfolio-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.stx-portfolio-card__sport { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stx-teal); margin-bottom: 0.375rem; }
.stx-portfolio-card__name { font-size: var(--stx-fs-xl); font-weight: 800; color: var(--stx-white); letter-spacing: -0.02em; }
.stx-portfolio-card--featured .stx-portfolio-card__name { font-size: var(--stx-fs-3xl); }

/* Portfolio Filter */
.stx-portfolio-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.stx-filter-btn {
  padding: 0.5rem 1rem;
  font-size: var(--stx-fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--stx-border);
  border-radius: var(--stx-radius-full);
  background: var(--stx-white);
  cursor: pointer;
  transition: var(--stx-transition);
}
.stx-filter-btn:hover,
.stx-filter-btn.is-active {
  background: var(--stx-teal);
  border-color: var(--stx-teal);
  color: var(--stx-white);
}

/* ── ELEMENTOR OVERRIDES ─────────────────────────────────── */

.stx-elementor-section--dark { background: var(--stx-black) !important; color: var(--stx-white) !important; }
.stx-elementor-section--teal { background: var(--stx-teal) !important; color: var(--stx-white) !important; }
.stx-elementor-section--surface { background: var(--stx-surface) !important; }

/* Elementor full-width override */
.elementor-section.elementor-section-stretched { max-width: none; }

/* ── WOOCOMMERCE OVERRIDES ───────────────────────────────── */

.woocommerce ul.products li.product .stx-product-card { height: 100%; }
.woocommerce-page .woocommerce { display: contents; }

/* ── BREADCRUMB ──────────────────────────────────────────── */

.stx-breadcrumb-wrap {
  padding: 0.75rem 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .stx-nav__menu { display: none; }
  .stx-nav__hamburger { display: flex; }
  .stx-hero__inner { grid-template-columns: 1fr; }
  .stx-hero__visual { display: none; }
  .stx-footer__top { grid-template-columns: 1fr 1fr; }
  .stx-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .stx-bento__item--featured { grid-row: auto; grid-column: 1 / -1; }
  .stx-contact-grid { grid-template-columns: 1fr; }
  .stx-product-detail__grid { grid-template-columns: 1fr; }
  .stx-portfolio-grid { grid-template-columns: 1fr; }
  .stx-portfolio-card--featured { grid-column: 1; }
  .stx-testimonials-grid { grid-template-columns: 1fr; }
  .stx-steps { grid-template-columns: repeat(2, 1fr); }
  .stx-steps::before { display: none; }
  .stx-core-dna { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stx-mobile-cta-bar { display: block; }
  .stx-whatsapp-fab { bottom: 5.5rem; }
  .stx-hero__heading { font-size: 2.25rem; }
  .stx-hero__sub { font-size: var(--stx-fs-base); }
  .stx-hero__actions { flex-direction: column; }
  .stx-hero__actions .stx-btn { width: 100%; }
  .stx-section-head { flex-direction: column; align-items: flex-start; }
  .stx-section-head__right { text-align: left; }
  .stx-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stx-footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stx-urgency-bar__inner { flex-direction: column; text-align: center; gap: 1rem; }
  .stx-cta-banner { padding: 3rem 1.5rem; }
  .stx-form-grid { grid-template-columns: 1fr; }
  .stx-steps { grid-template-columns: 1fr; }
  .stx-core-dna { grid-template-columns: 1fr; }
  .stx-design-library__grid { grid-template-columns: repeat(2, 1fr); }
  .stx-stats-grid { grid-template-columns: 1fr; }
  .stx-quality-grid { grid-template-columns: 1fr; }
  .stx-contact-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stx-footer__top { grid-template-columns: 1fr; }
  .stx-trust-bar__inner { gap: 1.25rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; }
  .stx-design-library__grid { grid-template-columns: 1fr; }
}
