/* ============================================================
   MOTOTECH — Namespaced tokens
   ============================================================ */
:root {
  --mototech-red: #e31e24;
  --mototech-red-dark: #b9151a;
  --mototech-black: #111111;
  --mototech-ink: #1a1a1a;
  --mototech-navy: #0b1e3d;
  --mototech-gray-900: #232323;
  --mototech-gray-700: #4d4d4d;
  --mototech-gray-500: #6f6f6f;
  --mototech-gray-200: #e7e7e7;
  --mototech-gray-100: #f4f4f4;
  --mototech-bg-panel: #eef1f4;
  --mototech-blue-tint: #eef3fb;
  --mototech-white: #ffffff;
  --mototech-font-display: "Anton", "Poppins", sans-serif;
  --mototech-font-body: "Poppins", sans-serif;
  --mototech-radius-sm: 8px;
  --mototech-radius-md: 14px;
  --mototech-radius-lg: 22px;
  --mototech-max-w: 1536px;
  --mototech-transition: all 0.25s ease;

  /* Shared section rhythm — every section below uses this so the
     vertical gap between sections stays identical site-wide. */
  --mototech-section-space: 64px;
  --mototech-section-space-sm: 40px;
  --mototech-head-gap: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
/* FIX: constrain the page to the viewport width so no element can
   push it into horizontal scroll on mobile. The navbar is now
   position:fixed (not sticky), so it's safe to put overflow-x:hidden
   on both html AND body — this used to be limited to html only
   because it would break position:sticky in Safari, but that's no
   longer a concern. Belt-and-braces against the horizontal-scroll
   gap on the right edge. */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: var(--mototech-font-body);
  color: var(--mototech-ink);
  background: var(--mototech-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.mototech-container {
  max-width: var(--mototech-max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.mototech-heading {
  font-family: var(--mototech-font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--mototech-black);
}
.mototech-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mototech-red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mototech-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--mototech-red);
  display: inline-block;
}
.mototech-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  transition: var(--mototech-transition);
  white-space: nowrap;
}
.mototech-btn i,
.mototech-btn svg {
  transition: var(--mototech-transition);
}
.mototech-btn--solid {
  background: var(--mototech-red);
  color: var(--mototech-white);
}
.mototech-btn--solid:hover {
  background: var(--mototech-red-dark);
  transform: translateY(-2px);
}
.mototech-btn--outline {
  background: transparent;
  color: var(--mototech-black);
  border: 1.5px solid var(--mototech-gray-900);
}
.mototech-btn--outline:hover {
  background: var(--mototech-black);
  color: var(--mototech-white);
  transform: translateY(-2px);
}
.mototech-btn:hover i {
  transform: translateX(3px);
}

/* ============================================================
   SHARED SECTION HEADING PATTERN
   (used by every section except About, per the About section's
   own left-aligned layout)
   ============================================================ */
.mototech-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--mototech-head-gap);
}
.mototech-section-head .mototech-eyebrow {
  display: inline-flex;
  justify-content: center;
}
.mototech-section-head .mototech-section-title {
  font-size: clamp(28px, 3.4vw, 42px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.mototech-topbar {
  background: var(--mototech-black);
  color: #cfcfcf;
  font-size: 13.5px;
}
.mototech-topbar .mototech-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.mototech-topbar__info {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  min-width: 0;
}
.mototech-topbar__info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mototech-topbar__info i {
  color: var(--mototech-red);
  font-size: 13px;
}
.mototech-topbar__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mototech-topbar__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  transition: var(--mototech-transition);
}
.mototech-topbar__social a:hover {
  background: var(--mototech-red);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.mototech-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 500;
}
.mototech-topbar {
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease;
}
.mototech-header.is-scrolled .mototech-topbar {
  max-height: 0;
  opacity: 0;
}
.mototech-navbar {
  position: relative;
  width: 100%;
  background: var(--mototech-white);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  z-index: 500;
}
/* Reserves the header's real height in normal document flow so the
   hero section doesn't render underneath the fixed header. The
   actual height (in px) is measured and written to
   --mototech-header-height by assets/js/script.js, since the header
   height changes across breakpoints (top-bar items get hidden on
   small screens). The fallback values below are only used for the
   split second before JS runs / if JS is unavailable. */
.mototech-header-spacer {
  height: var(--mototech-header-height, 112px);
}
@media (max-width: 900px) {
  .mototech-header-spacer {
    height: var(--mototech-header-height, 96px);
  }
}
@media (max-width: 640px) {
  .mototech-header-spacer {
    height: var(--mototech-header-height, 88px);
  }
}
/* Anchor-link scrolling (#home, #about, etc.) should stop below the
   fixed header instead of sliding underneath it. */
section[id] {
  scroll-margin-top: var(--mototech-header-height, 96px);
}
.mototech-navbar .mototech-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.mototech-logo {
  line-height: 1;
}
.mototech-logo__mark {
  font-family: var(--mototech-font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--mototech-black);
}
.mototech-logo__tag {
  font-size: 12.5px;
  letter-spacing: 3px;
  color: var(--mototech-gray-500);
  text-transform: uppercase;
  margin-top: 2px;
}
.mototech-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.mototech-nav__link {
  position: relative;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--mototech-ink);
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--mototech-transition);
}
.mototech-nav__link:hover {
  color: var(--mototech-red);
}
.mototech-nav__link.is-active {
  color: var(--mototech-red);
}
.mototech-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.5px;
  background: var(--mototech-red);
}
.mototech-nav__link i {
  font-size: 11px;
  transition: var(--mototech-transition);
}
.mototech-nav__item {
  position: relative;
}
.mototech-nav__item:hover .mototech-nav__link i {
  transform: rotate(180deg);
}
.mototech-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--mototech-white);
  min-width: 230px;
  border-radius: var(--mototech-radius-sm);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--mototech-transition);
  z-index: 50;
}
.mototech-nav__item:hover .mototech-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mototech-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  border-radius: 6px;
  color: var(--mototech-ink);
  transition: var(--mototech-transition);
}
.mototech-dropdown a:hover {
  background: var(--mototech-gray-100);
  color: var(--mototech-red);
}
.mototech-navbar__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.mototech-navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.mototech-navbar__toggle span {
  height: 2.5px;
  background: var(--mototech-black);
  border-radius: 2px;
  transition: var(--mototech-transition);
}

