.elementor-kit-16{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-16 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<style>
        :root {
            --primary-orange: #ff6600; 
            --dark-bg: #0a0a0a;
            --light-text: #f0f0f0;
            --accent-gray: #1a1a1a;
            --overlay: rgba(0, 0, 0, 0.7);
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            /* Using the uploaded Tire Background */
            background: linear-gradient(var(--overlay), var(--overlay)), 
                        url('Tire Background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 20px;
        }

        .hero img.logo {
            max-width: 450px;
            width: 85%;
            margin-bottom: 30px;
            /* Subtle glow to make the logo pop against the dark background */
            filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.4));
        }

        .hero h1 {
            font-size: 4.5rem;
            margin: 0;
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.6rem;
            font-weight: 300;
            color: var(--primary-orange);
            margin-top: 10px;
            font-style: italic;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 3px;
        }

        /* Container & Titles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--primary-orange);
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        /* Systems Grid */
        .systems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .system-card {
            background: var(--accent-gray);
            padding: 40px;
            border-radius: 4px;
            border-top: 4px solid var(--primary-orange);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .system-card:hover {
            transform: translateY(-10px);
            background: #252525;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .system-card h3 {
            color: var(--primary-orange);
            margin-top: 0;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .system-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .system-card li {
            padding: 8px 0;
            border-bottom: 1px solid #333;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }

        .system-card li::before {
            content: "▶";
            color: var(--primary-orange);
            font-size: 0.7rem;
            margin-right: 10px;
        }

        /* Narrative Blocks */
        .philosophy {
            background: #050505;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }

        .narrative-item {
            padding: 60px 0;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .narrative-item h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 20px;
        }

        .narrative-item p {
            font-size: 1.2rem;
            color: #aaa;
            line-height: 1.8;
        }

        .highlight-text {
            color: var(--primary-orange);
            font-weight: 600;
        }

        /* Call to Action */
        .cta-section {
            background: linear-gradient(45deg, #cc5200, var(--primary-orange));
            color: #000;
            text-align: center;
            padding: 100px 20px;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #000;
        }

        .cta-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            font-weight: 500;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 20px 50px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 0px; 
            transition: all 0.3s ease;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 2px;
            border: 2px solid #000;
        }

        .btn:hover {
            background: transparent;
            color: #000;
        }

        .phone-link {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: #000;
            text-decoration: none;
            font-weight: 700;
            border-bottom: 2px solid #000;
            transition: opacity 0.3s;
        }

        .phone-link:hover {
            opacity: 0.7;
        }

        footer {
            background: #000;
            text-align: center;
            padding: 50px;
            color: #444;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        footer a {
            color: #666;
            text-decoration: none;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.8rem; }
            .hero p { font-size: 1.2rem; }
            .section-title { font-size: 1.8rem; }
            .cta-section h2 { font-size: 2.2rem; }
            .phone-link { font-size: 1.2rem; }
        }
    </style>/* End custom CSS */