@font-face {
    font-family: space;
    src: url(fonts/A-Space\ Black\ Demo.otf);
}

  :root {
            --accent-orange: #ff8c00;
            --accent-orange-bright: #ffb347;
            --accent-orange-glow: rgba(255, 140, 0, 0.4);
            --deep-black: #0a0a0a;
            --charcoal: #1a1a1a;
        }
        ::-webkit-scrollbar {
            width: 10px;
            background: var(--deep-black);
        }

        ::-webkit-scrollbar-track {
            background: linear-gradient(180deg, var(--deep-black) 0%, var(--charcoal) 50%, var(--deep-black) 100%);
            border-left: 1px solid rgba(255, 255, 255, 0.05);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--accent-orange) 0%, #d97700 100%);
            border-radius: 10px;
            border: 2px solid var(--deep-black);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, var(--accent-orange-bright) 0%, var(--accent-orange) 100%);
            box-shadow: 0 0 20px var(--accent-orange-glow),
                        0 0 30px rgba(255, 140, 0, 0.2);
            border-color: rgba(255, 140, 0, 0.3);
        }

        ::-webkit-scrollbar-thumb:active {
            background: var(--accent-orange-bright);
            box-shadow: 0 0 25px var(--accent-orange-glow),
                        0 0 40px rgba(255, 140, 0, 0.3),
                        inset 0 0 10px rgba(0, 0, 0, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
           background: radial-gradient(50% 50% at 50% 50%, #222225 0%, #020203 100%);
            color: #ffffff;
        }

      /*  NAVIGATION  */
        nav {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(12px) saturate(150%);
            border-bottom: 1px solid #ff8c0044;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 4rem;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
        }

        .logo {
            width: 120px;
            height: auto;
            z-index: 1001;
        }

        /* Burger Menu */
        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
        }

        .burger span {
            width: 28px;
            height: 3px;
            background: #ff8c00;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .nav-links {
            font-family: "Montserrat Alternates";
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        /* Active link styles */
        .nav-links > li > a.active {
            color: #ff8c00;
        }

        .nav-links > li > a.active::after {
            width: 100%;
            background: #ff8c00;
        }

        .nav-links > li > a {
            color: #cccccc;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-links > li > a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff8c00;
            transition: width 0.3s ease;
        }

        .nav-links > li > a:hover {
            color: #ffffff;
        }

        .nav-links > li > a:hover::after {
            width: 100%;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown > a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 2rem);
            left: 50%;
            transform: translateX(-50%) scale(0.95);
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
            backdrop-filter: blur(20px);
            list-style: none;
            padding: 0;
            min-width: 320px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(255, 140, 0, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9),
                        0 0 40px rgba(255, 140, 0, 0.1);
            overflow: hidden;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff8c00, #ff6b00, #ff8c00);
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
            top: calc(100% + 1rem);
        }

        .dropdown-header {
            padding: 1.5rem 1.5rem 1rem;
            border-bottom: 1px solid rgba(255, 140, 0, 0.1);
            background: linear-gradient(180deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
        }

        .dropdown-title {
            font-size: 0.75rem;
            color: #ff8c00;
            letter-spacing: 2px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .dropdown-menu li {
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .dropdown-menu li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #ff8c00;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .dropdown-menu li:hover::before {
            transform: scaleY(1);
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            color: #cccccc;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .dropdown-menu a::after {
            content: '→';
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: #ff8c00;
            font-size: 1.2rem;
        }

        .dropdown-menu a:hover {
            background: rgba(255, 140, 0, 0.08);
            color: #ffffff;
            padding-left: 2rem;
        }

        .dropdown-menu a:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        .model-tag {
            font-size: 0.65rem;
            padding: 0.2rem 0.5rem;
            background: rgba(255, 140, 0, 0.2);
            border: 1px solid rgba(255, 140, 0, 0.3);
            border-radius: 2px;
            color: #ff8c00;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .explore-btn {
            font-family: "Montserrat Alternates";
            background: #ff8c00;
            color: #000000;
            padding: 0.8rem 2rem;
            border: none;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .explore-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .explore-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .explore-btn:hover {
            background: #ff9f2e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
        }

        .btn-text {
            position: relative;
            z-index: 1;
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 968px) {
            nav {
                padding: 1rem 2rem;
            }

            .burger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 300px;
                flex-direction: column;
                background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
                backdrop-filter: blur(20px);
                padding: 6rem 2rem 2rem;
                gap: 0;
                transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                border-left: 1px solid rgba(255, 140, 0, 0.2);
                overflow-y: auto;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links > li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 140, 0, 0.1);
            }

            .nav-links > li > a {
                display: block;
                padding: 1.2rem 1rem;
                font-size: 1rem;
            }

            .nav-links > li > a::after {
                display: none;
            }

            /* Mobile Dropdown */
            .dropdown-menu {
                position: static;
                transform: none;
                min-width: 100%;
                margin-top: 0;
                border: none;
                box-shadow: none;
                background: rgba(0, 0, 0, 0.5);
                max-height: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease;
            }

            .dropdown-menu::before {
                display: none;
            }

            .dropdown.active .dropdown-menu {
                position: static;
                transform: none;
                max-height: 600px;
            }

            .dropdown-header {
                padding: 1rem;
            }

            .dropdown-menu a {
                padding: 1rem 1.5rem;
                font-size: 0.85rem;
            }

            .dropdown-menu a:hover {
                padding-left: 1.5rem;
            }

            .explore-btn {
                display: none;
            }

            /* Show explore button in mobile menu */
            .nav-links::after {
                content: 'EXPLORE';
                display: block;
                margin-top: 2rem;
                padding: 1rem 2rem;
                background: #ff8c00;
                color: #000000;
                font-weight: 700;
                font-size: 0.9rem;
                letter-spacing: 1px;
                text-transform: uppercase;
                text-align: center;
                cursor: pointer;
                box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .logo {
                width: 90px;
            }

            .nav-links {
                width: 280px;
            }

            .nav-links > li > a {
                font-size: 0.9rem;
                padding: 1rem 0.8rem;
            }

            .dropdown-menu a {
                font-size: 0.8rem;
                padding: 0.9rem 1.2rem;
            }
        }

        /* Demo content */
        .demo-content {
            padding: 2rem;
            color: #fff;
            text-align: center;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ff8c00;
        }

        /*  HERO SECTION  */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            top: 50px;
        }

        /* Animated Background Lines */
        .bg-lines {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            gap: 2rem;
            opacity: 0.08;
            filter: blur(1px);
            z-index: 1;
        }

        .line {
            width: 4px;
            height: 600px;
            background: linear-gradient(180deg, transparent 0%, #ffffff 50%, transparent 100%);
            animation: lineGlow 3s ease-in-out infinite;
        }

        .line:nth-child(2) { animation-delay: 0.3s; }
        .line:nth-child(3) { animation-delay: 0.6s; }
        .line:nth-child(4) { animation-delay: 0.9s; }
        .line:nth-child(5) { animation-delay: 1.2s; }
        .line:nth-child(6) { animation-delay: 1.5s; }
        .line:nth-child(7) { animation-delay: 1.8s; }
        .line:nth-child(8) { animation-delay: 2.1s; }

        @keyframes lineGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Content Container */
        .hero-content1 {
            position: relative;
            z-index: 10;
            text-align: center;
            width: 100%;
            max-width: 1400px;
            padding: 0 2rem;
        }

        /* Typography */
        .accent-text {
            font-size: 1.2rem;
            font-family: space;
            font-weight: 800;
            letter-spacing: 4px;
            color: #ff8c00;
            text-transform: uppercase;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.3s;
        }

        .main-headline1 {
            font-size: 8rem;
            font-weight: 900;
            letter-spacing: 8px;
            text-transform: uppercase;
            line-height: 1;
            background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 21rem;
            opacity: 0;
             font-family: space;
            animation: fadeInUp 1s ease forwards 0.6s;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .hero:hover .main-headline {
            text-shadow: 0 0 60px rgba(255, 140, 0, 0.3);
        }

        /* 3D Car Container */
        .car-container2 {
            position: absolute;
            transform: translate(1%, -31%);
            width: 1000px;
            height: 402px;
            z-index: 99;
            opacity: 0;
            animation: fadeIn 1.5s ease forwards 0.9s;
        }

        model-viewer {
            width: 100%; height: 700px;
            display: flex;
            align-items: center;
            --poster-color: transparent;
        }

        /* Supporting Text */
        .hero-description {
            font-size: 1.1rem;
            font-weight: 400;
            color: #aaaaaa;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            letter-spacing: 0.5px;
            opacity: 0;
            font-family: "Montserrat Alternates";

            animation: fadeInUp 1s ease forwards 1.2s;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 0rem;
            left: 48%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.5s;
        }

        .scroll-text {
            font-size: 0.8rem;
            letter-spacing: 2px;
            font-family: "Montserrat Alternates";

            text-transform: uppercase;
            color: #888888;
        }

        .scroll-arrow {
            width: 2px;
            height: 40px;
            background: linear-gradient(180deg, transparent 0%, #ff8c00 50%, transparent 100%);
            animation: scrollBounce 2s ease-in-out infinite;
        }

        @keyframes scrollBounce {
            0%, 100% { transform: translateY(0); opacity: 0.5; }
            50% { transform: translateY(10px); opacity: 1; }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .main-headline {
                font-size: 6rem;
            }
            
            .car-container2 {
                width: 800px;
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 2rem;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .main-headline {
                font-size: 2rem;
                letter-spacing: 4px;
            }

            .accent-text {
                font-size: 1rem;
            }

            .car-container2 {
                width: 100%;
                height: 400px;
            }

            .hero-description {
                font-size: 1rem;
                padding: 0 1rem;
            }
        }



          .mclaren-heritage-section {
            position: relative;
            width: 100%;
            padding: 8rem 2rem;
            overflow: hidden;
        }

        /* Container */
        .mclaren-heritage-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /*  SECTION HEADER  */
        
        .mclaren-heritage-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.5rem;
            border: 1.5px solid rgba(255, 140, 0, 0.6);
            border-radius: 50px;
            margin-bottom: 2.5rem;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }

        .mclaren-heritage-badge.mclaren-animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .mclaren-heritage-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #ff8c00;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
        }

        .mclaren-heritage-badge-text {
            font-family: "Montserrat Alternates";
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ff8c00;
        }

        .mclaren-heritage-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .mclaren-heritage-title {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            width: 100%;
            display: flex;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mclaren-heritage-title.mclaren-animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .mclaren-heritage-title-line-1 {
            font-family: space;
            display: block;
            color: #ffffff;
            margin-bottom: 0.2rem;
        }

        .mclaren-heritage-title-line-2 {
             font-family: space;
            display: block;
            background: linear-gradient(90deg, #ff8c00 0%, #ffb347 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .mclaren-heritage-description {
            font-family: "Montserrat Alternates";
            max-width: 650px;
            margin: 25px auto 5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #aaaaaa;
            text-align: center;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            transition-delay: 0.2s;
        }

        .mclaren-heritage-description.mclaren-animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /*  FEATURE CARDS GRID  */
        
        .mclaren-heritage-cards-grid {
            font-family: "Montserrat Alternates";
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mclaren-heritage-card {
            position: relative;
            background: rgba(26, 26, 26, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transform: translateY(50px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mclaren-heritage-card.mclaren-animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered animation delays */
        .mclaren-heritage-card:nth-child(1) {
            transition-delay: 0.3s;
        }

        .mclaren-heritage-card:nth-child(2) {
            transition-delay: 0.5s;
        }

        .mclaren-heritage-card:nth-child(3) {
            transition-delay: 0.7s;
        }

        .mclaren-heritage-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent);
    
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            transition: opacity 0.3s ease;
        }

        .mclaren-heritage-card:hover {
            border-color: rgba(255, 140, 0, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .mclaren-heritage-card:hover::before {
            opacity: 1;
        }

        /* ===== CARD ICON ===== */
        
        .mclaren-heritage-card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 140, 0, 0.1);
            border: 2px solid rgba(255, 140, 0, 0.3);
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }

        .mclaren-heritage-card-icon::before {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mclaren-heritage-card:hover .mclaren-heritage-card-icon {
            border-color: rgba(255, 140, 0, 0.6);
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.4);
            transform: scale(1.05);
        }

        .mclaren-heritage-card:hover .mclaren-heritage-card-icon::before {
            opacity: 1;
        }

        .mclaren-heritage-card-icon svg {
            width: 40px;
            height: 40px;
            fill: none;
            stroke: #ff8c00;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s ease;
        }

        .mclaren-heritage-card:hover .mclaren-heritage-card-icon svg {
            stroke: #ffb347;
            filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.6));
        }

        /* CARD CONTENT  */
        
        .mclaren-heritage-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 1rem;
            letter-spacing: 0.5px;
        }

        .mclaren-heritage-card-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #999999;
            margin: 0;
        }

        /*  RESPONSIVE DESIGN  */
        
        @media (max-width: 1024px) {
            .mclaren-heritage-section {
                padding: 6rem 2rem;
            }

            .mclaren-heritage-title {
                font-size: 3.5rem;
            }

            .mclaren-heritage-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .mclaren-heritage-card:nth-child(3) {
                grid-column: 1 / -1;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .mclaren-heritage-section {
                padding: 5rem 1.5rem;
            }

            .mclaren-heritage-title {
                font-size: 2.5rem;
            }

            .mclaren-heritage-description {
                font-size: 1rem;
                margin-bottom: 3rem;
            }

            .mclaren-heritage-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .mclaren-heritage-card {
                padding: 2.5rem 1.5rem;
            }

            .mclaren-heritage-card:nth-child(3) {
                grid-column: auto;
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .mclaren-heritage-title {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .mclaren-heritage-card-icon {
                width: 70px;
                height: 70px;
            }

            .mclaren-heritage-card-icon svg {
                width: 35px;
                height: 35px;
            }
        }


 .timeline-container {
 
            position: relative;
            width: 100%;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(255, 140, 0, 0.3) 10%, 
                rgba(255, 140, 0, 0.3) 90%, 
                transparent 100%);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 80px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }
        .timeline-item:nth-child(5) { animation-delay: 1s; }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item.left .content {
            text-align: right;
            padding-right: 60px;
            width: 50%;
        }

        .timeline-item.right .content {
            text-align: left;
            padding-left: 60px;
            width: 50%;
            margin-left: 50%;
        }

        .year {
            font-family: Space ;
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 2px;
            color: #ff8c00;
            margin-bottom: 8px;
        }

        .title {
                   font-family: "Montserrat Alternates";
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #fff;
        }

        .description {
                   font-family: "Montserrat Alternates";
            font-size: 13px;
            color: #999;
            line-height: 1.5;
        }

        .dot {
            position: absolute;
            top: 20px;
            width: 12px;
            height: 12px;
            background: #ff8c00;
            border-radius: 50%;
            border: 3px solid #000;
            box-shadow: 0 0 0 2px #ff8c00;
            z-index: 2;
        }

        .timeline-item.left .dot {
            right: calc(50% - 6px);
        }

        .timeline-item.right .dot {
            left: calc(50% - 6px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .timeline-item.right .content {
                margin-left: 0;
                padding-left: 60px;
                text-align: left;
            }

            .timeline-item.left .content {
                padding-left: 60px;
                padding-right: 20px;
                text-align: left;
            }

            .timeline-line {
                left: 20px;
            }

            .timeline-item.left .dot,
            .timeline-item.right .dot {
                left: 14px;
                right: auto;
            }

            .year {
                font-size: 36px;
            }
        }


         .mclaren-expansion-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px 0;
        }

        .expansion-badge {
            color: #ff8c00;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .expansion-badge::before {
            content: '◆';
            font-size: 8px;
        }

        .hero-title-section {
            display: flex;
    margin-bottom: 60px;
    flex-direction: column;
    align-items: center;
        }

        .hero-main-title {
            font-family: space;
            font-size: 56px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-accent-title {
            font-family: space;
            font-size: 56px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #ff8c00;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .hero-description {
            font-family: "Montserrat Alternates";
            font-size: 16px;
            line-height: 1.6;
            color: #aaa;
            max-width: 600px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .stats-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
            padding: 60px 0;
            border-bottom: 1px solid #222;
        }

        .stat-card-item {
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-card-item:nth-child(1) { animation-delay: 0.8s; }
        .stat-card-item:nth-child(2) { animation-delay: 1s; }
        .stat-card-item:nth-child(3) { animation-delay: 1.2s; }
        .stat-card-item:nth-child(4) { animation-delay: 1.4s; }

        .stat-icon-wrapper {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border-radius: 50%;
            border: 2px solid #ff8c00;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card-item:hover .stat-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
        }

        .stat-icon-svg {
            width: 30px;
            height: 30px;
            stroke: #ff8c00;
            fill: none;
            stroke-width: 2;
        }

        .stat-value-number {
            font-family: space;
            font-size: 42px;
            font-weight: 700;
            color: #ff8c00;
            margin-bottom: 8px;
        }

        .stat-label-text {
            font-family: "Montserrat Alternates";
            font-size: 14px;
            color: #888;
            letter-spacing: 1px;
        }

        .features-grid-layout {
            font-family: "Montserrat Alternates";
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .feature-card-module {
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            padding: 40px 30px;
            border-radius: 8px;
            border: 1px solid #222;
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .feature-card-module:nth-child(1) { animation-delay: 1.6s; }
        .feature-card-module:nth-child(2) { animation-delay: 1.8s; }
        .feature-card-module:nth-child(3) { animation-delay: 2s; }
        .feature-card-module:nth-child(4) { animation-delay: 2.2s; }

        .feature-card-module:hover {
            transform: translateY(-10px);
            border-color: #ff8c00;
            box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
        }

        .feature-title-heading {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .feature-description-text {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .feature-list-items {
            list-style: none;
        }

        .feature-list-item-row {
            padding: 12px 0;
            border-bottom: 1px solid #222;
            font-size: 14px;
            color: #aaa;
            display: flex;
            align-items: center;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .feature-list-item-row:last-child {
            border-bottom: none;
        }

        .feature-list-item-row:hover {
            color: #ff8c00;
            padding-left: 10px;
        }

        .feature-list-item-row::before {
            content: '▸';
            color: #ff8c00;
            margin-right: 12px;
            font-size: 12px;
        }

        .cta-button-container {
            text-align: center;
            margin-top: 60px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 2.4s forwards;
        }

        .primary-cta-button {
            font-family: "Montserrat Alternates";
            display: inline-block;
            padding: 18px 50px;
            background: transparent;
            color: #ff8c00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            font-weight: 600;
            border: 2px solid #ff8c00;
            border-radius: 4px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .primary-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #ff8c00;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .primary-cta-button:hover {
            color: #000;
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
        }

        .primary-cta-button:hover::before {
            left: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-main-title,
            .hero-accent-title {
                font-size: 36px;
            }

            .stats-grid-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .features-grid-layout {
                grid-template-columns: 1fr;
            }
        }



        .performance-showcase-container {
            font-family: "Montserrat Alternates";
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .section-header-badge {
            text-align: center;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
        }

        .badge-icon-diamond {
            color: #ff8c00;
            font-size: 10px;
            letter-spacing: 3px;
        }

        .badge-text-label {
            color: #999;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .hero-headline-wrapper {
            text-align: center;
            margin-bottom: 20px;
        }

        .main-headline-primary {
            font-family: space;
            font-size: 52px;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 5px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .main-headline-accent {
             font-family: space;
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 3px;
            color: #ff8c00;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .hero-subheadline-description {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 15px;
            line-height: 1.7;
            color: #aaa;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .models-grid-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .model-card-wrapper {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #222;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            position: relative;
        }

        .model-card-wrapper:nth-child(1) { animation-delay: 0.8s; }
        .model-card-wrapper:nth-child(2) { animation-delay: 1s; }
        .model-card-wrapper:nth-child(3) { animation-delay: 1.2s; }
        .model-card-wrapper:nth-child(4) { animation-delay: 1.4s; }
        .model-card-wrapper:nth-child(5) { animation-delay: 1.6s; }
        .model-card-wrapper:nth-child(6) { animation-delay: 1.8s; }
        .model-card-wrapper:nth-child(7) { animation-delay: 2s; }
        .model-card-wrapper:nth-child(8) { animation-delay: 2.2s; }
        .model-card-wrapper:nth-child(9) { animation-delay: 2.4s; }

        .model-card-wrapper:hover {
            transform: translateY(-15px);
            border-color: #ff8c00;
            box-shadow: 0 20px 60px rgba(255, 140, 0, 0.3);
        }

        .model-card-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .model-card-wrapper:hover::before {
            left: 100%;
        }

        .model-image-container {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .model-hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .model-card-wrapper:hover .model-hero-image {
            transform: scale(1.15);
        }

        .model-info-section {
            padding: 25px;
        }

        .model-name-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .model-title-text {
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .arrow-icon-link {
            color: #ff8c00;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .model-card-wrapper:hover .arrow-icon-link {
            transform: translateX(5px);
        }

        .model-tagline-subtitle {
            font-size: 12px;
            color: #888;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .specs-grid-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .spec-item-block {
            display: flex;
            flex-direction: column;
        }

        .spec-label-text {
            font-size: 11px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .spec-value-number {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
        }

        .pricing-row-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-top: 15px;
            border-top: 1px solid #222;
        }

        .price-label-small {
            font-size: 11px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-amount-large {
            font-size: 20px;
            font-weight: 700;
            color: #ff8c00;
        }

        .cta-explore-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 14px 0;
            background: transparent;
            color: #fff;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
            border: none;
            border-top: 1px solid #333;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-explore-button::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff8c00;
            transition: width 0.4s ease;
        }

        .model-card-wrapper:hover .cta-explore-button::before {
            width: 100%;
        }

        .cta-explore-button:hover {
            color: #ff8c00;
        }

        .footer-tech-credits {
            text-align: center;
            padding: 40px 0;
            font-size: 10px;
            color: #444;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-top: 1px solid #111;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            .models-grid-showcase {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-headline-primary,
            .main-headline-accent {
                font-size: 36px;
            }

            .models-grid-showcase {
                grid-template-columns: 1fr;
            }

            .performance-showcase-container {
                padding: 60px 20px;
            }
        }

        /* Shimmer loading effect */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .model-image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            background-size: 1000px 100%;
            animation: shimmer 3s infinite;
            pointer-events: none;
        }


         /* Hero Section */
        .hero2 {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 80px;
            font-weight: 300;
            letter-spacing: 10px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
            background: linear-gradient(45deg, #fff, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 20px;
            color: #999;
            letter-spacing: 3px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            display: block;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid #ff8c00;
            border-right: 2px solid #ff8c00;
            transform: rotate(45deg);
            margin: -10px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-20px);
            }
            60% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        /* Model Viewer Section */
        .model-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 50px;
            z-index: 10;
        }

        .model-container {
            width: 100%;
            max-width: 1400px;
            height: 700px;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(0, 0, 0, 0.5));
            border: 2px solid rgba(255, 140, 0, 0.3);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
        }

        .model-viewer2 {
            width: 100%;
            height: 100%;
            flex-direction: column;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .model-placeholder {
            text-align: center;
            color: #666;
        }

        .model-placeholder h3 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #ff8c00;
        }

        .model-placeholder p {
            font-size: 16px;
            letter-spacing: 2px;
        }

        /* Decorative corners */
        .corner {
            position: absolute;
            width: 50px;
            height: 50px;
            border: 2px solid #ff8c00;
        }

        .corner.top-left {
            top: 20px;
            left: 20px;
            border-right: none;
            border-bottom: none;
        }

        .corner.top-right {
            top: 20px;
            right: 20px;
            border-left: none;
            border-bottom: none;
        }

        .corner.bottom-left {
            bottom: 20px;
            left: 20px;
            border-right: none;
            border-top: none;
        }

        .corner.bottom-right {
            bottom: 20px;
            right: 20px;
            border-left: none;
            border-top: none;
        }

        /* Stats Section */
        .stats-section {
            font-family:"Montserrat Alternates" ;
            position: relative;
            padding: 100px 50px;
            z-index: 10;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .stat-card {
            background: rgba(255, 140, 0, 0.05);
            border: 1px solid rgba(255, 140, 0, 0.2);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 140, 0, 0.1);
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #ff8c00;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: #999;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Features Section */
        .features-section {
            position: relative;
            padding: 100px 50px;
            z-index: 10;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 80px;
            color: #ff8c00;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .feature-card {
            text-align: center;
            padding: 40px;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            border: 2px solid #ff8c00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #ff8c00;
            transition: all 0.3s;
        }



.car-color-options {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.car-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #eee;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.car-color:hover {
  transform: scale(1.15);
}

.car-color.active {
  box-shadow: 0 0 0 3px rgba(0,0,0,.35);
}




        
        .feature-card:hover .feature-icon {
            transform: rotate(360deg);
            background: #ff8c00;
            color: #000;
        }

        .feature-title {
            font-size: 24px;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .feature-description {
            font-size: 14px;
            color: #999;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            position: relative;
            padding: 50px;
            text-align: center;
            border-top: 1px solid rgba(255, 140, 0, 0.2);
            z-index: 10;
        }

        footer p {
            color: #666;
            font-size: 14px;
            letter-spacing: 2px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 20px;
                flex-direction: column;
                gap: 20px;
            }

            nav {
                gap: 15px;
            }

            .hero-content h1 {
                font-size: 40px;
                letter-spacing: 5px;
            }

            .model-section {
                padding: 50px 20px;
            }

            .model-container {
                height: 400px;
            }

            .section-title {
                font-size: 32px;
            }
        }



         .quantum-stage {
            font-family: "Montserrat Alternates";
            min-height: 100vh;
          padding: 70px 0;
        }

        .apex-header {
            text-align: center;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeSlideDown 1s ease forwards;
        }

        .precision-badge {
            font-size: 0.75rem;
            letter-spacing: 3px;
            color: #ff8800;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .precision-badge::before {
            content: '⬢ ';
        }

        .momentum-title {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 0.5rem;
            animation: glowPulse 3s ease-in-out infinite;
        }

        .velocity-subtitle {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 8px;
            color: #ff8800;
            margin-bottom: 1.5rem;
        }

        .zenith-tagline {
            font-size: 0.95rem;
            color: #aaa;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .thrust-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .genesis-content {
            opacity: 0;
            animation: fadeSlideRight 1s ease 0.3s forwards;
        }

        .phoenix-heading {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .inferno-accent {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff8800;
            margin-bottom: 1.5rem;
        }

        .nebula-description {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .voltage-features {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .voltage-item {
            padding: 0.75rem 0;
            color: #ddd;
            position: relative;
            padding-left: 2rem;
            opacity: 0;
            animation: fadeSlideLeft 0.6s ease forwards;
        }

        .voltage-item:nth-child(1) { animation-delay: 0.5s; }
        .voltage-item:nth-child(2) { animation-delay: 0.7s; }
        .voltage-item:nth-child(3) { animation-delay: 0.9s; }
        .voltage-item:nth-child(4) { animation-delay: 1.1s; }

        .voltage-item::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: #ff8800;
            font-size: 0.8rem;
        }

        .prism-showcase {
            position: relative;
            opacity: 0;
            animation: fadeSlideLeft 1s ease 0.5s forwards;
        }

        .vortex-frame {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(255, 136, 0, 0.3);
        }

        .vortex-frame::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff8800, #ff4400, #ff8800);
            border-radius: 10px;
            z-index: -1;
            animation: rotateBorder 4s linear infinite;
        }

        .parallax-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
        }

        .codex-label {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            border: 1px solid #ff8800;
        }

        .shimmer-line {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff8800, transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeSlideRight {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeSlideLeft {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            }
            50% {
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
            }
        }

        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.02);
            }
        }

        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.02);
            }
        }

        @keyframes rotateBorder {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        @media (max-width: 768px) {
            .thrust-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .momentum-title,
            .velocity-subtitle {
                font-size: 2rem;
                letter-spacing: 4px;
            }

            .phoenix-heading,
            .inferno-accent {
                font-size: 1.8rem;
            }

            .vortex-frame {
                height: 350px;
            }
        }


         .velocity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            font-family: "Montserrat Alternates";
            width: 100%;
            padding: 0 108px 119px;
        }

        .power-block {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
            border: 1px solid rgba(255, 140, 0, 0.2);
            border-radius: 16px;
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .power-block::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .power-block:hover::before {
            opacity: 1;
        }

        .power-block:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 140, 0, 0.6);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.3);
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: glow-pulse 3s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% {
                filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.8));
            }
        }

        .icon-wrapper svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: #ff8c00;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .power-block:hover .icon-wrapper {
            animation: glow-pulse 1.5s ease-in-out infinite, rotate-icon 2s linear infinite;
        }

        @keyframes rotate-icon {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .big-number {
            color: #ff8c00;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            opacity: 0;
            animation: slide-in 0.8s ease forwards;
            text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
        }

        .power-block:nth-child(1) .big-number { animation-delay: 0.1s; }
        .power-block:nth-child(2) .big-number { animation-delay: 0.2s; }
        .power-block:nth-child(3) .big-number { animation-delay: 0.3s; }
        .power-block:nth-child(4) .big-number { animation-delay: 0.4s; }

        @keyframes slide-in {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-label {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .info-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .feature-line {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            margin-top: 12px;
        }

        .feature-line::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #ff8c00;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
            animation: dot-blink 2s ease-in-out infinite;
        }

        @keyframes dot-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        @media (max-width: 768px) {
            .velocity-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            
            .big-number {
                font-size: 36px;
            }
            
            .main-label {
                font-size: 16px;
            }
        }


         .supreme-container {
            max-width: 1200px;
            margin: 0 auto;
            font-family: "Montserrat Alternates";
        }

        .crown-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 30px;
            opacity: 0;
            animation: fade-in-down 1s ease forwards;
        }

        @keyframes fade-in-down {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .eco-icon {
            width: 16px;
            height: 16px;
            background: #00ff00;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
            animation: glow-green 2s ease-in-out infinite;
        }

        @keyframes glow-green {
            0%, 100% {
                box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
            }
            50% {
                box-shadow: 0 0 25px rgba(0, 255, 0, 0.9);
            }
        }

        .eco-label {
            font-size: 12px;
            font-weight: 600;
            color: #00ff00;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-statement {
            text-align: center;
            margin-bottom: 50px;
        }

        .statement-top {
            font-size: 52px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 10px;
            opacity: 0;
            animation: slide-in-left 1s ease forwards 0.2s;
        }

        @keyframes slide-in-left {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .statement-bottom {
            font-size: 52px;
            font-weight: 700;
            letter-spacing: 2px;
            opacity: 0;
            animation: slide-in-right 1s ease forwards 0.4s;
        }

        @keyframes slide-in-right {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .word-without {
            color: #00ff00;
        }

        .word-compromise {
            color: #ff8c00;
        }

        .mission-brief {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 60px;
            opacity: 0;
            animation: fade-in-up 1s ease forwards 0.6s;
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tech-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .innovation-card {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            animation: scale-in 0.8s ease forwards;
        }

        .innovation-card:nth-child(1) { animation-delay: 0.8s; }
        .innovation-card:nth-child(2) { animation-delay: 1s; }

        @keyframes scale-in {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .innovation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 255, 0, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .innovation-card:hover::before {
            opacity: 1;
        }

        .innovation-card:hover {
            transform: translateY(-10px);
            border-color: rgba(234, 119, 37, 0.4);
            box-shadow: 0 20px 50px rgba(0, 255, 0, 0.2);
        }

        .gear-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 255, 0, 0.1);
            border-radius: 12px;
            position: relative;
        }

        .gear-icon svg {
            width: 35px;
            height: 35px;
            fill: none;
            stroke: #00ff00;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            animation: rotate-slow 8s linear infinite;
        }

        .innovation-card:nth-child(2) .gear-icon {
            background: rgba(255, 140, 0, 0.1);
        }

        .innovation-card:nth-child(2) .gear-icon svg {
            stroke: #ff8c00;
        }

        @keyframes rotate-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .innovation-card:hover .gear-icon svg {
            animation: rotate-fast 2s linear infinite;
        }

        @keyframes rotate-fast {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .feature-title {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .metrics-zone {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .stat-box {
            position: relative;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #00ff00;
            margin-bottom: 5px;
            text-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
        }

        .innovation-card:nth-child(2) .stat-value {
            color: #ff8c00;
            text-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
        }

        .stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .advantage-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .advantage-row {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
        }

        .advantage-row::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #00ff00;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
        }

        .innovation-card:nth-child(2) .advantage-row::before {
            background: #ff8c00;
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
        }

        @media (max-width: 768px) {
            .statement-top,
            .statement-bottom {
                font-size: 36px;
            }

            .tech-showcase {
                grid-template-columns: 1fr;
            }

            .metrics-zone {
                grid-template-columns: 1fr;
            }
        }


          .master-frame {
            max-width: 1200px;
            margin: 0 auto;
                padding: 80px 0;
                font-family: "Montserrat Alternates";
        }

        .cosmic-header {
            text-align: center;
            margin-bottom: 60px;
            font-size: 42px;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0;
            animation: emerge 1s ease forwards;
        }

        @keyframes emerge {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cosmic-header .highlight-word {
            color: #00ff00;
            font-weight: 600;
        }

        .timeline-highway {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            margin-bottom: 80px;
            position: relative;
        }

        .timeline-highway::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: linear-gradient(90deg, 
                rgba(0, 255, 0, 0.5) 0%, 
                rgba(0, 255, 0, 0.5) 33%, 
                rgba(0, 255, 0, 0.5) 66%, 
                rgba(255, 140, 0, 0.5) 100%);
            z-index: 0;
        }

        .milestone-capsule {
            position: relative;
            z-index: 1;
            text-align: center;
            opacity: 0;
            animation: pop-in 0.6s ease forwards;
        }

        .milestone-capsule:nth-child(1) { animation-delay: 0.2s; }
        .milestone-capsule:nth-child(2) { animation-delay: 0.4s; }
        .milestone-capsule:nth-child(3) { animation-delay: 0.6s; }
        .milestone-capsule:nth-child(4) { animation-delay: 0.8s; }

        @keyframes pop-in {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .pulse-ring {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: rgba(10, 10, 10, 0.9);
            border: 2px solid #00ff00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .milestone-capsule:nth-child(4) .pulse-ring {
            border-color: #ff8c00;
        }

        .pulse-ring::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid #00ff00;
            border-radius: 50%;
            animation: ripple 2s ease-out infinite;
        }

        .milestone-capsule:nth-child(4) .pulse-ring::before {
            border-color: #ff8c00;
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .pulse-ring:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
        }

        .milestone-capsule:nth-child(4) .pulse-ring:hover {
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
        }

        .pulse-ring svg {
            width: 28px;
            height: 28px;
            fill: none;
            stroke: #00ff00;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .milestone-capsule:nth-child(4) .pulse-ring svg {
            stroke: #ff8c00;
        }

        .year-stamp {
            font-size: 28px;
            font-weight: 700;
            color: #00ff00;
            margin-bottom: 8px;
            text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
        }

        .milestone-capsule:nth-child(4) .year-stamp {
            color: #ff8c00;
            text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
        }

        .goal-tag {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .impact-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .result-tile {
            background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            animation: slide-up 0.8s ease forwards;
            cursor: pointer;
        }

        .result-tile:nth-child(1) { animation-delay: 1s; }
        .result-tile:nth-child(2) { animation-delay: 1.1s; }
        .result-tile:nth-child(3) { animation-delay: 1.2s; }
        .result-tile:nth-child(4) { animation-delay: 1.3s; }

        @keyframes slide-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .result-tile::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .result-tile:hover::before {
            opacity: 1;
        }

        .result-tile:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 255, 0, 0.4);
            box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
        }

        .trophy-number {
            font-size: 56px;
            font-weight: 700;
            color: #00ff00;
            margin-bottom: 15px;
            text-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
            line-height: 1;
        }

        .achievement-name {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .context-hint {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        @media (max-width: 768px) {
            .cosmic-header {
                font-size: 32px;
            }

            .timeline-highway {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-highway::before {
                display: none;
            }

            .impact-matrix {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .trophy-number {
                font-size: 42px;
            }
        }

        @media (max-width: 480px) {
            .timeline-highway {
                grid-template-columns: 1fr;
            }

            .impact-matrix {
                grid-template-columns: 1fr;
            }
        }


        .hero-wrapper {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                        url('pic/McLaren\ car\ 1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            
        }

       

        .action-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-family: "Montserrat Alternates";
            justify-content: center;
            animation: fadeInUp 1s ease-out 0.8s backwards;
        }

        .btn-primary {
            background: #ff8c00;
            color: #000;
            font-family: "Montserrat Alternates";
            padding: 1rem 2.5rem;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #ffa500;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
        }

        .btn-primary::after {
            content: '→';
            margin-left: 0.5rem;
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            padding: 1rem 2.5rem;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            font-family: "Montserrat Alternates";
            text-transform: uppercase;
            border: 2px solid #fff;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #fff;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            width: 100%;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .feature-card {
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 140, 0, 0.2);
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            font-family: "Montserrat Alternates";
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff8c00, transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .feature-card:hover::before {
            transform: translateX(100%);
        }

        .feature-card:hover {
            background: rgba(30, 30, 30, 0.9);
            border-color: #ff8c00;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            margin-bottom: 1.5rem;
            color: #ff8c00;
        }

        .feature-label {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .feature-description {
            font-size: 0.95rem;
            color: #888;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .feature-link {
            display: inline-block;
            color: #ff8c00;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .feature-link::after {
            content: ' →';
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .feature-link:hover::after {
            transform: translateX(5px);
        }

        .newsletter-section {
            background: rgba(15, 15, 15, 0.95);
            border-top: 1px solid rgba(255, 140, 0, 0.3);
            padding: 4rem 2rem;
            font-family: "Montserrat Alternates";
            margin-top: 4rem;
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .section-heading {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .section-subtext {
            font-size: 0.95rem;
            color: #888;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .email-form {
            display: flex;
            gap: 0;
            max-width: 500px;
            margin: 0 auto 1rem;
            flex-wrap: wrap;
        }

        .email-input {
            flex: 1;
            min-width: 250px;
            font-family: "Montserrat Alternates";
            padding: 1rem 1.5rem;
            background: rgba(30, 30, 30, 0.8);
            border: 1px solid rgba(255, 140, 0, 0.3);
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .email-input:focus {
            border-color: #ff8c00;
            background: rgba(40, 40, 40, 0.9);
        }

        .email-input::placeholder {
            color: #666;
        }

        .submit-btn {
            padding: 1rem 2.5rem;
            background: #ff8c00;
            color: #000;
            font-size: 0.9rem;
            font-weight: 700;
            font-family: "Montserrat Alternates";
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #ffa500;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
        }

        .privacy-notice {
            font-size: 0.75rem;
            color: #666;
            line-height: 1.4;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .action-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            .email-form {
                flex-direction: column;
            }

            .email-input {
                min-width: 100%;
            }
        }



        .bottom-container {
            width: 100%;
            font-family: "Montserrat Alternates";
            background: #000;
            border-top: 1px solid #1a1a1a;
        }

        .footer-main-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .brand-identity-block {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .logo-symbol {
            font-size: 2rem;
            font-weight: 700;
            font-style: italic;
            color: #ff8c00;
            letter-spacing: 2px;
            position: relative;
        }

        .logo-symbol::after {
            content: '®';
            font-size: 0.6rem;
            position: absolute;
            top: 0;
            margin-left: 2px;
        }

        .brand-philosophy {
            font-size: 0.85rem;
            line-height: 1.7;
            color: #888;
            max-width: 280px;
        }

        .social-connections {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .social-icon-link {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon-link:hover {
            background: rgba(255, 140, 0, 0.1);
            border-color: #ff8c00;
            transform: translateY(-3px);
        }

        .social-icon-link svg {
            width: 18px;
            height: 18px;
            fill: #888;
            transition: fill 0.3s ease;
        }

        .social-icon-link:hover svg {
            fill: #ff8c00;
        }

        .navigation-column {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .column-header {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .link-collection {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }

        .footer-nav-link {
            font-size: 0.9rem;
            color: #888;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
            width: fit-content;
        }

        .footer-nav-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #ff8c00;
            transition: width 0.3s ease;
        }

        .footer-nav-link:hover {
            color: #ff8c00;
            transform: translateX(3px);
        }

        .footer-nav-link:hover::before {
            width: 100%;
        }

        .legal-strip {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid #1a1a1a;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright-notice {
            font-size: 0.75rem;
            color: #555;
            letter-spacing: 0.5px;
        }

        .legal-links-group {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .legal-link-item {
            font-size: 0.75rem;
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
            letter-spacing: 0.5px;
        }

        .legal-link-item:hover {
            color: #ff8c00;
        }

        @media (max-width: 1024px) {
            .footer-grid-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .brand-identity-block {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .footer-grid-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-main-wrapper {
                padding: 3rem 1.5rem 1.5rem;
            }

            .legal-strip {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .legal-links-group {
                flex-direction: column;
                gap: 0.8rem;
            }
        }

        /* Subtle animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navigation-column {
            animation: slideInUp 0.6s ease-out backwards;
        }

        .navigation-column:nth-child(2) {
            animation-delay: 0.1s;
        }

        .navigation-column:nth-child(3) {
            animation-delay: 0.2s;
        }

        .navigation-column:nth-child(4) {
            animation-delay: 0.3s;
        }


        @font-face {
    font-family: space;
    src: url(fonts/A-Space\ Black\ Demo.otf);
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        .hero-stage {
            font-family: "Montserrat Alternates";
            position: relative;
            min-height: 100vh;
            /* background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(30,20,10,0.8)),
                        url('pic/Container.png'); */
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            padding: 2rem;
        }
.bg-video {
    position:absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-video video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Content above video */
.page-content {
  position: relative;
  z-index: 1;
  color: white;
}

        .top-navigation-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            animation: slideDown 0.8s ease-out;
        }

        .back-navigation-link a{
            display: flex;
            color: inherit;
  text-decoration: none;
            align-items: center;
            gap: 0.5rem;
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .back-navigation-link:hover {
            color: #ff8c00;
            transform: translateX(-5px);
        }

        .back-navigation-link::before {
            content: '←';
            font-size: 1.2rem;
        }

        .action-icons-cluster {
            display: flex;
            gap: 1.5rem;
        }

        .icon-button-circular {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .icon-button-circular:hover {
            background: rgba(255, 140, 0, 0.1);
            border-color: #ff8c00;
            transform: translateY(-3px);
        }

        .icon-button-circular svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: #fff;
            stroke-width: 2;
        }

        .icon-button-circular:hover svg {
            stroke: #ff8c00;
        }

        .content-showcase-area {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        .specialty-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ff8c00;
            margin-bottom: 1.5rem;
            animation: fadeIn 1s ease-out 0.3s backwards;
        }
 .mclaren-heritage-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.5rem;
            border: 1.5px solid rgba(255, 140, 0, 0.6);
            border-radius: 50px;
            margin-bottom: 2.5rem;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }

        .mclaren-heritage-badge.mclaren-animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .mclaren-heritage-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #ff8c00;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
        }

        .mclaren-heritage-badge-text {
            font-family: "Montserrat Alternates";
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ff8c00;
        }
        .specialty-badge::before {
            content: '●';
            font-size: 0.5rem;
        }

        .model-designation {
            font-family: space;
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.5s backwards;
        }

        .vehicle-description {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #aaa;
            max-width: 600px;
            margin-bottom: 3rem;
            animation: fadeIn 1s ease-out 0.7s backwards;
        }

        .cta-button-group {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.9s backwards;
        }

        .primary-action-btn {
            padding: 1rem 2.5rem;
            background: #ff8c00;
            color: #000;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .primary-action-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .primary-action-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .primary-action-btn:hover {
            background: #ffa500;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
        }

        .secondary-action-btn {
            padding: 1rem 2.5rem;
            background: transparent;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 2px solid #fff;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .secondary-action-btn:hover {
            background: #fff;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .stats-display-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
            max-width: 976px;
            animation: fadeIn 1s ease-out 1.1s backwards;
        }

        .stat-card-item {
            background: rgba(20, 15, 10, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 140, 0, 0.2);
            padding: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff8c00, transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .stat-card-item:hover::before {
            transform: translateX(100%);
        }

        .stat-card-item:hover {
            background: rgba(30, 20, 10, 0.9);
            border-color: #ff8c00;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
        }

        .stat-label-text {
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 0.5rem;
        }

        .stat-value-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff8c00;
            letter-spacing: 1px;
        }

        .price-indicator {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 140, 0, 0.5);
            transform: scale(0);
            animation: ripple 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-stage {
                padding: 1.5rem;
            }

            .cta-button-group {
                flex-direction: column;
                width: 100%;
            }

            .primary-action-btn,
            .secondary-action-btn {
                width: 100%;
            }

            .stats-display-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .stats-display-grid {
                grid-template-columns: 1fr;
            }
        }

           .specifications-wrapper {
            font-family: "Montserrat Alternates";
            max-width: 1200px;
            margin: 0 auto;
        }

        .title-section-block {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 0.8s ease-out;
        }

        .subtitle-accent {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ff8c00;
            margin-bottom: 1rem;
        }

        .main-title-display {
            font-family: space;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .title-highlight {
            color: #ff8c00;
            font-weight: 700;
        }

        .description-tagline {
            font-size: 0.95rem;
            color: #888;
            letter-spacing: 0.5px;
        }

        .performance-metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .metric-card-container {
            background: linear-gradient(135deg, rgba(20, 15, 10, 0.8), rgba(30, 20, 10, 0.6));
            border: 1px solid rgba(255, 140, 0, 0.15);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .metric-card-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff8c00, transparent);
            transition: left 0.6s ease;
        }

        .metric-card-container:hover::before {
            left: 100%;
        }

        .metric-card-container::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 140, 0, 0.1), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .metric-card-container:hover::after {
            opacity: 1;
        }

        .metric-card-container:hover {
            background: linear-gradient(135deg, rgba(30, 20, 10, 0.9), rgba(40, 25, 10, 0.8));
            border-color: #ff8c00;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
        }

        .icon-wrapper-circle {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 140, 0, 0.1);
            border-radius: 50%;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .metric-card-container:hover .icon-wrapper-circle {
            background: rgba(255, 140, 0, 0.2);
            transform: rotate(360deg) scale(1.1);
        }

        .icon-wrapper-circle svg {
            width: 24px;
            height: 24px;
            stroke: #ff8c00;
            fill: none;
            stroke-width: 2;
        }

        .metric-label-header {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 0.8rem;
        }

        .metric-value-primary {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ff8c00;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .metric-subtitle-info {
            font-size: 0.8rem;
            color: #777;
            letter-spacing: 0.5px;
        }

        .detailed-specs-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .spec-category-panel {
            background: linear-gradient(135deg, rgba(15, 10, 8, 0.9), rgba(25, 18, 12, 0.8));
            border: 1px solid rgba(255, 140, 0, 0.2);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .spec-category-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #ff8c00, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .spec-category-panel:hover::before {
            opacity: 1;
        }

        .category-title-bar {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.8rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 140, 0, 0.2);
        }

        .category-accent-line {
            width: 3px;
            height: 20px;
            background: #ff8c00;
        }

        .category-name-text {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .spec-details-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .spec-row-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .spec-row-item:last-child {
            border-bottom: none;
        }

        .spec-row-item:hover {
            padding-left: 0.5rem;
            border-bottom-color: rgba(255, 140, 0, 0.3);
        }

        .spec-property-name {
            font-size: 0.85rem;
            color: #999;
            letter-spacing: 0.5px;
        }

        .spec-property-value {
            font-size: 0.9rem;
            color: #fff;
            font-weight: 600;
            text-align: right;
        }

        .disclaimer-footer {
            text-align: center;
            font-size: 0.75rem;
            color: #555;
            line-height: 1.6;
            padding: 2rem;
            border-top: 1px solid rgba(255, 140, 0, 0.1);
            animation: fadeIn 1s ease-out 0.5s backwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .metric-card-container {
            animation: slideInLeft 0.6s ease-out backwards;
        }

        .metric-card-container:nth-child(1) { animation-delay: 0.1s; }
        .metric-card-container:nth-child(2) { animation-delay: 0.2s; }
        .metric-card-container:nth-child(3) { animation-delay: 0.3s; }
        .metric-card-container:nth-child(4) { animation-delay: 0.4s; }
        .metric-card-container:nth-child(5) { animation-delay: 0.5s; }
        .metric-card-container:nth-child(6) { animation-delay: 0.6s; }

        @media (max-width: 768px) {
            .performance-metrics-grid {
                grid-template-columns: 1fr;
            }

            .detailed-specs-container {
                grid-template-columns: 1fr;
            }
        }

        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .glow-effect {
            text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
        }

        .master-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px;
        }

        .brand-badge {
            text-align: center;
            margin-bottom: 20px;
        }

        .badge-text {
            font-size: 11px;
            letter-spacing: 3px;
            color: #ff8c00;
            text-transform: uppercase;
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid #ff8c00;
            border-radius: 20px;
            font-weight: 600;
        }

        .hero-title-wrapper {
            text-align: center;
            margin-bottom: 15px;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .title-emphasis {
            color: #ff8c00;
            font-weight: 600;
        }

        .tagline-wrapper {
            text-align: center;
            margin-bottom: 80px;
        }

        .tagline-text {
            font-size: 14px;
            color: #999;
            letter-spacing: 1px;
            line-height: 1.6;
        }

        .main-showcase {
            font-family: "Montserrat Alternates";

            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
                padding: 50px;
            margin-bottom: 100px;
            align-items: center;
        }

        .visual-block {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .feature-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .visual-block:hover .feature-image {
            transform: scale(1.05);
        }

        .content-block {
            padding: 20px;
        }

        .section-heading {
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .heading-highlight {
            color: #ff8c00;
            font-weight: 600;
        }

        .description-text {
            font-size: 15px;
            line-height: 1.8;
            color: #aaa;
            margin-bottom: 40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .stat-card {
            background: rgba(255, 140, 0, 0.05);
            padding: 25px;
            border-radius: 8px;
            border-left: 3px solid #ff8c00;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255, 140, 0, 0.1);
            transform: translateX(5px);
        }

        .stat-icon {
            font-size: 24px;
            margin-bottom: 12px;
            color: #ff8c00;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #ff8c00;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .stat-label {
            font-size: 12px;
            color: #888;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .features-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            font-size: 14px;
            color: #bbb;
            transition: color 0.3s ease;
        }

        .feature-item:hover {
            color: #ff8c00;
        }

        .feature-bullet {
            width: 6px;
            height: 6px;
            background: #ff8c00;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .secondary-features {
            display: grid;
            font-family: "Montserrat Alternates";

                padding: 50px;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-module {
            background: rgba(30, 30, 30, 0.5);
            padding: 35px;
            border-radius: 12px;
            border: 1px solid rgba(255, 140, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-module::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ff8c00, transparent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .feature-module:hover::before {
            transform: scaleX(1);
        }

        .feature-module:hover {
            background: rgba(40, 40, 40, 0.8);
            border-color: rgba(255, 140, 0, 0.3);
            transform: translateY(-5px);
        }

        .module-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .module-description {
            font-size: 13px;
            line-height: 1.7;
            color: #999;
            margin-bottom: 20px;
        }

        .module-link {
            font-size: 12px;
            color: #ff8c00;
            text-decoration: none;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .module-link::after {
            content: '→';
            margin-left: 8px;
            transition: margin-left 0.3s ease;
        }

        .module-link:hover::after {
            margin-left: 15px;
        }

        @media (max-width: 1024px) {
            .main-showcase {
                grid-template-columns: 1fr;
            }

            .secondary-features {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .master-container {
                padding: 40px 20px;
            }
        }

        .animated-fade-in {
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }



        .supreme-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            font-family: "Montserrat Alternates";

            padding: 80px 40px;
        }

        .excellence-badge {
            text-align: center;
            margin-bottom: 30px;
        }

        .badge-emblem {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            letter-spacing: 3px;
            color: #ff8c00;
            text-transform: uppercase;
            padding: 10px 25px;
            border: 1px solid rgba(255, 140, 0, 0.3);
            border-radius: 30px;
            background: rgba(255, 140, 0, 0.05);
        }

        .icon-crown::before {
            content: '👑';
            font-size: 14px;
        }

        .main-headline {
            text-align: center;
            font-size: 58px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .headline-accent {
            color: #ff8c00;
            font-weight: 600;
        }

        .subtitle-section {
            text-align: center;
            font-size: 15px;
            color: #888;
            letter-spacing: 0.5px;
            margin-bottom: 80px;
            line-height: 1.6;
        }

        .dual-panel-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 100px;
            align-items: start;
        }

        .content-column {
            padding: 20px 0;
        }

        .performance-banner {
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .banner-highlight {
            color: #ff8c00;
            font-weight: 600;
        }

        .intro-statement {
            font-size: 14px;
            line-height: 1.9;
            color: #999;
            margin-bottom: 50px;
        }

        .feature-block {
            margin-bottom: 45px;
            padding: 25px;
            background: rgba(20, 20, 20, 0.6);
            border-radius: 10px;
            border-left: 3px solid #ff8c00;
            transition: all 0.4s ease;
          
            transform: translateX(-30px);
        }

        .feature-block.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-block:hover {
            background: rgba(30, 30, 30, 0.8);
            transform: translateX(10px);
        }

        .feature-header {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .feature-detail {
            font-size: 13px;
            line-height: 1.8;
            color: #aaa;
            margin-bottom: 20px;
        }

        .action-button {
            display: inline-block;
            font-size: 11px;
            color: #ff8c00;
            letter-spacing: 1px;
            padding: 10px 20px;
            border: 1px solid #ff8c00;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .action-button:hover {
            background: #ff8c00;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
        }

        .visual-column {
            position: relative;
        }

        .hero-visual {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .cockpit-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .hero-visual:hover .cockpit-image {
            transform: scale(1.05);
        }

        .spec-badges {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            display: flex;
            gap: 20px;
        }

        .spec-card {
            flex: 1;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 140, 0, 0.3);
            transition: all 0.3s ease;
        }

        .spec-card:hover {
            border-color: #ff8c00;
            box-shadow: 0 5px 25px rgba(255, 140, 0, 0.3);
            transform: translateY(-5px);
        }

        .spec-number {
            font-size: 24px;
            font-weight: 700;
            color: #ff8c00;
            margin-bottom: 5px;
        }

        .spec-label {
            font-size: 11px;
            color: #888;
            letter-spacing: 1px;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .tech-module {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
            padding: 35px 25px;
            border-radius: 12px;
            border: 1px solid rgba(255, 140, 0, 0.1);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            transform: translateY(30px);
        }

        .tech-module.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tech-module::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tech-module:hover::before {
            opacity: 1;
        }

        .tech-module:hover {
            border-color: rgba(255, 140, 0, 0.5);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
        }

        .tech-icon-wrapper {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: rgba(255, 140, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .tech-module:hover .tech-icon-wrapper {
            background: rgba(255, 140, 0, 0.2);
            transform: rotateY(360deg);
        }

        .tech-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .tech-features-list {
            list-style: none;
            text-align: left;
        }

        .tech-item {
            font-size: 12px;
            color: #aaa;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            line-height: 1.6;
        }

        .tech-item::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #ff8c00;
            font-size: 10px;
        }

        @media (max-width: 1024px) {
            .dual-panel-layout {
                grid-template-columns: 1fr;
            }

            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .spec-badges {
                position: static;
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .main-headline {
                font-size: 36px;
            }

            .tech-grid {
                grid-template-columns: 1fr;
            }

            .supreme-wrapper {
                padding: 40px 20px;
            }

            .spec-badges {
                flex-direction: column;
            }
        }

        .animate-fade {
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        .glow-effect {
            position: relative;
        }

        .glow-effect::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.3), transparent);
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .glow-effect:hover::after {
            opacity: 1;
        }