*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Modern Professional Light Theme */
    --bg: #f8fafc;
    /* Soft Slate Background */
    --bg2: #f1f5f9;
    /* Slightly darker slate for contrast areas */
    --bg3: #ffffff;
    /* Pure White */
    --surface: #ffffff;
    /* Card Surface */
    --surface2: #f1f5f9;
    /* Inner Card Surface */

    --border: rgba(15, 23, 42, 0.08);
    /* Dark border soft */
    --border2: rgba(15, 23, 42, 0.15);
    /* Dark border medium */

    --red: #e60000;
    /* MG Red */
    --red2: #cc0000;
    /* Darker Red */
    --red-glow: rgba(230, 0, 0, 0.12);

    --cyan: #0ea5e9;
    /* Tech Blue/Cyan */
    --cyan2: #0284c7;
    --gold: #f59e0b;

    --text: #0f172a;
    /* Almost Black / Deep Slate */
    --text2: #334155;
    /* Dark Gray */
    --text3: #64748b;
    /* Medium Gray */

    --font-head: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "JetBrains Mono", monospace;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease2: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

/* ══ CUSTOM CURSOR ══ */
#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition:
        transform 0.15s var(--ease),
        background 0.2s;
    top: 0;
    left: 0;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(230, 0, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition:
        transform 0.35s var(--ease),
        width 0.3s,
        height 0.3s,
        opacity 0.3s;
    top: 0;
    left: 0;
}

body.cursor-hover #cursor {
    transform: scale(2.5);
    background: var(--cyan);
}

body.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: rgba(14, 165, 233, 0.4);
}

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--text3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* ══ CANVAS BG ══ */
#particle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ══ NAV ══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    min-height: 100px;
    padding: 12px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(230, 0, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-img {
    height: 108px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s var(--ease);
}

nav.scrolled .nav-logo-img {
    height: 65px;
}

/* Shrinks smoothly when scrolling down */

.footer-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.about-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text2);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--red);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--red);
    color: var(--red);
    background: transparent;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease);
    z-index: -1;
}

.nav-cta:hover {
    color: #fff;
}

.nav-cta:hover::before {
    transform: translateX(0);
}

/* ══ MOBILE MENU OVERLAY ══ */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
    /* Above overlay */
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s var(--ease);
    margin: 0 auto;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--red);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--red);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100vw;
    /* Hidden by default */
    width: 100vw;
    height: 100vh;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.6s var(--ease);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a.mobile-link {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-menu a.mobile-link:hover {
    color: var(--red);
}

/* ══ HERO ══ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5vw 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center,
            rgba(230, 0, 0, 0.04) 0%,
            transparent 65%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
            black 0%,
            transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
            black 0%,
            transparent 100%);
}

.hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(230, 0, 0, 0.5),
            transparent);
    animation: scanline 4s linear infinite;
    opacity: 0.5;
}

@keyframes scanline {
    from {
        top: -2px;
    }

    to {
        top: 100%;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(14, 165, 233, 0);
    }
}

.hero-tag span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text2);
    font-weight: 600;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(52px, 6.5vw, 90px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
}

.hero h1 .line1 {
    display: block;
    color: var(--text);
    opacity: 0;
    transform: translateY(40px);
    animation: heroWord 0.8s var(--ease) 0.2s forwards;
}

.hero h1 .line2 {
    display: block;
    background: linear-gradient(135deg, var(--red), #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(40px);
    animation: heroWord 0.8s var(--ease) 0.4s forwards;
}

.hero h1 .line3 {
    display: block;
    color: var(--text);
    opacity: 0;
    transform: translateY(40px);
    animation: heroWord 0.8s var(--ease) 0.6s forwards;
}

@keyframes heroWord {
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-desc {
    font-size: 17px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1s forwards;
}

.hero-stat-val {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.hero-stat-unit {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-weight: 600;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-stat:not(:last-child) {
    padding-right: 40px;
    border-right: 1px solid var(--border2);
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--red);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.25);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-red::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 0, 0, 0.35);
}

.btn-red:hover::before {
    width: 300px;
    height: 300px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 1px solid var(--border2);
    color: var(--text);
    background: var(--surface);
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ══ HERO BIKE VISUAL ══ */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.hero-visual-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bike-halo {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(230, 0, 0, 0.06) 0%,
            transparent 70%);
    animation: halo-pulse 3s ease-in-out infinite;
}