/* Sidebar-only elements (head/foot/overlay) — hidden on desktop,
   revealed inside the max-width:900px media query below. */
.mototech-nav__overlay,
.mototech-nav__head,
.mototech-nav__foot {
  display: none;
}

/* ============================================================
   HERO SECTION STYLES
   ============================================================ */
.mototech-hero {
  position: relative;
  background: var(--mototech-gray-150, #f4f5f7);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.mototech-hero__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.mototech-hero__visual {
  order: -1;
  position: relative;
  width: 100%;
  height: clamp(200px, 52vw, 340px);
  background: #161616;
  overflow: hidden;
}

.mototech-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.mototech-hero__content {
  padding: 32px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
}

.mototech-hero__title {
  font-size: clamp(26px, 8vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #111;
}

.mototech-hero__title .is-accent {
  color: var(--mototech-red, #dc2626);
}

.mototech-hero__desc {
  color: var(--mototech-gray-700, #4b5563);
  font-size: clamp(14px, 2.6vw, 16px);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 26px;
}

.mototech-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mototech-hero__actions .mototech-btn {
  flex: 1 1 auto;
  justify-content: center;
}

@media (max-width: 380px) {
  .mototech-hero__content {
    padding: 26px 16px 34px;
  }
  .mototech-hero__actions {
    gap: 10px;
  }
  .mototech-hero__actions .mototech-btn {
    padding: 13px 18px;
    font-size: 14px;
    width: 100%;
  }
}

@media (min-width: 480px) {
  .mototech-hero__content {
    padding: 40px 28px 46px;
  }
  .mototech-hero__actions .mototech-btn {
    flex: 0 0 auto;
    width: auto;
  }
}

@media (min-width: 768px) {
  .mototech-hero__visual {
    height: 400px;
  }
  .mototech-hero__content {
    padding: 56px 40px;
  }
  .mototech-hero__desc {
    max-width: 560px;
  }
}

@media (min-width: 992px) {
  .mototech-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 660px;
  }

  .mototech-hero__content {
    order: 0;
    padding: 80px 40px 80px clamp(40px, 6vw, 80px);
    max-width: 650px;
  }

  .mototech-hero__desc {
    max-width: 480px;
  }

  .mototech-hero__visual {
    order: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(36% 0, 100% 0, 100% 100%, 36% 100%, 49% 50%);
    z-index: 1;
  }

  .mototech-hero__visual img {
    object-fit: contain;
    object-position: right center;
  }
}

@media (min-width: 1200px) {
  .mototech-hero__grid {
    min-height: 700px;
  }
}

@media (min-width: 1600px) {
  .mototech-hero__grid {
    min-height: 760px;
  }
  .mototech-hero__content {
    padding-left: clamp(80px, 8vw, 140px);
  }
}

/* ============================================================
   ABOUT SECTION — Justified Text Alignment (Matching Image Style)
   ============================================================ */

.mototech-about {
  padding: var(--mototech-section-space) 0;
  background: var(--mototech-white);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.mototech-about__grid {
  width: 100%;
  max-width: 100%;
}
.mototech-about__grid::after {
  content: "";
  display: table;
  clear: both;
}

.mototech-about__media-container {
  float: left;
  width: 46%;
  max-width: 520px;
  margin: 0 40px 24px 0;
}

.mototech-about__image-wrapper {
  position: relative;
  width: 100%;
}

.mototech-about__image {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--mototech-radius-md);
  overflow: hidden;
}

.mototech-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Social Share Container & Links */
.mototech-about__social {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  position: relative;
  z-index: 1 !important;
  pointer-events: auto !important;
  flex-wrap: wrap;
}

.mototech-about__social-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mototech-gray-700, #374151);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mototech-about__social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--mototech-gray-100, #f3f4f6) !important;
  color: var(--mototech-gray-700, #374151) !important;
  border-radius: 50% !important;
  font-size: 16px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transition: all 0.3s ease !important;
}

.mototech-about__social a i {
  pointer-events: none !important;
}

.mototech-about__social a:hover {
  background: var(--mototech-red, #e31e24) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 15px rgba(227, 30, 36, 0.3) !important;
}

/* Typography & Content Layout — Justified for right-side consistency */
.mototech-about__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  margin-bottom: 22px;
}

.mototech-about__text {
  color: var(--mototech-gray-700);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
}

/* Stats Section — kept on one horizontal row at every breakpoint,
   only the sizing shrinks on very small screens (see media queries
   below) so the 3 numbers never wrap onto separate lines. */
.mototech-about__stats {
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0 34px;
  padding: 24px 0;
  border-top: 1px solid var(--mototech-gray-200);
  border-bottom: 1px solid var(--mototech-gray-200);
  text-align: center;
}

.mototech-about__stat-num {
  font-family: var(--mototech-font-display);
  font-size: 32px;
  color: var(--mototech-red);
  line-height: 1;
}

.mototech-about__stat-label {
  font-size: 13px;
  color: var(--mototech-gray-500);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 850px) {
  .mototech-about__media-container {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0 0 24px;
  }
  .mototech-about__image {
    height: 340px;
  }
  .mototech-about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 520px) {
  /* FIX: stats stay in a single horizontal row on mobile instead
     of stacking — only the gap/font-size shrink to fit. */
  .mototech-about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 18px 0;
  }
  .mototech-about__stat-num {
    font-size: 22px;
  }
  .mototech-about__stat-label {
    font-size: 10.5px;
    letter-spacing: 0.2px;
  }
}

@media (max-width: 360px) {
  .mototech-about__stats {
    gap: 6px;
  }
  .mototech-about__stat-num {
    font-size: 19px;
  }
  .mototech-about__stat-label {
    font-size: 9.5px;
  }
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.mototech-product-section {
  padding: var(--mototech-section-space) 0;
  background: var(--mototech-white);
  font-family: "Poppins", sans-serif;
  color: #000000;
}

.mototech-product-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--mototech-head-gap);
}
.mototech-product-section__head .mototech-eyebrow {
  display: inline-flex;
}
.mototech-product-section__title {
  font-size: clamp(28px, 3.4vw, 42px);
}

.mototech-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.mototech-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mototech-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
}

