@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #111318;
    --surface: #181c24;
    --surface2: #202632;
    --text: #f5f7fb;
    --muted: #a4adbd;
    --blue: #2497ff;
    --volt: #9ee82d;
    --line: rgba(255, 255, 255, .11);
    --glass: rgba(255, 255, 255, .055);
    --grad: linear-gradient(120deg, #2497ff, #28b8d8, #9ee82d);
    --shadow: 0 25px 70px -32px rgba(0, 0, 0, .9);
    --radius: 24px;
    --shell: min(1180px, calc(100% - 40px))
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 10% 10%, rgba(36, 151, 255, .18), transparent 28%), radial-gradient(circle at 90% 42%, rgba(158, 232, 45, .12), transparent 28%)
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .035;
    background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0, #000, transparent 75%)
}

img {
    max-width: 100%;
    display: block
}

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

button,
input,
select,
textarea {
    font: inherit
}

.shell {
    width: var(--shell);
    margin-inline: auto
}

.section {
    padding: 88px 0
}

.section-sm {
    padding: 56px 0
}

.section-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent)
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin: 0
}

h1 {
    font-size: clamp(3rem, 7vw, 6.4rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem)
}

h3 {
    font-size: 1.25rem
}

p {
    margin: 0
}

.muted {
    color: var(--muted)
}

.eyebrow {
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #b9ff60;
    font-weight: 700
}

.text-gradient {
    background: var(--grad);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.glass {
    background: linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(140%)
}

.rounded {
    border-radius: var(--radius)
}

.lift {
    transition: transform .45s, box-shadow .45s
}

.lift:hover {
    transform: translateY(-7px);
    box-shadow: 0 0 0 1px rgba(36, 151, 255, .35), 0 24px 60px -25px rgba(36, 151, 255, .55)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: .35s;
    position: relative;
    overflow: hidden
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--grad);
    color: #10151b
}

.btn-glass {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--line)
}

.btn-sm {
    min-height: 40px;
    padding: 0 20px;
    font-size: .88rem
}

.btn-lg {
    min-height: 56px;
    padding: 0 34px
}

.header {
    position: fixed;
    top: 0px ;
    inset-inline: 0;
    z-index: 50;
    transition: .4s
}

.header.scrolled {
    background: rgba(17, 19, 24, .78);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line)
}

.header-inner {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .4s
}

.header.scrolled .header-inner {
    height: 95px
}

.logo {
    height: 100px;
    width: 120px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .5));
    transition: .4s
}

.header.scrolled .logo {
    height: 85px
}

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

.nav a {
    padding: 9px 12px;
    border-radius: 999px;
    color: #c9d0dc;
    font-size: .86rem;
    font-weight: 600
}

.nav a:hover,
.nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--glass);
    color: #fff;
    font-size: 1.25rem
}

.mobile-nav {
    display: none
}

.hero {
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding: 160px 0 80px
}

.hero.short {
    min-height: 62vh
}

.hero.center {
    align-items: center;
    text-align: center
}

.hero.center .hero-copy {
    margin-inline: auto
}

.hero.center p.lead {
    margin-inline: auto
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .52
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg), rgba(17, 19, 24, .68), rgba(17, 19, 24, .22)), linear-gradient(0deg, var(--bg), transparent 55%)
}

.hero.center .hero-overlay {
    background: linear-gradient(0deg, var(--bg), rgba(17, 19, 24, .38), rgba(17, 19, 24, .5))
}

/* Keep the About hero image visible while providing a little text contrast. */
.about-hero .hero-overlay {
    background: rgba(0, 0, 0, .28)
}

.about-hero .lead {
    color: #fff
}

.why-spark-hero .hero-bg {
    object-position: center;
    opacity: .62
}

.why-spark-hero .hero-overlay {
    background: rgba(0, 0, 0, .42)
}

.why-spark-hero .lead {
    color: #fff
}

.range-hero .hero-overlay {
    background: rgba(0, 0, 0, .48)
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-copy {
    max-width: 900px
}

.hero p.lead {
    margin-top: 24px;
    max-width: 680px;
    font-size: 1.08rem;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px
}

.hero.center .hero-actions {
    justify-content: center
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 700
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 680px;
    margin-top: 52px
}

.stat {
    padding: 18px 20px;
    border-radius: 18px
}

.stat strong {
    display: block;
    font: 600 2rem 'Outfit'
}

/* Counter spans inside the value inherit the same type scale as the value. */
.stat strong [data-counter] {
    font: inherit;
    letter-spacing: normal;
    text-transform: none;
    color: inherit
}

.stat span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted)
}

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    padding: 17px 0
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 44px;
    animation: marquee 35s linear infinite;
    white-space: nowrap;
    color: #c9d0dc80;
    text-transform: uppercase;
    letter-spacing: .26em;
    font-size: .76rem
}

