:root {
  --header-height: 88px;
  --background: hsl(210 40% 98%);
  --foreground: hsl(222 47% 11%);

  --card: hsl(0 0% 100%);
  --card-foreground: hsl(222 47% 11%);

  --popover: hsl(0 0% 100%);
  --popover-foreground: hsl(222 47% 11%);

  --primary: hsl(217 91% 60%);
  --primary-foreground: hsl(0 0% 100%);

  --secondary: hsl(43 74% 66%);
  --secondary-foreground: hsl(222 47% 11%);

  --muted: hsl(210 40% 96%);
  --muted-foreground: hsl(215 20% 45%);

  --accent: hsl(199 89% 48%);
  --accent-foreground: hsl(0 0% 100%);

  --border: hsl(214 32% 91%);
  --ring: hsl(217 91% 60%);

  --radius: 0.75rem;

  --gradient-cta: linear-gradient(135deg, hsl(217 91% 60%), hsl(199 89% 48%));
  --shadow-sm: 0 1px 2px 0 hsl(217 91% 60% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(217 91% 60% / 0.1), 0 2px 4px -2px hsl(217 91% 60% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(217 91% 60% / 0.1), 0 4px 6px -4px hsl(217 91% 60% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(217 91% 60% / 0.1), 0 8px 10px -6px hsl(217 91% 60% / 0.1);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container-lg {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container-lg { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-lg { padding: 0 2rem; } }

.section-padding { padding: 1rem 0; }
@media (min-width: 768px) { .section-padding { padding: 2rem 0; } }

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: hsl(217 91% 60% / 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
  user-select: none;
}
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }
.btn-gradient {
  color: var(--primary-foreground);
  background-image: var(--gradient-cta);
  box-shadow: var(--shadow-lg);
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-outline {
  background: transparent;
  border-color: hsl(0 0% 100% / 0.3);
  color: hsl(0 0% 100% / 0.95);
}
.btn-outline:hover { background: hsl(0 0% 100% / 0.1); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}
.btn-outline-dark:hover { background: var(--muted); }

.card-elevated {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.card-elevated:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }

.grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid.md-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid.lg-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid.lg-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid.lg-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: padding .3s ease, background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  padding: 0.6rem 0;
  background: hsl(210 40% 98% / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .brand img { width: 2.75rem; height: 2.75rem; }
}
.brand .title { font-weight: 700; letter-spacing: 0.02em; font-size: 0.9rem; line-height: 1.1; }
.brand .subtitle { font-weight: 500; font-size: 0.75rem; opacity: 1; line-height: 1.1; color: #fff; }
.site-header:not(.scrolled) .brand .title,
.site-header:not(.scrolled) .brand .subtitle { color: white; }
.site-header.scrolled .brand .subtitle { color: var(--foreground); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  padding: 0.55rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color .2s ease, color .2s ease;
}
.site-header.scrolled .nav-link { color: var(--foreground); }
.site-header.scrolled .nav-link:hover { color: var(--primary); background: hsl(217 91% 60% / 0.1); }
.site-header:not(.scrolled) .nav-link { color: hsl(0 0% 100% / 0.9); }
.site-header:not(.scrolled) .nav-link:hover { color: white; background: hsl(0 0% 100% / 0.1); }

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .header-cta { display: flex; } }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.site-header:not(.scrolled) .phone-link { color: white; }
.site-header.scrolled .phone-link { color: var(--foreground); }

.icon { width: 1rem; height: 1rem; display: inline-block; }
.icon-lg { width: 1.25rem; height: 1.25rem; }
.icon-xl { width: 1.5rem; height: 1.5rem; }

.header-right-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .header-right-mobile { display: none; } }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.site-header.scrolled .icon-btn { color: var(--foreground); }
.site-header:not(.scrolled) .icon-btn { color: white; }

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--header-height) - 2px);
  left: 12px;
  right: 12px;
  bottom: auto;
  max-height: min(560px, calc(100dvh - var(--header-height) - 16px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: rgba(248,250,252,.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  z-index: 9999;
}

.mobile-menu.open { display: block; }

.mobile-menu .container-lg {
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.mobile-menu nav {
  padding: 0.9rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mobile-menu .m-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  font-weight: 500;
  color: var(--foreground);
  background: transparent;
  transition: background-color .2s ease, color .2s ease;
}

.mobile-menu .m-link:hover { background: var(--muted); }

.mobile-menu .m-link-main {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mobile-menu .m-link-meta {
  font-size: 0.96rem;
  color: hsl(220 20% 22%);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.mobile-menu .m-cta-wrap {
  padding: 0.35rem 1rem 0 1rem;
}

.mobile-menu .m-meta {
  margin-top: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-bottom: 0.8rem;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}


/* Dropdown */
.dropdown { position: relative; }
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.75rem;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
  font-size: 0.9rem;
}
.site-header.scrolled .dropdown-trigger { color: var(--foreground); }
.site-header.scrolled .dropdown-trigger:hover { background: var(--muted); }
.site-header:not(.scrolled) .dropdown-trigger { color: white; }
.site-header:not(.scrolled) .dropdown-trigger:hover { background: hsl(0 0% 100% / 0.1); }
.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 10rem;
  background: var(--popover);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-lg);
  padding: 0.35rem;
  display: none;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  color: var(--foreground);
  cursor: pointer;
}
.dropdown-item:hover { background: var(--muted); }
.lang-code { width: 1.5rem; text-transform: uppercase; font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg .layer { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.zoom {
  animation: heroZoom 12s linear forwards;
  transform-origin: center;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.4); }
}


.hero-layer-a { opacity: 1; transition: opacity 1s ease; }
.hero-layer-b { opacity: 0; transition: opacity 1.5s ease; }
.hero.swap .hero-layer-a { opacity: 0; }
.hero.swap .hero-layer-b { opacity: 1; }

.hero-skater {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  transition: opacity 2s ease, transform 2s ease;
}
.hero.show-skater .hero-skater {
  opacity: 1;
  transform: translateY(0) scale(1.05);
}
.hero-skater img {
  height: 60%;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: -2%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
@media (min-width: 640px) { .hero-skater img { height: 70%; } }

.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, hsl(222 47% 11% / 0.8), hsl(222 47% 11% / 0.5), transparent); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, hsl(222 47% 11% / 0.6), transparent, hsl(222 47% 11% / 0.2)); }

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 3rem;
}
.hero-inner { max-width: 42rem; }

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(0 0% 100% / 0.2);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.4rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4rem; } }