.mototech-card-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 13 / 9;
  overflow: hidden;
  background-color: #000000;
}

.mototech-card-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mototech-product-card:hover
  .mototech-card-img-container
  img.mototech-primary-img {
  transform: scale(1.06);
}

.mototech-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mototech-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mototech-card-desc {
  font-size: 14px;
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
}

.mototech-card-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background-color: #e31e24;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mototech-product-card:hover .mototech-card-btn {
  background-color: #000000;
}

.mototech-card-btn:active {
  transform: scale(0.98);
}

.mototech-view-all-container {
  text-align: center;
  margin-top: 50px;
}

.mototech-view-all-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mototech-view-all-btn:hover {
  background-color: #e31e24;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

@media (max-width: 768px) {
  .mototech-product-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.mototech-why-head {
  padding: var(--mototech-section-space) 0 0;
  background: var(--mototech-white);
}
.mototech-why__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--mototech-head-gap);
}
.mototech-why__head .mototech-eyebrow {
  display: inline-flex;
  justify-content: center;
}
.mototech-why__title {
  font-size: clamp(28px, 3.4vw, 42px);
}

/* FIX: the universal selector below used to also match the <i>
   icon tags and overwrite the Font Awesome icon font with the
   body font, which made every icon in this section disappear.
   Excluding `i` (and svg, just in case) keeps the icon font intact
   while still applying the local font to headings/paragraphs. */
.wtc-unique-wrapper *:not(i):not(svg) {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.wtc-unique-wrapper i,
.wtc-unique-wrapper svg {
  box-sizing: border-box;
}

.wtc-unique-wrapper .why-choose-section {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 0 20px var(--mototech-section-space);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--mototech-white);
}

