/* ===== Variables ===== */
:root {
  --color-dark: #010101;
  --color-white: #ffffff;
  --color-primary: #C1272C; 
  --color-red: #e7262d;
  --color-red-dark: #c41e24;
  --color-yellow: #f5c518;
  --color-gray: #6b6b6b;
  --color-gray-light: #e8e8e8;
  --color-radial-gradient: radial-gradient(60% 60% at 60% 60%, #1F1E1E 12.26%, #0B0A0B 53.37%, #070707 69.23%, #010101 100%);
  --color-radial-footer : radial-gradient(30% 80% at 20% 50%, #1F1E1E 8.38%, #0B0A0B 53.37%, #070707 69.23%, #010101 100%);
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
  --padding-horizontal: 8.333vw;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  background: var(--color-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== Grid pattern ===== */
.hero-grid,
.services-grid,
.footer-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: calc(100% / 14) calc(100% / 6);
  pointer-events: none;
}

.services-grid--light {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

/* Mobile: 8 columns for background grids */
@media (max-width: 900px) {
  .hero-grid,
  .services-grid,
  .footer-grid,
  .services-grid--light {
    background-size: calc(100% / 8) calc(100% / 6) !important;
  }

  .offer-grid-bg {
    background-size: calc(100% / 8) calc(100% / 6) !important;
  }

  .parts-grid {
    background-size: calc(100% / 8) calc(100% / 6) !important;
  }

  .contact-grid {
    position: absolute !important;
    inset: 0 !important;
    background-size: calc(100% / 8) calc(100% / 6) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .contact-section {
    position: relative !important;
    overflow: hidden !important;
  }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-dark);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-white);
  display: block;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}

a.logo {
  display: block;
  color: inherit;
}

.logo-img {
  display: block;
  height: 55px !important;
  width: auto !important;
  max-height: 55px !important;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white);
  border-radius: 32px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: rgba(255,255,255,0.08);
}

.nav-link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===== Hamburger Menu ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle-line {
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu backdrop overlay */
.nav::before {
  content: '';
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: -1;
}

.nav.menu-open::before {
  opacity: 1;
  visibility: visible;
}

/* ===== Fixed Scroll Indicator ===== */
.scroll-indicator {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator.hidden {
  transform: translateY(-50%) translateX(-100%);
  opacity: 0;
}

.scroll-indicator-line {
  position: absolute;
  left: 6px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(193, 39, 44, 0.2);
  transition: background 0.3s ease;
  z-index: 0;
}

.scroll-indicator-dots {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  z-index: 1;
  padding-left: 0;
}

.scroll-indicator-dot {
  position: relative;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator-dot:hover {
  transform: scale(1.1);
}

.scroll-indicator-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(193, 39, 44, 0.6);
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), font-weight 0.3s ease;
  z-index: 2;
  line-height: 1;
  min-width: 24px;
  text-align: left;
}

.scroll-indicator-dot-inner {
  width: 12px;
  height: 12px;
  background: rgba(193, 39, 44, 0.3);
  border: 2px solid rgba(193, 39, 44, 0.3);
  transform: rotate(45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
}

.scroll-indicator-dot.active .scroll-indicator-number {
  color: var(--color-primary);
  transform: scale(1.15);
  font-weight: 800;
  font-size: 0.95rem;
}

.scroll-indicator-dot.active .scroll-indicator-dot-inner {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(193, 39, 44, 0.2),
              0 0 20px rgba(193, 39, 44, 0.4);
  transform: rotate(45deg) scale(1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: rotate(45deg) scale(1);
    box-shadow: 0 0 0 4px rgba(193, 39, 44, 0.2),
                0 0 20px rgba(193, 39, 44, 0.4);
  }
  50% {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 0 6px rgba(193, 39, 44, 0.15),
                0 0 30px rgba(193, 39, 44, 0.5);
  }
}

.scroll-indicator-dot:hover .scroll-indicator-dot-inner {
  background: rgba(193, 39, 44, 0.6);
  border-color: rgba(193, 39, 44, 0.6);
}

.scroll-indicator-dot:hover .scroll-indicator-number {
  color: rgba(193, 39, 44, 0.9);
  transform: scale(1.1);
}

/* Mobile: Horizontal scroll indicator at bottom - handled in main mobile media query below */

/* ===== Section indicator (red line + numbers) ===== */
.hero-section-indicator,
.services-section-indicator,
.collection-section-indicator,
.offer-section-indicator {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.section-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.section-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: var(--color-primary);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 40px) var(--padding-horizontal) 0px;
  display: flex;
  align-items: center;
}

/* Home page hero background */
.page-home .hero {
  background: var(--color-radial-gradient);
}

.hero-inner {
  margin: 0 auto;
  width: 100%;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.6px;
  color: var(--color-white);
  z-index: 2;
}

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

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--color-yellow);
  font-size: 1.25rem;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.home-hero-visual {
  position: absolute;
  bottom: -5.208vw;
  right: -1.563vw;
  display: flex;
}

.hero-image-wrap {
  z-index: 1;
  max-width: 62.5vw;
}

.hero-image {
  width: 100%;
  border-radius: 8px;
}

/* Services page hero variant */
.hero--services {
  background: var(--color-radial-footer);
}

.hero-title--lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
}

.hero-line {
  display: block;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.hero-visual--services {
  position: absolute;
  bottom: -3vw;
  right: 10vw;
}

.hero-visual--services .hero-image-wrap {
  position: relative;
  z-index: 1;
  max-width: 70.25vw;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-gray-light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.2);
  z-index: 1;
}

/* Spare Parts page hero */
.hero--spare-parts {
  padding-top: calc(var(--header-height) + 60px);
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, var(--color-dark) 100%),
    url("images/spare_parts_hero.avif") center/cover no-repeat;
}