@keyframes halo-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.bike-ring {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.05);
    animation: ring-spin 20s linear infinite;
}

.bike-ring::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.5);
    transform: translateX(-50%);
}

@keyframes ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bike-ring2 {
    position: absolute;
    width: 92%;
    height: 92%;
    border-radius: 50%;
    border: 1px dashed rgba(15, 23, 42, 0.08);
    animation: ring-spin 35s linear infinite reverse;
}

.hero-bike-img {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 480px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.spec-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-family: var(--font-mono);
    animation: float2 3.5s ease-in-out infinite;
}

.spec-badge:nth-child(1) {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.spec-badge:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.spec-badge:nth-child(3) {
    top: 50%;
    right: -2%;
    animation-delay: 2s;
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.spec-badge-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 2px;
}

.spec-badge-label {
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.spec-badge-icon {
    font-size: 16px;
    margin-bottom: 6px;
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ══ SECTION BASE ══ */
.section {
    padding: 120px 5vw;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-tag span {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
}

.section-tag::before {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 20px;
}

.section-sub {
    display: inline-block;
    font-size: 17px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 520px;
}

/* ══ TICKER ══ */
.ticker {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 32px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text3);
}

.ticker-item .sep {
    color: var(--red);
    font-size: 16px;
}

.ticker-item .hl {
    color: var(--text);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ══ MODELS ══ */
#models {
    background: var(--bg2);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.model-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateY(40px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.model-card.visible {
    opacity: 1;
    transform: none;
}

.model-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    /* never intercept clicks — decorative only */
}

.model-card:hover {
    border-color: var(--red);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(230, 0, 0, 0.1);
}

.model-card:hover::before {
    opacity: 1;
}

.card-header {
    padding: 36px 28px 24px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.card-header-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.card-header-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.06), transparent);
    transition: all 0.4s;
}

.model-card:hover .card-header-glow {
    width: 240px;
    height: 160px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.1), transparent);
}

.model-badge2 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(230, 0, 0, 0.05);
    border: 1px solid rgba(230, 0, 0, 0.2);
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
}

.model-num {
    font-family: var(--font-head);
    font-size: 100px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    position: absolute;
    bottom: -10px;
    left: 20px;
    letter-spacing: -4px;
    z-index: 1;
}

.model-name {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.model-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text3);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    position: relative;
    z-index: 2;
}

.card-body {
    padding: 28px;
}

.model-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    background: var(--surface2);
    border: 1px solid var(--border);
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.model-card:hover .model-img {
    transform: scale(1.08);
}

.model-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.model-price-val {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.model-price-note {
    font-size: 13px;
    color: var(--text3);
    font-weight: 500;
}

.model-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.mspec {
    background: var(--surface2);
    padding: 16px 10px;
    text-align: center;
    transition: background 0.2s;
}

.model-card:hover .mspec {
    background: #ffffff;
}

.mspec-val {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.mspec-unit {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mspec-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text3);
    margin-top: 4px;
}

.model-colors {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.model-colors-lbl {
    font-size: 12px;
    font-weight: 500;
    color: var(--text3);
    letter-spacing: 1px;
    margin-right: 4px;
}

.cdot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cdot:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.model-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    position: relative;
    /* establish stacking context */
    z-index: 2;
    /* above .model-card::before overlay */
}

.btn-book {
    padding: 14px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.2);
}

.btn-book:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.3);
}

.btn-info {
    padding: 14px 20px;
    border: 1px solid var(--border2);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-info:hover {
    border-color: var(--text);
    background: var(--surface2);
}

/* ══ ABOUT ══ */
#about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.about-card-main::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.04), transparent);
}

.about-icon-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.about-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(230, 0, 0, 0.05);
    border: 1px solid rgba(230, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-stat-box {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.about-stat-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-lbl {
    font-size: 12px;
    font-weight: 500;
    color: var(--text3);
    letter-spacing: 0.5px;
}

.about-timeline {
    position: relative;
    padding-left: 24px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), transparent);
}

.about-intro {
    margin-bottom: 25px;
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.1);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.6;
}

/* ══ FEATURES ══ */
#features {
    background: var(--bg3);
}

.features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
}

.features-big-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.feat-card.visible {
    opacity: 1;
    transform: none;
}

.feat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.feat-card:hover {
    border-color: rgba(230, 0, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feat-card:hover::after {
    transform: scaleX(1);
}

.feat-card-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.feat-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.feat-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-align: center;
}

.feat-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.7;
}