.wtc-unique-wrapper .showcase-container {
  position: relative;
  width: 1000px;
  max-width: 100%;
  height: 520px;
  margin: 35px auto;
}

.wtc-unique-wrapper .feature-card {
  position: absolute;
  width: 440px;
  min-height: 185px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 5;
}

.wtc-unique-wrapper .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.wtc-unique-wrapper .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.wtc-unique-wrapper .card-top-left {
  top: 0px;
  left: 0px;
  background-color: #ed1c24;
  color: #ffffff;
  flex-direction: row;
}

.wtc-unique-wrapper .card-top-right {
  top: 0px;
  right: 0px;
  background-color: #ffffff;
  color: #1a1a1a;
  flex-direction: row-reverse;
  text-align: right;
  border: 1px solid #eaeaea;
}

.wtc-unique-wrapper .card-bottom-left {
  bottom: 0px;
  left: 0px;
  background-color: #ffffff;
  color: #1a1a1a;
  flex-direction: row;
  border: 1px solid #eaeaea;
}

.wtc-unique-wrapper .card-bottom-right {
  bottom: 0px;
  right: 0px;
  background-color: #1a1a1a;
  color: #ffffff;
  flex-direction: row-reverse;
  text-align: right;
}

.wtc-unique-wrapper .central-image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  animation: wtcPingGlow 4s ease-in-out infinite;
}

.wtc-unique-wrapper .central-image-wrapper img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.wtc-unique-wrapper .card-icon {
  flex-shrink: 0;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: transform 0.3s ease;
}

.wtc-unique-wrapper .feature-card:hover .card-icon {
  transform: scale(1.05);
}

.wtc-unique-wrapper .card-top-left .card-icon,
.wtc-unique-wrapper .card-bottom-right .card-icon {
  background-color: #ffffff;
  color: #1a1a1a;
}

.wtc-unique-wrapper .card-top-right .card-icon,
.wtc-unique-wrapper .card-bottom-left .card-icon {
  background-color: #ed1c24;
  color: #ffffff;
}

.wtc-unique-wrapper .card-content {
  flex-grow: 1;
}

.wtc-unique-wrapper .card-top-left .card-content,
.wtc-unique-wrapper .card-bottom-left .card-content {
  padding-left: 18px;
  padding-right: 48px;
}

.wtc-unique-wrapper .card-top-right .card-content,
.wtc-unique-wrapper .card-bottom-right .card-content {
  padding-right: 18px;
  padding-left: 48px;
}

.wtc-unique-wrapper .card-title {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.25;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.wtc-unique-wrapper .card-divider {
  width: 28px;
  height: 2px;
  background-color: #ed1c24;
  margin-bottom: 8px;
}

.wtc-unique-wrapper .card-top-right .card-divider,
.wtc-unique-wrapper .card-bottom-right .card-divider {
  margin-left: auto;
}

.wtc-unique-wrapper .card-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
  word-break: break-word;
}

@keyframes wtcPingGlow {
  0% {
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(237, 28, 36, 0.25);
  }
  50% {
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.2),
      0 0 0 15px rgba(237, 28, 36, 0);
  }
  100% {
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.2),
      0 0 0 0 rgba(237, 28, 36, 0);
  }
}