.hero-inner--spare-parts {
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-content--spare-parts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title--spare-parts {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-content .primary-cta {
  align-self: center;
}

.hero-line {
  font-size: clamp(1.35rem, 4vw, 4rem) !important;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.5;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

.hero-cta {
  text-decoration: none;
}

/* ===== What We Offer (services page) ===== */
.offer {
  position: relative;
  padding: 80px 24px 100px;
  background: var(--color-gray-light);
  color: var(--color-dark);
}

.offer-section-indicator .section-num {
  color: var(--color-primary);
}

.offer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.offer-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.offer-lead {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Flip card container */
.service-card {
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  min-height: 180px;
  perspective: 1000px;
  box-shadow: none;
}

.service-card:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.service-card.flipped .service-card-inner {
  transform: rotateY(180deg);
}

/* Desktop: flip on hover */
@media (hover: hover) {
  .service-card:hover .service-card-inner {
    transform: rotateY(180deg);
  }
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card:hover .service-card-front,
.service-card:hover .service-card-back {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card-back {
  transform: rotateY(180deg);
  padding: 24px 20px;
}

.service-card-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-gray);
  line-height: 1.5;
  margin: 0;
}

.service-card-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
  margin: 0;
}

.offer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: calc(100% / 14) calc(100% / 6);
  pointer-events: none;
}

/* ===== Services ===== */
.services {
  position: relative;
  min-height: 85vh;
  padding: 80px var(--padding-horizontal);
  background: var(--color-gray-light);
  color: var(--color-dark);
}

/* Home page services section background */


.services-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--color-primary);
  clip-path: polygon(50% 0, 100% 0%, 100% 100%, 50% 100%, 0% 50%);
  z-index: 0;
}

.services-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.services-section-indicator .section-num {
  color: var(--color-primary);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-list li {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-dark);
}

.services-list strong {
  color: var(--color-primary);
  font-weight: 700;
}

.services-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-diamond {
  transform: rotate(45deg);
}

.services-scooter {
  width: 180%;
  height: 180%;
  object-fit: cover;
  transform: rotate(-45deg);
}

  /* Desktop (900px+): Restore commit layout */