.feat-card.large {
    grid-column: span 2;
    padding: 40px;
}

.feat-bar {
    margin-top: 24px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.feat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    border-radius: 2px;
    width: 0%;
    transition: width 1.5s var(--ease);
}

.feat-card.visible .feat-bar-fill {
    width: var(--w, 85%);
}

/* ══ TESTIMONIALS ══ */
#testimonials {
    background: var(--bg2);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.testi-card.visible {
    opacity: 1;
    transform: none;
}

.testi-card:hover {
    border-color: rgba(230, 0, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testi-quote-mark {
    font-family: var(--font-head);
    font-size: 80px;
    color: rgba(15, 23, 42, 0.04);
    line-height: 0.8;
    margin-bottom: 12px;
    display: block;
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testi-star {
    color: var(--gold);
    font-size: 16px;
}

.testi-text {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(230, 0, 0, 0.2);
}

.testi-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.testi-loc {
    font-size: 12px;
    color: var(--text3);
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testi-model {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
    background: rgba(230, 0, 0, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
}

.testi-rating-area {
    position: absolute;
    top: 32px;
    right: 32px;
}

.testi-rating {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

/* ══ FAQ ══ */
#faq {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item.open {
    border-color: rgba(230, 0, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
    gap: 16px;
}

.faq-q:hover {
    color: var(--red);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--text2);
    font-size: 20px;
    line-height: 1;
}

.faq-item.open .faq-icon {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s var(--ease),
        padding 0.3s;
}

.faq-a-inner {
    padding: 0 28px 28px;
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

/* ══ DEALERSHIP ENQUIRY ══ */
#dealership {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

#dealership::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right,
            rgba(14, 165, 233, 0.05) 0%,
            transparent 60%);
    pointer-events: none;
}

/* ══ CONTACT ══ */
#contact {
    background: var(--bg3);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 140%;
    background: radial-gradient(ellipse,
            rgba(230, 0, 0, 0.03) 0%,
            transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-item:hover {
    border-color: rgba(230, 0, 0, 0.2);
    background: var(--surface2);
    transform: translateX(6px);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-item-val {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}

.contact-item-sub {
    font-size: 13px;
    color: var(--text3);
    margin-top: 4px;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.form-title {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.form-sub {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    resize: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.08);
    background: var(--surface);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text3);
}

.form-select option {
    background: var(--surface);
    color: var(--text);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.2);
}

.form-submit:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(230, 0, 0, 0.3);
}

/* ══ CTA BANNER ══ */
.cta-banner {
    background: linear-gradient(135deg, #e60000, #990000);
    padding: 80px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse,
            rgba(255, 255, 255, 0.1),
            transparent 60%);
}

.cta-banner-text h2 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 14px;
}

.cta-banner-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25d366;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #1db954;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.cta-banner .btn-red {
    background: #fff;
    color: var(--red);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-red:hover {
    background: #f8f8f8;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cta-banner .btn-red::before {
    display: none;
}

/* ══ FOOTER ══ */
footer {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    padding: 80px 5vw 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text3);
    line-height: 1.7;
    margin-top: 0px;
    max-width: 280px;
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text3);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a::before {
    content: "→";
    font-size: 12px;
    color: var(--red);
    opacity: 0;
    transition:
        opacity 0.2s,
        transform 0.2s;
    transform: translateX(-8px);
}

.footer-col ul a:hover {
    color: var(--red);
}

.footer-col ul a:hover::before {
    opacity: 1;
    transform: none;
}

.footer-addr {
    font-size: 14px;
    color: var(--text3);
    line-height: 1.8;
}

.footer-addr strong {
    color: var(--text);
    font-weight: 600;
    display: block;
    margin-top: 14px;
}

.footer-addr strong:first-child {
    margin-top: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text3);
    font-weight: 500;
}

.socials {
    display: flex;
    gap: 12px;
}

.soc {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.soc:hover {
    border-color: var(--red);
    color: #fff;
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 0, 0, 0.2);
}

/* ══ FAB ══ */
.fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease);
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.fab svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ══ EV CHARGING ANIMATION ══ */
.ev-charge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.charge-bar {
    display: flex;
    gap: 4px;
}

.charge-seg {
    width: 24px;
    height: 8px;
    border-radius: 3px;
    background: var(--border2);
    position: relative;
    overflow: hidden;
}

.charge-seg-fill {
    position: absolute;
    inset: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    animation: charge-fill 2.5s var(--ease) infinite;
}