@media (max-width: 1050px) {
  .wtc-unique-wrapper .showcase-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .wtc-unique-wrapper .feature-card {
    position: relative;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    width: 100%;
    max-width: 440px;
  }

  .wtc-unique-wrapper .card-top-left .card-content,
  .wtc-unique-wrapper .card-bottom-left .card-content,
  .wtc-unique-wrapper .card-top-right .card-content,
  .wtc-unique-wrapper .card-bottom-right .card-content {
    padding: 0 18px;
  }

  .wtc-unique-wrapper .central-image-wrapper {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .wtc-unique-wrapper .feature-card {
    border-radius: 24px;
    padding: 20px;
  }
  .wtc-unique-wrapper .card-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
  .wtc-unique-wrapper .central-image-wrapper {
    width: 220px;
    height: 220px;
  }
  .wtc-unique-wrapper .central-image-wrapper img {
    width: 260px;
    height: 260px;
  }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.mototech-testimonials {
  padding: var(--mototech-section-space) 0;
  background: var(--mototech-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
.mototech-testimonials__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--mototech-head-gap);
}
.mototech-testimonials__head .mototech-eyebrow {
  display: inline-flex;
  justify-content: center;
}
.mototech-testimonials__title {
  font-size: clamp(28px, 3.4vw, 42px);
}

.mototech-tst-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 3rem 0 0.5rem;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
}
.mototech-tst-track {
  display: flex;
  width: max-content;
  gap: 24px;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.mototech-tst-track.is-dragging {
  cursor: grabbing;
}
.mototech-tst-slot {
  flex: 0 0 var(--tst-card-width, 360px);
  width: var(--tst-card-width, 360px);
  padding-top: 1rem;
  padding-bottom: 4px;
}
.mototech-tst-card {
  position: relative;
  background: var(--mototech-white);
  border: 1px solid var(--mototech-gray-200);
  border-radius: var(--mototech-radius-md);
  padding: 2.25rem;
  padding-top: 4.25rem;
  padding-bottom: 2.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
  transition: var(--mototech-transition);
}
.mototech-tst-card:hover {
  box-shadow: 0 15px 35px rgba(227, 30, 36, 0.12);
  border-color: transparent;
}
.mototech-tst-avatar {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  padding: 0.25rem;
  background: var(--mototech-white);
  border: 2px solid var(--mototech-navy);
  box-shadow: 0 12px 26px rgba(11, 30, 61, 0.18);
  overflow: hidden;
}
.mototech-tst-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}
.mototech-tst-quote-mark {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(11, 30, 61, 0.1);
  font-family: var(--mototech-font-display);
  font-size: 3.5rem;
  line-height: 1;
  user-select: none;
}
.mototech-tst-content {
  position: relative;
  z-index: 10;
}
.mototech-tst-quote {
  color: var(--mototech-gray-700);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.mototech-tst-footer {
  position: relative;
  z-index: 10;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mototech-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mototech-tst-name {
  font-family: var(--mototech-font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mototech-black);
  letter-spacing: 0.4px;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.mototech-tst-role {
  font-size: 0.72rem;
  color: var(--mototech-navy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
}
.mototech-tst-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--mototech-red);
}
.mototech-tst-star {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

@media (max-width: 640px) {
  .mototech-tst-viewport {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 3%,
      #000 97%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 3%,
      #000 97%,
      transparent 100%
    );
  }
  .mototech-tst-slot {
    padding-top: 1.5rem;
  }
  .mototech-tst-card {
    padding-top: 4.9rem;
    min-height: 320px;
  }
  .mototech-tst-avatar {
    top: -2.3rem;
    width: 4.5rem;
    height: 4.5rem;
  }
  .mototech-tst-content {
    position: relative;
    z-index: 2;
    margin-top: 0.45rem;
  }
  .mototech-tst-quote {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 400px) {
  .mototech-tst-card {
    padding-top: 4.9rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .mototech-tst-avatar {
    top: -2.2rem;
    width: 4.2rem;
    height: 4.2rem;
  }
  .mototech-tst-content {
    margin-top: 0.6rem;
  }
  .mototech-tst-quote {
    font-size: 0.82rem;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.mototech-contact {
  padding: var(--mototech-section-space) 0;
  background: var(--mototech-white);
}
.mototech-contact__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--mototech-head-gap);
}
.mototech-contact__head .mototech-eyebrow {
  display: inline-flex;
}
.mototech-contact__title {
  font-size: clamp(28px, 3.4vw, 42px);
}
.mototech-contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: start;
}
.mototech-form__label {
  font-family: var(--mototech-font-display);
  font-size: 22px;
  margin-bottom: 22px;
  color: var(--mototech-navy);
}
.mototech-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.mototech-input,
.mototech-select,
.mototech-textarea {
  width: 100%;
  border: 1px solid var(--mototech-gray-200);
  background: var(--mototech-gray-100);
  border-radius: var(--mototech-radius-sm);
  padding: 16px 18px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--mototech-ink);
  transition: var(--mototech-transition);
}
.mototech-input:focus,
.mototech-select:focus,
.mototech-textarea:focus {
  outline: none;
  border-color: var(--mototech-red);
  background: var(--mototech-white);
  box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
}
.mototech-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23B9151A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.mototech-textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 22px;
}
.mototech-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mototech-form__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mototech-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--mototech-transition);
}
.mototech-form__circle:hover {
  background: var(--mototech-red);
  transform: translateX(4px);
}