.marquee-track span::after {
    content: '⚡';
    margin-left: 44px;
    color: var(--volt)
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.heading {
    max-width: 760px
}

.heading.center {
    text-align: center;
    margin-inline: auto
}

.heading .eyebrow {
    margin-bottom: 14px
}

.heading p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem
}

.grid {
    display: grid;
    gap: 20px
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
}

.cards {
    margin-top: 46px
}

.card {
    padding: 28px;
    border-radius: 26px
}

.card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, .055);
    color: var(--volt);
    font-size: 1.25rem
}

.card h3 {
    margin-top: 20px
}

/* Match the hero statistics' value scale for gradient counter cards. */
.cards .card h3.text-gradient {
    font: 600 2rem 'Outfit'
}

.card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: .9rem
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.image-frame {
    overflow: hidden;
    border-radius: 32px
}

.image-frame img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 1.2s
}

.image-frame:hover img {
    transform: scale(1.05)
}

.check-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 13px
}

/* Showroom image treatment matching the homepage hero banner. */
.showroom-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: url('../images/showroom5.webp') center / cover no-repeat
}

.showroom-banner::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    background: rgba(17, 19, 24, .34)
}

.showroom-banner > * {
    position: relative;
    z-index: 1
}

.showroom-banner .heading p {
    color: #fff
}

.future-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: url('../images/showroom4.webp') center / cover no-repeat
}

.future-banner::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    background: rgba(0, 0, 0, .48)
}

.future-banner > * {
    position: relative;
    z-index: 1
}

.future-banner .heading .eyebrow,
.future-banner .heading h2,
.future-banner .heading p {
    color: #fff
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.check-list li::before {
    content: '✓';
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--volt);
    color: #132211;
    font-weight: 800
}

.scooter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px
}

.scooter-card {
    overflow: hidden;
    border-radius: 28px
}

.scooter-visual {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 55% 45%, rgba(36, 151, 255, .22), transparent 45%), rgba(255, 255, 255, .02)
}

.scooter-visual img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 22px 22px rgba(0, 0, 0, .55))
}

.scooter-card:nth-child(3n+2) .scooter-visual img {
    filter: hue-rotate(55deg) drop-shadow(0 22px 22px rgba(0, 0, 0, .55))
}

.scooter-card:nth-child(3n+3) .scooter-visual img {
    filter: hue-rotate(145deg) drop-shadow(0 22px 22px rgba(0, 0, 0, .55))
}

.category {
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .15em
}

.scooter-body {
    padding: 24px
}

.scooter-title-row {
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.scooter-body .muted {
    font-size: .87rem
}

.specs-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px
}

.spec-mini {
    padding: 10px 4px;
    border: 1px solid var(--line);
    border-radius: 15px;
    text-align: center
}

.spec-mini strong {
    display: block;
    font-size: .82rem
}

.spec-mini span {
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted)
}

.price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.price-row small {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .58rem
}

.price-row strong {
    font: 600 1.25rem 'Outfit'
}

.price-row em {
    font-style: normal;
    color: var(--volt);
    font-size: .78rem
}

.faq {
    display: grid;
    gap: 12px
}

.faq-item {
    border-radius: 20px;
    overflow: hidden
}

.faq-button {
    width: 100%;
    padding: 20px 24px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.faq-button::after {
    content: '+';
    font-size: 1.3rem
}

.faq-item.open .faq-button::after {
    content: '−'
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s
}

.faq-content p {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: .9rem
}

.form-card {
    padding: 34px;
    border-radius: 30px
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--muted)
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    border-radius: 16px;
    padding: 14px 15px;
    outline: none
}

.field select option {
    background: #171b22
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(36, 151, 255, .7);
    background: rgba(255, 255, 255, .08)
}

.field textarea {
    resize: vertical;
    min-height: 110px
}

.field.full {
    grid-column: 1/-1
}

.error {
    color: #ff7f82;
    font-size: .72rem;
    margin-top: 6px
}

.success-box {
    padding: 60px 30px;
    text-align: center;
    border-radius: 30px
}