@media (min-width: 900px) {
  .services-scooter {
    width: 40vw;
    height: 100%;
  }

  .footer-inner {
    align-items: center;
  }

  .footer-contact p {
    margin-bottom: 24px;
  }

  /* Sections padding - desktop 8.333vw */
  .hero {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .services {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .collection {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .parts-section {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  /* Services section - restore desktop layout */
  .services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 85vh;
    overflow: visible;
  }

  .services-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    flex-direction: row;
    align-items: center;
    width: auto;
  }

  .services-left {
    padding-left: 0;
    width: auto;
    order: 0;
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    z-index: 2;
  }

  .services-list {
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }

  .services-list li {
    font-size: clamp(1.35rem, 2vw, 2.25rem);
    word-wrap: normal;
    text-align: left;
    white-space: nowrap;
  }

  .services-center {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 0;
  }

  .services-diamond {
    transform: rotate(45deg);
    width: auto;
    max-width: none;
    margin: 0;
  }

  .services-right {
    padding-right: 0;
    text-align: right;
    width: auto;
    order: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    justify-items: flex-end;
  }

  .services-right .stat {
    text-align: right;
    display: block;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    color: var(--color-white);
  }

  .services-diagonal {
    width: 40%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0%, 100% 100%, 50% 100%, 0% 50%);
    top: 0;
    bottom: auto;
    left: auto;
    opacity: 1;
  }

  /* Offer section - restore desktop layout */
  .offer {
    padding: 80px 8.333vw 100px;
    overflow: visible;
  }

  .offer-inner {
    text-align: center;
  }

  .offer-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .offer-lead {
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
  }

  .offer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
  }

  /* Spare parts hero - restore desktop layout */
  .hero--spare-parts {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 0;
    padding-left: 8.333vw;
    padding-right: 8.333vw;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-inner--spare-parts {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-content--spare-parts {
    width: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-title--spare-parts {
    max-width: none;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero-line {
    font-size: clamp(1.35rem, 4vw, 4rem) !important;
  }

  /* Contact form - restore desktop layout */
  .contact-section {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 80px;
    position: relative;
    overflow: visible;
  }

  .contact-form {
    gap: 48px;
    margin-top: 60px;
  }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    text-align: left;
  }

  /* Hero sections - restore desktop layout */
  .hero {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .hero-inner {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-title {
    text-align: left;
    width: auto;
    max-width: none;
  }

  .hero-rating {
    justify-content: flex-start;
    width: auto;
  }

  .hero-content {
    order: 0;
    width: auto;
    text-align: left;
    display: block;
    flex-direction: row;
    align-items: flex-start;
    z-index: 2;
  }

  /* Homepage hero visual */
  .home-hero-visual {
    position: absolute;
    bottom: -5.208vw;
    right: -1.563vw;
    order: 0;
    margin-top: 0;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-image-wrap {
    max-width: 62.5vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  /* Services page hero visual */
  .hero-visual--services {
    position: absolute;
    bottom: -3vw;
    right: 10vw;
    order: 0;
    margin-top: 0;
    left: auto;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-visual--services .hero-image-wrap {
    max-width: 70.25vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero--services {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }
}

.services-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 24px;
}

.services-right .stat {
  text-align: right;
  color: var(--color-white);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

/* ===== Collection ===== */



.swiper {
  position: relative;
	width: 100%;
	margin-inline: auto;
	overflow: visible;
}

.collection .swiper {
  padding: 0 var(--padding-horizontal);
}

.collection .swiper-slide img {
  height: 300px !important;
  min-height: 300px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .collection {
    overflow-x: visible !important;
    overflow-y: visible;
    position: relative;
    width: 100%;
  }

  .collection .swiper {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: visible;
    position: relative;
    margin: 32px 0;
  }

  .collection .swiper-wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
  }

  .collection .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }

  .collection .swiper-slide {
    width: auto;
    flex-shrink: 0;
  }

  .collection .swiper-slide img {
    height: 300px !important;
    min-height: 300px;
    max-height: none;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .swiper::before {
    display: block !important;
    top: -50px;
    height: 80px;
  }

  .swiper::after {
    display: block !important;
    bottom: -50px;
    height: 80px;
  }
}

.swiper img {
	max-width: 100%;
}

.swiper-button-prev, .swiper-button-next {
  color: #ffffff !important;
}

.swiper::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -10%;
  width: 120%;
  height: 100px;
  background: var(--color-gray-light);
  border-radius: 100%;
  z-index: 100;
}

.swiper::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -10%;
  width: 120%;
  height: 100px;
  background: var(--color-gray-light);
  border-radius: 100%;
  z-index: 1000;
}



.collection {
  position: relative;
  padding: 80px var(--padding-horizontal);
  background: var(--color-gray-light);
  color: var(--color-dark);
}

.collection-section-indicator .section-num {
  color: var(--color-primary);
}

.collection-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}


.collection-desc {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ===== Spare Parts section (dark) ===== */
.parts-section {
  position: relative;
  padding: 80px 24px 100px;
  background: var(--color-dark);
  color: var(--color-white);
}

.parts-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: calc(100% / 14) calc(100% / 6);
  pointer-events: none;
}

.parts-inner {
  position: relative;
  z-index: 1;
}

.parts-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.6px;
  margin-bottom: 48px;
  text-align: center;
}

.parts-desc {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Parts section: Swiper (1 slide, nav buttons, pagination dots) */
.parts-section .swiper--parts {
  position: relative;
  max-width: 900px;
  margin: 0 auto 24px;
  overflow: hidden;
}

/* No decorative ::before/::after on parts slider */
.parts-section .swiper--parts::before,
.parts-section .swiper--parts::after {
  display: none !important;
  content: none !important;
}

.parts-section .swiper--parts .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.parts-section .swiper--parts .swiper-slide img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  object-fit: cover;
}

.parts-section .swiper-button-prev,
.parts-section .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.3);
  color: var(--color-white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

/* Swiper 12 uses SVG for arrows – size the icon to half of the button */
.parts-section .swiper-button-prev svg,
.parts-section .swiper-button-next svg {
  width: 24px;
  height: 24px;
}

.parts-section .swiper-button-prev:hover,
.parts-section .swiper-button-next:hover {
  background: var(--color-red);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.parts-section .swiper-pagination {
  position: relative !important;
  margin-top: 20px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 14px;
  visibility: visible !important;
  opacity: 1 !important;
}

.parts-section .swiper-pagination .swiper-pagination-bullets {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.parts-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.parts-section .swiper-pagination-bullet:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.9);
}

.parts-section .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-primary);
  transform: scale(1.2);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 120px 80px 20px;
  background: var(--color-radial-footer);
  color: var(--color-white);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 120px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.footer-address p, .footer-contact a {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.24px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.footer-contact a {
  display: block;
  text-decoration: underline;
}

.footer-logo-link {
  display: block;
  color: inherit;
}

.footer-logo-img {
  display: block;
  height: 7.813vw;
  width: auto;
  object-fit: contain;
}

.footer-contact {
  display: block;
}

.footer-contact p {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.footer-label {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5; 
  letter-spacing: -0.2px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.footer-nav a {
  color: var(--color-white);
  transition: color 0.2s;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5; 
  letter-spacing: -0.24px;
}

.footer-nav a:hover {
  color: var(--color-red);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  line-height: 0;
}

.social-link:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
}

.footer-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-gray);
  margin-top: 24px;

  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.16px;
}

/* ===== Contact Us page ===== */
.contact-section {
  position: relative;
  padding: calc(var(--header-height) + 48px) var(--padding-horizontal) 80px;
  background: var(--color-gray-light);
  color: var(--color-dark);
}

.contact-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: calc(100% / 14) calc(100% / 6);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-eyebrow, .contact-title {
  color: var(--color-gray);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; 
  letter-spacing: 0.6px;
}

.contact-title {
  color: var(--color-dark);
}

.contact-lead {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Mobile: Force single column for contact form */
@media (max-width: 900px) {
  .contact-form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

.contact-label {
  display: block;
}

.contact-label-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.contact-input {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--color-dark);
  background: transparent;
  border: none;
  border-bottom: 2px solid #9f9f9f;
  padding: 10px 0;
  transition: border-color 0.2s, outline 0.2s;
}

.contact-input::placeholder {
  color: var(--color-gray);
}

.contact-input:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.primary-cta {
  align-self: flex-start;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-submit:hover {
  background: var(--color-red-dark);
}

/* ===== Inner page layout (for pages that use only header + footer) ===== */
.page-main {
  min-height: calc(100vh - var(--header-height));
  padding: calc(var(--header-height) + 48px) 24px 48px;
}

.page-section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-lead {
  font-size: 1.1rem;
  color: var(--color-gray);
}

/* ===== Responsive ===== */

/* Mobile First: Base styles for 480px and below */
@media (max-width: 480px) {
  :root {
    --padding-horizontal: 20px;
    --header-height: 70px;
    --color-radial-gradient : radial-gradient(80% 40% at 50% 70%, #1F1E1E 12.26%, #0B0A0B 53.37%, #070707 69.23%, #010101 100%);
    --color-radial-footer : radial-gradient(80% 40% at 50% 20%, #1F1E1E 8.38%, #0B0A0B 53.37%, #070707 69.23%, #010101 100%);
  }

  .header {
    height: var(--header-height);
  }

  .header-inner {
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    position: relative;
  }

  .logo-img {
    height: 45px !important;
    max-height: 45px !important;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .nav.menu-open {
    max-height: 400px;
    padding: 20px;
  }

  .nav-link {
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 8px;
    text-align: left;
    width: 100%;
    display: block;
  }

  .nav-link:hover {
    background: rgba(255,255,255,0.1);
  }

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero {
    padding: calc(var(--header-height) + 30px) var(--padding-horizontal) 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero--spare-parts {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    order: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    text-align: center;
    width: 100%;
  }

  .hero-rating {
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }

  .home-hero-visual {
    order: 2;
    position: relative;
    bottom: -30px;
    right: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: visible;
  }

  .hero-image-wrap {
    max-width: none;
    width: 130%;
    margin-left: -15%;
    margin-right: -15%;
    overflow: visible;
  }

  .hero-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-visual--services {
    order: 2;
    position: relative;
    bottom: -20px;
    left: -30px;
    right: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: visible;
  }

  .hero-visual--services .hero-image-wrap {
    max-width: none;
    width: 130%;
    margin-left: -15%;
    margin-right: -15%;
    overflow: visible;
  }

  .hero--services {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-content--spare-parts {
    width: 100%;
    padding: 0 10px;
  }

  .hero-title--spare-parts {
    width: 100%;
  }

  .hero-line {
    font-size: clamp(1.5rem, 8vw, 2.5rem) !important;
  }

  .hero--spare-parts {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services {
    padding: 40px var(--padding-horizontal);
    min-height: auto;
    overflow: hidden;
  }

  .services-diagonal {
    height: 50%;
    width: 100%;
    clip-path: polygon(50% 0, 100% 50%, 100% 100%, 0 100%, 0% 50%);
  }

  .services-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .services-left {
    padding-left: 0;
    width: 100%;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .services-list {
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .services-list li {
    font-size: 1.5rem !important;
    word-wrap: break-word;
    text-align: center;
  }

  .services-center {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2;
  }

  .services-diamond {
    transform: rotate(0deg);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .services-scooter {
    width: 100%;
    height: auto;
    transform: rotate(0deg);
  }

  .services-right {
    padding-right: 0;
    text-align: center;
    width: 100%;
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    justify-items: center;
  }

  .services-right .stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .collection {
    padding: 40px 0;
    overflow: visible;
  }

  .collection-title {
    padding: 0 var(--padding-horizontal);
  }

  .collection-desc {
    padding: 0 var(--padding-horizontal);
  }

  .collection-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0px;
  }

  .collection-desc {
    font-size: 0.85rem;
    padding: 0 10px;
    word-wrap: break-word;
  }

  .swiper {
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .swiper::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -10%;
    width: 120%;
    height: 80px;
    background: var(--color-gray-light);
    border-radius: 100%;
    z-index: 100;
    display: block !important;
  }

  .swiper::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 80px;
    background: var(--color-gray-light);
    border-radius: 100%;
    z-index: 1000;
    display: block !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .collection {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .offer {
    padding: 40px var(--padding-horizontal) 60px;
    overflow: hidden;
  }

  .offer-inner {
    width: 100%;
  }

  .offer-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 12px;
  }

  .offer-lead {
    font-size: 0.9rem;
    margin-bottom: 32px;
    padding: 0 10px;
  }

  .offer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100%;
  }

  .service-card {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    min-height: 230px;
  }

  .service-card-inner {
    min-height: 230px;
  }

  .service-card-front,
  .service-card-back {
    padding: 20px 16px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }

  .service-card-back {
    padding: 18px 14px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    align-items: center;
  }

  .service-card-desc {
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
  }

  .service-card-icon {
    margin-bottom: 12px;
  }

  .service-card-icon img {
    width: 48px;
    height: 48px;
  }

  .service-card-title {
    font-size: 0.85rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .contact-section {
    padding: calc(var(--header-height) + 30px) var(--padding-horizontal) 60px;
    position: relative;
    overflow: hidden;
  }

  .contact-grid {
    position: absolute !important;
    inset: 0 !important;
    background-size: calc(100% / 8) calc(100% / 6) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .contact-eyebrow,
  .contact-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-form {
    gap: 32px;
    margin-top: 40px;
  }

  .contact-form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer {
    padding: 60px var(--padding-horizontal) 20px;
    overflow: hidden;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    width: 100%;
    align-items: center;
  }

  /* Mobile order: Logo -> Address -> Contact -> Links -> Signature */
  .footer-brand {
    order: 1;
    width: 100%;
  }

  .footer-logo-img {
    height: auto;
    max-width: 180px;
    margin: 0 auto;
    display: block;
  }

  .footer-address {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .footer-address p, .footer-contact a {
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
    margin-bottom: 0;
  }

  .footer-contact {
    order: 3;
    width: 100%;
    text-align: center;
  }

  .footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
    margin-bottom: 0;
  }

  .footer-nav {
    order: 4;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .footer-nav a:not(.social-link) {
    font-size: 1rem;
    display: block;
  }

  .footer-nav .social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .footer-nav .social-icon {
    display: block;
    margin: 0;
  }

  .footer-social {
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
    align-items: center;
  }

  .footer-copy {
    order: 5;
    font-size: 0.75rem;
    padding: 0 10px;
    margin-top: 0;
    text-align: center;
  }

  .parts-section {
    padding: 40px var(--padding-horizontal) 60px;
    overflow: hidden;
  }

  .parts-inner {
    width: 100%;
  }

  .parts-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 32px;
  }

  .parts-section .swiper--parts {
    max-width: 100%;
  }

  .parts-section .swiper--parts .swiper-slide img {
    max-width: 100%;
    height: auto;
  }

  .parts-section .swiper-button-prev,
  .parts-section .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .parts-section .swiper-button-prev svg,
  .parts-section .swiper-button-next svg {
    width: 20px;
    height: 20px;
  }

  .parts-section .swiper-pagination {
    margin-top: 16px;
  }

  .parts-desc {
    font-size: 0.85rem;
    padding: 0 10px;
    margin-bottom: 24px;
  }
}

/* Small tablets and large phones: 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) {
  :root {
    --padding-horizontal: 24px;
  }

  .header-inner {
    padding: 0 24px;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .nav.menu-open {
    max-height: 400px;
    padding: 20px;
  }

  .nav-link {
    padding: 14px 18px;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: left;
    width: 100%;
    display: block;
  }

  .nav-link:hover {
    background: rgba(255,255,255,0.1);
  }

  .services-diamond {
    transform: rotate(22.5deg);
  }

  .services-scooter {
    transform: rotate(-22.5deg);
  }
}

/* Mobile: max-width 900px - Additional styles */
@media (max-width: 900px) {
  .hero {
    padding: calc(var(--header-height) + 40px) var(--padding-horizontal) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero--spare-parts {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    order: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
    text-align: center;
    width: 100%;
  }

  .hero-rating {
    justify-content: center;
    width: 100%;
  }

  .home-hero-visual {
    order: 2;
    margin-top: 20px;
    bottom: -30px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
    position: relative;
  }

  .hero-image-wrap {
    max-width: none;
    width: 130%;
    margin-left: -15%;
    margin-right: -15%;
    overflow: visible;
  }

  .hero-visual--services {
    order: 2;
    margin-top: 20px;
    bottom: -20px;
    left: -30px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
    position: relative;
  }

  .hero-visual--services .hero-image-wrap {
    max-width: none;
    width: 130%;
    margin-left: -15%;
    margin-right: -15%;
    overflow: visible;
  }

  .hero--services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .services {
    padding: 50px var(--padding-horizontal);
  }

  .services-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .services-left {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .services-list {
    text-align: center;
    align-items: center;
  }

  .services-list li {
    font-size: 2rem;
    text-align: center;
  }

  .services-center {
    order: 2;
  }

  .services-right {
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
  }

  .services-right .stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .offer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .collection {
    padding: 50px 0;
    overflow: visible;
  }

  .collection-title {
    padding: 0 var(--padding-horizontal);
  }

  .collection-desc {
    padding: 0 var(--padding-horizontal);
  }

  .contact-section {
    position: relative;
    overflow: hidden;
  }

  .contact-grid {
    position: absolute !important;
    inset: 0 !important;
    background-size: calc(100% / 8) calc(100% / 6) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .contact-form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    order: 1;
  }

  .footer-address {
    order: 2;
    text-align: center;
  }

  .footer-contact {
    order: 3;
    text-align: center;
  }

  .footer-nav {
    order: 4;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-copy {
    order: 5;
    margin-top: 0;
  }
}

/* Tablets: 601px - 900px */
@media (min-width: 601px) and (max-width: 900px) {
  :root {
    --padding-horizontal: 40px;
  }

  .header-inner {
    padding: 0 40px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0 40px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .nav.menu-open {
    max-height: 400px;
    padding: 24px 40px;
  }

  .nav-link {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    text-align: left;
    width: 100%;
    display: block;
  }

  .nav-link:hover {
    background: rgba(255,255,255,0.1);
  }
}

/* Mobile: max-width 900px - Additional styles */
@media (max-width: 900px) {
  .hero {
    padding: calc(var(--header-height) + 50px) var(--padding-horizontal) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero--spare-parts {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
    min-height: 70vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    order: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    width: 100%;
  }

  .hero-rating {
    justify-content: center;
    width: 100%;
  }

  .home-hero-visual {
    order: 2;
    margin-top: 20px;
    bottom: -30px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
    position: relative;
  }

  .hero-image-wrap {
    max-width: none;
    width: 130%;
    margin-left: -15%;
    margin-right: -15%;
    overflow: visible;
  }

  .hero-visual--services {
    order: 2;
    margin-top: 20px;
    bottom: -20px;
    left: -30px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
    position: relative;
  }

  .hero-visual--services .hero-image-wrap {
    max-width: none;
    width: 130%;
    margin-left: -15%;
    margin-right: -15%;
    overflow: visible;
  }

  .hero--services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .services {
    padding: 60px var(--padding-horizontal);
  }

  .services-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .services-diagonal {
    height: 50%;
    width: 100%;
    clip-path: polygon(50% 0, 100% 50%, 100% 100%, 0 100%, 0% 50%);
    bottom: 0;
    left: 0;
    top: unset;
  }

  .services-left {
    padding-left: 0;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .services-list {
    text-align: center;
    align-items: center;
  }

  .services-list li {
    text-align: center;
  }

  .services-center {
    order: 2;
  }

  .services-right {
    padding-right: 0;
    text-align: center;
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services-right .stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .collection {
    padding: 60px 0;
    overflow: visible;
  }

  .collection-title {
    padding: 0 var(--padding-horizontal);
  }

  .collection-desc {
    padding: 0 var(--padding-horizontal);
  }

  .offer {
    padding: 60px var(--padding-horizontal) 80px;
  }

  .offer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .contact-section {
    padding: calc(var(--header-height) + 40px) var(--padding-horizontal) 80px;
    position: relative;
    overflow: hidden;
  }

  .contact-grid {
    position: absolute !important;
    inset: 0 !important;
    background-size: calc(100% / 8) calc(100% / 6) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .contact-form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer {
    padding: 80px var(--padding-horizontal) 20px;
    overflow: hidden;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    order: 1;
  }

  .footer-address {
    order: 2;
    text-align: center;
  }

  .footer-contact {
    order: 3;
    text-align: center;
  }

  .footer-nav {
    order: 4;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-copy {
    order: 5;
    margin-top: 0;
  }

  .parts-section {
    padding: 60px var(--padding-horizontal) 80px;
    overflow: hidden;
  }
}

/* Small desktops: 901px - 1200px */
@media (min-width: 901px) and (max-width: 1200px) {
  :root {
    --padding-horizontal: 60px;
  }

  .header-inner {
    padding: 0 60px;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    flex-direction: row;
    max-height: none;
    padding: 0;
    background: transparent;
    border-bottom: none;
  }

  .nav-link {
    padding: 10px 18px;
    font-size: 0.9rem;
    text-align: center;
    width: auto;
    display: inline-block;
  }

  /* Sections padding - desktop 8.333vw */
  .hero {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .services {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .collection {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .parts-section {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .hero-inner {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-title {
    text-align: left;
    width: auto;
    max-width: none;
  }

  .hero-rating {
    justify-content: flex-start;
    width: auto;
  }

  .hero-content {
    order: 0;
    width: auto;
    text-align: left;
    display: block;
  }

  .home-hero-visual {
    position: absolute;
    bottom: -5.208vw;
    right: -1.563vw;
    order: 0;
    margin-top: 0;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-image-wrap {
    max-width: 62.5vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-visual--services {
    position: absolute;
    bottom: -3vw;
    right: 10vw;
    order: 0;
    margin-top: 0;
    left: auto;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-visual--services .hero-image-wrap {
    max-width: 70.25vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero--services {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px var(--padding-horizontal);
    padding-bottom: 80px;
    min-height: 85vh;
    overflow: visible;
  }

  .services-inner {
    display: grid;
    grid-template-columns: 3fr auto 1fr;
    gap: 0px;
    flex-direction: row;
    align-items: center;
    width: auto;
  }

  .services-left {
    padding-left: 0;
    width: auto;
    order: 0;
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
  }

  .services-list {
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }

  .services-list li {
    font-size: clamp(1.35rem, 2vw, 2.25rem);
    word-wrap: normal;
    text-align: left;
    white-space: nowrap;
  }

  .services-center {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 0;
  }

  .services-diamond {
    transform: rotate(45deg);
    width: auto;
    max-width: none;
    margin: 0;
  }

  .services-right {
    padding-right: 0;
    text-align: right;
    width: auto;
    order: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    justify-items: flex-end;
  }

  .services-right .stat {
    text-align: right;
    display: block;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    color: var(--color-white);
  }

  .services-diagonal {
    width: 40%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0%, 100% 100%, 50% 100%, 0% 50%);
    top: 0;
    bottom: auto;
    left: auto;
    opacity: 1;
  }

  /* Offer section: 3 columns only in 901-1200 (rest inherited from 900px) */
  .offer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }

  /* Contact form - restore desktop layout */
  .contact-section {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 80px;
    position: relative;
    overflow: visible;
  }

  .contact-form {
    gap: 48px;
    margin-top: 60px;
  }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .footer-contact p {
    margin-bottom: 24px;
  }
}

/* Large desktops: 1201px - 1920px */
@media (min-width: 1201px) and (max-width: 1920px) {
  :root {
    --padding-horizontal: 80px;
  }

  .header-inner {
    padding: 0 80px;
  }

  /* Sections padding - desktop 8.333vw */
  .hero {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .services {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .collection {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .parts-section {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .hero-inner {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-title {
    text-align: left;
    width: auto;
    max-width: none;
  }

  .hero-rating {
    justify-content: flex-start;
    width: auto;
  }

  .hero-content {
    order: 0;
    width: auto;
    text-align: left;
    display: block;
  }

  .hero-content--spare-parts {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .home-hero-visual {
    position: absolute;
    bottom: -5.208vw;
    right: -1.563vw;
    order: 0;
    margin-top: 0;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-image-wrap {
    max-width: 62.5vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-visual--services {
    position: absolute;
    bottom: -3vw;
    right: 10vw;
    order: 0;
    margin-top: 0;
    left: auto;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-visual--services .hero-image-wrap {
    max-width: 70.25vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero--services {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8.333vw;
    padding-right: 8.333vw;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 85vh;
    overflow: visible;
  }

  .services-inner {
    display: grid;
    grid-template-columns: 3fr auto 1fr;
    gap: 0px;
    flex-direction: row;
    align-items: center;
    width: auto;
  }

  .services-left {
    padding-left: 0;
    width: auto;
    order: 0;
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
  }

  .services-list {
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }

  .services-list li {
    font-size: clamp(1.35rem, 2vw, 2.25rem);
    word-wrap: normal;
    text-align: left;
    white-space: nowrap;
  }

  .services-center {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 0;
  }

  .services-diamond {
    transform: rotate(45deg);
    width: auto;
    max-width: none;
    margin: 0;
  }

  .services-right {
    padding-right: 0;
    text-align: right;
    width: auto;
    order: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    justify-items: flex-end;
  }

  .services-right .stat {
    text-align: right;
    display: block;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    color: var(--color-white);
  }

  .services-diagonal {
    width: 40%;
    height: 100%;
    clip-path: polygon(50% 0, 100% 0%, 100% 100%, 50% 100%, 0% 50%);
    top: 0;
    bottom: auto;
    left: auto;
    opacity: 1;
  }

  /* Offer/hero--spare-parts/contact inherited from 900px */

  .footer {
    padding: 120px 80px 20px;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    display: grid;
    align-items: center;
  }

  .footer-contact p {
    margin-bottom: 24px;
  }
}

/* Extra large desktops: 1921px and above */
@media (min-width: 1921px) {
  :root {
    --padding-horizontal: 8.333vw;
    --max-width: 1400px;
  }

  .header-inner {
    padding: 0 8.333vw;
    max-width: var(--max-width);
    margin: 0 auto;
  }

  /* Sections padding - desktop 8.333vw */
  .hero {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
    padding-top: calc(var(--header-height) + 100px);
    padding-bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .services {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .collection {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .parts-section {
    padding-left: 8.333vw;
    padding-right: 8.333vw;
  }

  .hero-inner {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-title {
    text-align: left;
    width: auto;
    max-width: none;
  }

  .hero-rating {
    justify-content: flex-start;
    width: auto;
  }

  .hero-content {
    order: 0;
    width: auto;
    text-align: left;
    display: block;
  }

  .home-hero-visual {
    position: absolute;
    bottom: -5.208vw;
    right: -1.563vw;
    order: 0;
    margin-top: 0;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-image-wrap {
    max-width: 62.5vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-visual--services {
    position: absolute;
    bottom: -3vw;
    right: 10vw;
    order: 0;
    margin-top: 0;
    left: auto;
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-visual--services .hero-image-wrap {
    max-width: 70.25vw;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .hero--services {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  /* Offer/hero--spare-parts/contact inherited from 900px; only overrides below */
  .offer-grid {
    gap: 32px !important;
  }

  .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .footer-contact p {
    margin-bottom: 24px;
  }
}

/* Swiper responsive adjustments */
@media (max-width: 600px) {
  .swiper {
    overflow: visible;
  }

  .swiper::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -10%;
    width: 120%;
    height: 50px;
    background: var(--color-gray-light);
    border-radius: 100%;
    z-index: 100;
    display: block !important;
  }

  .swiper::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -10%;
    width: 120%;
    height: 50px;
    background: var(--color-gray-light);
    border-radius: 100%;
    z-index: 1000;
    display: block !important;
  }

  .collection {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .collection .swiper-slide img {
    width: auto;
    height: 300px !important;
    min-height: 300px;
    max-height: none;
  }
}

/* Mobile: Horizontal scroll indicator at bottom */
@media (max-width: 900px) {
  .scroll-indicator {
    position: fixed;
    left: 50%;
    bottom: 20px;
    top: auto;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: flex !important;
    z-index: 1000;
  }

  .scroll-indicator.hidden {
    transform: translateX(-50%) translateY(calc(100% + 20px));
    opacity: 0;
  }

  .scroll-indicator-dots {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }

  .scroll-indicator-line {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
    background: rgba(193, 39, 44, 0.2);
    z-index: 0;
    pointer-events: none;
  }

  .scroll-indicator-dot {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .scroll-indicator-number {
    font-size: 0.75rem;
    text-align: left;
    line-height: 1;
  }

  .scroll-indicator-dot-inner {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }

  .scroll-indicator-dot.active .scroll-indicator-dot-inner {
    width: 14px;
    height: 14px;
  }

  .scroll-indicator-dot.active .scroll-indicator-number {
    font-size: 0.8rem;
  }
}

/* Additional responsive improvements */
@media (max-width: 480px) {
  /* Prevent all overflow issues */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .service-card,
  .service-card-inner {
    min-height: 230px;
  }

  .service-card-back {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .collection .swiper-slide img {
    width: auto;
    height: 200px !important;
    min-height: 200px;
    max-height: none;
  }

  .collection .swiper-slide img[width][height] {
    height: 200px !important;
    min-height: 200px;
  }

  .logo-tagline {
    font-size: 0.6rem;
  }
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Optimize lazy-loaded images */
img[loading="lazy"] {
  content-visibility: auto;
}

/* Prevent layout shift - browser will use width/height attributes */
img[width][height] {
  height: auto;
}

/* Collection slider: keep fixed height (override img[width][height]) */
.collection .swiper-slide img[width][height] {
  height: 300px !important;
  min-height: 300px;
}

/* Prevent horizontal scroll */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 900px) {
  .nav-link,
  .primary-cta {
    min-height: 44px;
    min-width: 44px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/* Improve readability on small screens */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .footer-contact p,
  .footer-nav a {
    font-size: 1rem;
  }
}