.mototech-info {
  background: var(--mototech-blue-tint);
  border-radius: var(--mototech-radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.mototech-info__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 30, 61, 0.08);
}
.mototech-info__item:last-of-type {
  border-bottom: none;
}
.mototech-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--mototech-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.mototech-info__title {
  font-family: var(--mototech-font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--mototech-navy);
  margin-bottom: 6px;
}
.mototech-info__text {
  font-size: 14px;
  color: var(--mototech-gray-700);
  line-height: 1.6;
}
.mototech-info__social {
  margin-top: 22px;
}
.mototech-info__social .mototech-info__title {
  margin-bottom: 14px;
}
.mototech-info__social-icons {
  display: flex;
  gap: 12px;
}
.mototech-info__social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mototech-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--mototech-transition);
}
.mototech-info__social-icons a:hover {
  background: var(--mototech-red);
  transform: translateY(-3px);
}
.mototech-info__badge {
  position: absolute;
  top: -28px;
  right: 20px;
  width: 150px;
  z-index: 2;
}
@media (max-width: 520px) {
  .mototech-info__badge {
    display: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.mototech-footer {
  background: var(--mototech-white);
  padding-top: var(--mototech-section-space);
  border-top: 1px solid var(--mototech-gray-200);
}
.mototech-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.mototech-footer__brand-mark {
  font-family: var(--mototech-font-display);
  font-size: 30px;
  color: var(--mototech-black);
  margin-bottom: 10px;
}
.mototech-footer__tag {
  color: var(--mototech-gray-500);
  font-size: 15px;
  margin-bottom: 20px;
}
.mototech-footer__tag .is-accent {
  color: var(--mototech-red);
}
.mototech-footer__desc {
  color: var(--mototech-gray-700);
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 26px;
}
.mototech-footer__social {
  display: flex;
  gap: 12px;
}
.mototech-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--mototech-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mototech-ink);
  transition: var(--mototech-transition);
}
.mototech-footer__social a:hover {
  background: var(--mototech-red);
  border-color: var(--mototech-red);
  color: #fff;
  transform: translateY(-3px);
}
.mototech-footer__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mototech-ink);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.mototech-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 3px;
  background: var(--mototech-red);
}
.mototech-footer__col ul li {
  margin-bottom: 13px;
}
.mototech-footer__col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--mototech-gray-700);
  transition: var(--mototech-transition);
}
.mototech-footer__col ul li a i {
  color: var(--mototech-red);
  font-size: 11px;
}
.mototech-footer__col ul li a:hover {
  color: var(--mototech-red);
  transform: translateX(3px);
}
.mototech-footer__contact-item {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--mototech-gray-200);
}
.mototech-footer__contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.mototech-footer__contact-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--mototech-gray-100);
  color: var(--mototech-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.mototech-footer__contact-title {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 4px;
}
.mototech-footer__contact-text {
  font-size: 14px;
  color: var(--mototech-gray-700);
  line-height: 1.6;
}
.mototech-footer__bottom {
  border-top: 1px solid var(--mototech-gray-200);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--mototech-gray-500);
}
.mototech-footer__bottom-links {
  display: flex;
  gap: 22px;
}
.mototech-footer__bottom-links a:hover {
  color: var(--mototech-red);
}
.mototech-footer__ribbon {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--mototech-red) 0%,
    var(--mototech-red) 45%,
    var(--mototech-navy) 45%,
    var(--mototech-navy) 100%
  );
}

/* ============================================================
   SCROLL-REVEAL / DYNAMIC ARRIVAL SYSTEM
   ============================================================ */