.toast {
    position: fixed;
    top: 90px;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -20px);
    opacity: 0;
    pointer-events: none;
    background: #f6f8fb;
    color: #111318;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 700;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .35)
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0)
}

.filters {
    position: sticky;
    top: 82px;
    z-index: 20;
    padding: 20px;
    border-radius: 26px
}

.filter-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.filter-cats button,
.pill {
    border: 1px solid var(--line);
    background: transparent;
    color: #ccd3df;
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer
}

.filter-cats button.active,
.pill.active {
    background: var(--grad);
    color: #111;
    border-color: transparent;
    font-weight: 700
}

.filter-selects {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px
}

.filter-selects select {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    border-radius: 15px;
    padding: 12px
}

.filter-selects option {
    background: #171b22
}

.filter-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    color: var(--muted);
    font-size: .84rem
}

.compare-btn {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .4);
    color: #fff;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.compare-btn.active {
    background: var(--volt);
    color: #14210f
}

.compare-tray {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 45;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 24px;
    background: rgba(24, 28, 36, .93);
    border: 1px solid var(--line);
    backdrop-filter: blur(20px)
}

.compare-tray.show {
    display: flex
}

.compare-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.compare-chip {
    border: 1px solid var(--line);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: .8rem
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
    margin-top: 40px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #181c24;
    cursor: pointer
}

.gallery-item.wide {
    grid-column: span 2
}

.gallery-item.tall {
    grid-row: span 2
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s
}

.gallery-item:hover img {
    transform: scale(1.08)
}

.gallery-caption {
    position: absolute;
    inset: auto 18px 16px;
    z-index: 2
}

.gallery-caption small {
    color: var(--volt);
    text-transform: uppercase;
    letter-spacing: .18em
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(17, 19, 24, .88));
    opacity: .85
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(17, 19, 24, .9);
    backdrop-filter: blur(16px)
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-width: min(1000px, 90vw);
    max-height: 75vh;
    border-radius: 24px
}

.lightbox-close {
    position: absolute;
    right: 25px;
    top: 90px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #202632;
    color: #fff
}

.dealer-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px
}

.dealer-list {
    display: grid;
    gap: 14px
}

.dealer-card {
    padding: 22px;
    border-radius: 24px;
    cursor: pointer;
    opacity: .72
}

.dealer-card.active,
.dealer-card:hover {
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(36, 151, 255, .35), 0 24px 60px -30px rgba(36, 151, 255, .55)
}

.map-card {
    overflow: hidden;
    border-radius: 28px
}

.map-card iframe {
    width: 100%;
    height: 420px;
    border: 0
}

.map-info {
    padding: 20px
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 42px
}

.gallery-main {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: grid;
    place-items: center
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px
}

.thumb {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #1b2028
}

.thumb.active {
    border-color: var(--volt)
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.sticky-info {
    position: sticky;
    top: 100px
}

.color-swatches {
    display: flex;
    gap: 10px;
    margin-top: 10px
}

.swatch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25)
}

.swatch.active {
    border-color: var(--volt);
    transform: scale(1.08)
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.spec-card {
    padding: 24px;
    border-radius: 22px
}

.emi-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    padding: 38px;
    border-radius: 30px
}

.range {
    accent-color: var(--volt);
    width: 100%
}

.timeline {
    border-left: 1px solid var(--blue);
    padding-left: 30px;
    display: grid;
    gap: 35px
}

.timeline-item {
    position: relative
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--volt);
    box-shadow: 0 0 0 5px var(--bg)
}

.floating {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(24, 28, 36, .88);
    color: #fff;
    font-size: 1.2rem
}

.float-btn.whatsapp {
    width: 56px;
    height: 56px;
    background: var(--volt);
    color: #12200d
}

.back-top {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: .3s
}

.back-top.show {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.footer {
    margin-top: 110px;
    border-top: 1px solid var(--line);
    position: relative
}

.newsletter {
    padding: 34px;
    border-radius: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px
}

.newsletter form {
    display: flex;
    gap: 8px;
    width: min(100%, 440px)
}

.newsletter input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 14px 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr 1fr;
    gap: 35px;
    margin-top: 55px
}

.footer h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #cbd2dd
}

.footer ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
    color: var(--muted);
    font-size: .86rem
}

.footer-brand p {
    margin-top: 18px;
    color: var(--muted);
    font-size: .88rem
}