.charge-seg:nth-child(1) .charge-seg-fill {
    animation-delay: 0s;
}

.charge-seg:nth-child(2) .charge-seg-fill {
    animation-delay: 0.4s;
}

.charge-seg:nth-child(3) .charge-seg-fill {
    animation-delay: 0.8s;
}

.charge-seg:nth-child(4) .charge-seg-fill {
    animation-delay: 1.2s;
}

.charge-seg:nth-child(5) .charge-seg-fill {
    animation-delay: 1.6s;
}

@keyframes charge-fill {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    51% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

.charge-bolt {
    font-size: 18px;
    color: var(--cyan);
    animation: bolt-flash 1.2s ease-in-out infinite;
}

@keyframes bolt-flash {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ══ SCROLL REVEAL ══ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {

    .hero-inner,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-big-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #features .features-big-grid {
        grid-template-columns: 1fr;
    }

    .feat-card.large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta.desktop-cta {
        display: none;
    }

    /* Hide regular CTA on mobile header */
    .mobile-toggle {
        display: flex;
    }

    .models-grid,
    .testi-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .features-header,
    .hero-inner,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(44px, 12vw, 70px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    #cursor,
    #cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }
}


@media (max-width: 768px) {

    .about-card-main {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    }


}

/* ══ MOBILE MENU CLOSE BUTTON ══ */
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border2);
    background: var(--surface);
    color: var(--text);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(90deg);
}


/* ══ MODEL DETAIL PAGE ONLY ══ */

/* ── PRODUCT HERO ── */
.product-hero {
    padding: 140px 5vw 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.product-hero-gradient {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 60%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(230, 0, 0, 0.04) 0%, transparent 60%)
}

.product-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%)
}

.product-hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(230, 0, 0, 0.5), transparent);
    animation: scanline 4s linear infinite;
    opacity: 0.5
}

.product-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start
}


/* ══ MODEL PAGE ONLY ══ */
.product-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: var(--text2);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 6px 16px rgba(230, 0, 0, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-filters {
        justify-content: center;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}


/* ── PRODUCT GALLERY ── */
.product-gallery {
    position: relative
}

.gallery-main {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.gallery-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.05) 0%, transparent 70%);
    animation: halo-pulse 3s ease-in-out infinite
}

.gallery-ring {
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.05);
    animation: ring-spin 20s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.gallery-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.5);
    transform: translateX(-50%)
}

.gallery-ring2 {
    position: absolute;
    width: 86%;
    height: 86%;
    border-radius: 50%;
    border: 1px dashed rgba(15, 23, 42, 0.06);
    animation: ring-spin 35s linear infinite reverse;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.main-bike-img {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 480px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 4s ease-in-out infinite;
    display: block;
    margin: auto
}

.gallery-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-family: var(--font-mono);
    animation: float2 3.5s ease-in-out infinite;
    z-index: 3;
}

.gallery-badge:nth-child(4) {
    top: 14%;
    right: 4%;
    animation-delay: 0s
}

.gallery-badge:nth-child(5) {
    bottom: 18%;
    left: 4%;
    animation-delay: 1s
}

.gallery-badge-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 2px
}

.gallery-badge-label {
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600
}

.gallery-badge-icon {
    font-size: 14px;
    margin-bottom: 6px
}

.gallery-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 0, 0, 0.05);
    border: 1px solid rgba(230, 0, 0, 0.2);
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.gallery-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s infinite
}

/* ── PRODUCT INFO ── */
.product-info {
    padding-top: 20px
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text3);
    letter-spacing: 1px
}

.product-breadcrumb a {
    color: var(--text3);
    text-decoration: none;
    transition: color 0.2s
}

.product-breadcrumb a:hover {
    color: var(--red)
}

.product-breadcrumb .sep {
    color: var(--border2)
}

.product-name {
    font-family: var(--font-head);
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--text);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease) 0.2s forwards
}

.product-sub {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--text3);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.35s forwards
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.5s forwards
}

.price-range {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 700;
    color: var(--text)
}

.price-note {
    font-size: 13px;
    color: var(--text3);
    font-weight: 500
}

.price-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--text3);
    letter-spacing: 1px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.55s forwards
}

/* ── RANGE BAR ── */
.range-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.6s forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02)
}

.range-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 10px
}

.range-val {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px
}

.range-val span {
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px
}

.range-bar-track {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden
}

.range-bar-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    border-radius: 3px;
    animation: bar-grow 1.5s var(--ease) 1s both
}