[data-mototech-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--mototech-reveal-delay, 0s);
}
[data-mototech-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-mototech-reveal="zoom"] {
  transform: scale(0.94);
}
[data-mototech-reveal="zoom"].is-revealed {
  transform: scale(1);
}
[data-mototech-reveal="left"] {
  transform: translateX(-32px);
}
[data-mototech-reveal="left"].is-revealed {
  transform: translateX(0);
}
[data-mototech-reveal="right"] {
  transform: translateX(32px);
}
[data-mototech-reveal="right"].is-revealed {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-mototech-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .wtc-unique-wrapper .central-image-wrapper {
    animation: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .mototech-container {
    padding: 0 32px;
  }
  .mototech-contact__grid {
    grid-template-columns: 1fr;
  }
  .mototech-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .mototech-topbar__info span:nth-child(3) {
    display: none;
  }

  .mototech-nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 30, 61, 0.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: var(--mototech-transition);
    z-index: 590;
  }
  .mototech-nav__overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mototech-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 26px 22px 26px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.16);
    transform: translateX(100%);
    transition: var(--mototech-transition);
    z-index: 600;
    gap: 6px;
    overflow: hidden;
    overscroll-behavior: contain;
  }
  .mototech-nav.is-open {
    transform: translateX(0);
  }

  .mototech-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--mototech-gray-200);
  }
  .mototech-nav__head .mototech-logo__mark {
    font-size: 23px;
    letter-spacing: 0.5px;
  }
  .mototech-nav__head .mototech-logo__tag {
    font-size: 9.5px;
    letter-spacing: 2.2px;
    margin-top: 1px;
  }
  .mototech-nav__close {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mototech-gray-100);
    color: var(--mototech-ink);
    font-size: 14px;
    transition: var(--mototech-transition);
  }
  .mototech-nav__close:hover {
    background: var(--mototech-red);
    color: #fff;
    transform: rotate(90deg);
  }

  .mototech-nav__link {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15.5px;
    justify-content: space-between;
    padding-bottom: 14px;
  }
  .mototech-nav__link:hover {
    background: var(--mototech-gray-100);
    color: var(--mototech-ink);
  }
  .mototech-nav__link.is-active {
    background: var(--mototech-red);
    color: #fff;
  }
  .mototech-nav__link.is-active::after {
    display: none;
  }
  .mototech-nav__item {
    width: 100%;
    position: relative;
    overflow: visible;
  }
  .mototech-nav__item .mototech-nav__link {
    width: 100%;
  }
  .mototech-nav__item.is-open > .mototech-nav__link {
    background: var(--mototech-gray-100);
    color: var(--mototech-red);
  }

  .mototech-dropdown {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 8px 0 0 !important;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0 !important;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 8px 8px 10px;
    background: var(--mototech-gray-100);
    border-left: 3px solid var(--mototech-red);
    border-radius: 10px;
    max-height: 216px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--mototech-gray-200) transparent;
  }
  .mototech-dropdown::-webkit-scrollbar {
    width: 4px;
  }
  .mototech-dropdown::-webkit-scrollbar-track {
    background: transparent;
  }
  .mototech-dropdown::-webkit-scrollbar-thumb {
    background: var(--mototech-gray-200);
    border-radius: 3px;
  }
  .mototech-dropdown a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--mototech-gray-700);
    border-radius: 8px;
  }
  .mototech-dropdown a:hover {
    background: var(--mototech-white);
    color: var(--mototech-red);
    transform: translateX(2px);
  }
  .mototech-nav__item.is-open .mototech-dropdown {
    display: block;
  }
  .mototech-nav__item.is-open > .mototech-nav__link i {
    transform: rotate(180deg);
  }

  .mototech-nav__foot {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--mototech-gray-200);
  }
  .mototech-nav__foot-cta {
    width: 100%;
    justify-content: center;
  }

  .mototech-navbar__toggle {
    display: flex;
  }
  .mototech-navbar__toggle.is-active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .mototech-navbar__toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .mototech-navbar__toggle.is-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  .mototech-navbar__cta .mototech-btn span {
    display: none;
  }
  .mototech-navbar__cta .mototech-btn {
    padding: 13px 16px;
  }
}
@media (max-width: 768px) {
  :root {
    --mototech-section-space: var(--mototech-section-space-sm);
    --mototech-head-gap: 40px;
  }
}
@media (max-width: 640px) {
  .mototech-container {
    padding: 0 20px;
  }
  .mototech-form__row {
    grid-template-columns: 1fr;
  }
  .mototech-footer__grid {
    grid-template-columns: 1fr;
  }
  .mototech-topbar__info {
    gap: 14px;
    font-size: 12px;
  }
  .mototech-topbar__info span:nth-child(2) {
    display: none;
  }
  .mototech-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ============================================================
   ULTRA-SMALL SCREENS (≤400px, covers 320/360/375/390/414px
   devices) — the navbar logo + mark, the "Get Quote" CTA and the
   hamburger icon can crowd each other at these widths since none
   of the breakpoints above shrink the logo on the main (non-
   sidebar) navbar. Same for form actions and testimonial padding.
   ============================================================ */
@media (max-width: 400px) {
  .mototech-container {
    padding: 0 16px;
  }

  .mototech-navbar .mototech-container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .mototech-logo__mark {
    font-size: 23px;
    letter-spacing: 0.4px;
  }
  .mototech-logo__tag {
    font-size: 9.5px;
    letter-spacing: 1.8px;
  }
  .mototech-navbar__cta {
    gap: 10px;
  }
  .mototech-navbar__toggle {
    width: 26px;
  }

  .mototech-tst-card {
    padding: 1.75rem 1.5rem 2rem;
  }
  .mototech-tst-quote {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .mototech-form__actions {
    flex-wrap: wrap;
  }

  .mototech-about__text {
    text-align: left;
  }
}

@media (max-width: 340px) {
  .mototech-container {
    padding: 0 14px;
  }
  .mototech-logo__mark {
    font-size: 20px;
  }
  .mototech-logo__tag {
    font-size: 8.5px;
    letter-spacing: 1.4px;
  }
}
/* ============================================================
   BREADCRUMB SECTION
   ============================================================ */

.mototech-breadcrumb {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(260px, 34vw, 420px);
  display: flex;
  align-items: center;
  background: var(--mototech-navy, #0b1e3d);
}

/* ---- full-cover background image ---- */
.mototech-breadcrumb__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mototech-breadcrumb__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Legibility gradient over the photo — heavier at the bottom
   where the title and trail sit, fading toward the top. */
.mototech-breadcrumb__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(27, 26, 26, 0.68) 50%,
    rgba(29, 28, 28, 0.82) 100%
  );
}

/* ---- content ---- */
.mototech-breadcrumb__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mototech-breadcrumb__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--mototech-red, #e31e24);
  font-weight: 700;
  font-size: clamp(10px, 1.7vw, 13px);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mototech-breadcrumb__eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--mototech-red, #e31e24);
  display: inline-block;
}

