/* ========================================
   FREEMOTOS — Premium Landing Page CSS
   Base: White | Accents: Red #E31837, Black
   ======================================== */

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

:root {
  --red: #E31837;
  --red-dark: #B8132D;
  --red-light: #FF2D4D;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-500: #6B6B6B;
  --gray-700: #3A3A3A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 30px rgba(227,24,55,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Animated Elements --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--gray-500); }
.navbar.scrolled .nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(227,24,55,0.35);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, rgba(227,24,55,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,24,55,0.15);
  border: 1px solid rgba(227,24,55,0.3);
  color: var(--red-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227,24,55,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(227,24,55,0); }
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(227,24,55,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -50px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat-item {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.stat-item:hover { background: var(--gray-50); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* --- Section Shared --- */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Brands --- */
.brands-section {
  background: var(--gray-50);
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.brands-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-500);
  margin-bottom: 30px;
}
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.brand-item {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: var(--transition);
  cursor: default;
}
.brand-item:hover { color: var(--red); }

/* --- Catalog Section — Single Carousel --- */
.catalog-section { padding: 100px 0 80px; background: var(--white); overflow: hidden; }
.catalog-header { margin-bottom: 32px; }
.eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--red); margin-bottom: 8px;
}
.display-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 400;
  color: var(--black); line-height: 0.95; letter-spacing: 2px;
  text-transform: uppercase;
}

/* Brand Filters */
.brand-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.brand-filter {
  padding: 10px 28px; border-radius: 50px;
  border: 2px solid var(--gray-200); background: var(--white);
  font-family: inherit; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-500); cursor: pointer;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.brand-filter::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.brand-filter:hover { border-color: var(--red); color: var(--red); }
.brand-filter.active { border-color: var(--red); color: var(--white); }
.brand-filter.active::before { transform: scaleX(1); }
.brand-filter-name { position: relative; z-index: 1; }

.carousel-counter {
  font-size: 0.8rem; font-weight: 600; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0;
}
.carousel-counter span { color: var(--black); font-weight: 900; }

/* Carousel Wrapper */
.carousel-wrap {
  position: relative; margin-top: 32px;
  padding: 0 max(20px, calc((100vw - 1200px)/2));
}
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--gray-300); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: all 0.3s ease;
  color: var(--black); box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.carousel-nav:hover {
  border-color: var(--red); color: var(--white);
  background: var(--red); box-shadow: var(--shadow-red);
  transform: translateY(-50%) scale(1.08);
}
.carousel-nav:active { transform: translateY(-50%) scale(0.95); }
.carousel-nav--prev { left: max(4px, calc((100vw - 1260px)/2)); }
.carousel-nav--next { right: max(4px, calc((100vw - 1260px)/2)); }

/* Carousel Track */
.carousel-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
  padding: 10px 0 20px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* Moto Cards */
.moto-card {
  flex: 0 0 290px; background: var(--white);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; opacity: 0; transform: translateY(30px);
  animation: cardSlideUp 0.5s ease forwards;
}
.moto-card:nth-child(1) { animation-delay: 0s; }
.moto-card:nth-child(2) { animation-delay: 0.06s; }
.moto-card:nth-child(3) { animation-delay: 0.12s; }
.moto-card:nth-child(4) { animation-delay: 0.18s; }
.moto-card:nth-child(5) { animation-delay: 0.24s; }
.moto-card:nth-child(6) { animation-delay: 0.3s; }
.moto-card:nth-child(n+7) { animation-delay: 0.35s; }
@keyframes cardSlideUp {
  to { opacity: 1; transform: translateY(0); }
}
.moto-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  border-color: transparent;
}
.moto-card-img {
  position: relative; background: var(--black);
  padding: 16px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.moto-card-img img {
  width: 88%; height: 100%; object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.moto-card:hover .moto-card-img img { transform: scale(1.1) rotate(-1deg); }
.moto-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--white);
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.moto-card-body { padding: 18px 20px 22px; }
.moto-brand {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); margin-bottom: 4px;
}
.moto-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--black); margin-bottom: 8px;
  line-height: 1.1; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.moto-specs { display: flex; gap: 12px; margin-bottom: 12px; }
.moto-spec {
  font-size: 0.7rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 3px;
}
.moto-price { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 14px; }
.moto-price strong {
  font-size: 1.2rem; color: var(--black); font-weight: 900;
}
.moto-cta {
  display: flex; width: 100%; padding: 13px;
  border-radius: 10px; background: var(--black);
  color: var(--white); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 2px;
  justify-content: center; align-items: center; gap: 6px;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.moto-cta:hover {
  background: var(--red); box-shadow: var(--shadow-red);
  letter-spacing: 3px;
}


/* --- Why Us (Benefits) --- */
.benefits-section { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}
.benefit-card:hover {
  border-color: var(--red);
  box-shadow: 0 15px 40px rgba(227,24,55,0.08);
  transform: translateY(-6px);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
}
.benefit-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Process Steps --- */
.process-section { background: var(--gray-50); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.process-step:hover .step-number { color: var(--red); }
.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227,24,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner .section-tag { color: var(--red-light); }
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-desc { color: rgba(255,255,255,0.6); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}
.testimonial-city {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* --- Locations --- */
.locations-section { background: var(--gray-50); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.location-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.location-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.location-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.location-city {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}
.location-address {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-size: 1.1rem;
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* --- WhatsApp Floating --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37,211,102,0.5);
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .carousel-nav--prev { left: 8px; }
  .carousel-nav--next { right: 8px; }
  .carousel-wrap { padding: 0 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .benefits-grid,
  .process-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .catalog-section { padding: 70px 0 50px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner { padding: 60px 0; }
  .moto-card { flex: 0 0 260px; }
  .carousel-nav { display: none; }
  .carousel-wrap { padding: 0 16px; }
  .brand-filters { gap: 8px; }
  .brand-filter { padding: 8px 20px; font-size: 0.7rem; }
  .display-title { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .stat-item { padding: 24px 20px; }
  .stat-item:not(:last-child) { border-bottom: 1px solid var(--gray-200); }
  .locations-grid { grid-template-columns: 1fr; }
  .moto-card { flex: 0 0 240px; }
  .display-title { font-size: 2.4rem; }
}

