/* =========================================================
   Sri SPS E-Bikes — Premium Electric Scooter Showroom
   ========================================================= */
:root {
  --bg: #060808;
  --bg-2: #0a0d0d;
  --surface: #111615;
  --surface-2: #171d1c;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --text: #f2f5f3;
  --muted: #8e9793;
  --dim: #626b67;
  --green: #3cf08a;
  --green-2: #1fd873;
  --green-soft: rgba(60, 240, 138, .12);
  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1240px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text); font-family: var(--font);
  font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
svg { display: block; }
.wrap { width: min(var(--wrap), 100% - 48px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

html.sv-loading body { opacity: 0; }
body { transition: opacity .35s; }
.logo-img { height: 40px; width: auto; max-width: 180px; object-fit: contain; }
.footer .logo-img { height: 48px; }

/* ---------- Typography ---------- */
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--green); letter-spacing: .02em; margin-bottom: 10px; }
.h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 15.5px; max-width: 520px; margin: 0; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 48px; padding: 0 24px;
  border-radius: 999px; font-weight: 600; font-size: 14px; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: #0a0c0b; }
.btn-light:hover { box-shadow: 0 10px 30px rgba(255, 255, 255, .15); }
.btn-dark { background: rgba(10, 12, 12, .7); color: #fff; border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn-dark:hover { border-color: #fff; }
.btn-green { background: var(--green); color: #04130a; }
.btn-green:hover { box-shadow: 0 10px 34px rgba(60, 240, 138, .35); }
.btn-outline { border-color: var(--line-2); color: #fff; background: transparent; }
.btn-outline:hover { border-color: #fff; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 13px; }
.btn .ico { width: 18px; height: 18px; }
.circle-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-2); background: rgba(0, 0, 0, .35); transition: .25s var(--ease); flex: none;
}
.circle-btn:hover { background: #fff; color: #000; border-color: #fff; }
.circle-btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 60; transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(6, 8, 8, .78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-color: var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo { font-weight: 800; font-size: 22px; letter-spacing: .02em; display: inline-flex; align-items: baseline; }
.logo b { color: var(--green); font-weight: 800; }
.nav { display: flex; gap: 34px; }
.nav a { font-size: 14px; color: #c9d0cc; position: relative; padding: 6px 0; transition: color .2s; }
.nav a:hover, .nav a.active { color: #fff; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .3s var(--ease); border-radius: 2px; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: transparent; border: 0; }
.icon-btn svg { width: 20px; height: 20px; }
.menu-btn { display: none; }

/* Light header (listing/detail pages) */
.page-light .header { background: rgba(255, 255, 255, .9); backdrop-filter: blur(14px); border-color: #e7e9e8; color: #0b0d0c; }
.page-light .nav a { color: #444b47; }
.page-light .nav a:hover, .page-light .nav a.active { color: #000; }
.page-light .logo b { color: var(--green-2); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: rgba(4, 6, 6, .97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; padding: 90px 28px 40px; gap: 6px; transform: translateY(-100%); transition: transform .45s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-size: 28px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--line); color: #fff; }
.mobile-menu .btn { margin-top: 24px; }
.mobile-menu .close { position: absolute; top: 18px; right: 20px; color: #fff; }

/* ---------- Media helper ---------- */
.media { position: relative; display: grid; place-items: center; }
.thumb > div, .d-thumb > div { width: 100%; height: 100%; }
.media > img { width: 100%; height: 100%; object-fit: contain; }
.media.cover > img { object-fit: cover; }
.media > svg { width: 100%; height: 100%; }

/* ---------- 01 HERO ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; display: flex; align-items: center; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg > .media, .hero-bg svg, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4, 6, 7, .92) 0%, rgba(4, 6, 7, .55) 38%, rgba(4, 6, 7, .05) 65%), linear-gradient(0deg, var(--bg) 0%, transparent 28%); }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 100svh; padding-top: 76px; }
.hero-copy { max-width: 520px; position: relative; z-index: 3; }
.hero h1 { font-size: clamp(44px, 6.2vw, 84px); line-height: 1.02; letter-spacing: -.035em; font-weight: 700; margin: 0 0 20px; }
.hero h1 span { display: block; overflow: hidden; }
.hero h1 span > i { display: block; font-style: normal; transform: translateY(105%); animation: rise 1s var(--ease) forwards; }
.hero h1 span:nth-child(2) > i { animation-delay: .12s; }
.hero h1 span:nth-child(3) > i { animation-delay: .24s; }
@keyframes rise { to { transform: none; } }
.hero p { color: #b7beba; font-size: 17px; max-width: 360px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scooter {
  position: absolute; z-index: 2; right: 13%; bottom: 8%; width: min(50vw, 720px); aspect-ratio: 420 / 270;
  animation: heroIn 1.4s var(--ease) both .2s;
}
.hero-scooter::after { content: ""; position: absolute; left: 6%; right: 6%; bottom: -12%; height: 30%; background: radial-gradient(ellipse at center, rgba(255, 170, 90, .18), transparent 70%); filter: blur(10px); z-index: -1; }
@keyframes heroIn { from { opacity: 0; transform: translateX(80px) scale(.96); } to { opacity: 1; transform: none; } }
.hero-stats { position: relative; z-index: 3; display: grid; gap: 34px; text-align: left; padding-left: 26px; border-left: 1px solid var(--line-2); }
.hero-stats b { display: block; font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.hero-stats b small { font-size: 16px; font-weight: 600; margin-left: 3px; }
.hero-stats span { display: block; margin-top: 6px; font-size: 13px; color: #aab2ae; }
.scroll-down { position: absolute; left: 24px; bottom: 30px; z-index: 3; display: flex; align-items: center; gap: 12px; font-size: 13px; color: #aab2ae; }
.scroll-down i { width: 22px; height: 36px; border: 1.5px solid #aab2ae; border-radius: 12px; position: relative; }
.scroll-down i::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--green); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }

/* ---------- 02 MODELS ---------- */
.models { background: linear-gradient(180deg, var(--bg) 0%, #0a0e0d 100%); }
.model-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.model-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, #1a201f 0%, #0d1111 100%);
  border: 1px solid var(--line); aspect-ratio: 3 / 4.3; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  transition: transform .5s var(--ease), border-color .4s;
}
.model-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 38%, var(--glow, rgba(255, 255, 255, .12)), transparent 60%); transition: opacity .5s; }
.model-card:hover { transform: translateY(-8px); border-color: var(--line-2); }
.model-card .mc-art { position: absolute; left: -4%; right: -4%; top: 9%; height: 46%; transition: transform .7s var(--ease); }
.model-card:hover .mc-art { transform: scale(1.06) translateX(3%); }
.model-card h3 { margin: 0; font-size: 26px; font-weight: 700; position: relative; }
.model-card p { margin: 2px 0 18px; font-size: 13.5px; color: var(--muted); position: relative; }
.model-card .price { font-size: 13px; color: #cfd5d2; position: relative; margin-bottom: 14px; }
.model-card .circle-btn { position: relative; }
.model-card:hover .circle-btn { background: #fff; color: #000; }

/* ---------- 03 FEATURES ---------- */
.features { background: radial-gradient(ellipse at 50% 55%, #10202a 0%, #070a0b 55%, var(--bg) 100%); overflow: hidden; }
.features-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; align-items: center; gap: 30px; margin-top: 50px; }
.feature-col { display: grid; gap: 56px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-col.right .feature { flex-direction: row; }
.feature .fi { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); border: 1px solid rgba(60, 240, 138, .25); }
.feature .fi svg { width: 22px; height: 22px; }
.feature h4 { margin: 2px 0 2px; font-size: 17px; font-weight: 600; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-bike { position: relative; height: 520px; display: grid; place-items: center; }
.feature-bike::before { content: ""; position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(80, 170, 255, .22), transparent 65%); filter: blur(10px); }
.feature-bike .media { height: 100%; width: auto; aspect-ratio: 300 / 420; }

/* ---------- 04 ABOUT ---------- */
.about { background: var(--bg); }
.about-card { display: grid; grid-template-columns: .9fr 1.1fr; border-radius: 26px; overflow: hidden; background: linear-gradient(135deg, #0f1414, #0a0d0d); border: 1px solid var(--line); }
.about-copy { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-copy .lead { margin-bottom: 30px; }
.about-img { min-height: 440px; position: relative; }
.about-img::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #0e1313 0%, transparent 30%); pointer-events: none; }
.about-img .media { position: absolute; inset: 0; }
.about-img .media svg, .about-img .media img { width: 100%; height: 100%; object-fit: cover; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 30px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: 36px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.stat span { color: var(--muted); font-size: 13.5px; }

/* ---------- 05 BATTERY ---------- */
.battery { background: radial-gradient(ellipse at 75% 50%, rgba(30, 220, 120, .10), transparent 55%), #050807; overflow: hidden; }
.battery-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.battery-list { display: grid; gap: 26px; margin-top: 38px; }
.battery-list .feature h4 { font-size: 16px; }
.battery-art { position: relative; }
.battery-art .media { aspect-ratio: 520 / 420; }
.battery-art .media > svg { filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .6)); }
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-14px); } }

/* ---------- 06 GALLERY / 360 ---------- */
.gallery { background: linear-gradient(180deg, #050807, #0a0d0d); }
.tabs { display: inline-flex; gap: 6px; padding: 5px; border-radius: 999px; background: #121716; border: 1px solid var(--line); margin-top: 18px; }
.tab { border: 0; background: transparent; padding: 8px 20px; border-radius: 999px; font-size: 13.5px; color: var(--muted); font-weight: 600; transition: .25s; }
.tab.active { background: #fff; color: #000; }
.gallery-stage { display: grid; grid-template-columns: 1fr 96px; gap: 20px; margin-top: 34px; }
.stage {
  position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 8.2; min-height: 360px;
  background: radial-gradient(ellipse at 50% 60%, #1c2322 0%, #0b0e0e 60%); user-select: none; -webkit-user-select: none;
}
.stage-panel { position: absolute; inset: 0; display: none; }
.stage-panel.active { display: block; }
.spin-area { position: absolute; inset: 0; cursor: grab; touch-action: pan-y; }
.spin-area:active { cursor: grabbing; }
.platform { position: absolute; left: 50%; bottom: 13%; width: 62%; aspect-ratio: 5 / 1; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(ellipse, #2a302f 0%, #121615 60%, transparent 71%); box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 0 60px rgba(60, 240, 138, .08); }
.platform::after { content: ""; position: absolute; inset: 14%; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .12); }
.spin-bike { position: absolute; left: 50%; bottom: 19%; width: 52%; aspect-ratio: 420 / 270; transform-origin: 50% 90%; transform: translateX(-50%); }
.spin-bike .media { transition: none; }
.spin-hint { position: absolute; left: 50%; bottom: 5%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); pointer-events: none; }
.spin-hint i { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; font-style: normal; font-size: 11px; font-weight: 700; color: #fff; background: rgba(0, 0, 0, .4); }
.stage .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; }
.stage .nav-arrow.prev { left: 22px; }
.stage .nav-arrow.next { right: 22px; }
.thumbs { display: grid; gap: 12px; align-content: start; }
.thumb { border-radius: 14px; aspect-ratio: 1; border: 1px solid var(--line); background: #121716; padding: 6px; overflow: hidden; transition: .25s; }
.thumb.active, .thumb:hover { border-color: var(--green); }
.thumb .media svg { width: 130%; max-width: none; }
.slide-img { position: absolute; inset: 8% 10% 12%; }
.slide-caption { position: absolute; left: 28px; bottom: 24px; font-size: 14px; color: #cfd5d2; }
.slide-caption b { display: block; font-size: 22px; color: #fff; }
.video-box { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--muted); padding: 24px; }
.video-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play { width: 76px; height: 76px; border-radius: 50%; background: var(--green); color: #04130a; display: grid; place-items: center; margin: 0 auto 14px; box-shadow: 0 0 0 12px rgba(60, 240, 138, .12); }
.play svg { width: 28px; height: 28px; margin-left: 4px; }

/* ---------- 07 REVIEWS ---------- */
.reviews { background: var(--bg-2); }
.carousel { position: relative; }
.review-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 2px 10px; }
.review-track::-webkit-scrollbar { display: none; }
.review { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.review .rv-img { aspect-ratio: 16 / 10; overflow: hidden; }
.review .rv-img .media svg, .review .rv-img img { width: 100%; height: 100%; object-fit: cover; }
.review .rv-body { padding: 22px 24px 26px; }
.review p { margin: 0 0 18px; color: #d3d9d6; font-size: 15px; }
.review .who { display: flex; justify-content: space-between; align-items: center; }
.review b { font-size: 15px; }
.review small { display: block; color: var(--dim); font-size: 12.5px; }
.stars { color: #ffc93d; letter-spacing: 2px; font-size: 15px; }
.carousel .nav-arrow { position: absolute; top: 42%; z-index: 3; }
.carousel .prev { left: -22px; }
.carousel .next { right: -22px; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.dots button { width: 8px; height: 8px; border-radius: 99px; border: 0; background: #3a4240; padding: 0; transition: .3s; }
.dots button.active { width: 26px; background: var(--green); }

/* ---------- 08 SHOWROOMS / CONTACT ---------- */
.contact { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.showroom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.showroom { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), border-color .3s; }
.showroom:hover { transform: translateY(-6px); border-color: var(--line-2); }
.showroom .sr-img { aspect-ratio: 16 / 10; overflow: hidden; }
.showroom .sr-img .media svg, .showroom .sr-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.showroom:hover .sr-img .media > * { transform: scale(1.05); }
.showroom .sr-body { padding: 20px 22px 22px; }
.showroom h3 { margin: 0 0 4px; font-size: 18px; }
.showroom h3 span { color: var(--green); font-size: 12.5px; font-weight: 600; margin-left: 6px; }
.showroom p { margin: 0 0 16px; color: var(--muted); font-size: 13.5px; }
.showroom .sr-link { font-size: 13.5px; font-weight: 600; display: inline-flex; gap: 6px; align-items: center; color: #fff; }
.showroom .sr-link svg { width: 16px; height: 16px; }
.contact-bar { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 20px; align-items: center; padding: 26px 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.cb-item { display: flex; gap: 14px; align-items: center; }
.cb-item .fi { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green); flex: none; }
.cb-item .fi svg { width: 20px; height: 20px; }
.cb-item b { display: block; font-size: 15px; }
.cb-item span { color: var(--muted); font-size: 13.5px; }
.socials { display: flex; gap: 10px; align-items: center; }
.socials small { color: var(--muted); margin-right: 6px; font-size: 13px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .25s; }
.socials a:hover { background: #fff; color: #000; }
.socials svg { width: 17px; height: 17px; }

/* ---------- CTA band ---------- */
.cta { margin-top: 80px; border-radius: 26px; padding: 54px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
  background: radial-gradient(ellipse at 90% 50%, rgba(60, 240, 138, .25), transparent 55%), linear-gradient(135deg, #0f1a15, #0a0e0d); border: 1px solid rgba(60, 240, 138, .22); }
.cta h3 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 6px; line-height: 1.15; letter-spacing: -.02em; }
.cta p { margin: 0; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; background: #040606; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer p { color: var(--muted); font-size: 14px; max-width: 300px; }
.footer h5 { margin: 4px 0 16px; font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer li a, .footer li { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer li a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--dim); font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 55; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, .4); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; background: rgba(0, 0, 0, .7); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-box { width: min(480px, 100%); background: #0f1413; border: 1px solid var(--line-2); border-radius: 24px; padding: 34px; position: relative; transform: translateY(20px) scale(.98); transition: transform .4s var(--ease); max-height: 92vh; overflow: auto; color: var(--text); }
.modal.open .modal-box { transform: none; }
.modal-box h3 { margin: 0 0 4px; font-size: 24px; }
.modal-box > p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.modal .close { position: absolute; top: 16px; right: 16px; }
.form { display: grid; gap: 14px; }
.form label { font-size: 13px; color: #c7cec9; display: grid; gap: 6px; }
.form input, .form select, .form textarea { width: 100%; height: 48px; border-radius: 12px; border: 1px solid var(--line-2); background: #0a0d0d; color: #fff; padding: 0 14px; font: inherit; font-size: 14.5px; outline: none; transition: border-color .2s; }
.form textarea { height: 84px; padding: 12px 14px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--green); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--dim); text-align: center; margin: 4px 0 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 span > i { transform: none; }
}

/* =========================================================
   LIGHT PAGES — 09 Listing / 10 Detail
   ========================================================= */
.page-light { background: #f4f5f4; color: #0b0d0c; --muted: #6b7470; --line: #e3e6e4; --line-2: #d3d8d5; }
.page-light .footer { background: #0b0d0c; color: #f2f5f3; --muted: #8e9793; --line: rgba(255,255,255,.09); }
.page-top { padding: 120px 0 30px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.crumbs a:hover { color: #000; }
.page-title { font-size: clamp(30px, 3.4vw, 42px); letter-spacing: -.02em; margin: 0; line-height: 1.15; }

.listing { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding-bottom: 100px; align-items: start; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 96px; }
.filters-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.filters-head b { font-size: 16px; }
.link-btn { border: 0; background: none; color: var(--green-2); font-weight: 600; font-size: 13px; padding: 0; }
.fgroup { border-top: 1px solid var(--line); padding: 18px 0 4px; margin-top: 12px; }
.fgroup h6 { margin: 0 0 12px; font-size: 14px; }
.check { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #3d4441; margin-bottom: 10px; cursor: pointer; }
.check input { accent-color: #0b0d0c; width: 16px; height: 16px; }
.range-out { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: 6px; }
input[type=range] { width: 100%; accent-color: #0b0d0c; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px #cfd4d1; cursor: pointer; transition: .2s; padding: 0; }
.swatch.active { box-shadow: 0 0 0 2px #0b0d0c; }
.list-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.list-bar span { color: var(--muted); font-size: 14px; }
.list-bar select { height: 40px; border-radius: 10px; border: 1px solid var(--line-2); padding: 0 12px; font: inherit; font-size: 14px; background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; display: flex; flex-direction: column; }
.product:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .25); }
.product .p-img { flex: none; display: block; aspect-ratio: 4 / 3.3; background: radial-gradient(circle at 50% 55%, #fff, #eef0ef 70%); padding: 18px 10px 4px; }
.product .p-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product h3 { margin: 0; font-size: 19px; }
.product .p-price { font-weight: 700; font-size: 17px; margin: 2px 0 6px; }
.product .p-meta { display: flex; gap: 14px; font-size: 13px; color: var(--muted); margin-bottom: 14px; flex-wrap: wrap; }
.product .p-meta span { display: inline-flex; gap: 5px; align-items: center; }
.product .p-meta svg { width: 14px; height: 14px; }
.product .p-colors { display: flex; gap: 6px; margin-bottom: 16px; }
.product .p-colors i { width: 14px; height: 14px; border-radius: 50%; box-shadow: 0 0 0 1px #cfd4d1; }
.product .btn { margin-top: auto; align-self: flex-start; }
.btn-black { background: #0b0d0c; color: #fff; }
.btn-black:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, .25); }
.btn-line { background: #fff; color: #0b0d0c; border-color: #0b0d0c; }
.empty { padding: 60px 20px; text-align: center; color: var(--muted); background: #fff; border-radius: var(--radius); border: 1px dashed var(--line-2); grid-column: 1 / -1; }
.filter-toggle { display: none; }

/* Detail */
.detail { display: grid; grid-template-columns: 90px 1fr .85fr; gap: 28px; padding-bottom: 80px; align-items: start; }
.d-thumbs { display: grid; gap: 12px; }
.d-thumb { aspect-ratio: 1; border-radius: 14px; background: #fff; border: 1px solid var(--line); padding: 6px; overflow: hidden; transition: .2s; }
.d-thumb.active, .d-thumb:hover { border-color: #0b0d0c; }
.d-stage { position: relative; background: radial-gradient(circle at 50% 55%, #fff, #eceeed 75%); border-radius: 24px; border: 1px solid var(--line); aspect-ratio: 1 / .9; display: grid; place-items: center; overflow: hidden; }
.d-stage .d-art { position: absolute; left: 6%; right: 6%; top: 8%; bottom: 18%; transition: opacity .35s, transform .5s var(--ease); cursor: grab; touch-action: pan-y; }
.d-stage .d-art.swap { opacity: 0; transform: scale(.96); }
.d-stage .btn { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); }
.d-stage .btn:hover { transform: translateX(-50%) translateY(-2px); }
.d-info h1 { font-size: clamp(36px, 4vw, 52px); margin: 0; line-height: 1.05; letter-spacing: -.03em; }
.d-info .tag { color: var(--muted); margin: 6px 0 18px; font-size: 16px; }
.d-price { font-size: 32px; font-weight: 700; letter-spacing: -.02em; }
.d-price small { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.d-colors { margin: 22px 0 8px; }
.d-colors .cname { font-size: 13px; color: var(--muted); margin-top: 8px; }
.spec-list { list-style: none; padding: 0; margin: 24px 0 26px; border-top: 1px solid var(--line); }
.spec-list li { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.spec-list li svg { width: 18px; height: 18px; color: #5a625e; }
.spec-list li span { color: #4e5652; }
.spec-list li b { font-weight: 600; }
.d-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.d-actions .btn { flex: 1; min-width: 150px; }
.d-note { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.d-note svg { width: 16px; height: 16px; color: var(--green-2); }
.others { padding: 20px 0 110px; }
.others h2 { font-size: 28px; margin: 0 0 22px; letter-spacing: -.02em; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .model-cards { grid-template-columns: repeat(2, 1fr); }
  .model-card { aspect-ratio: 4 / 4.2; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-bike { grid-column: 1 / -1; grid-row: 1; height: 420px; }
  .detail { grid-template-columns: 1fr 1fr; }
  .d-thumbs { grid-column: 1 / -1; grid-row: 2; grid-template-columns: repeat(5, 80px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .menu-btn { display: grid; }
  .section { padding: 90px 0; }
  .hero .wrap { grid-template-columns: 1fr; align-content: end; padding-bottom: 90px; }
  .hero-scooter { right: -8%; bottom: auto; top: 20%; width: 96vw; opacity: .95; }
  .hero::after { background: linear-gradient(0deg, var(--bg) 8%, rgba(4, 6, 7, .75) 45%, rgba(4, 6, 7, .1) 75%); }
  .hero-stats { grid-auto-flow: column; border-left: 0; padding-left: 0; margin-top: 36px; gap: 20px; border-top: 1px solid var(--line-2); padding-top: 22px; }
  .hero-stats b { font-size: 26px; }
  .scroll-down { display: none; }
  .about-card { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; order: -1; }
  .about-img::before { background: linear-gradient(0deg, #0e1313 0%, transparent 40%); }
  .about-copy { padding: 36px 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .battery-grid { grid-template-columns: 1fr; }
  .gallery-stage { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .stage { aspect-ratio: 4 / 3.4; min-height: 0; }
  .spin-bike { width: 78%; }
  .platform { width: 88%; }
  .review { flex-basis: calc((100% - 22px) / 2); }
  .carousel .prev { left: -8px; } .carousel .next { right: -8px; }
  .showroom-grid { grid-template-columns: 1fr 1fr; }
  .contact-bar { grid-template-columns: 1fr 1fr; }
  .listing { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: auto 0 0 0; top: auto; z-index: 80; border-radius: 22px 22px 0 0; max-height: 80vh; overflow: auto; transform: translateY(105%); transition: transform .4s var(--ease); box-shadow: 0 -20px 60px rgba(0, 0, 0, .25); }
  .filters.open { transform: none; visibility: visible; }
  .filters:not(.open) { visibility: hidden; transition: transform .4s var(--ease), visibility 0s .4s; }
  .filter-toggle { display: inline-flex; }
  .cta { padding: 36px 28px; }
}
@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .wrap { width: calc(100% - 32px); }
  .section { padding: 72px 0; }
  .hero-scooter { top: 16%; width: 112vw; right: -18%; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 15.5px; }
  .hero-actions .btn { flex: 1; padding: 0 16px; }
  .hero-stats b { font-size: 22px; }
  .hero-stats span { font-size: 11.5px; }
  .model-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .model-card { padding: 16px; aspect-ratio: 3 / 4.4; }
  .model-card h3 { font-size: 20px; }
  .model-card p { font-size: 12px; margin-bottom: 12px; }
  .model-card .price { display: none; }
  .model-card .circle-btn { width: 36px; height: 36px; }
  .features-grid { grid-template-columns: 1fr; gap: 28px; }
  .feature-col { gap: 26px; }
  .feature-bike { height: 340px; }
  .stat b { font-size: 28px; }
  .review { flex-basis: 88%; }
  .carousel .nav-arrow { display: none; }
  .showroom-grid { grid-template-columns: 1fr; }
  .contact-bar { grid-template-columns: 1fr; padding: 22px; }
  .stage .nav-arrow { width: 36px; height: 36px; }
  .stage .nav-arrow.prev { left: 10px; } .stage .nav-arrow.next { right: 10px; }
  .tab { padding: 8px 14px; }
  #stage-name { top: 16px; left: 18px; bottom: auto; font-size: 12px; }
  #stage-name b { font-size: 17px; }
  .detail { grid-template-columns: 1fr; }
  .d-thumbs { grid-row: auto; grid-template-columns: repeat(5, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product .p-body { padding: 12px 12px 16px; }
  .product h3 { font-size: 16px; }
  .product .p-price { font-size: 15px; }
  .product .p-meta { font-size: 12px; }
  .product .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form .row2 { grid-template-columns: 1fr; }
  .modal-box { padding: 26px 22px; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* ---------- Real 3D / 360 photo viewers ---------- */
.stage-real, .d-real { position: absolute; inset: 0; display: none; }
#p-360[data-mode="3d"] .stage-real, #p-360[data-mode="spin"] .stage-real { display: block; }
#p-360[data-mode="3d"] .spin-bike, #p-360[data-mode="3d"] .spin-area, #p-360[data-mode="3d"] .platform,
#p-360[data-mode="spin"] .spin-bike, #p-360[data-mode="spin"] .spin-area { display: none; }
#p-360[data-mode="spin"] .platform { opacity: .5; }
.stage-real .v360 { position: absolute; inset: 6% 8% 14%; width: 84%; height: 80%; object-fit: contain; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.v3d { width: 100%; height: 100%; background: transparent; --poster-color: transparent; --progress-bar-color: var(--green); outline: none; }
.v3d-loading { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 12px; color: var(--muted); font-size: 14px; }
.v3d-loading i { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--line-2); border-top-color: var(--green); animation: spin360 .9s linear infinite; }
@keyframes spin360 { to { transform: rotate(360deg); } }
.stage .spin-hint { z-index: 2; }
.d-stage.real-on .d-art { opacity: 0; pointer-events: none; }
.d-stage.real-on .d-real { display: block; }
.d-real .v360 { position: absolute; inset: 6%; width: 88%; height: 80%; object-fit: contain; pointer-events: none; }
.d-stage .btn { z-index: 3; }

/* ---------- Hero stats placement (admin: Home Banner > Stats) ---------- */
.hero.stats-left .wrap, .hero.stats-bottom .wrap, .hero.stats-hide .wrap { grid-template-columns: 1fr; }
.hero.stats-hide .hero-stats { display: none; }
.hero.stats-left .hero-stats { display: flex; gap: 0; margin-top: 44px; padding: 0; border: 0; width: max-content; max-width: 100%;
  background: rgba(10, 13, 13, .55); border: 1px solid var(--line-2); border-radius: 18px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero.stats-left .hero-stats > div { padding: 16px 26px; border-left: 1px solid var(--line-2); }
.hero.stats-left .hero-stats > div:first-child { border-left: 0; }
.hero.stats-left .hero-stats b { font-size: 28px; }
.hero.stats-bottom .hero-stats { position: absolute; z-index: 4; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; gap: 0; padding: 0; border: 1px solid var(--line-2);
  background: rgba(10, 13, 13, .6); border-radius: 18px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.hero.stats-bottom .hero-stats > div { padding: 16px 34px; border-left: 1px solid var(--line-2); text-align: center; }
.hero.stats-bottom .hero-stats > div:first-child { border-left: 0; }
.hero.stats-bottom .hero-stats b { font-size: 26px; }
.hero.stats-bottom .scroll-down { display: none; }
@media (max-width: 900px) {
  .hero.stats-left .hero-stats, .hero.stats-bottom .hero-stats { position: static; transform: none; width: 100%; margin-top: 30px; }
  .hero.stats-bottom .hero-stats { margin: 0 16px 24px; width: auto; align-self: flex-end; }
  .hero.stats-left .hero-stats > div, .hero.stats-bottom .hero-stats > div { flex: 1; padding: 14px 12px; text-align: center; }
  .hero.stats-left .hero-stats b, .hero.stats-bottom .hero-stats b { font-size: 22px; }
}
@media (max-width: 900px) { .hero.stats-bottom { flex-direction: column; align-items: stretch; } }
@media (max-width: 900px) { .hero-bg img { object-position: 72% center; } }

/* Model cards with a real photo: photo flush on top, no empty gaps */
.model-card:has(.mc-art > img) { aspect-ratio: auto; padding: 0 0 24px; justify-content: flex-start; }
.model-card:has(.mc-art > img)::before { display: none; }
.model-card .mc-art:has(> img) { position: relative; left: 0; right: 0; top: 0; height: auto; aspect-ratio: 16 / 10.5; margin-bottom: 22px; overflow: hidden; }
.model-card .mc-art > img { object-fit: cover; transition: transform .7s var(--ease); }
.model-card:hover .mc-art:has(> img) { transform: none; }
.model-card:hover .mc-art > img { transform: scale(1.05); }
.model-card:has(.mc-art > img) > :not(.mc-art) { margin-left: 24px; margin-right: 24px; }
@media (max-width: 640px) {
  .model-card:has(.mc-art > img) { padding-bottom: 16px; }
  .model-card .mc-art:has(> img) { margin-bottom: 14px; }
  .model-card:has(.mc-art > img) > :not(.mc-art) { margin-left: 14px; margin-right: 14px; }
}

/* Gallery: no model list on the right — stage uses full width (arrows switch models) */
.gallery-stage { grid-template-columns: 1fr !important; }
.gallery-stage .thumbs { display: none !important; }
@media (min-width: 901px) { .gallery-stage .stage { aspect-ratio: auto; height: min(600px, 66vh); min-height: 420px; } }

/* ---------- Opening lead popup ---------- */
.lead-pop .modal-box { width: min(440px, 100%); padding: 0; overflow: hidden; background: #0d1211; }
.lead-pop .lp-form, .lead-pop .lp-done { padding: 32px 30px 28px; }
.lead-pop .lp-form { background: radial-gradient(ellipse at 100% 0%, rgba(var(--accent-rgb, 60,240,138), .16), transparent 55%); }
.lp-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green); background: var(--green-soft); border: 1px solid rgba(var(--accent-rgb, 60,240,138), .3); padding: 5px 10px; border-radius: 99px; margin-bottom: 14px; }
.lp-badge svg { width: 14px; height: 14px; }
.lead-pop h3 { font-size: 24px; line-height: 1.2; margin: 0 0 6px; padding-right: 36px; }
.lead-pop .lp-form > p { color: var(--muted); margin: 0 0 20px; font-size: 14.5px; }
.lp-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-opts input { position: absolute; opacity: 0; pointer-events: none; }
.lp-opts span { display: flex; align-items: center; justify-content: center; gap: 8px; height: 50px; border-radius: 14px; border: 1.5px solid var(--line-2); font-weight: 700; font-size: 14.5px; color: #cfd6d2; cursor: pointer; transition: .2s; }
.lp-opts span svg { width: 18px; height: 18px; }
.lp-opts input:checked + span { border-color: var(--green); background: var(--green-soft); color: #fff; box-shadow: 0 0 0 3px rgba(var(--accent-rgb, 60,240,138), .12); }
.lp-opts input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }
.lp-phone { display: flex; align-items: stretch; }
.lp-phone span { display: grid; place-items: center; padding: 0 12px; border: 1px solid var(--line-2); border-right: 0; border-radius: 12px 0 0 12px; background: #141a19; color: #cfd6d2; font-weight: 600; }
.lp-phone input { border-radius: 0 12px 12px 0 !important; }
.lead-pop small { color: var(--dim); font-weight: 400; }
.lp-err { color: #ff6b6b; font-size: 13px; min-height: 18px; margin: -4px 0 -6px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.lead-pop .lp-done { text-align: center; padding: 44px 30px 36px; }
.lead-pop .lp-done h3 { padding: 0; margin: 16px 0 22px; font-size: 21px; }
.lp-tick { width: 64px; height: 64px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #04130a; box-shadow: 0 0 0 10px var(--green-soft); }
.lp-tick svg { width: 30px; height: 30px; }
.lead-pop .btn:disabled { opacity: .7; }
body.pop-open { overflow: hidden; }
@media (max-width: 640px) {
  .lead-pop { align-items: end; padding: 0; }
  .lead-pop .modal-box { width: 100%; border-radius: 24px 24px 0 0; max-height: 94vh; }
  .lead-pop .lp-form { padding: 28px 20px 24px; }
  .lead-pop h3 { font-size: 21px; }
}

/* ---------- Mobile hero with a real banner photo: photo on top, text below (no overlap) ---------- */
#hero-bg-m { display: none; }
@media (max-width: 900px) {
  .hero.has-photo { flex-direction: column; align-items: stretch; min-height: 0; padding-top: 76px; }
  .hero.has-photo .hero-bg { position: relative; inset: auto; z-index: 0; aspect-ratio: 1 / 1; max-height: 62vh; width: 100%; overflow: hidden; }
  .hero.has-photo .hero-bg > .media, .hero.has-photo .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 45%; }
  .hero.has-photo .hero-bg::after { content: ""; position: absolute; inset: auto 0 0 0; height: 28%; background: linear-gradient(0deg, var(--bg), transparent); z-index: 2; pointer-events: none; }
  .hero.has-mphoto .hero-bg > #hero-bg { display: none; }
  .hero.has-mphoto #hero-bg-m { display: grid; }
  .hero.has-mphoto .hero-bg img { object-position: center; }
  .hero.has-photo::after { display: none; }
  .hero.has-photo .hero-scooter, .hero.has-photo .scroll-down { display: none; }
  .hero.has-photo .wrap { min-height: 0; padding: 6px 0 44px; align-content: start; position: relative; z-index: 3; }
  .hero.has-photo h1 { font-size: clamp(34px, 9.5vw, 52px); margin-bottom: 12px; }
  .hero.has-photo .hero-copy p { margin-bottom: 22px; }
  .hero.has-photo .hero-stats { margin-top: 24px; }
}

/* ---------- "Why choose" centre image: real photos size to their own shape (no overlap on phones) ---------- */
.feature-bike:has(.media > img) { height: auto; min-height: 0; }
.feature-bike .media:has(> img) { width: 100%; height: auto; aspect-ratio: auto; display: block; }
.feature-bike .media > img { width: 100%; height: auto; max-height: 540px; object-fit: contain; display: block; margin: 0 auto; }
@media (max-width: 1100px) { .feature-bike .media > img { max-height: 420px; } }
@media (max-width: 640px) {
  .feature-bike:has(.media > img) { margin-bottom: 8px; }
  .feature-bike .media > img { max-height: 340px; }
}
.logo:not(:has(img)) { display: inline-block; white-space: nowrap; }

/* Mobile: separate vehicle image sits on top of the background photo (not hidden) */
@media (max-width: 900px) {
  .hero.has-photo.has-scooter .hero-scooter {
    display: grid !important; position: absolute; z-index: 2; top: 76px; left: 3%; right: 3%; bottom: auto;
    width: auto; height: min(100vw, 62vh); aspect-ratio: auto; opacity: 1; translate: none !important; pointer-events: none;
    padding: 6% 0 7%;
  }
  .hero.has-photo.has-scooter .hero-scooter > img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 18px 18px rgba(0,0,0,.45)); }
  .hero.has-photo.has-scooter .hero-scooter::after { left: 12%; right: 12%; bottom: 4%; height: 12%; }
}

/* ---------- No sideways scrolling on phones + WhatsApp button always visible ---------- */
html, body { overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
.stats-row { grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); }
.stat { min-width: 0; }
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* sits above Netlify's "Powered by Netlify" badge (bottom-right) */
.wa-float { right: max(16px, env(safe-area-inset-right)); bottom: calc(86px + env(safe-area-inset-bottom)); }
@media (max-width: 640px) { .wa-float { width: 54px; height: 54px; right: 14px; bottom: calc(78px + env(safe-area-inset-bottom)); } }
