@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-primary: #fff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #fff;
  --bg-card-hover: #fff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --accent: #ff5722;
  --accent-glow: #ff572240;
  --accent-hover: #e64a19;
  --accent-rgb: 255, 87, 34;
  --cyan-accent: #0284c7;
  --cyan-glow: #0284c740;
  --lime-accent: #16a34a;
  --border: #e2e8f0;
  --border-light: #cbd5e1;
  --border-glow: #ff57224d;
  --glass-bg: #ffffffeb;
  --glass-border: #e2e8f0cc;
  --glass-blur: 24px;
  --font-heading: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Grotesk", monospace;
  --transition-smooth: all .45s cubic-bezier(.16, 1, .3, 1);
  --transition-fast: all .25s cubic-bezier(.16, 1, .3, 1);
  --transition-spring: all .6s cubic-bezier(.34, 1.56, .64, 1);
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-secondary);
  margin: 0;
  padding: 0;
}

html {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  width: 100%;
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 1;
  opacity: .6;
  background-image: radial-gradient(#ffffff08 1px, #0000 0);
  background-size: 24px 24px;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #ffffff26;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

::selection {
  background-color: var(--accent);
  color: #030407;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -.035em;
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.05;
}

p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

.container-premium {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container-premium {
    padding: 0 1.25rem;
  }
}

.glass-panel {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 10px 40px #0000000a;
}

.glass-card {
  -webkit-backdrop-filter: blur(18px);
  transition: var(--transition-smooth);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 4px 16px #00000005;
}

.glass-card:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px #ff572214;
}

.gradient-text {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.gradient-text-accent {
  background: linear-gradient(135deg, #0f172a 0%, var(--accent) 55%, var(--cyan-accent) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.gradient-text-lime {
  background: linear-gradient(135deg, #0f172a 0%, var(--lime-accent) 60%, var(--accent) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.btn {
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  border-radius: 999px;
  outline: none;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.8rem;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-cyan {
  background: var(--cyan-accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--cyan-glow);
}

.btn-cyan:hover {
  box-shadow: 0 8px 24px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  color: #0f172a;
  background: #fff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 8px #00000008;
}

.btn-secondary:hover {
  color: #0f172a;
  background: #f8fafc;
  border-color: #94a3b8;
}

.btn-glass {
  color: var(--text-primary);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff0d;
  border: 1px solid #ffffff1f;
}

.btn-glass:hover {
  border-color: var(--accent);
  color: #fff;
  background: #ffffff1a;
  transform: translateY(-2px);
  box-shadow: 0 0 20px #00f08026;
}

.badge-tag {
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  background: #00f08014;
  border: 1px solid #00f08040;
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  display: inline-flex;
}

.badge-tag-cyan {
  color: var(--cyan-accent);
  font-family: var(--font-mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  background: #00e5ff14;
  border: 1px solid #00e5ff40;
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  display: inline-flex;
}

@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 993px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .show-desktop-banner, .show-desktop-banner-flex {
    display: none !important;
  }

  .show-mobile-banner {
    display: block !important;
  }

  .show-mobile-banner-flex {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .show-desktop-banner {
    display: block !important;
  }

  .show-desktop-banner-flex {
    display: flex !important;
  }

  .show-mobile-banner, .show-mobile-banner-flex {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .story-grid, .tech-intro-grid, .dealer-grid, .ride-mode-grid, .battery-grid, .app-grid, .storytelling-grid, .home-gallery-grid, .gallery-editorial {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .fleet-showcase-card {
    grid-template-columns: 1fr !important;
  }

  .fleet-showcase-card > div:first-child {
    min-height: 320px;
  }

  .fleet-showcase-inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px #ff57224d;
  }

  50% {
    box-shadow: 0 0 30px #ff572299;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-bounce {
  animation: 2s infinite bounce;
}

.gallery-card {
  background: #ffffff08;
  border-radius: 32px;
  flex-direction: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.gallery-main {
  display: flex;
}

.gallery-media {
  background: linear-gradient(#030407f5 0%, #030407e0 100%);
  width: 100%;
  position: relative;
}

.gallery-media-hero {
  aspect-ratio: 16 / 10;
}

.gallery-media-sm {
  aspect-ratio: 4 / 3;
}

.gallery-copy {
  padding: 1.1rem 1.35rem 1.15rem;
}

.gallery-visual-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  padding: 0 1.35rem 1.35rem;
  display: grid;
}

.gallery-visual-tile {
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 22px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.gallery-copy-sm {
  padding: 1.1rem 1.25rem 1.3rem;
}

.gallery-meta {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: .65rem;
  display: flex;
}

.gallery-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.gallery-accent {
  color: var(--cyan-accent);
  font-size: .8rem;
  font-weight: 700;
}

.gallery-footer {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  display: flex;
}

.gallery-footer-sm {
  align-items: flex-start;
  gap: 1rem;
}

.gallery-title {
  margin-bottom: .45rem;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.gallery-title-sm {
  font-size: 1.55rem;
}

.gallery-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-description-sm {
  font-size: .94rem;
  line-height: 1.65;
}

@media (max-width: 992px) {
  .gallery-main, .gallery-side-grid {
    grid-column: span 12 !important;
  }

  .gallery-media-hero {
    aspect-ratio: 16 / 12;
  }

  .gallery-media-sm {
    aspect-ratio: 16 / 11;
  }

  .gallery-copy, .gallery-copy-sm {
    padding: 1.1rem 1rem 1.25rem;
  }

  .story-tile-strip {
    grid-template-columns: 1fr !important;
  }

  .gallery-visual-strip {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: 0 1rem 1rem;
  }

  .gallery-visual-tile {
    min-height: 170px;
  }
}

@media (max-width: 640px) {
  .gallery-media-hero, .gallery-media-sm {
    aspect-ratio: 4 / 3;
  }

  .gallery-title {
    font-size: 1.7rem;
  }

  .gallery-title-sm {
    font-size: 1.4rem;
  }
}

.color-dot {
  cursor: pointer;
  width: 28px;
  height: 28px;
  transition: var(--transition-fast);
  border: 2px solid #0000;
  border-radius: 50%;
}

.color-dot.active {
  border-color: var(--accent);
  transform: scale(1.15);
}

.spec-list {
  list-style: none;
}

.spec-item {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  padding: 1.25rem 0;
  display: flex;
}

.spec-name {
  color: var(--text-secondary);
  font-weight: 500;
}

.spec-value {
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-heading);
}

@media (max-width: 992px) {
  .desktop-only-nav {
    display: none !important;
  }

  .hamburger-btn {
    display: block !important;
  }

  .intro-grid, .why-electric-grid, .showroom-visit-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .why-us-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .test-ride-section-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }

  .vehicle-row {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 2rem !important;
  }

  .detail-intro-grid, .detail-specs-grid, .tech-breakdown-grid, .lifestyle-grid, .booking-row, .calc-grid, .tech-row {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .tech-row > div:first-child {
    order: 2 !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .contact-main-grid {
    grid-template-columns: 1fr !important;
    gap: 3.5rem !important;
  }

  .form-card {
    padding: 2rem !important;
  }

  .ride-grid {
    grid-template-columns: 1fr !important;
    gap: 4rem !important;
  }
}

@media (max-width: 768px) {
  .urbn-grid, .hum-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .urbn-grid > div:first-child, .hum-grid > div:last-child {
    order: 2 !important;
  }

  .tech-story-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .highlights-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .lifestyle-grid > div:first-child {
    order: 2 !important;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-link:hover {
    transition: var(--transition-fast);
    padding-left: 4px;
    color: var(--accent) !important;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 1.5rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .calc-info-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .specs-grid {
    grid-template-columns: 1fr !important;
    gap: .75rem !important;
  }

  .specs-table-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

.category-container {
  background-color: var(--bg-primary);
  padding: 5rem 0;
}

.category-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.category-title h2 {
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  display: grid;
}

.category-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  height: 380px;
  transition: var(--transition-smooth);
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px #00a9681a;
}

.category-card-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  font-weight: 700;
}

.category-card-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-top: .5rem;
}

.category-card-image {
  width: 100%;
  height: 180px;
  transition: var(--transition-smooth);
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  display: flex;
  position: relative;
}

.category-card:hover .category-card-image {
  transform: scale(1.1)translateY(-5px);
}

.category-card-cta {
  color: var(--text-primary);
  transition: var(--transition-fast);
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
}

.category-card:hover .category-card-cta {
  color: var(--accent);
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .category-card {
    height: 320px;
  }
}

.hero-bg-mobile {
  display: none !important;
}

.hero-bg-desktop {
  display: block !important;
}

.hero-text-container {
  z-index: 2;
  transition: var(--transition-smooth);
  position: relative;
}

.hero-text-container h1 {
  text-shadow: 0 4px 12px #00000040;
  color: #fff !important;
}

.hero-text-container p {
  text-shadow: 0 2px 8px #00000040;
  color: #e5e5e7 !important;
}

@media (max-width: 768px) {
  .hero-bg-desktop {
    display: none !important;
  }

  .hero-bg-mobile {
    display: block !important;
  }

  .hero-mobile-image-card {
    width: 100% !important;
    height: 40vh !important;
    box-shadow: none !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 60px 0 0 !important;
    overflow: hidden !important;
  }

  .hero-mobile-image-card img {
    object-fit: cover !important;
    padding: 0 !important;
  }

  .hero-slider-section .container-premium {
    z-index: 2 !important;
    justify-content: center !important;
    align-items: flex-end !important;
    height: 100% !important;
    padding-bottom: 7.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    position: relative !important;
  }

  .hero-text-container {
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    text-align: center !important;
    background: #121212e0 !important;
    border: none !important;
    border-top: 1px solid #ffffff1a !important;
    border-radius: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1.75rem 1.5rem !important;
    display: flex !important;
    transform: none !important;
    box-shadow: 0 -10px 30px #00000040 !important;
  }

  .hero-tag {
    margin-bottom: .35rem !important;
    font-size: .75rem !important;
  }

  .hero-text-container h1 {
    margin-bottom: .5rem !important;
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .hero-text-container p {
    margin-bottom: 1.25rem !important;
    font-size: .85rem !important;
    line-height: 1.45 !important;
  }

  .hero-btn-group {
    flex-direction: row !important;
    gap: .5rem !important;
    width: 100% !important;
    margin-top: .25rem !important;
    display: flex !important;
  }

  .hero-text-container .btn {
    white-space: nowrap !important;
    flex: 1 !important;
    gap: .25rem !important;
    width: auto !important;
    padding: .75rem .25rem !important;
    font-size: .82rem !important;
  }

  .hero-slider-arrows {
    gap: .75rem !important;
    bottom: 2rem !important;
    right: 50% !important;
    transform: translateX(50%) !important;
  }

  .hero-slider-dots {
    bottom: 5.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .mobile-edge-image {
    border: none !important;
    border-radius: 0 !important;
    width: calc(100% + 2.5rem) !important;
    max-width: none !important;
    height: 300px !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .mobile-edge-image iframe {
    border: none !important;
    border-radius: 0 !important;
  }

  .tech-story-card, .why-buy-card, .calc-card, .form-card {
    box-shadow: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tech-story-card {
    padding: 2.25rem 1.25rem !important;
  }

  .why-buy-card {
    padding: 1.75rem 1.25rem !important;
  }

  .calc-card, .form-card {
    padding: 2rem 1.25rem !important;
  }

  .vehicle-filters {
    flex-wrap: wrap !important;
    gap: .75rem !important;
    margin-bottom: 2rem !important;
  }

  .vehicle-filters .btn {
    padding: .5rem 1rem !important;
    font-size: .82rem !important;
  }

  .vehicle-row {
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
    padding: 2.25rem 1.25rem !important;
  }

  .vehicle-row-image {
    height: 250px !important;
  }

  .vehicle-actions {
    flex-direction: column !important;
    gap: .75rem !important;
    width: 100% !important;
  }

  .vehicle-actions .btn {
    justify-content: center !important;
    width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

@media (min-width: 769px) {
  .hide-on-desktop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .fleet-card-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    justify-content: center !important;
    align-items: flex-end !important;
    padding-bottom: 7.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
  }

  .hero-text-container {
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    text-align: center !important;
    background: #121212e0 !important;
    border: none !important;
    border-top: 1px solid #ffffff1a !important;
    border-radius: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1.75rem 1.5rem !important;
    display: flex !important;
    transform: none !important;
    box-shadow: 0 -10px 30px #00000040 !important;
  }

  .hero-tag {
    margin-bottom: .35rem !important;
    font-size: .75rem !important;
  }

  .hero-text-container h1 {
    margin-bottom: .5rem !important;
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }

  .hero-text-container p {
    margin-bottom: 1.25rem !important;
    font-size: .85rem !important;
    line-height: 1.45 !important;
  }

  .hero-btn-group {
    flex-direction: row !important;
    gap: .5rem !important;
    width: 100% !important;
    margin-top: .25rem !important;
    display: flex !important;
  }

  .hero-text-container .btn {
    white-space: nowrap !important;
    flex: 1 !important;
    gap: .25rem !important;
    width: auto !important;
    padding: .75rem .25rem !important;
    font-size: .82rem !important;
  }

  .hero-slider-arrows {
    gap: .75rem !important;
    bottom: 2rem !important;
    right: 50% !important;
    transform: translateX(50%) !important;
  }

  .hero-slider-dots {
    bottom: 5.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .mobile-edge-image {
    border: 1px solid #cbd5e1 !important;
    border-radius: 16px !important;
    width: 100% !important;
    height: 280px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px #0000000f !important;
  }

  .mobile-edge-image iframe {
    border: none !important;
    border-radius: 16px !important;
  }

  .tech-story-card, .why-buy-card, .calc-card, .form-card {
    box-shadow: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tech-story-card {
    padding: 2.25rem 1.25rem !important;
  }

  .why-buy-card {
    padding: 1.75rem 1.25rem !important;
  }

  .calc-card, .form-card {
    padding: 2rem 1.25rem !important;
  }

  .vehicle-filters {
    flex-wrap: wrap !important;
    gap: .75rem !important;
    margin-bottom: 2rem !important;
  }

  .vehicle-filters .btn {
    padding: .5rem 1rem !important;
    font-size: .82rem !important;
  }

  .vehicle-row {
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
    padding: 2.25rem 1.25rem !important;
  }

  .vehicle-row-image {
    height: 250px !important;
  }

  .vehicle-actions {
    flex-direction: column !important;
    gap: .75rem !important;
    width: 100% !important;
  }

  .vehicle-actions .btn {
    justify-content: center !important;
    width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

@media (min-width: 769px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.fleet-showcase-card {
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s cubic-bezier(.16, 1, .3, 1) !important;
}

.fleet-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #00000012 !important;
}

.fleet-showcase-card img {
  transition: transform .4s cubic-bezier(.16, 1, .3, 1) !important;
}

.fleet-showcase-card:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .showcase-slider-section {
    overflow: hidden !important;
  }

  .showcase-slider-container {
    gap: 1.25rem !important;
    padding: .5rem 1.25rem 2rem !important;
    overflow: auto visible !important;
  }

  .fleet-showcase-card {
    border-radius: 20px !important;
    flex-shrink: 0 !important;
    width: 80vw !important;
    height: 400px !important;
    padding: 1.5rem 1.5rem 0 !important;
    overflow: hidden !important;
  }

  .fleet-showcase-card > div:first-child {
    min-height: auto !important;
  }

  .fleet-showcase-card > div:last-child {
    flex: none !important;
    width: 100% !important;
    height: 260px !important;
    margin: .75rem 0 0 !important;
    position: relative !important;
  }
}

@media (max-width: 991px) {
  .fleet-card-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 576px) {
  .fleet-card-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .fleet-showcase-card {
    width: 84vw !important;
    height: 360px !important;
  }

  .fleet-showcase-card > div:last-child {
    height: 210px !important;
  }
}

@media (min-width: 769px) {
  .show-desktop-banner {
    display: block !important;
  }

  .show-desktop-banner-flex {
    display: flex !important;
  }

  .show-mobile-banner, .show-mobile-banner-flex {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .show-desktop-banner, .show-desktop-banner-flex {
    display: none !important;
  }

  .show-mobile-banner {
    display: block !important;
  }

  .show-mobile-banner-flex {
    display: flex !important;
  }
}

.desktop-only {
  display: flex;
}

.desktop-only-block {
  display: block;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only, .desktop-only-block {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .footer-newsletter-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.75rem 1.25rem !important;
  }

  .footer-newsletter-bar form {
    flex-direction: column !important;
    gap: .65rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-newsletter-bar form input {
    width: 100% !important;
  }

  .footer-newsletter-bar form button {
    justify-content: center !important;
    width: 100% !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .5rem !important;
  }

  .scooter-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .scooter-grid-3 > div > div:first-child {
    height: 200px !important;
  }

  .features-thumb-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .ebike-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .85rem !important;
  }

  .ebike-grid > div > div[style*="height: 120px"] {
    height: 150px !important;
  }

  .catalog-main-section {
    padding: 2rem .75rem 3rem !important;
  }

  .catalog-two-col {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

.site-footer {
  color: #0f172a;
  font-family: var(--font-body);
  background-color: #fff;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.footer-newsletter {
  background: linear-gradient(135deg, #fffbf7 0%, #fff7ed 100%);
  border-bottom: 1px solid #ffedd5;
  padding: 2.5rem 1.25rem;
}

.footer-newsletter-inner {
  flex-direction: column;
  gap: 1.75rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.footer-newsletter-text {
  flex-direction: column;
  gap: .4rem;
  display: flex;
}

.footer-pill {
  color: #ea580c;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #ffedd5;
  border-radius: 999px;
  width: fit-content;
  padding: .3rem .85rem;
  font-size: .7rem;
  font-weight: 800;
  display: inline-block;
}

.footer-newsletter-title {
  font-family: var(--font-heading);
  color: #0f172a;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.15;
}

.footer-newsletter-sub {
  color: #64748b;
  margin: 0;
  font-size: .875rem;
  line-height: 1.55;
}

.footer-newsletter-form {
  flex-direction: column;
  gap: .65rem;
  width: 100%;
  display: flex;
}

.footer-email-input {
  color: #0f172a;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
  flex: 1;
  width: 100%;
  padding: .875rem 1.2rem;
  font-size: .95rem;
  transition: border-color .2s;
}

.footer-email-input:focus {
  border-color: #ff5722;
}

.footer-subscribe-btn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #ff5722, #f97316);
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 4px 16px #ff57224d;
}

.footer-subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ff572266;
}

.footer-subscribed-msg {
  color: #16a34a;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
}

.footer-body {
  flex-direction: column;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2.5rem;
  display: flex;
}

.footer-brand-col {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.footer-logo {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.footer-logo-icon {
  background: linear-gradient(135deg, #ff5722, #f97316);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  box-shadow: 0 4px 14px #ff57224d;
}

.footer-logo-name {
  font-family: var(--font-heading);
  letter-spacing: .04em;
  color: #0f172a;
  font-size: 1.45rem;
  font-weight: 900;
  display: block;
}

.footer-logo-accent {
  color: #ff5722;
}

.footer-logo-sub {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #64748b;
  font-size: .6rem;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-top: -2px;
  display: block;
}

.footer-brand-desc {
  color: #64748b;
  max-width: 420px;
  margin: 0;
  font-size: .875rem;
  line-height: 1.65;
}

.footer-partner-badge {
  color: #334155;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  width: fit-content;
  padding: .35rem .75rem;
  display: inline-block;
}

.footer-contact-ctas {
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .25rem;
  display: flex;
}

.footer-cta-btn {
  border-radius: 999px;
  flex-shrink: 0;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.2rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.footer-cta-call {
  color: #fff;
  background: #0f172a;
  box-shadow: 0 3px 10px #0f172a26;
}

.footer-cta-call:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.footer-cta-whatsapp {
  color: #fff;
  background: #22c55e;
  box-shadow: 0 3px 10px #22c55e40;
}

.footer-cta-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.footer-links-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  display: grid;
}

.footer-links-col {
  flex-direction: column;
  gap: .85rem;
  display: flex;
}

.footer-hq-col {
  grid-column: 1 / -1;
}

.footer-col-title {
  font-family: var(--font-heading);
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
}

.footer-link-list {
  flex-direction: column;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-link {
  color: #64748b;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: #ff5722;
}

.footer-link-cta {
  align-items: center;
  gap: .3rem;
  display: inline-flex;
  color: #ff5722 !important;
  font-weight: 700 !important;
}

.footer-hq-items {
  flex-direction: column;
  gap: .85rem;
  display: flex;
}

.footer-hq-row {
  color: #64748b;
  align-items: flex-start;
  gap: .65rem;
  font-size: .85rem;
  line-height: 1.5;
  display: flex;
}

.footer-hq-icon {
  color: #ff5722;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hq-icon--orange {
  color: #ea580c;
}

.footer-phones {
  flex-direction: column;
  gap: .2rem;
  display: flex;
}

.footer-phone-link {
  color: #64748b;
  font-family: var(--font-mono);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.footer-phone-primary {
  color: #0f172a;
  font-weight: 800;
}

.footer-phone-link:hover {
  color: #ff5722;
}

.footer-bottom-bar {
  border-top: 1px solid #e2e8f0;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
}

.footer-copyright {
  color: #94a3b8;
  margin: 0;
  font-size: .78rem;
}

.footer-bottom-links {
  align-items: center;
  gap: 1.25rem;
  display: flex;
}

.footer-bottom-link {
  color: #64748b;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom-link:hover {
  color: #ff5722;
}

.footer-bottom-link--accent {
  color: #ff5722;
  font-weight: 700;
}

@media (min-width: 640px) {
  .footer-newsletter-inner {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }

  .footer-newsletter-text {
    flex: 1;
  }

  .footer-newsletter-form {
    flex-direction: row;
    width: auto;
    min-width: 300px;
    max-width: 400px;
  }

  .footer-subscribe-btn {
    white-space: nowrap;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-hq-col {
    grid-column: auto;
  }

  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .footer-newsletter {
    padding: 3rem 2rem;
  }

  .footer-newsletter-title {
    font-size: 2rem;
  }

  .footer-newsletter-form {
    min-width: 400px;
    max-width: 480px;
  }

  .footer-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 2rem 3rem;
  }

  .footer-brand-col {
    flex: 0 0 300px;
    max-width: 300px;
  }

  .footer-links-grid {
    flex: 1;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 2rem 3rem;
  }

  .footer-hq-col {
    grid-column: auto;
  }

  .footer-bottom-bar {
    padding: 1.5rem 2rem;
  }
}

.mvs7-promo-portrait {
  aspect-ratio: 9 / 16;
  background: #000;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: block;
  position: relative;
  overflow: hidden;
}

.mvs7-promo-landscape {
  display: none !important;
}

@media (max-width: 768px) {
  .mvs7-promo-portrait {
    aspect-ratio: 9 / 16;
  }
}

@media (min-width: 769px) {
  .mvs7-promo-portrait {
    aspect-ratio: 9 / 16;
    max-height: 90vh;
  }
}

.catalog-grid-scooters {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  display: grid;
}

.catalog-grid-ebikes {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
  display: grid;
}

.catalog-grid-innovations {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  display: grid;
}

.scooter-section-header {
  text-align: center;
  max-width: 40rem;
  margin: 1rem auto 0;
}

.scooter-section-eyebrow {
  font-family: var(--font-heading);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .65rem;
  font-size: .75rem;
  font-weight: 700;
}

.scooter-section-title {
  font-family: var(--font-heading);
  letter-spacing: -.03em;
  color: #0f172a;
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}

.scooter-section-sub {
  color: #64748b;
  max-width: 34rem;
  margin: .75rem auto 0;
  font-size: 1rem;
  line-height: 1.55;
}

.scooter-section-booking-note {
  color: #475569;
  background: linear-gradient(90deg, #fff7ed 0%, #fffbeb 100%);
  border: 1px solid #ffedd5;
  border-radius: 8px;
  margin: 1.25rem auto 0;
  padding: .55rem 1.1rem;
  font-size: .85rem;
  display: inline-block;
}

.scooter-section-booking-note strong {
  color: #c2410c;
  font-weight: 700;
}

.scooter-product {
  --scooter-accent: #f1f5f9;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), border-color .25s, box-shadow .35s cubic-bezier(.16, 1, .3, 1);
  animation: .55s cubic-bezier(.16, 1, .3, 1) both scooter-rise;
  display: flex;
  overflow: hidden;
}

@keyframes scooter-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scooter-product {
    animation: none;
  }
}

.scooter-product:hover {
  border-color: #fdba74;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px #0f172a12;
}

.scooter-product-media {
  background: radial-gradient(ellipse 70% 55% at 50% 70%, #ffffffd9 0%, transparent 70%),
    linear-gradient(165deg, var(--scooter-accent) 0%, #fff 100%);
  height: 280px;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.scooter-product:hover .scooter-product-media {
  transform: scale(1.02);
}

.scooter-product-body {
  border-top: 1px solid #f1f5f9;
  flex-direction: column;
  flex: 1;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
}

.scooter-product-identity {
  flex-direction: column;
  gap: .2rem;
  display: flex;
}

.scooter-product-name {
  font-family: var(--font-heading);
  letter-spacing: -.02em;
  color: #0f172a;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.scooter-product-subtitle {
  color: #64748b;
  margin: 0;
  font-size: .9rem;
  line-height: 1.4;
}

.scooter-product-metrics {
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: .85rem 0;
  display: grid;
}

.scooter-metric {
  flex-direction: column;
  gap: .15rem;
  padding: 0 .85rem;
  display: flex;
}

.scooter-metric:first-child {
  border-right: 1px solid #f1f5f9;
  padding-left: 0;
}

.scooter-metric:last-child {
  padding-right: 0;
}

.scooter-metric dt {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #94a3b8;
  font-size: .68rem;
  font-weight: 600;
}

.scooter-metric dd {
  font-family: var(--font-mono);
  color: #0f172a;
  letter-spacing: -.02em;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.scooter-product-highlights {
  flex-wrap: wrap;
  gap: .4rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.scooter-product-highlights li {
  color: #475569;
  padding-left: .85rem;
  font-size: .8rem;
  font-weight: 500;
  position: relative;
}

.scooter-product-highlights li:before {
  content: "";
  background: var(--accent);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: .45em;
  left: 0;
}

.scooter-product-actions {
  flex-direction: column;
  gap: .65rem;
  margin-top: auto;
  padding-top: .25rem;
  display: flex;
}

.scooter-btn-book {
  color: #fff;
  width: 100%;
  font-family: var(--font-heading);
  letter-spacing: .01em;
  cursor: pointer;
  background: #0f172a;
  border: none;
  border-radius: 10px;
  padding: .9rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.scooter-btn-book:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.scooter-btn-book:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.scooter-btn-details {
  color: #64748b;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  padding: .35rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s, gap .2s;
  display: inline-flex;
}

.scooter-btn-details:hover {
  color: var(--accent);
  gap: .5rem;
}

.catalog-card {
  background: linear-gradient(185deg, #fff 0%, #fcfdfe 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: 1.85rem;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s cubic-bezier(.16, 1, .3, 1), border-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px #00000005;
}

.catalog-grid-ebikes .catalog-card {
  min-height: 600px;
}

.catalog-card:hover {
  border-color: #ff5722;
  transform: translateY(-8px);
  box-shadow: 0 25px 50px #ff57220f, 0 4px 24px #0000000a;
}

.catalog-card-badge {
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 5;
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .65rem;
  font-weight: 800;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.catalog-card-badge--orange {
  color: #ea580c;
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
}

.catalog-card-badge--red {
  color: #ef4444;
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
}

.catalog-card-image-wrap {
  background-color: #f8fafc;
  border: 1px dashed #0f172a0a;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
}

.catalog-grid-ebikes .catalog-card-image-wrap {
  height: 360px;
}

.catalog-card:hover .catalog-card-image-wrap {
  transform: scale(1.03);
}

.catalog-card-content {
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  display: flex;
}

.catalog-card-title {
  font-family: var(--font-heading);
  color: #0f172a;
  margin-bottom: .75rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.catalog-card-specs {
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.catalog-card-spec-pill {
  color: #64748b;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: .3rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}

.catalog-card-price {
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.catalog-price-sale {
  color: #0f172a;
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-mono);
}

.catalog-price-original {
  color: #94a3b8;
  font-size: .95rem;
  font-family: var(--font-mono);
  text-decoration: line-through;
}

.catalog-card-actions {
  gap: .75rem;
  width: 100%;
  display: flex;
}

.catalog-btn-primary {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #ff5722, #f97316);
  border: none;
  border-radius: 12px;
  outline: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: .85rem 1rem;
  font-size: .875rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 4px 14px #ff572233;
}

.catalog-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #ff57224d;
}

.catalog-btn-secondary {
  color: #475569;
  cursor: pointer;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: .85rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: inline-flex;
}

.catalog-btn-secondary:hover {
  color: #0f172a;
  background-color: #e2e8f0;
}

.innovation-card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 12px #00000005;
}

.innovation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px #0000000d;
}

.innovation-card-image {
  width: 100%;
  height: 140px;
  position: relative;
}

.innovation-card-content {
  text-align: center;
  background-color: #f8fafc;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.innovation-card-title {
  color: #334155;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .catalog-grid-scooters {
    grid-template-columns: repeat(2, 1fr);
  }

  .scooter-product:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 28rem;
  }
}

@media (max-width: 768px) {
  .catalog-grid-scooters {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .scooter-product:last-child {
    grid-column: auto;
    max-width: none;
  }

  .scooter-product-media {
    height: 240px;
  }

  .scooter-section-booking-note {
    padding: .5rem .9rem;
    font-size: .8rem;
  }

  .catalog-grid-ebikes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catalog-grid-innovations {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .catalog-card {
    padding: 1.5rem;
    min-height: auto !important;
  }

  .catalog-grid-ebikes .catalog-card-image-wrap {
    height: 300px;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
  }

  .catalog-card-title {
    margin-bottom: .5rem;
    font-size: 1.1rem;
  }

  .catalog-card-specs {
    gap: .35rem;
    margin-bottom: 1rem;
  }

  .catalog-card-spec-pill {
    padding: .25rem .5rem;
    font-size: .65rem;
  }

  .catalog-price-sale {
    font-size: 1.2rem;
  }

  .catalog-price-original {
    font-size: .85rem;
  }

  .catalog-card-actions {
    flex-direction: column;
    gap: .5rem;
  }

  .catalog-btn-primary, .catalog-btn-secondary {
    border-radius: 10px;
    width: 100%;
    padding: .75rem;
    font-size: .8rem;
  }

  .innovation-card-image {
    height: 100px;
  }

  .innovation-card-title {
    font-size: .65rem;
  }
}

@media (max-width: 480px) {
  .catalog-grid-ebikes {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .catalog-grid-innovations {
    grid-template-columns: repeat(2, 1fr);
  }

  .scooter-product-body {
    padding: 1.15rem 1.2rem 1.35rem;
  }

  .scooter-product-name {
    font-size: 1.35rem;
  }
}

@media (min-width: 768px) {
  .show-desktop-banner {
    display: block !important;
  }

  .show-mobile-banner {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .show-desktop-banner {
    display: none !important;
  }

  .show-mobile-banner {
    display: block !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-fade-in {
  animation: .6s cubic-bezier(.16, 1, .3, 1) forwards fadeIn;
}

.animate-pulse-glow {
  animation: 3s ease-in-out infinite pulseGlow;
}

.animate-float {
  animation: 4s ease-in-out infinite floatSlow;
}

input:focus, select:focus, textarea:focus {
  transition: all .25s;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px #ff57221f !important;
}

button, a {
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
}

.card-hover-lift {
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s cubic-bezier(.16, 1, .3, 1), border-color .3s;
}

.card-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px #00000014;
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/