.mototech-breadcrumb__title {
  font-family: var(--mototech-font-display, "Anton", sans-serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #fff;
  font-size: clamp(24px, 5vw, 48px);
  line-height: 1.08;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.mototech-breadcrumb__title .is-accent {
  color: var(--mototech-red, #e31e24);
}

/* ---- breadcrumb trail ---- */
.mototech-breadcrumb__trail {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mototech-breadcrumb__trail ol {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.mototech-breadcrumb__trail li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mototech-font-body, "Poppins", sans-serif);
  font-size: 14.5px;
  font-weight: 500;
}
.mototech-breadcrumb__trail li i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}
.mototech-breadcrumb__trail a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
}
.mototech-breadcrumb__trail a i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.mototech-breadcrumb__trail a:hover {
  color: var(--mototech-red, #e31e24);
}
.mototech-breadcrumb__trail a:hover i {
  color: var(--mototech-red, #e31e24);
}
.mototech-breadcrumb__trail li[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .mototech-breadcrumb {
    min-height: clamp(220px, 46vw, 320px);
  }
  .mototech-breadcrumb__content {
    padding-top: 40px;
    padding-bottom: 26px;
  }
}

@media (max-width: 520px) {
  .mototech-breadcrumb__title {
    font-size: clamp(20px, 6.2vw, 28px);
  }
  .mototech-breadcrumb__trail li {
    font-size: clamp(10px, 2.8vw, 12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mototech-breadcrumb * {
    transition: none !important;
  }
}

/* ============================================================
   PRODUCT DETAIL SLIDER SECTION
   ============================================================ */

.mototech-products {
  background-color: #fff;
}

.ps-slider-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ps-slider-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ps-slider-container .swiper {
  overflow: hidden;
  padding-bottom: 50px;
}

.ps-slider-container .swiper-wrapper {
  display: flex;
}

.ps-slider-container .swiper-slide {
  flex-shrink: 0;
  height: auto;
}

.ps-product-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ps-card-image-box {
  height: 256px;
  width: 100%;
  background: #f3f4f6;
  overflow: hidden;
}

.ps-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.ps-product-title {
  font-weight: 400;
  color: #111827;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Poppins", Arial, sans-serif;
}

.ps-product-desc {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Poppins", Arial, sans-serif;

  /* Multi-line clamp properties */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-card-action {
  margin-top: 24px;
}

.ps-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #ea212e;
  color: #ffffff;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Poppins", Arial, sans-serif;
  transition: background-color 0.2s ease;
}

.ps-btn:hover {
  background-color: #000000;
}

.ps-slider-container .swiper-pagination-bullet-active {
  background: #ea212e !important;
}

/* ======== MARKEPLACE PAGE ======== */
.cat-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 20px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-top: 50px;
}

.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
}

/* The markup uses class="cat-row two-col" for the top two
   buttons, so it's targeted directly here for a real, predictable
   2-column grid that collapses to 1 column on narrow phones (see
   breakpoint below). */
.cat-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cat-row.two-col .cat-btn.top-btn {
  width: 100%;
}

.cat-small-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

@media (max-width: 1024px) {
  .cat-small-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cat-small-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cat-row.two-col {
    grid-template-columns: 1fr;
  }
  .cat-btn {
    font-size: 13px;
    padding: 15px 14px;
  }
}

@media (max-width: 340px) {
  .cat-section {
    padding: 10px 14px;
  }
}

.cat-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  background-size: 200% 100%;
  background-position: left;
  transition:
    background-position 0.5s ease,
    color 0.4s ease,
    box-shadow 0.3s ease;
}

.cat-btn.top-btn {
  width: 100%;
  color: #f1e7db;
  background-image: linear-gradient(
    90deg,
    #a10411 0%,
    #a10411 40%,
    #faf5ea 100%
  );
}
.cat-btn.top-btn:hover {
  background-position: right;
  color: #a10411;
  box-shadow: 0 4px 12px rgba(161, 4, 17, 0.3);
}

/* 2. MIDDLE BIG BUTTONS (India / State) */
.cat-btn.full {
  width: 100%;
  color: #f1e7db;
  background-image: linear-gradient(
    90deg,
    #000000 0%,
    #000000 40%,
    #faf5ea 100%
  );
}
.cat-btn.full:hover {
  background-position: right;
  color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cat-btn.small {
  width: 100%;
  color: #f1e7db;
  background-image: linear-gradient(
    90deg,
    #a10411 0%,
    #a10411 40%,
    #faf5ea 100%
  );
}
.cat-btn.small:hover {
  background-position: right;
  color: #a10411;
  box-shadow: 0 4px 12px rgba(161, 4, 17, 0.3);
}