.text-gradient {
  background-image: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  color: hsl(0 0% 100% / 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 34rem;
}
@media (min-width: 640px) { .hero .lead { font-size: 1.125rem; } }

.rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.stars { display: flex; gap: 0.15rem; }
.star { width: 1.1rem; height: 1.1rem; }
@media (min-width: 640px) { .star { width: 1.25rem; height: 1.25rem; } }

.pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(0 0% 100% / 0.1);
  color: white;
  font-size: 0.85rem;
}
@media (min-width: 640px) { .pill { font-size: 0.95rem; padding: 0.55rem 1rem; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-link { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: hsl(0 0% 100% / 0.7); transition: color .2s ease; }
.scroll-link:hover { color: white; }
.mouse-shell {
  width: 0rem;
  height: 0rem;
  border-radius: 999px;
  border: 2px solid hsl(0 0% 100% / 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0rem;
  transition: border-color .2s ease;
}
.scroll-link:hover .mouse-shell { border-color: hsl(0 0% 100% / 0.5); }
.mouse-dot {
  width: 0.35rem;
  height: 0.75rem;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.6);
  animation: mouseMove 1.5s ease-in-out infinite;
}
@keyframes mouseMove { 0%{ transform: translateY(0);} 50%{ transform: translateY(12px);} 100%{ transform: translateY(0);} }
.scroll-link { animation: floatY 2s ease-in-out infinite; }
@keyframes floatY { 0%{ transform: translateY(0);} 50%{ transform: translateY(8px);} 100%{ transform: translateY(0);} }
.scroll-text { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }

/* Fleet / Reviews cards */
.highlight-bar { background: var(--primary); padding: 0.5rem 1rem; text-align: center; }
.highlight-bar p { color: var(--primary-foreground); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }

.media {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-elevated:hover .media img { transform: scale(1.1); }
.media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(222 47% 11% / 0.6), transparent); }
.media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: hsl(217deg 91% 60% / 10%));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.card-body { padding: 1.5rem; }
.card-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.card-desc { color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.price { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.price-unit { color: var(--muted-foreground); font-size: 0.9rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.tag { padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; background: var(--muted); color: var(--muted-foreground); }
.tag.primary { background: hsl(217 91% 60% / 0.1); color: var(--primary); }

/* Contact section */
.contact-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-row { display: flex; gap: 1rem; }
.contact-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: hsl(217 91% 60% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.upper { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; font-weight: 600; color: var(--muted-foreground); margin-bottom: 0.25rem; }

.map-wrap { position: relative; border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow-xl); height: 400px; }
.map-click-target { position: absolute; inset: 0; z-index: 2; display: block; }
.map-wrap iframe { pointer-events: none; }
@media (min-width: 1024px) { .map-wrap { height: 500px; } }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-label {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: hsl(0 0% 100% / 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

/* Gallery */
.gallery { padding: 2rem 0; overflow: hidden; background: var(--background); }
.gallery-track { display: flex; gap: 1rem; width: max-content; animation: scrollX 30s linear infinite; }
.gallery:hover .gallery-track { animation-play-state: paused; }
@keyframes scrollX { 0%{ transform: translateX(0);} 100%{ transform: translateX(-50%);} }
.gallery-item { width: 18rem; height: 12rem; border-radius: 1rem; overflow: hidden; flex: 0 0 auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* Features */
.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1.25rem;
  transition: background-color .2s ease;
font-family: var(--font-body);
  font-weight: 900;	
}
.feature-card p {
  font-family: var(--font-body);
  font-weight: 400;
}
.feature-card:hover { background: var(--muted); }
.feature-ico {
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  background: hsl(217 91% 60% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background-color .2s ease;
}
.feature-card:hover .feature-ico { background: hsl(217 91% 60% / 0.2); }
.feature-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; }

/* FAQ */
.faq-wrap { max-width: 48rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.faq-q span { font-weight: 700; font-size: 1.05rem; }
.faq-toggle {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: hsl(217 91% 60% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; opacity: 0; }
.faq-item.open .faq-a { opacity: 1; max-height: 220px; }
.faq-a p { padding: 0 3rem 1.25rem 0; color: var(--muted-foreground); line-height: 1.7; }

/* Footer */
.footer { background: var(--foreground); color: var(--background); }
.footer .container-lg { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.footer-muted { color: hsl(0 0% 100% / 0.7); }
.footer a.footer-link { color: hsl(0 0% 100% / 0.7); transition: color .2s ease; font-size: 0.9rem; }
.footer a.footer-link:hover { color: var(--primary); }
.footer h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 1.5rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 0.75rem 0; }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease;
}
.social a:hover { background: var(--primary); }

.footer-bottom { border-top: 1px solid hsl(0 0% 100% / 0.1); }
.footer-bottom-inner {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-bottom-inner a { color: hsl(0 0% 100% / 0.6); font-size: 0.9rem; transition: color .2s ease; }
.footer-bottom-inner a:hover { color: var(--background); }

/* Helpers */
.bg-muted { background: var(--muted); }
.bg-card { background: var(--card); }
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; }


.faq-toggle svg { width: 1rem; height: 1rem; }
.faq-toggle svg:nth-child(2) { display: none; }
.faq-item.open .faq-toggle svg:nth-child(1) { display: none; }
.faq-item.open .faq-toggle svg:nth-child(2) { display: block; }
.hide-xl { display: none; }
@media (min-width: 1280px) { .hide-xl { display: inline; } }


@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 1rem);
  }
}

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

/* ===== CARD HEADER ROUND FIX ===== */

.highlight-bar{
  border-radius:22px 22px 0 0;
  padding:14px 14px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}

.highlight-title{
  margin:0;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.highlight-sub{
  font-size:11px;
  font-weight:700;
  opacity:.9;
}
/* ===== FIX REAL BORDER RADIUS CARDS ===== */



.card-elevated .highlight-bar {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.feature-card .feature-title {
  font-size: 0.7rem;
  font-weight: 800;
}

/* ===== SOCIAL ICONS STRIP ===== */

.social-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0.75rem;
  max-width:260px;
  margin:0 auto;
}

.social-card{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:1rem;
  box-shadow:var(--shadow-sm);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

.social-card svg{
  width:32px;
  height:32px;
  fill:var(--muted-foreground);
  transition:
    fill .25s ease,
    transform .25s ease;
}

.social-card:hover{
  transform: translateY(-3px);
  box-shadow:var(--shadow-lg);
}

.social-card:hover svg{
  fill:var(--primary);
  transform: scale(1.08);
}

.container-panel{
  max-width:420px;
  margin:0 auto;
  padding:0 1rem;
}

.media {
  position: relative;
}

.media-badge {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3b82f600;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 3;
}

/* CENTRADO REAL DEL EMOJI */
.scooter-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 45px;          /* grande */
  line-height: 1;
  transform: translate(-50%, -56%);
}

/* Home39 hero title tuned from Home41 */
.home-page .hero .home-hero-title{
  position:relative;
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:.18em;
  text-align:left;
  font-family:"Great Vibes",cursive;
  font-weight:400;
  color:#fff;
  letter-spacing:0;
  text-wrap:balance;
  text-shadow:0 2px 10px rgba(11,16,34,.16);
}
.home-page .hero .home-hero-title-line{
  display:inline-flex;
  align-items:baseline;
  white-space:nowrap;
  margin:0;
}
.home-page .hero .home-hero-title-initial{
  color:#3b82f6;
  display:inline-block;
  font-size:1.26em;
  line-height:.74;
  margin-right:.06em;
}
.home-page .hero .home-hero-title-rest{color:#fff}
.home-page .hero .home-hero-title-rest--accent{color:#3b82f6}
.home-page .hero .home-hero-title-em{display:inline-block;transform-origin:left bottom}
.home-page .hero .home-hero-title-em--15{transform:scale(1.15)}
.home-page .hero .home-hero-title-em--10{transform:scale(1.1)}
.home-page .hero .home-hero-title-em--5{transform:scale(1.05)}
.home-page .hero .home-hero-title-stretch{
  display:inline-block;
  transform:scaleX(1.22);
  transform-origin:left center;
}
.home-page .hero .home-hero-title-amp{
  display:inline-block;
  font-size:.828em;
  margin-left:.16em;
  color:#3b82f6;
}
.home-page .hero .home-hero-title-line--inline,
.home-page .hero .home-hero-title-line--inline-top{
  position:absolute;
  margin:0;
  padding:0;
  pointer-events:none;
}
.home-page .hero .home-hero-title-line--inline{
  left:1.17em;
  top:1.56em;
  justify-content:flex-end;
}
.home-page .hero .home-hero-title-line--inline-top{
  left:1.17em;
  top:.62em;
  justify-content:flex-start;
}
.home-page .hero .home-hero-title-rest--inline{
  display:inline-block;
  font-family:"Great Vibes",cursive;
  font-weight:400;
  font-size:.866em;
  line-height:.86;
}
.home-page .hero .home-hero-title-sep{display:inline-block;margin:0 .035em 0 .02em}
.home-page .hero .home-hero-title-line--inline .home-hero-title-rest--inline,
.home-page .hero .home-hero-title-line--inline-top .home-hero-title-rest--inline{
  color:#3b82f6;
}
.home-page .hero .lead{
  margin-top:1rem;
}
@media (max-width:640px){
  .home-page .hero .home-hero-title{
    font-size:clamp(4.054rem,20.33vw,5.687rem);
    line-height:.78;
    max-width:none;
  }
  .home-page .hero .home-hero-title-line--rental{transform:translateX(-.26em)}
  .home-page .hero .home-hero-title-line--services{transform:translateX(-.24em)}
  .home-page .hero .home-hero-title-line--barcelona{transform:translateX(-.24em)}
  .home-page .hero .home-hero-title-line--inline-top{left:1.45em;top:.74em}
  .home-page .hero .home-hero-title-line--inline{left:1.45em;top:1.86em}
}
@media (min-width:641px){
  .home-page .hero .home-hero-title{
    font-size:clamp(4.84rem,10.648vw,7.986rem);
    line-height:.8;
  }
  .home-page .hero .home-hero-title-line--rental{transform:translateX(-.18em)}
  .home-page .hero .home-hero-title-line--services{transform:translateX(-.16em)}
  .home-page .hero .home-hero-title-line--barcelona{transform:translateX(-.16em)}
  .home-page .hero .home-hero-title-line--inline-top{left:1.33em;top:.68em}
  .home-page .hero .home-hero-title-line--inline{left:1.33em;top:1.72em}
}

/* Strategic hero adjustments */
.dropdown-trigger .icon{
  width:1.1rem;
  height:1.1rem;
}

.hero .rating{
  justify-content:center;
  width:fit-content;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.hero .pills{
  justify-content:center;
  gap:0.75rem;
}

.hero .pills .pill{
  white-space:nowrap;
  font-size:0.82rem;
  line-height:1;
}

@media (min-width:640px){
  .hero .pills .pill{
    font-size:0.9rem;
  }
}

@media (max-width:640px){
  .hero .rating{
    width:100%;
  }
}

/* Card tags alignment: keep second pill on the right in all service cards */
.home-page .home-service-card .tags{
  display:flex;
  align-items:center;
  gap:0.5rem;
  width:100%;
}
.home-page .home-service-card .tags .tag:last-child{
  margin-left:auto !important;
}

/* Moved from es/hero.html head: index7-home-hero-motion */
.home-page .card-elevated{background:#cfe4ff !important;border-color:rgba(59,130,246,0.30) !important;}
.hero-bg img.zoom{animation:homeHeroZoomIndex7 12s linear forwards !important;transform-origin:center 42% !important;}
@keyframes homeHeroZoomIndex7{from{transform:scale(1);}to{transform:scale(1.07);}}
@media (max-width:640px){
  .hero-bg img{object-position:center 24% !important;}
  .hero-bg img.zoom{animation:homeHeroZoomMobileIndex7 12s linear forwards !important;transform-origin:center 28% !important;}
  @keyframes homeHeroZoomMobileIndex7{from{transform:scale(1);}to{transform:scale(1.02);}}
}


/* Moved from es/hero.html head: index11-home-seo-links */
.hero-service-links{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1rem;max-width:48rem}
.hero-service-link{display:inline-flex;align-items:center;justify-content:center;padding:.45rem .75rem;border-radius:999px;border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.12);color:#fff;text-decoration:none;font-weight:700;font-size:.84rem;line-height:1.1;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}
.hero-service-link:hover{background:rgba(255,255,255,.18)}
@media (max-width:640px){.hero-service-links{gap:.45rem}.hero-service-link{font-size:.74rem;padding:.42rem .62rem;white-space:nowrap}}

.highlight-bar h2{margin:0;font-size:1.02rem;font-weight:800;line-height:1.15}
.highlight-bar p{margin:.2rem 0 0}


/* Moved from es/hero.html head: home7-hero-pill-tuning */
.hero .pills{gap:.55rem;justify-content:center}
.hero .pills .pill{box-shadow:0 8px 18px rgba(15,23,42,.12) !important;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap}
.hero-service-links{justify-content:center}
.hero-service-link,
.hero-service-link.more-rentals-link{font-size:.78rem;padding:.42rem .64rem;text-align:center}
@media (max-width:640px){
  .hero-service-links{justify-content:center}
  .hero-service-link,
  .hero-service-link.more-rentals-link{font-size:.72rem;padding:.4rem .58rem}
}
.scooter-media-badge{position:absolute;bottom:14px;left:14px;z-index:3;display:inline-flex;align-items:center;justify-content:center;padding:.48rem .72rem;border-radius:999px;background:rgba(11,16,34,.78);border:1px solid rgba(255,255,255,.18);color:#fff;font-weight:800;font-size:.74rem;line-height:1;letter-spacing:.01em;box-shadow:0 10px 24px rgba(15,23,42,.18);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);text-align:center}
.home-page .home-service-card .media{position:relative}
.home-page .home-service-card .media-price-from{position:absolute;left:12px;top:12px;z-index:3;display:inline-flex;align-items:center;justify-content:center;padding:.42rem .68rem;border-radius:999px;background:rgba(11,16,34,.78);border:1px solid rgba(255,255,255,.18);color:#fff;font-weight:800;font-size:.72rem;line-height:1;letter-spacing:.01em;box-shadow:0 8px 20px rgba(15,23,42,.16);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);text-align:center}
.home-page .home-service-card .price-row{display:flex;align-items:baseline;gap:.5rem;width:100%}
.home-page .home-service-card .price-prefix{display:block;flex:0 0 auto;font-weight:800;font-size:.82rem;line-height:1;color:var(--foreground)}
.home-page .home-service-card .price-right{display:flex;align-items:baseline;gap:.3rem;margin-left:auto;justify-content:flex-end;text-align:right;flex:0 0 auto}
.home-page .home-service-card .price-row .price,
.home-page .home-service-card .price-row .price-unit{display:block}
.home-hero-title-line--inline-bottom{display:block;margin-top:.24em !important;line-height:1}.home-hero-title-line--inline-bottom .home-hero-title-rest--inline{display:inline-block;transform:translateY(18%)}
.hero-inner > .lead{margin-top:1.6rem !important}
@media (max-width:640px){
  .scooter-media-badge{bottom:12px;left:12px;font-size:.66rem;padding:.42rem .6rem;max-width:calc(100% - 24px)}
  .home-page .home-service-card .media-price-from{top:10px;left:10px;font-size:.64rem;padding:.38rem .56rem}
  .home-hero-title-line--inline-bottom{margin-top:.92em !important;line-height:1}
  .home-hero-title-line--inline-bottom .home-hero-title-rest--inline{transform:translateY(20%)}
  .hero-inner > .lead{margin-top:1.9rem !important}
}


/* Moved from es/hero.html head: home-card-cta-contrast */
.home-page .card-elevated .btn.btn-outline-dark{
  background:rgba(37,99,235,.14) !important;
  border:1px solid rgba(37,99,235,.28) !important;
  color:#0f172a !important;
  box-shadow:0 6px 16px rgba(37,99,235,.12) !important;
  font-weight:700 !important;
}
.home-page .card-elevated .btn.btn-outline-dark:hover,
.home-page .card-elevated .btn.btn-outline-dark:focus-visible{
  background:rgba(37,99,235,.20) !important;
  border-color:rgba(37,99,235,.38) !important;
  box-shadow:0 8px 20px rgba(37,99,235,.16) !important;
}

.home-cta-row{display:flex;justify-content:center;align-items:center;gap:.75rem;flex-wrap:nowrap;margin-top:1.5rem}
.home-cta-row .home-cta-btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.62rem 1rem;border-radius:999px;font-weight:700;font-size:.92rem;text-decoration:none;white-space:nowrap;flex:1 1 0;min-width:0;max-width:220px}
.home-cta-row .home-cta-btn.prices-btn{background:#2563eb;color:#fff;box-shadow:0 10px 24px rgba(37,99,235,.18)}
.home-cta-row .home-cta-btn.whatsapp-btn{background:#0f766e;color:#fff;box-shadow:0 10px 24px rgba(15,118,110,.16)}
.home-cta-row .home-cta-btn svg{flex:0 0 auto}
.home-page .home-service-card{border:1px solid rgba(59,130,246,.36) !important;box-shadow:0 10px 24px rgba(15,23,42,.06),0 0 0 1px rgba(255,255,255,.18) inset !important;overflow:hidden;margin-bottom:1rem}
.home-page .home-service-card + .home-service-card{margin-top:.15rem}
.home-page .highlight-bar{padding:.82rem 1rem .8rem;background:linear-gradient(180deg,#3b82f6 0%,#3179e8 100%)}
.home-page .highlight-bar h2{color:#fff !important;font-size:1.28rem !important;font-weight:900 !important;line-height:1.06 !important;letter-spacing:-.01em}
.home-page .highlight-bar p{color:rgba(255,255,255,.9) !important;font-size:.74rem !important;font-weight:700 !important;line-height:1.18 !important;margin:.18rem 0 0 !important;text-transform:uppercase;letter-spacing:.04em}
.home-page .card-title{font-size:1.44rem !important;line-height:1.12 !important;font-weight:800 !important;letter-spacing:-.01em;color:#0f172a !important}
.home-page .card-desc{font-size:1rem !important;line-height:1.62 !important;color:#475569 !important}
.home-page .home-map-card{padding:.7rem !important;overflow:hidden;border:1px solid rgba(59,130,246,.34) !important;box-shadow:0 10px 24px rgba(15,23,42,.06),0 0 0 1px rgba(255,255,255,.16) inset !important;margin-top:.6rem !important}
.home-page .home-map-card .map-top-cta{display:flex;justify-content:center;margin-bottom:.7rem}
.home-page .home-map-card .map-cta-btn{width:100%;max-width:320px}
.home-page .home-map-card .map-wrap{margin-top:0}
@media (max-width:640px){
  .home-cta-row{gap:.55rem}
  .home-cta-row .home-cta-btn{font-size:.84rem;padding:.58rem .72rem;max-width:none}
  .home-page .card-title{font-size:1.48rem !important}
  .home-page .highlight-bar h2{font-size:1.16rem !important}
  .home-page .highlight-bar p{font-size:.68rem !important}
}


/* Moved from es/hero.html head */
.social-card{
      /* Reducimos el tamaño de los iconos para que quepan 5 en una fila incluso en móviles */
      width:48px;
      height:48px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--card);
      border:1px solid var(--border);
      border-radius:1rem;
      box-shadow:var(--shadow-md);
      transition:background-color .2s ease, box-shadow .2s ease;
    }
    .social-card svg{
      width:28px;
      height:28px;
      fill:var(--muted-foreground);
      transition:fill .2s ease;
    }
    .social-card:hover{
      box-shadow:var(--shadow-lg);
    }
    .social-card:hover svg{
      fill:var(--primary);
    }
    /* Alineación horizontal de los iconos en móviles */
    .social-row{
      display:flex;
      justify-content:center;
      gap:0.5rem;
      flex-wrap:nowrap;
    }