.footer-brand .logo {
    display: block;
    width: 130px;
    height: 110px
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 18px
}

.socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 0;
    color: var(--muted);
    font-size: .75rem
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s, transform .7s
}

.reveal.from-left {
    transform: translateX(-32px)
}

.reveal.from-right {
    transform: translateX(32px)
}

.reveal.scale {
    transform: scale(.94)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.empty {
    padding: 60px;
    text-align: center;
    border-radius: 24px
}

.hide {
    display: none !important
}

@media(max-width:1024px) {
    :root {
        --shell: min(100% - 40px, 900px)
    }

    .section {
        padding: 72px 0
    }

    .section-sm {
        padding: 46px 0
    }

    .grid {
        gap: 18px
    }

    .cards {
        margin-top: 36px
    }

    .split {
        gap: 32px
    }

    .card {
        padding: 24px
    }

    .emi-box {
        gap: 26px;
        padding: 30px
    }

    .nav {
        display: none
    }

    .menu-btn {
        display: grid;
        place-items: center
    }

    .header .logo,
    .header.scrolled .logo {
        width: 92px;
        height: 80px
    }

    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 45;
        padding: 105px 20px 30px;
        background: rgba(17, 19, 24, .96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 4px
    }

    .mobile-nav.open {
        display: flex
    }

    .mobile-nav a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
        font: 600 1.5rem 'Outfit'
    }

    /* These pages remain accessible by URL, but are not shown in tablet/mobile navigation. */
    .mobile-nav a[href="gallery.html"],
    .mobile-nav a[href="dealership.html"] {
        display: none
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr)
    }

    .scooter-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .filter-selects {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .dealer-layout,
    .detail-grid {
        grid-template-columns: 1fr
    }

    .sticky-info {
        position: static
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:700px) {
    :root {
        --shell: calc(100% - 32px)
    }

    .section {
        padding: 52px 0
    }

    .section-sm {
        padding: 34px 0
    }

    .grid {
        gap: 14px
    }

    .cards {
        margin-top: 28px
    }

    .heading .eyebrow {
        margin-bottom: 10px
    }

    .heading p {
        margin-top: 12px;
        font-size: .98rem
    }

    .hero {
        min-height: 82vh;
        padding: 130px 0 60px
    }

    .hero.short {
        min-height: 58vh
    }

    .header-inner {
        height: 85px
    }

    .header .logo,
    .header.scrolled .logo {
        height: 70px;
        width: 70px
    }

    .footer-brand .logo {
        width: 120px;
        height: 100px
    }

    .header-actions .btn {
        display: none
    }

    .stats {
        grid-template-columns: 1fr
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .scooter-grid,
    .form-grid,
    .filter-selects,
    .gallery-grid,
    .spec-grid,
    .emi-box,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .split {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .gallery-grid {
        grid-auto-rows: 240px
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto
    }

    .dealer-layout {
        grid-template-columns: 1fr
    }

    .newsletter {
        padding: 22px;
        gap: 18px;
        align-items: flex-start;
        flex-direction: column
    }

    .newsletter form {
        width: 100%;
        flex-wrap: wrap
    }

    .newsletter input {
        padding: 12px 15px
    }

    .footer-bottom {
        flex-direction: column
    }

    .compare-tray {
        align-items: flex-start;
        flex-direction: column
    }

    .specs-mini {
        grid-template-columns: repeat(3, 1fr)
    }

    .form-card {
        padding: 22px
    }

    .card {
        padding: 20px;
        border-radius: 20px
    }

    .hero-actions .btn {
        width: auto;
        flex: 1 1 150px
    }

    .hero.center .hero-actions .btn {
        flex-grow: 0
    }

    .btn {
        min-height: 44px;
        padding: 0 18px;
        font-size: .9rem
    }

    .btn-lg {
        min-height: 48px;
        padding: 0 22px
    }

    .btn-sm {
        min-height: 38px;
        padding: 0 16px
    }

    .field input,
    .field select,
    .field textarea {
        border-radius: 12px;
        padding: 11px 13px
    }

    .field textarea {
        min-height: 92px
    }

    .form-grid {
        gap: 14px
    }

    .emi-box {
        gap: 20px;
        padding: 22px
    }

    .benefits-panel {
        padding: 28px !important
    }

    .sustainability-panel {
        padding: 28px !important
    }

    .showroom-banner {
        padding: 28px !important
    }

    .future-banner {
        padding: 36px 20px !important
    }
}
