        :root {
            --bg-0: #08090a;
            --bg-1: #101112;
            --bg-2: #161718;
            --line: rgba(255, 255, 255, 0.08);
            --line-red: rgba(225, 6, 0, 0.35);
            --glass: rgba(255, 255, 255, 0.045);
            --glass-hi: rgba(255, 255, 255, 0.09);
            --ink-0: #f4f3f0;
            --ink-1: #c9c8c3;
            --ink-2: #8d8c88;
            --red: #e10600;
            --red-2: #ff2a1f;
            --red-glow: rgba(225, 6, 0, 0.45);
            --silver: linear-gradient(135deg, #f4f4f2 0%, #c7c6c2 28%, #8d8c88 52%, #dedcd7 75%, #a9a8a4 100%);
            --radius-lg: 26px;
            --radius-md: 18px;
            --radius-sm: 12px;
            --ease: cubic-bezier(.16, .84, .24, 1);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            * {
                animation-duration: .001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .001ms !important;
                scroll-behavior: auto !important;
            }
        }

        body {
            margin: 0;
            background: var(--bg-0);
            color: var(--ink-0);
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            position: relative;
        }

        h1,
        h2,
        h3,
        h4,
        .display {
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.01em;
            margin: 0;
        }

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

        button {
            font-family: inherit;
            cursor: pointer;
        }

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

        ::selection {
            background: var(--red);
            color: #fff;
        }

        .wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding-inline: 24px;
        }

        @media (min-width:768px) {
            .wrap {
                padding-inline: 40px;
            }
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12.5px;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--red-2);
            font-weight: 600;
        }

        .eyebrow::before {
            content: '';
            width: 22px;
            height: 1px;
            background: var(--red);
        }

        .section-title {
            font-size: clamp(30px, 4.6vw, 52px);
            line-height: 1.05;
            font-weight: 600;
            color: var(--ink-0);
        }

        .section-sub {
            color: var(--ink-2);
            font-size: 16px;
            line-height: 1.65;
            max-width: 560px;
        }

        .section {
            position: relative;
            padding: 110px 0;
        }

        .section.alt {
            background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
        }

        .ring-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .ring-bg svg {
            position: absolute;
            opacity: .05;
        }

        /* ---------- Loader ---------- */
        #loader {
            position: fixed;
            inset: 0;
            z-index: 999;
            background: var(--bg-0);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 22px;
            transition: opacity .7s var(--ease), visibility .7s var(--ease);
        }

        #loader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-ring {
            width: 88px;
            height: 88px;
            animation: spin 1.1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loader-word {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            letter-spacing: .08em;
            font-size: 15px;
            color: var(--ink-1);
            text-transform: uppercase;
            opacity: 0;
            animation: fadeIn .8s var(--ease) .3s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .loader-bar {
            width: 220px;
            height: 2px;
            background: var(--line);
            border-radius: 2px;
            overflow: hidden;
        }

        .loader-bar>div {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--red), var(--red-2));
            transition: width .25s linear;
        }

        /* ---------- Scroll progress ---------- */
        #scrollProgress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--red), #ff6a3d);
            z-index: 900;
            width: 0%;
        }

        /* ---------- Cursor glow ---------- */
        #cursorGlow {
            position: fixed;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(225, 6, 0, 0.10), transparent 65%);
            pointer-events: none;
            z-index: 5;
            transform: translate(-50%, -50%);
            transition: opacity .3s ease;
            opacity: 0;
        }

        @media (min-width:1024px) {
            #cursorGlow {
                opacity: 1;
            }
        }

        /* ---------- Navbar ---------- */
        header#nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            padding: 18px 0;
            transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
            border-bottom: 1px solid transparent;
        }

        header#nav.scrolled {
            padding: 12px 0;
            background: rgba(8, 9, 10, 0.72);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border-bottom: 1px solid var(--line);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-mark {
            width: 40px;
            height: 40px;
            flex: none;
        }

        .brand-name {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 17px;
            letter-spacing: -.01em;
            line-height: 1.1;
        }

        .brand-name span {
            display: block;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 10px;
            letter-spacing: .18em;
            color: var(--ink-2);
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 34px;
        }

        @media (min-width:960px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links a {
            font-size: 13.5px;
            letter-spacing: .03em;
            color: var(--ink-1);
            position: relative;
            padding: 6px 0;
            transition: color .25s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: var(--red);
            transition: width .3s var(--ease);
        }

        .nav-links a:hover {
            color: var(--ink-0);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: .01em;
            padding: 14px 26px;
            border-radius: 100px;
            border: 1px solid transparent;
            overflow: hidden;
            transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--red-2), var(--red));
            color: #fff;
            box-shadow: 0 8px 30px -8px rgba(225, 6, 0, .65);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 36px -8px rgba(225, 6, 0, .8);
        }

        .btn-ghost {
            background: var(--glass);
            color: var(--ink-0);
            border-color: var(--line);
            backdrop-filter: blur(10px);
        }

        .btn-ghost:hover {
            border-color: var(--line-red);
            background: var(--glass-hi);
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 10px 18px;
            font-size: 12.5px;
        }

        .btn .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, .5);
            transform: scale(0);
            animation: ripple .6s ease-out;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(3);
                opacity: 0;
            }
        }

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

        .icon-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass);
            border: 1px solid var(--line);
            transition: .3s var(--ease);
        }

        .icon-btn:hover {
            border-color: var(--line-red);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: flex;
        }

        @media (min-width:960px) {
            .menu-toggle {
                display: none;
            }
        }

        /* mobile drawer */
        #mobileMenu {
            position: fixed;
            inset: 0;
            z-index: 850;
            background: rgba(8, 9, 10, .98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            padding: 100px 32px 40px;
            transform: translateY(-100%);
            transition: transform .5s var(--ease);
        }

        #mobileMenu.open {
            transform: translateY(0);
        }

        #mobileMenu a {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 600;
            padding: 14px 0;
            border-bottom: 1px solid var(--line);
        }

        /* ---------- Hero ---------- */
        #hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 120px;
            padding-bottom: 60px;
            background:
                radial-gradient(1100px 620px at 82% -10%, rgba(225, 6, 0, .20), transparent 60%),
                radial-gradient(900px 520px at 6% 110%, rgba(225, 6, 0, .12), transparent 60%),
                var(--bg-0);
        }

        #heroCanvas {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: .55;
        }

        .hero-ring-wrap {
            position: absolute;
            right: -10%;
            top: 50%;
            transform: translateY(-50%);
            width: min(60vw, 760px);
            height: min(60vw, 760px);
            z-index: 0;
            opacity: .9;
            animation: floatY 8s ease-in-out infinite;
        }

        @media (max-width:900px) {
            .hero-ring-wrap {
                opacity: .28;
                right: -30%;
            }
        }

        @keyframes floatY {

            0%,
            100% {
                transform: translateY(-50%) translateX(0);
            }

            50% {
                transform: translateY(-54%) translateX(-14px);
            }
        }

        .hero-ring-wrap svg {
            width: 100%;
            height: 100%;
            animation: spin 40s linear infinite;
        }

        @keyframes heroTyreGlow2 {

            0%,
            100% {
                opacity: .55;
            }

            50% {
                opacity: 1;
            }
        }


        .hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 56px;
        }

        @media (min-width:1024px) {
            .hero-grid {
                grid-template-columns: 1.15fr .85fr;
                align-items: end;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 100px;
            background: var(--glass);
            border: 1px solid var(--line);
            font-size: 12px;
            letter-spacing: .05em;
            color: var(--ink-1);
            margin-bottom: 24px;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 12px var(--red);
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: .3;
            }
        }

        .hero-title {
            font-size: clamp(40px, 7vw, 84px);
            font-weight: 700;
            line-height: 0.98;
            letter-spacing: -0.02em;
        }

        .hero-title .line {
            display: block;
            overflow: hidden;
        }

        .hero-title .line span {
            display: inline-block;
            transform: translateY(115%);
            animation: lineUp .9s var(--ease) forwards;
        }

        .hero-title .line:nth-child(1) span {
            animation-delay: .15s;
        }

        .hero-title .line:nth-child(2) span {
            animation-delay: .28s;
        }

        .hero-title .line:nth-child(3) span {
            animation-delay: .41s;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            background-image: var(--silver);
        }

        @keyframes lineUp {
            to {
                transform: translateY(0);
            }
        }

        .hero-sub {
            margin-top: 26px;
            max-width: 520px;
            color: var(--ink-1);
            font-size: 17px;
            line-height: 1.7;
            opacity: 0;
            animation: fadeIn .9s var(--ease) .7s forwards;
        }

        .hero-actions {
            margin-top: 38px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            opacity: 0;
            animation: fadeIn .9s var(--ease) .85s forwards;
        }

        .hero-stats {
            margin-top: 64px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border-top: 1px solid var(--line);
            padding-top: 28px;
            opacity: 0;
            animation: fadeIn .9s var(--ease) 1s forwards;
        }

        .hero-stats .stat {
            border-left: 1px solid var(--line);
            padding-left: 16px;
        }

        .hero-stats .stat:first-child {
            border-left: none;
            padding-left: 0;
        }

        .stat-num {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: clamp(22px, 3vw, 34px);
        }

        .stat-num::after {
            content: attr(data-suffix);
        }

        .stat-label {
            font-size: 11.5px;
            letter-spacing: .03em;
            color: var(--ink-2);
            margin-top: 4px;
        }

        .scroll-cue {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--ink-2);
            font-size: 10.5px;
            letter-spacing: .2em;
        }

        .scroll-cue .stick {
            width: 1px;
            height: 34px;
            background: linear-gradient(var(--line-red), transparent);
            position: relative;
            overflow: hidden;
        }

        .scroll-cue .stick::after {
            content: '';
            position: absolute;
            top: -30%;
            left: 0;
            width: 100%;
            height: 30%;
            background: var(--red);
            animation: scrollDown 1.8s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0% {
                top: -30%;
            }

            100% {
                top: 100%;
            }
        }

        /* ---------- Reveal ---------- */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity .9s var(--ease), transform .9s var(--ease);
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-l {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity .9s var(--ease), transform .9s var(--ease);
        }

        .reveal-l.in {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-r {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity .9s var(--ease), transform .9s var(--ease);
        }

        .reveal-r.in {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(.92);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
        }

        .reveal-scale.in {
            opacity: 1;
            transform: scale(1);
        }

        .stagger>* {
            transition-delay: calc(var(--i, 0) * 80ms);
        }

        /* ---------- Marquee ---------- */
        .marquee-row {
            display: flex;
            overflow: hidden;
            position: relative;
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
        }

        .marquee-track {
            display: flex;
            gap: 80px;
            align-items: center;
            animation: marquee 26s linear infinite;
            padding: 0 40px;
            flex: none;
        }

        .marquee-row:hover .marquee-track {
            animation-play-state: paused;
        }

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

        .brand-tag {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 30px;
            letter-spacing: -.01em;
            color: var(--ink-2);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: color .35s ease, transform .35s ease;
        }

        .brand-tag svg {
            width: 30px;
            height: 30px;
            opacity: .5;
            transition: .35s ease;
        }

        .brand-tag:hover {
            color: var(--ink-0);
            transform: scale(1.06);
        }

        .brand-tag:hover svg {
            opacity: 1;
            stroke: var(--red);
        }

        /* ---------- Cards ---------- */
        .card {
            position: relative;
            border-radius: var(--radius-md);
            border: 1px solid var(--line);
            background: linear-gradient(160deg, var(--glass), rgba(255, 255, 255, .015));
            backdrop-filter: blur(14px);
            overflow: hidden;
            transition: transform .45s var(--ease), border-color .45s ease, box-shadow .45s ease;
        }

        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, rgba(225, 6, 0, 0) 0%, rgba(225, 6, 0, .5) 50%, rgba(225, 6, 0, 0) 100%);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity .45s ease;
            pointer-events: none;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, .14);
            box-shadow: 0 26px 60px -20px rgba(0, 0, 0, .6);
        }

        .tilt {
            transform-style: preserve-3d;
            will-change: transform;
        }

        /* Why choose us */
        .feat-card {
            padding: 30px 26px;
        }

        .feat-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(225, 6, 0, .1);
            border: 1px solid var(--line-red);
            margin-bottom: 20px;
        }

        .feat-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--red-2);
        }

        .feat-title {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 17px;
            margin-bottom: 8px;
        }

        .feat-desc {
            font-size: 14px;
            color: var(--ink-2);
            line-height: 1.6;
        }

        /* Services */
        .service-card {
            padding: 32px 26px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 230px;
        }

        .service-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            color: var(--ink-2);
            letter-spacing: .1em;
        }

        .service-icon {
            width: 46px;
            height: 46px;
        }

        .service-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--ink-0);
            transition: stroke .4s ease, transform .4s ease;
        }

        .service-card:hover .service-icon svg {
            stroke: var(--red-2);
            transform: rotate(-8deg) scale(1.08);
        }

        .service-title {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 18px;
        }

        .service-desc {
            font-size: 13.5px;
            color: var(--ink-2);
            line-height: 1.6;
            flex: 1;
        }

        .service-link {
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: .03em;
            color: var(--red-2);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .service-link svg {
            width: 14px;
            height: 14px;
            transition: transform .3s var(--ease);
        }

        .service-card:hover .service-link svg {
            transform: translateX(5px);
        }

        /* Tyre showcase */
        .tyre-card {
            padding: 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .tyre-visual {
            height: 220px;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 50% 50%, rgba(225, 6, 0, 0.08), transparent 70%), var(--bg-2);
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color .4s ease, box-shadow .4s ease;
        }

        .tyre-visual img {
            max-height: 190px;
            width: auto;
            object-fit: contain;
            transition: transform .6s var(--ease), filter .6s ease;
            filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .7));
        }

        .tyre-card:hover .tyre-visual {
            border-color: rgba(225, 6, 0, 0.3);
            box-shadow: inset 0 0 30px rgba(225, 6, 0, 0.1);
        }

        .tyre-card:hover .tyre-visual img {
            transform: scale(1.1) rotate(4deg);
            filter: drop-shadow(0 18px 36px rgba(225, 6, 0, .3));
        }

        .tyre-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 20px;
        }

        .tyre-tag {
            font-size: 11px;
            color: var(--red-2);
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--ink-2);
            padding: 7px 0;
            border-top: 1px solid var(--line);
        }

        .spec-row span:last-child {
            color: var(--ink-0);
            font-weight: 500;
        }

        /* Vehicle categories */
        .veh-card {
            padding: 28px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }

        .veh-icon {
            width: 54px;
            height: 54px;
        }

        .veh-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--ink-0);
        }

        .veh-card:hover .veh-icon svg {
            stroke: var(--red-2);
        }

        .veh-card:hover .veh-icon {
            animation: floatY2 1.6s ease-in-out infinite;
        }

        @keyframes floatY2 {

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

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

        .veh-name {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 14.5px;
        }

        /* Recommendation tool */
        .rec-card {
            padding: 40px;
            border-radius: var(--radius-lg);
        }

        .rec-grid {
            display: grid;
            gap: 18px;
        }

        @media (min-width:768px) {
            .rec-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .field label {
            display: block;
            font-size: 11.5px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--ink-2);
            margin-bottom: 10px;
        }

        select,
        input,
        textarea {
            width: 100%;
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--line);
            color: var(--ink-0);
            padding: 14px 16px;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 14.5px;
            transition: border-color .3s ease, background .3s ease;
            appearance: none;
            -webkit-appearance: none;
        }

        select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%238d8c88' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
        }

        select:focus,
        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--red);
            background: rgba(255, 255, 255, .05);
        }

        select option {
            background: var(--bg-1);
        }

        /* Alignment interactive */
        .align-compare {
            display: grid;
            gap: 20px;
        }

        @media (min-width:768px) {
            .align-compare {
                grid-template-columns: 1fr 1fr;
            }
        }

        .align-panel {
            padding: 30px;
            text-align: center;
        }

        .align-wheel {
            width: 140px;
            height: 140px;
            margin: 0 auto 18px;
        }

        .align-wheel.before svg {
            animation: wobble 1.4s ease-in-out infinite;
        }

        @keyframes wobble {

            0%,
            100% {
                transform: rotate(0deg) translateX(0);
            }

            25% {
                transform: rotate(-6deg) translateX(-3px);
            }

            75% {
                transform: rotate(6deg) translateX(3px);
            }
        }

        .align-wheel.after svg {
            animation: spinSmooth 3s linear infinite;
        }

        @keyframes spinSmooth {
            to {
                transform: rotate(360deg);
            }
        }

        /* Offers */
        .offer-card {
            padding: 30px 26px;
            position: relative;
        }

        .offer-ribbon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 10.5px;
            letter-spacing: .1em;
            background: rgba(225, 6, 0, .14);
            color: var(--red-2);
            border: 1px solid var(--line-red);
            padding: 5px 10px;
            border-radius: 100px;
            text-transform: uppercase;
        }

        /* Gallery */
        .gallery-grid {
            column-count: 1;
            column-gap: 16px;
        }

        @media (min-width:640px) {
            .gallery-grid {
                column-count: 2;
            }
        }

        @media (min-width:1024px) {
            .gallery-grid {
                column-count: 3;
            }
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 16px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--line);
            cursor: zoom-in;
        }

        .gallery-item .ph {
            width: 100%;
            display: block;
            transition: transform .6s var(--ease);
        }

        .gallery-item:hover .ph {
            transform: scale(1.06);
        }

        .gallery-caption {
            position: absolute;
            inset: auto 0 0 0;
            padding: 16px;
            background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
            font-size: 12.5px;
            letter-spacing: .05em;
            color: var(--ink-0);
            opacity: 0;
            transition: opacity .35s ease;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        #lightbox {
            position: fixed;
            inset: 0;
            z-index: 950;
            background: rgba(6, 6, 7, .95);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: .35s ease;
            padding: 40px;
        }

        #lightbox.open {
            opacity: 1;
            visibility: visible;
        }

        #lightbox .box {
            max-width: 720px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--line);
        }

        /* Reviews */
        .review-track {
            display: flex;
            gap: 22px;
            transition: transform .6s var(--ease);
        }

        .review-card {
            flex: 0 0 100%;
            padding: 34px;
        }

        @media (min-width:768px) {
            .review-card {
                flex: 0 0 calc(50% - 11px);
            }
        }

        @media (min-width:1100px) {
            .review-card {
                flex: 0 0 calc(33.333% - 15px);
            }
        }

        .stars {
            display: flex;
            gap: 3px;
            color: var(--red-2);
            margin-bottom: 16px;
        }

        .stars svg {
            width: 15px;
            height: 15px;
            fill: var(--red-2);
        }

        .review-quote {
            font-size: 14.5px;
            line-height: 1.7;
            color: var(--ink-1);
        }

        .review-person {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 22px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--silver);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: #111;
            font-size: 14px;
        }

        .review-name {
            font-size: 13.5px;
            font-weight: 600;
        }

        .review-loc {
            font-size: 11.5px;
            color: var(--ink-2);
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 34px;
        }

        .carousel-dots button {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--line);
            border: none;
            transition: .3s ease;
        }

        .carousel-dots button.active {
            background: var(--red);
            width: 22px;
            border-radius: 5px;
        }

        /* About timeline */
        .timeline {
            position: relative;
            padding-left: 32px;
            border-left: 1px solid var(--line);
            display: flex;
            flex-direction: column;
            gap: 36px;
        }

        .timeline-item {
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -38px;
            top: 4px;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: var(--bg-0);
            border: 2px solid var(--red);
        }

        .timeline-year {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--red-2);
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 6px;
        }

        .timeline-title {
            font-weight: 600;
            margin-bottom: 6px;
        }

        .timeline-desc {
            color: var(--ink-2);
            font-size: 14px;
            line-height: 1.65;
            max-width: 460px;
        }

        /* Process */
        .process-grid {
            display: grid;
            gap: 0;
            position: relative;
        }

        @media (min-width:900px) {
            .process-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .process-step {
            position: relative;
            padding: 28px 20px;
            text-align: center;
            border-top: 1px solid var(--line);
        }

        @media (min-width:900px) {
            .process-step {
                border-top: none;
                border-left: 1px solid var(--line);
            }

            .process-step:first-child {
                border-left: none;
            }
        }

        .process-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 38px;
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 1px var(--line);
            margin-bottom: 14px;
        }

        .process-step:hover .process-num {
            -webkit-text-stroke: 1px var(--red);
        }

        .process-title {
            font-weight: 600;
            font-size: 14.5px;
            margin-bottom: 8px;
        }

        .process-desc {
            font-size: 12.5px;
            color: var(--ink-2);
            line-height: 1.6;
        }

        /* Location */
        .map-wrap {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--line);
            height: 420px;
            filter: grayscale(.3) contrast(1.1);
        }

        .map-wrap iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: invert(90%) hue-rotate(180deg);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--line);
            font-size: 13.5px;
        }

        .hours-row span:last-child {
            color: var(--ink-1);
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--line);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 4px;
            cursor: pointer;
            gap: 20px;
        }

        .faq-q h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 16px;
        }

        .faq-plus {
            width: 22px;
            height: 22px;
            flex: none;
            position: relative;
        }

        .faq-plus::before,
        .faq-plus::after {
            content: '';
            position: absolute;
            background: var(--ink-1);
            transition: transform .35s var(--ease), background .3s ease;
        }

        .faq-plus::before {
            width: 100%;
            height: 1.5px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .faq-plus::after {
            width: 1.5px;
            height: 100%;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .faq-item.open .faq-plus::after {
            transform: translateX(-50%) rotate(90deg);
            opacity: 0;
        }

        .faq-item.open .faq-plus::before {
            background: var(--red);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .45s var(--ease);
        }

        .faq-a p {
            padding: 0 4px 24px;
            color: var(--ink-2);
            font-size: 14.5px;
            line-height: 1.7;
            max-width: 640px;
        }

        /* Contact */
        .contact-grid {
            display: grid;
            gap: 40px;
        }

        @media (min-width:1024px) {
            .contact-grid {
                grid-template-columns: .9fr 1.1fr;
            }
        }

        .contact-info-item {
            display: flex;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--line);
        }

        .contact-info-item .ic {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(225, 6, 0, .1);
            border: 1px solid var(--line-red);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
        }

        .contact-info-item .ic svg {
            width: 18px;
            height: 18px;
            stroke: var(--red-2);
        }

        .contact-info-item h5 {
            font-size: 13px;
            color: var(--ink-2);
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

        .contact-info-item p {
            font-size: 14.5px;
            margin: 0;
            color: var(--ink-0);
        }

        .form-card {
            padding: 36px;
        }

        .field {
            margin-bottom: 18px;
        }

        /* Footer */
        footer {
            background: var(--bg-1);
            border-top: 1px solid var(--line);
            padding: 70px 0 30px;
            position: relative;
        }

        .foot-grid {
            display: grid;
            gap: 44px;
        }

        @media (min-width:900px) {
            .foot-grid {
                grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            }
        }

        .foot-title {
            font-size: 12.5px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--ink-2);
            margin-bottom: 18px;
        }

        .foot-links {
            display: flex;
            flex-direction: column;
            gap: 11px;
        }

        .foot-links a {
            font-size: 14px;
            color: var(--ink-1);
            transition: color .25s ease;
        }

        .foot-links a:hover {
            color: var(--red-2);
        }

        .foot-bottom {
            margin-top: 60px;
            padding-top: 26px;
            border-top: 1px solid var(--line);
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: space-between;
            align-items: center;
            font-size: 12.5px;
            color: var(--ink-2);
        }

        .social-row {
            display: flex;
            gap: 10px;
        }

        /* Floating buttons */
        .fab-stack {
            position: fixed;
            right: 20px;
            bottom: 22px;
            z-index: 700;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }

        .fab {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .6);
            transition: transform .35s var(--ease);
            position: relative;
        }

        .fab:hover {
            transform: scale(1.08);
        }

        .fab-wa {
            background: #25D366;
        }

        .fab-wa svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        .fab-wa::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid #25D366;
            opacity: .5;
            animation: ringPulse 2.2s ease-out infinite;
        }

        @keyframes ringPulse {
            0% {
                transform: scale(.85);
                opacity: .6;
            }

            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        .fab-call {
            background: var(--bg-2);
            border: 1px solid var(--line);
        }

        .fab-call svg {
            width: 22px;
            height: 22px;
            stroke: var(--ink-0);
        }

        #backToTop {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--glass);
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: .35s ease;
        }

        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }

        #backToTop svg {
            width: 18px;
            height: 18px;
            stroke: var(--ink-0);
        }

        .divider-svg {
            display: block;
            width: 100%;
            height: 60px;
        }

        .skeleton {
            background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-1) 37%, var(--bg-2) 63%);
            background-size: 400% 100%;
            animation: skeleton 1.4s ease infinite;
        }

        @keyframes skeleton {
            0% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0 50%;
            }
        }

        .noise {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: .025;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
        }

        :focus-visible {
            outline: 2px solid var(--red-2);
            outline-offset: 3px;
        }

        .foot-bottom {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
        }

        .foot-bottom .credit {
            color: var(--ink-2);
        }

        .foot-bottom .credit strong {
            color: var(--ink-1);
            font-weight: 600;
            font-family: 'Space Grotesk', sans-serif;
            transition: color .25s ease;
        }

        .foot-bottom .credit a:hover strong {
            color: var(--red-2);
        }

        /* ========== IN MOTION SHOWCASE SECTION ========== */
        #motionShowcase {
            position: relative;
            padding: 100px 0 120px;
            overflow: hidden;
            background:
                radial-gradient(900px 500px at 20% 80%, rgba(225, 6, 0, .12), transparent 60%),
                radial-gradient(800px 500px at 80% 20%, rgba(225, 6, 0, .08), transparent 60%),
                linear-gradient(180deg, var(--bg-0), #0d0e0f, var(--bg-0));
        }

        /* Canvas particle background */
        #motionCanvas {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: .6;
        }

        /* Decorative ring backgrounds */
        .motion-rings {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .motion-rings svg {
            position: absolute;
            opacity: .04;
        }

        /* Speed lines */
        .speed-lines {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .speed-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(225, 6, 0, .4), transparent);
            animation: speedLineMove var(--duration) linear infinite;
            animation-delay: var(--delay);
            opacity: 0;
        }

        @keyframes speedLineMove {
            0% { left: -30%; width: 0; opacity: 0; }
            10% { opacity: 1; }
            50% { width: 25%; }
            90% { opacity: 1; }
            100% { left: 130%; width: 0; opacity: 0; }
        }

        /* Main grid layout */
        .motion-grid {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 60px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .motion-grid {
                grid-template-columns: 1fr 1fr;
                gap: 80px;
            }
        }

        /* Text side animations */
        .motion-text-side {
            position: relative;
        }

        /* Eyebrow glitch scan animation */
        .motion-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 13px;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--red-2);
            font-weight: 600;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity .8s var(--ease), transform .8s var(--ease);
            position: relative;
            overflow: hidden;
        }

        .motion-eyebrow::before {
            content: '';
            width: 28px;
            height: 1.5px;
            background: linear-gradient(90deg, var(--red), var(--red-2));
            flex-shrink: 0;
        }

        .motion-eyebrow::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(225, 6, 0, .3), transparent);
            animation: scanLine 3s ease-in-out infinite;
        }

        @keyframes scanLine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .motion-eyebrow.in {
            opacity: 1;
            transform: translateX(0);
        }

        /* Word-by-word title reveal */
        .motion-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(36px, 5.5vw, 62px);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin-top: 20px;
            color: var(--ink-0);
        }

        .motion-title .word-wrap {
            display: inline-block;
            overflow: hidden;
            vertical-align: bottom;
            margin-right: 0.2em;
        }

        .motion-title .word {
            display: inline-block;
            transform: translateY(110%);
            transition: transform .8s var(--ease);
            will-change: transform;
        }

        .motion-title .word-wrap:nth-child(1) .word { transition-delay: .1s; }
        .motion-title .word-wrap:nth-child(2) .word { transition-delay: .2s; }
        .motion-title .word-wrap:nth-child(3) .word { transition-delay: .3s; }
        .motion-title .word-wrap:nth-child(4) .word { transition-delay: .4s; }
        .motion-title .word-wrap:nth-child(5) .word { transition-delay: .5s; }

        .motion-title.in .word {
            transform: translateY(0);
        }

        /* "you can see" highlight */
        .motion-title .highlight {
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            background-image: linear-gradient(135deg, #f4f4f2 0%, #c7c6c2 28%, #8d8c88 52%, #dedcd7 75%, #a9a8a4 100%);
        }

        /* Subtitle blur-to-clear */
        .motion-sub {
            margin-top: 22px;
            color: var(--ink-2);
            font-size: 16.5px;
            line-height: 1.7;
            max-width: 480px;
            opacity: 0;
            filter: blur(8px);
            transform: translateY(20px);
            transition: opacity 1s var(--ease) .5s, filter 1s var(--ease) .5s, transform 1s var(--ease) .5s;
        }

        .motion-sub.in {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        /* Stats grid */
        .motion-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-top: 48px;
            border-top: 1px solid var(--line);
            padding-top: 28px;
        }

        .motion-stat {
            text-align: center;
            padding: 12px 8px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s var(--ease), transform .7s var(--ease);
            position: relative;
        }

        .motion-stat:not(:first-child)::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: var(--line);
        }

        .motion-stat:nth-child(1) { transition-delay: .7s; }
        .motion-stat:nth-child(2) { transition-delay: .85s; }
        .motion-stat:nth-child(3) { transition-delay: 1s; }

        .motion-stat.in {
            opacity: 1;
            transform: translateY(0);
        }

        .motion-stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: clamp(28px, 3.5vw, 42px);
            color: var(--ink-0);
            line-height: 1;
        }

        .motion-stat-value .unit {
            font-size: 0.5em;
            color: var(--red-2);
            font-weight: 600;
        }

        .motion-stat-label {
            font-size: 11.5px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--ink-2);
            margin-top: 8px;
        }

        /* Visual side — spinning tyre */
        .motion-visual-side {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 380px;
        }

        /* Outer glow ring */
        .motion-glow {
            position: absolute;
            width: 85%;
            height: 85%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(225, 6, 0, .25), transparent 65%);
            filter: blur(40px);
            animation: motionGlowPulse 4s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes motionGlowPulse {
            0%, 100% { opacity: .5; transform: scale(.95); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        /* Pulse rings */
        .pulse-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(225, 6, 0, .3);
            animation: pulseRingExpand var(--ring-duration, 3s) ease-out infinite;
            animation-delay: var(--ring-delay, 0s);
            opacity: 0;
        }

        @keyframes pulseRingExpand {
            0% { width: 30%; height: 30%; opacity: .6; }
            100% { width: 110%; height: 110%; opacity: 0; }
        }

        /* Tyre SVG container */
        .motion-tyre-wrap {
            position: relative;
            width: min(90%, 420px);
            aspect-ratio: 1;
            z-index: 1;
            opacity: 0;
            transform: scale(.7) rotate(-30deg);
            transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
        }

        .motion-tyre-wrap.in {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .motion-tyre-wrap svg {
            width: 100%;
            height: 100%;
        }

        /* Outer tyre ring spins slowly */
        .tyre-outer-ring {
            animation: tyreSpin 20s linear infinite;
            transform-origin: center;
        }

        /* Inner tread pattern spins reverse */
        .tyre-tread {
            animation: tyreSpinReverse 15s linear infinite;
            transform-origin: center;
        }

        @keyframes tyreSpin {
            to { transform: rotate(360deg); }
        }

        @keyframes tyreSpinReverse {
            to { transform: rotate(-360deg); }
        }

        /* Floating badge on tyre */
        .motion-badge {
            position: absolute;
            bottom: 10%;
            right: -5%;
            background: rgba(225, 6, 0, .12);
            border: 1px solid var(--line-red);
            backdrop-filter: blur(12px);
            border-radius: var(--radius-sm);
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .8s var(--ease) 1.2s, transform .8s var(--ease) 1.2s;
            z-index: 3;
        }

        .motion-badge.in {
            opacity: 1;
            transform: translateY(0);
        }

        .motion-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 14px var(--red);
            animation: pulse 1.8s ease-in-out infinite;
        }

        .motion-badge-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .05em;
            color: var(--ink-0);
        }

        /* Tread mark decorations that draw on scroll */
        .tread-marks {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 2;
        }

        .tread-mark {
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, var(--red), transparent);
            border-radius: 2px;
            transition: height .6s var(--ease);
            transition-delay: calc(var(--i) * 80ms + .8s);
        }

        .tread-marks.in .tread-mark {
            height: calc(20px + var(--i) * 8px);
        }

        /* Responsive adjustments */
        @media (max-width: 1023px) {
            .motion-visual-side {
                min-height: 300px;
            }

            .motion-badge {
                right: 5%;
                bottom: 5%;
            }

            .motion-stats {
                margin-top: 36px;
            }
        }

        @media (max-width: 600px) {
            .motion-visual-side {
                min-height: 260px;
            }

            .motion-tyre-wrap {
                width: min(80%, 300px);
            }

            .motion-stats {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* ==========================================================================
           COMPREHENSIVE MOBILE RESPONSIVENESS & TOUCH OPTIMIZATIONS
           ========================================================================== */
        html, body {
            overflow-x: hidden !important;
            width: 100%;
            max-width: 100vw;
            -webkit-text-size-adjust: 100%;
        }

        /* Mobile Header & Navbar */
        @media (max-width: 600px) {
            .nav-inner {
                padding: 10px 14px;
            }

            .brand-name {
                font-size: 14px;
            }

            .brand-name span {
                font-size: 8.5px;
            }

            .brand-mark {
                width: 32px;
                height: 32px;
            }

            .nav-cta .wa-link {
                display: none !important;
            }

            .menu-toggle {
                width: 38px;
                height: 38px;
            }

            #mobileMenu {
                padding: 80px 24px 32px;
            }

            #mobileMenu a {
                font-size: 22px;
                padding: 12px 0;
            }
        }

        /* Hero Section Mobile Polish */
        @media (max-width: 768px) {
            #hero {
                padding-top: 100px;
                padding-bottom: 40px;
                min-height: auto;
            }

            .hero-eyebrow {
                font-size: 11px;
                padding: 5px 12px;
            }

            .hero-title {
                font-size: clamp(2rem, 8vw, 3.2rem) !important;
                line-height: 1.15;
            }

            .hero-sub {
                font-size: 14.5px;
                margin-top: 14px;
            }

            .hero-cta {
                flex-direction: column;
                width: 100%;
                gap: 12px;
            }

            .hero-cta .btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 16px;
                margin-top: 40px;
                padding-top: 24px;
                border-top: 1px solid var(--line);
            }

            .hero-stat-item {
                background: rgba(255, 255, 255, 0.02);
                padding: 16px;
                border-radius: 12px;
                border: 1px solid var(--line);
            }

            .hero-stat-item::after {
                display: none !important;
            }

            .hero-stat-num {
                font-size: 28px !important;
            }

            .hero-stat-lbl {
                font-size: 12px;
            }
        }

        /* In Motion Interactive Demo Section Mobile */
        @media (max-width: 900px) {
            .motion-tabs {
                display: flex !important;
                overflow-x: auto !important;
                flex-wrap: nowrap !important;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 8px;
            }

            .motion-tabs::-webkit-scrollbar {
                display: none;
            }

            .motion-tab-btn {
                flex: 0 0 auto !important;
                white-space: nowrap !important;
                padding: 10px 16px !important;
                font-size: 12.5px !important;
            }

            .motion-badge {
                position: static !important;
                margin-top: 16px;
                display: inline-flex;
            }
        }

        /* Sections & Padding on Mobile */
        @media (max-width: 768px) {
            .section {
                padding: 56px 0;
            }

            .section-title {
                font-size: clamp(1.75rem, 6.5vw, 2.5rem);
            }

            .wrap {
                padding-left: 18px;
                padding-right: 18px;
            }

            .rec-card {
                padding: 24px 18px;
            }

            .align-panel {
                padding: 22px 16px;
            }

            .map-wrap {
                height: 300px;
            }

            .contact-grid {
                gap: 28px;
            }

            .form-card {
                padding: 24px 18px;
            }

            /* Prevent auto-zoom on iOS inputs */
            input, select, textarea {
                font-size: 16px !important;
            }
        }

        /* Gallery & Lightbox Mobile Polish */
        @media (max-width: 640px) {
            .gallery-grid {
                column-count: 1 !important;
            }

            .gallery-item .ph {
                height: 220px !important;
            }

            #lightbox {
                padding: 16px;
            }
        }

        /* Floating Action Buttons (FABs) Mobile Placement */
        @media (max-width: 768px) {
            .fab-stack {
                bottom: 16px;
                right: 14px;
                gap: 10px;
                z-index: 800;
            }

            .fab {
                width: 46px;
                height: 46px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            }

            #backToTop {
                width: 40px;
                height: 40px;
            }
        }