@keyframes bar-grow {
    from {
        width: 0
    }

    to {
        width: 75%
    }
}

/* ── CONFIGURATOR ── */
.config-block {
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.65s forwards
}

.config-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.config-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--red)
}

.config-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
    cursor: pointer;
}

.config-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.08);
    background-color: var(--surface)
}

.config-select option {
    background: var(--surface);
    color: var(--text)
}

/* ── QTY + ACTIONS ── */
.qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.7s forwards
}

.qty-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text2)
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--surface2);
    color: var(--text2);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600
}

.qty-btn:hover {
    background: var(--red);
    color: #fff
}

.qty-input {
    width: 52px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    outline: none
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.75s forwards
}

.btn-book-now {
    padding: 16px 28px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(230, 0, 0, 0.35);
    background: #cc0000
}

.btn-book-now:hover::before {
    width: 300px;
    height: 300px
}

.btn-know {
    padding: 16px 22px;
    border: 1px solid var(--border2);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap
}

.btn-know:hover {
    border-color: var(--text);
    background: var(--surface2)
}

.wa-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    padding: 10px 0;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.8s forwards;
    transition: color 0.2s
}

.wa-link:hover {
    color: #25D366
}

.wa-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-dot 2s infinite
}

/* ── QUICK FEATURES ── */
.quick-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.9s forwards
}

.qfeat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02)
}

.qfeat:hover {
    border-color: rgba(230, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06)
}

.qfeat img {
    width: 28px;
    height: 28px;
    object-fit: contain
}

.qfeat-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text2)
}

/* ── SPECS SECTION ── */
#specs {
    background: var(--bg2);
    padding: 100px 5vw
}

.specs-header {
    text-align: center;
    margin-bottom: 64px
}

.specs-visual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.specs-img-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03)
}

.specs-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%)
}

.specs-img {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.08))
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.spec-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px)
}

.spec-item.visible {
    opacity: 1;
    transform: none
}

.spec-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease)
}

.spec-item:hover {
    border-color: rgba(230, 0, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06)
}

.spec-item:hover::after {
    transform: scaleX(1)
}

.spec-item-icon {
    font-size: 24px;
    margin-bottom: 12px
}

.spec-item-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 6px
}

.spec-item-val {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1
}

.spec-item-sub {
    font-size: 12px;
    color: var(--text3);
    margin-top: 4px
}

/* ── FEATURES SECTION (5-col detail variant) ── */
#features {
    background: var(--bg3);
    padding: 100px 5vw
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 64px
}

.feat-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block
}

/* ── BOOK FORM SECTION ── */
#book {
    background: var(--bg2);
    padding: 100px 5vw;
    position: relative;
    overflow: hidden
}

#book::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
    pointer-events: none
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.book-left .section-sub {
    margin: 0
}

.book-ev-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    margin-top: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03)
}

.ev-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px
}

.ev-stat {
    background: var(--surface2);
    padding: 20px 12px;
    text-align: center
}

.ev-stat-val {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px
}

.ev-stat-unit {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase
}

.ev-stat-lbl {
    font-size: 11px;
    font-weight: 500;
    color: var(--text3);
    margin-top: 4px
}

/* ── EXPLORE MORE ── */
#explore {
    background: var(--bg);
    padding: 100px 5vw
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px
}

.explore-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    opacity: 0;
    transform: translateY(20px)
}

.explore-card.visible {
    opacity: 1;
    transform: none
}

.explore-card:hover {
    border-color: rgba(230, 0, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06)
}

.explore-card-img {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--surface2);
    border-bottom: 1px solid var(--border)
}

.explore-card-img img {
    width: 100%;
    height: 150px;
    object-fit: contain
}

.explore-card-body {
    padding: 20px
}

.explore-card-name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px
}

.explore-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.btn-sm-red {
    padding: 10px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s
}

.btn-sm-red:hover {
    background: #cc0000
}

.btn-sm-ghost {
    padding: 10px;
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s
}

.btn-sm-ghost:hover {
    border-color: var(--text);
    color: var(--text);
    background: var(--surface2)
}

.see-more-row {
    text-align: center;
    margin-top: 40px
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #fff;
    color: var(--red);
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s var(--ease)
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25)
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {

    .product-hero-inner,
    .book-grid {
        grid-template-columns: 1fr
    }

    .specs-visual-row {
        grid-template-columns: 1fr
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .explore-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .explore-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}