/* =========================================
           Standard CSS & Thematic Variables
           ========================================= */
        :root {
            --brand-50: #f0fdf4; --brand-100: #dcfce7; --brand-200: #bbf7d0; --brand-400: #4ade80;
            --brand-500: #22c55e; --brand-600: #16a34a; --brand-700: #15803d; --brand-900: #14532d;
            --earth-100: #fef3c7; --earth-500: #f59e0b; --earth-700: #78350f; --earth-800: #451a03; 
            --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0; --slate-300: #cbd5e1;
            --slate-400: #94a3b8; --slate-500: #64748b; --slate-600: #475569; --slate-700: #334155;
            --slate-800: #1e293b; --slate-900: #0f172a;
            --blue-500: #3b82f6; --blue-700: #1d4ed8;
            
            --font-sans: 'Inter', sans-serif;
            --font-heading: 'Outfit', sans-serif;
            
            --shadow-md: 0 4px 6px -1px rgba(69, 26, 3, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(69, 26, 3, 0.1);
            --shadow-card: 0 15px 40px -10px rgba(69, 26, 3, 0.15);
            --shadow-glow: 0 0 30px rgba(34, 197, 94, 0.4); 
            
            --organic-radius-1: 30px 10px 30px 10px;
            --organic-radius-2: 10px 30px 10px 30px;
        }

        /* Contextual Seasonality Variable Overrides */
        :root[data-season="autumn"] {
            --brand-100: #ffedd5; --brand-200: #fed7aa; --brand-400: #fb923c; 
            --brand-500: #f59e0b; --brand-600: #d97706; --brand-700: #b45309; --brand-900: #78350f;
            --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.4); 
        }
        :root[data-season="winter"] {
            --brand-100: #e0f2fe; --brand-200: #bae6fd; --brand-400: #38bdf8; 
            --brand-500: #0ea5e9; --brand-600: #0284c7; --brand-700: #0369a1; --brand-900: #0c4a6e;
            --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.4); 
        }
        
        /* Tractor Headlights Dark Mode Theme */
        .dark-theme {
            --slate-50: #0f172a; --slate-100: #1e293b; --slate-200: #334155; --slate-300: #475569;
            --slate-400: #64748b; --slate-500: #94a3b8; --slate-600: #cbd5e1; --slate-700: #e2e8f0;
            --slate-800: #f1f5f9; --slate-900: #f8fafc;
            --shadow-card: 0 15px 40px -10px rgba(0, 0, 0, 0.5);
            background-color: var(--slate-50);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        *:focus-visible { outline: 3px solid var(--brand-600); outline-offset: 3px; border-radius: 4px; }
        body { font-family: var(--font-sans); color: var(--slate-800); background-color: var(--slate-50); line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; transition: background-color 0.4s ease; }

        ::-webkit-scrollbar { width: 12px; }
        ::-webkit-scrollbar-track { background: var(--earth-800); }
        ::-webkit-scrollbar-thumb { background: var(--brand-600); border: 2px solid var(--earth-800); border-radius: 10px; background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(0,0,0,0.15) 4px, rgba(0,0,0,0.15) 8px); }
        ::-webkit-scrollbar-thumb:hover { background: var(--brand-500); }

        .texture-bg { background-color: var(--slate-50); background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2315803d' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='2'/%3E%3Ccircle cx='15' cy='15' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
        .tractor-tread-bg { background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 15 L30 5 L45 15 L45 25 L30 15 L15 25 Z' fill='%231e293b' fill-opacity='0.03'/%3E%3Cpath d='M15 45 L30 35 L45 45 L45 55 L30 45 L15 55 Z' fill='%231e293b' fill-opacity='0.03'/%3E%3C/svg%3E"); }

        a { text-decoration: none; color: inherit; transition: all 0.2s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: white; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--slate-900); }
        .text-brand { color: var(--brand-400); }
        .text-brand-dark { color: var(--brand-700); }
        .dark-theme .text-brand-dark { color: var(--brand-400); }
        .text-white { color: white; }

        .engraved-text { color: var(--slate-300); text-shadow: -1px -1px 2px rgba(255, 255, 255, 0.1), 1px  1px 2px rgba(0, 0, 0, 0.2); }
        .engraved-text-dark { color: var(--slate-600); text-shadow: 1px  1px 1px rgba(255, 255, 255, 0.2), -1px -1px 1px rgba(0, 0, 0, 0.15); }
        .dark-theme .engraved-text-dark { color: white; text-shadow: 1px 1px 2px rgba(0,0,0,0.8); }

        .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }
        .section-padding { padding: 120px 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
        .section-padding-auto { padding: 80px 0; min-height: auto; }
        
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; font-weight: 600; border: none; border-radius: 20px 8px 20px 8px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-family: var(--font-sans); text-align: center; }
        .btn-primary { background: var(--brand-600); color: white; box-shadow: var(--shadow-md); position: relative; overflow: visible; }
        .btn-primary:hover { background: var(--brand-500); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
        .btn-primary:active { transform: translateY(1px); box-shadow: inset 0 4px 8px rgba(0,0,0,0.4); }
        .btn-secondary { background: var(--slate-800); color: white; border-radius: 8px; padding: 0.5rem 1.2rem; font-size: 0.9rem;}
        .btn-secondary:hover { background: var(--brand-600); transform: translateY(-2px); }
        .dark-theme .btn-secondary { background: #334155; color: white; }
        .dark-theme .btn-secondary:hover { background: var(--brand-600); }

        /* Form Exhaust Puff Animation */
        .exhaust-puff {
            position: absolute; top: 0px; left: 50%; width: 18px; height: 18px; 
            background: rgba(30, 41, 59, 0.8); border-radius: 50%; pointer-events: none; 
            z-index: 20; opacity: 0; animation: puffAnim 1.2s ease-out forwards;
        }
        .dark-theme .exhaust-puff { background: rgba(226, 232, 240, 0.8); }
        @keyframes puffAnim {
            0% { transform: scale(0.5) translateY(0) translateX(0); opacity: 0.8; }
            100% { transform: scale(2.5) translateY(-50px) translateX(-30px); opacity: 0; }
        }

        /* HEADER */
        #header { position: fixed; top: 0; width: 100%; z-index: 100; height: 80px; background: rgba(255, 255, 255, 0); transition: all 0.4s ease; }
        #header.scrolled { background: rgba(255, 255, 255, 0.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(226, 232, 240, 0.5); box-shadow: var(--shadow-md); }
        .dark-theme #header.scrolled { background: rgba(15, 23, 42, 0.95); border-bottom-color: rgba(255,255,255,0.05); }
        
        .nav-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
        .logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: white; transition: color 0.3s; position: relative; }
        #header.scrolled .logo { color: var(--slate-900); }
        .dark-theme #header.scrolled .logo { color: white; }
        
        .logo-box { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; }
        .logo-box img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3)); }
        
        /* Softened Engine Idle Keyframes */
        @keyframes engineIdle {
            0% { transform: translate(0, 0); }
            25% { transform: translate(-0.5px, 0.5px); }
            50% { transform: translate(0.5px, -0.5px); }
            75% { transform: translate(-0.5px, -0.5px); }
            100% { transform: translate(0, 0); }
        }
        .logo:hover .logo-box { animation: engineIdle 0.12s linear infinite; }
        
        .desktop-nav { display: flex; align-items: center; gap: 2rem; }
        .desktop-nav a { font-weight: 600; color: white; position: relative; padding: 0.5rem 0; }
        #header.scrolled .desktop-nav a { color: var(--slate-600); }
        .dark-theme #header.scrolled .desktop-nav a { color: white; }
        .desktop-nav a:hover, #header.scrolled .desktop-nav a:hover { color: var(--brand-500); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--brand-500); transition: width 0.3s ease; border-radius: 2px; }
        .desktop-nav a:hover::after { width: 100%; }

        /* HEADLIGHT DARK MODE TOGGLE */
        .dm-toggle { background: none; border: none; cursor: pointer; padding: 0.5rem; display: flex; align-items: center; justify-content: center; position: relative; border-radius: 8px; transition: background 0.3s; margin-left: 1rem; color: white; }
        #header.scrolled .dm-toggle { color: var(--slate-800); }
        .dark-theme #header.scrolled .dm-toggle { color: white; }
        .dm-toggle:hover { background: rgba(255,255,255,0.1); }
        .dark-theme .dm-toggle:hover { background: rgba(255,255,255,0.05); }
        
        .tractor-light-icon { width: 28px; height: 28px; transition: transform 0.3s ease; display: block; object-fit: contain; position: relative; z-index: 2; }
        .dm-toggle:hover .tractor-light-icon { transform: scale(1.1); }
        .dark-theme .tractor-light-icon { filter: drop-shadow(0 0 6px rgba(253, 224, 71, 0.8)); }

        .headlight-beam {
            position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.5);
            width: 45px; height: 45px; border-radius: 50%;
            background: radial-gradient(circle, rgba(253, 224, 71, 0.95) 0%, rgba(253, 224, 71, 0.3) 40%, transparent 70%);
            opacity: 0; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease; pointer-events: none;
            z-index: 1;
        }
        .dark-theme .headlight-beam { transform: translate(-50%, -50%) scale(2); opacity: 1; }

        .mobile-actions { display: none; }
        .desktop-dm { display: flex; }

        .mobile-menu-btn { background: none; border: none; cursor: pointer; color: white; padding: 0.5rem; }
        #header.scrolled .mobile-menu-btn { color: var(--slate-800); }
        .dark-theme #header.scrolled .mobile-menu-btn { color: white; }
        
        .mobile-nav-wrapper { position: fixed; top: 80px; left: 0; width: 100%; background: white; border-bottom: 2px solid var(--brand-500); transform: translateY(-150%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 99; box-shadow: var(--shadow-lg); }
        .dark-theme .mobile-nav-wrapper { background: #0f172a; border-bottom: 2px solid var(--brand-500); }
        .mobile-nav-wrapper.active { transform: translateY(0); }
        .mobile-nav-list { display: flex; flex-direction: column; padding: 2rem; gap: 1.5rem; }
        .mobile-nav-list a { font-size: 1.25rem; font-weight: 600; color: var(--slate-800); display: block; border-left: 4px solid transparent; padding-left: 1rem; transition: all 0.2s; }
        .dark-theme .mobile-nav-list a { color: white; }
        .mobile-nav-list a:hover { color: var(--brand-600); border-left-color: var(--brand-600); }

        /* TIRE TREAD SCROLL TRACKER */
        #scroll-tracker-container { position: fixed; top: 0; left: 0; width: 100%; height: 5px; z-index: 1000; pointer-events: none; }
        #scroll-dirt-trail { 
            position: absolute; top: 0; left: 0; height: 100%; width: 0%; 
            background-color: var(--earth-500); 
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6L6 0L12 6M0 12L6 6L12 12' stroke='rgba(0,0,0,0.15)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
            box-shadow: 0 0 10px var(--earth-500); border-radius: 0 4px 4px 0; 
        }
        #scroll-tractor { position: absolute; top: -12px; left: 0%; transform: translateX(-100%); will-change: left; }
        #scroll-tractor img { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3)); }

        /* PARALLAX DIGGING WATERMARK */
        .parallax-watermark {
            position: fixed; top: 20%; right: -15%; width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
            opacity: 0.03; z-index: 0; pointer-events: none; will-change: transform;
        }
        .dark-theme .parallax-watermark { opacity: 0.05; }
        .parallax-watermark img { width: 100%; height: 100%; object-fit: contain; }

        /* SCROLL ANIMATION CLASSES */
        .animate-up, .animate-right, .animate-scale, .deal-wrapper { will-change: transform, opacity; }
        
        .delay-100 { transition-delay: 100ms; --anim-delay: 100ms; } 
        .delay-150 { transition-delay: 150ms; --anim-delay: 150ms; }
        .delay-200 { transition-delay: 200ms; --anim-delay: 200ms; } 
        .delay-300 { transition-delay: 300ms; --anim-delay: 300ms; }
        .delay-400 { transition-delay: 400ms; --anim-delay: 400ms; } 
        .delay-450 { transition-delay: 450ms; --anim-delay: 450ms; }
        .delay-500 { transition-delay: 500ms; --anim-delay: 500ms; } 
        .delay-600 { transition-delay: 600ms; --anim-delay: 600ms; }

        .animate-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .animate-right { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .animate-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .is-visible { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }

        /* HERO */
        .hero { position: relative; display: flex; align-items: center; justify-content: center; text-align: left; overflow: hidden; min-height: 100vh; padding-top: 100px; padding-bottom: 120px; touch-action: none; }
        .hero-bg { position: absolute; inset: -5%; z-index: 0; width: 110%; height: 110%; background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.8) 100%), url('assets1/herobackground.jpeg') center/cover no-repeat; will-change: transform; }
        
        .hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: auto; }
        .hero-content { width: 100%; min-height: 65vh; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 2; pointer-events: none; }
        .hero-content h1, .hero-content p, .hero-badge { pointer-events: none; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }
        .hero-content .btn { pointer-events: auto; } 
        
        .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; background: rgba(22, 163, 74, 0.4); color: white; border: 1px solid rgba(74, 222, 128, 0.5); font-size: 0.875rem; font-weight: 600; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); margin-top: 2rem; }
        .dot-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-400); animation: pulse 2s infinite; }
        .hero-bottom { max-width: 750px; margin-bottom: 2rem; }
        .hero p { color: #f1f5f9; font-size: 1.125rem; margin: 1.5rem 0 2.5rem; border-left: 4px solid var(--brand-500); padding-left: 1rem; font-weight: 500; }
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } }
        .terrain-divider { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 5; pointer-events: none;}
        .terrain-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 100px; }
        .terrain-divider .shape-fill { fill: var(--slate-50); transition: fill 0.4s ease; }

        /* WHO WE ARE */
        .wwa-section { overflow: hidden; position: relative; z-index: 10; padding-bottom: 40px; min-height: auto;}
        .wwa-block { display: flex; align-items: center; gap: 4rem; position: relative; margin-bottom: 6rem; }
        .wwa-block-reverse { flex-direction: row-reverse; margin-bottom: 0; }
        .wwa-text { flex: 1; background: white; padding: 3rem; border-radius: var(--organic-radius-1); box-shadow: var(--shadow-card); border: 1px solid var(--slate-100); }
        .dark-theme .wwa-text { background: var(--slate-100); border-color: var(--slate-200); }
        .wwa-media-wrapper { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
        .wwa-media { flex: 1; position: relative; width: 100%; min-height: 450px; border-radius: var(--organic-radius-2); box-shadow: var(--shadow-card); background: var(--slate-200); overflow: hidden; }
        
        .ba-slider { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; border-radius: inherit; }
        .ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s ease; }
        .ba-after { z-index: 1; }
        .ba-before { z-index: 2; -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
        .ba-handle-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; }
        .ba-handle-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 100px; height: 100vh; cursor: ew-resize; }
        .ba-handle-slider::-moz-range-thumb { appearance: none; width: 100px; height: 100vh; cursor: ew-resize; background: transparent; border: none; }
        .ba-visual-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: white; z-index: 2; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 15px rgba(0,0,0,0.5); }
        .ba-visual-handle::after { content: '↔'; display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: var(--brand-600); color: white; border-radius: 50%; border: 3px solid white; font-weight: bold; font-size: 20px; }
        .ba-label { position: absolute; bottom: 1.5rem; padding: 0.5rem 1rem; border-radius: 8px; font-weight: 700; font-size: 0.875rem; color: white; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); z-index: 4; text-transform: uppercase; }
        .label-before { left: 1.5rem; background: rgba(15, 23, 42, 0.7); }
        .label-after { right: 1.5rem; background: rgba(22, 163, 74, 0.9); }
        .ba-controls { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 1rem; background: white; border-radius: 12px; box-shadow: var(--shadow-md); border: 1px solid var(--slate-200); }
        .dark-theme .ba-controls { background: var(--slate-100); border-color: var(--slate-200); }
        .ba-indicator { font-size: 0.85rem; font-weight: 700; color: var(--slate-500); }

        /* PROCESS TIMELINE */
        .process-section { background-color: var(--slate-100); position: relative; z-index: 10; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); transition: background-color 0.4s ease; }
        .timeline-container { display: flex; flex-direction: column; gap: 2rem; max-width: 1000px; margin: 3rem auto 0 auto; position: relative; }
        .timeline-container::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 4px; background: var(--brand-200); border-radius: 4px; }
        .timeline-item { display: flex; gap: 1.5rem; position: relative; z-index: 1; }
        .timeline-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--brand-600); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-heading); box-shadow: 0 0 0 6px var(--slate-100), var(--shadow-md); flex-shrink: 0; font-size: 1.25rem; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .dark-theme .timeline-icon { box-shadow: 0 0 0 6px var(--slate-200), var(--shadow-md); }
        .timeline-item:hover .timeline-icon { transform: scale(1.1) rotate(5deg); background: var(--brand-500); }
        .timeline-content { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: var(--shadow-md); border: 1px solid var(--slate-200); flex: 1; transition: transform 0.3s ease; }
        .dark-theme .timeline-content { background: var(--slate-50); }
        .timeline-item:hover .timeline-content { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
        .timeline-content h4 { color: var(--slate-900); font-size: 1.25rem; margin-bottom: 0.5rem; }
        .timeline-content p { color: var(--slate-600); font-size: 0.95rem; line-height: 1.5; }

        /* =========================================
           TRUST SECTION - DUAL SYNCHRONIZED WHEELS
           ========================================= */
        .trust-section { background-color: var(--slate-50); position: relative; z-index: 10; padding: 100px 0 120px; overflow: hidden; transition: background-color 0.4s ease; }
        
        .dual-wheels-container {
            display: flex; justify-content: center; gap: 2.5rem; width: 100%; max-width: 1200px;
            margin: 3rem auto 0; height: 500px; perspective: 1200px; transform-style: preserve-3d; 
            touch-action: pan-y; cursor: grab; user-select: none;
        }
        .dual-wheels-container:active { cursor: grabbing; }

        .gallery-wheel { flex: 1; position: relative; transform-style: preserve-3d; width: 50%; height: 100%; }
        .wheel-item {
            position: absolute; top: 50%; left: 50%; width: 100%; max-width: 460px; height: 345px;
            margin-top: -172.5px; margin-left: -230px;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s, z-index 0s;
            transform-style: preserve-3d;
        }

        .wheel-gallery-inner { width: 100%; height: 100%; border-radius: 12px; box-shadow: var(--shadow-card); overflow: hidden; border: 4px solid white; position: relative; background: var(--slate-200); }
        .dark-theme .wheel-gallery-inner { border-color: var(--slate-200); }
        .wheel-gallery-inner img { width: 100%; height: 100%; object-fit: cover; }
        
        .wheel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 2rem; opacity: 0; transition: opacity 0.3s; }
        .wheel-item.is-active .wheel-overlay { opacity: 1; }
        .wheel-overlay span { color: white; font-weight: 700; font-size: 1.25rem; letter-spacing: 0.5px; }
        .wheel-badge { position: absolute; top: 15px; left: 15px; background: var(--brand-600); color: white; font-size: 0.85rem; font-weight: bold; padding: 0.35rem 0.85rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; box-shadow: var(--shadow-md); }
        .after-wheel .wheel-badge { background: var(--slate-800); }
        .dark-theme .after-wheel .wheel-badge { color: var(--slate-50); }
        .carousel-controls { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 3rem; position: relative; z-index: 5; }

        /* =========================================
           TESTIMONIAL BANNER (Word on the Street)
           ========================================= */
        .testimonial-banner-section {
            background-color: #0f172a; color: white; padding: 5rem 24px; text-align: center;
            overflow: hidden; position: relative; z-index: 10;
        }
        .testimonial-banner-section::before {
            content: ''; position: absolute; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 0;
        }

        .banner-track { display: grid; grid-template-areas: "stack"; max-width: 900px; margin: 0 auto; position: relative; z-index: 2; min-height: 180px; align-items: center; }
        .banner-item { grid-area: stack; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none; }
        .banner-item.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

        .banner-item .quote-icon { color: var(--brand-400); opacity: 0.8; width: 48px; height: 48px; margin-bottom: 1.5rem; }
        .banner-item .testimonial-text { font-size: 1.35rem; color: #f1f5f9; font-style: italic; line-height: 1.6; margin-bottom: 2rem; font-weight: 300; }
        .banner-item .testimonial-author { font-weight: 800; font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.25rem; color: white; }
        .banner-item .testimonial-service { color: var(--brand-400); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

        .banner-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; position: relative; z-index: 2; }
        .banner-controls .btn-secondary { background: rgba(255,255,255,0.1); color: white; }
        .banner-controls .btn-secondary:hover { background: var(--brand-600); }


        /* =========================================
           THE STONE PATH JOURNEY (MASTER CONTAINER)
           ========================================= */
        .stone-path-journey {
            background-color: var(--slate-50);
            background-image: radial-gradient(ellipse at center, rgba(120, 53, 15, 0.04) 0%, transparent 60%);
            position: relative;
            z-index: 10;
            overflow: hidden;
            transition: background-color 0.4s ease;
        }
        .dark-theme .stone-path-journey {
            background-color: #0f172a;
            background-image: radial-gradient(ellipse at center, rgba(120, 53, 15, 0.1) 0%, transparent 60%);
        }

        .stone-path-journey::before, .stone-path-journey::after {
            content: ''; position: absolute; top: 0; bottom: 0; width: 25vw; pointer-events: none; z-index: 1;
        }
        .stone-path-journey::before { left: 0; background: linear-gradient(to right, rgba(34, 197, 94, 0.06) 0%, transparent 100%); }
        .stone-path-journey::after { right: 0; background: linear-gradient(to left, rgba(34, 197, 94, 0.06) 0%, transparent 100%); }

        .path-section { position: relative; z-index: 10; padding: 100px 0; background: transparent; }
        .path-section-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 10; }
        .path-section-header h2 { color: var(--slate-900); }
        .dark-theme .path-section-header h2 { color: white; }
        .path-section-header p { color: var(--slate-600); font-size: 1.1rem; }
        .dark-theme .path-section-header p { color: #cbd5e1; }

        /* 1. THE STARTING SLAB (WIZARD) */
        .wizard-card {
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            border-radius: 20px 30px 20px 30px;
            box-shadow: 
                inset 2px 5px 10px rgba(255,255,255,1), 
                inset -5px -5px 15px rgba(0,0,0,0.05), 
                0 10px 0 #cbd5e1, 
                0 25px 35px rgba(0,0,0,0.15);
            padding: 3rem; max-width: 800px; margin: 0 auto 5rem auto; text-align: center;
            border: none; position: relative; z-index: 20;
        }
        .dark-theme .wizard-card {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            box-shadow: inset 2px 5px 10px rgba(255,255,255,0.1), inset -5px -5px 15px rgba(0,0,0,0.5), 0 10px 0 #020617, 0 25px 35px rgba(0,0,0,0.5);
        }
        .wizard-step { display: none; opacity: 0; transition: opacity 0.4s ease; }
        .wizard-step.is-active { display: block; opacity: 1; animation: fadeIn 0.5s ease forwards; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        
        .wizard-title { font-size: 1.75rem; color: var(--slate-900); margin-bottom: 0.5rem; }
        .dark-theme .wizard-title { color: white; }
        .wizard-subtitle { color: var(--slate-500); margin-bottom: 2rem; font-size: 1rem; }
        .dark-theme .wizard-subtitle { color: #cbd5e1; }
        
        .diag-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
        .diag-options > :nth-child(3):last-child { grid-column: span 2; }

        .diag-btn { 
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            box-shadow: 0 4px 0 #e2e8f0, 0 8px 10px rgba(0,0,0,0.05);
            color: var(--slate-700); padding: 1.25rem 1rem; border-radius: 12px; cursor: pointer; transition: all 0.2s;
            font-weight: 600; font-family: var(--font-sans); font-size: 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; border: none;
        }
        .dark-theme .diag-btn {
            background: linear-gradient(145deg, #334155, #1e293b); box-shadow: 0 4px 0 #0f172a, 0 8px 10px rgba(0,0,0,0.3); color: white;
        }
        .diag-btn:hover, .diag-btn:focus-visible { 
            transform: translateY(2px); box-shadow: 0 2px 0 #cbd5e1, 0 4px 8px rgba(0,0,0,0.1); color: var(--brand-700); 
        }
        .dark-theme .diag-btn:hover { box-shadow: 0 2px 0 #020617, 0 4px 8px rgba(0,0,0,0.4); color: var(--brand-400); }
        
        .diag-btn:active { 
            transform: translateY(4px); box-shadow: 0 0 0 transparent, inset 0 2px 4px rgba(0,0,0,0.1); 
        }
        .dark-theme .diag-btn:active { box-shadow: 0 0 0 transparent, inset 0 2px 4px rgba(0,0,0,0.5); }
        .diag-icon { font-size: 1.5rem; opacity: 0.8; }

        /* 2. SERVICES GRID (Replaces the Winding Path) */
        .services-grid {
            display: grid;
            /* Updated to 280px minimum to prevent horizontal scrolling on extremely narrow devices */
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 5rem auto;
            padding: 2rem 0;
            position: relative;
            z-index: 10;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--slate-200);
            padding: 2.5rem 2rem;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .dark-theme .service-card {
            background: var(--slate-100);
            border-color: var(--slate-200);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-card);
            border-color: var(--brand-400);
        }

        /* Top Accent Line on Hover */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: var(--brand-500);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .service-card:hover::before { transform: scaleX(1); }

        .service-tag {
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.5rem;
            align-self: flex-start;
        }
        .tag-dry { background: var(--earth-100); color: var(--earth-700); }
        .dark-theme .tag-dry { background: rgba(245, 158, 11, 0.15); color: #fcd34d; }
        
        .tag-wet { background: #e0f2fe; color: var(--blue-700); }
        .dark-theme .tag-wet { background: rgba(56, 189, 248, 0.15); color: #7dd3fc; }

        .service-card h3 {
            font-size: 1.6rem;
            color: var(--slate-900);
            margin-bottom: 1rem;
            transition: color 0.3s;
        }
        .dark-theme .service-card h3 { color: white; }

        .service-card p {
            color: var(--slate-600);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            flex-grow: 1;
            font-weight: 500;
        }
        .dark-theme .service-card p { color: #cbd5e1; }

        .service-action {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--brand-600);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: auto;
            transition: all 0.3s;
        }
        .dark-theme .service-action { color: var(--brand-400); }
        .service-card:hover .service-action { gap: 0.8rem; color: var(--brand-500); }


        /* 3. THE FAQ SLABS */
        .faq-wrapper { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; position: relative; z-index: 4; }
        .faq-item { 
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            box-shadow: inset 2px 2px 5px rgba(255,255,255,1), 0 8px 0 #cbd5e1, 0 15px 20px rgba(0,0,0,0.1);
            border-radius: 16px; border: none; overflow: hidden; transition: transform 0.3s;
        }
        .dark-theme .faq-item {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            box-shadow: inset 2px 2px 5px rgba(255,255,255,0.05), 0 8px 0 #020617, 0 15px 20px rgba(0,0,0,0.4);
        }
        .faq-item:hover { transform: translateY(-3px); }

        .faq-question { width: 100%; text-align: left; padding: 1.5rem 2rem; background: transparent; border: none; font-size: 1.15rem; font-weight: 600; color: var(--slate-800); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-sans); transition: color 0.3s ease, background-color 0.3s ease; }
        .dark-theme .faq-question { color: white; }
        .faq-question:hover { color: var(--brand-700); background-color: rgba(0,0,0,0.02); }
        .dark-theme .faq-question:hover { color: var(--brand-400); background-color: rgba(255,255,255,0.02); }
        .faq-question[aria-expanded="true"] { color: var(--brand-700); border-bottom: 2px dashed var(--slate-200); }
        .dark-theme .faq-question[aria-expanded="true"] { color: var(--brand-400); border-bottom-color: rgba(255,255,255,0.1); }
        
        .faq-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--slate-100); color: var(--brand-600); font-size: 1.2rem; font-weight: 600; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1); }
        .dark-theme .faq-icon { background: rgba(0,0,0,0.3); color: var(--brand-400); }
        .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(135deg); background: var(--brand-100); color: var(--brand-700); }
        .dark-theme .faq-question[aria-expanded="true"] .faq-icon { background: rgba(34, 197, 94, 0.2); color: var(--brand-400); }
        
        .faq-answer-wrapper { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
        .faq-question[aria-expanded="true"] + .faq-answer-wrapper { grid-template-rows: 1fr; }
        .faq-answer-inner { overflow: hidden; }
        .faq-answer-text { padding: 1.5rem 2rem; color: var(--slate-600); line-height: 1.7; font-weight: 500; }
        .dark-theme .faq-answer-text { color: #cbd5e1; }

        /* 4. THE FINAL DESTINATION (CONTACT FORM + ANIMATED LOGO + WEATHER) */
        .contact-wrapper { 
            display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; 
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            padding: 3rem; border-radius: var(--organic-radius-1); 
            box-shadow: 
                inset 2px 5px 10px rgba(255,255,255,1), 
                inset -5px -5px 15px rgba(0,0,0,0.05), 
                0 15px 0 #cbd5e1,
                0 30px 40px rgba(0,0,0,0.15);
            border: none; position: relative; z-index: 3;
        }
        .dark-theme .contact-wrapper {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            box-shadow: inset 2px 5px 10px rgba(255,255,255,0.05), inset -5px -5px 15px rgba(0,0,0,0.5), 0 15px 0 #020617, 0 30px 40px rgba(0,0,0,0.6);
        }

        .contact-info-panel { background: #0f172a; color: white; padding: 2.5rem; border-radius: var(--organic-radius-2); position: relative; overflow: hidden; box-shadow: inset 0 5px 15px rgba(0,0,0,0.5); display: flex; flex-direction: column; justify-content: space-between; }
        .contact-info-panel::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 60%); z-index: 0; }
        
        /* CONTACT HEADER FLEX (LOGO IN TOP RIGHT) */
        .contact-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.25rem; position: relative; z-index: 1; }
        .contact-animated-logo { width: 75px; height: 75px; position: relative; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); }
        .contact-logo-spin { width: 55px; height: 55px; object-fit: contain; animation: logoFloat 3s ease-in-out infinite alternate; filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.6)); }
        
        @keyframes logoFloat {
            0% { transform: translateY(0) rotate(0deg) scale(1); }
            50% { transform: translateY(-4px) rotate(4deg) scale(1.08); }
            100% { transform: translateY(0) rotate(-4deg) scale(1); }
        }

        .contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; cursor: pointer; transition: transform 0.2s; position: relative; z-index: 1; }
        .contact-item:hover { transform: translateX(8px); }
        .contact-item:hover .contact-icon { background: var(--brand-600); transform: scale(1.1) rotate(5deg); }
        .contact-icon { width: 46px; height: 46px; background: rgba(0,0,0,0.4); border-radius: 12px 4px 12px 4px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        
        /* REAL-TIME 7-DAY WEATHER WIDGET (SCALED UP) */
        .weather-widget-container {
            margin-top: 2.5rem; padding: 1.5rem; background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px;
            -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); position: relative; z-index: 1;
        }
        .weather-widget-title { font-size: 1.1rem; font-weight: 700; color: var(--brand-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
        .weather-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; }
        
        .weather-day-card {
            background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px; padding: 0.75rem 0.4rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: space-between; transition: background 0.3s;
        }
        .weather-day-card:hover { background: rgba(34, 197, 94, 0.15); border-color: rgba(34, 197, 94, 0.4); }
        .weather-day-name { font-size: 0.9rem; font-weight: 700; color: #cbd5e1; text-transform: uppercase; }
        .weather-icon { font-size: 1.6rem; margin: 0.4rem 0; }
        .weather-temp { font-size: 1.05rem; font-weight: 700; color: white; }
        .weather-temp-low { font-size: 0.85rem; color: #94a3b8; font-weight: 500; }

        .form-group { margin-bottom: 1.5rem; position: relative; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--slate-700); }
        .dark-theme .form-group label { color: white; }
        
        .form-control { width: 100%; padding: 1rem; border: 2px solid var(--slate-300); border-radius: 12px 4px 12px 4px; background: white; font-family: var(--font-sans); transition: all 0.3s; font-size: 1rem; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); }
        .dark-theme .form-control { background: rgba(15, 23, 42, 0.6); border-color: rgba(255,255,255,0.1); color: white; }
        
        .form-control:focus { outline: none; border-color: var(--brand-500); background: white; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05), 0 4px 12px rgba(34,197,94,0.15); }
        .dark-theme .form-control:focus { background: rgba(15, 23, 42, 0.9); border-color: var(--brand-400); }
        .form-highlight { box-shadow: 0 0 0 4px var(--brand-200), 0 4px 12px rgba(34,197,94,0.2) !important; border-color: var(--brand-500) !important; background: white !important; }

        .zip-status { font-size: 0.85rem; font-weight: 600; margin-top: 0.5rem; display: block; transition: all 0.3s ease; }
        .zip-success { color: var(--brand-600); }
        .zip-warning { color: var(--earth-500); }

        /* MICRO-BANNER */
        .social-banner { background: var(--brand-600); background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px); padding: 1.5rem 24px; text-align: center; position: relative; z-index: 15; box-shadow: 0 0 20px rgba(0,0,0,0.15); }
        .social-banner-link { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; color: white; font-weight: 500; font-size: 1.1rem; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .social-banner-link:hover { transform: scale(1.02); color: var(--brand-50); }
        .social-banner-link svg { width: 28px; height: 28px; flex-shrink: 0; }

        /* FOOTER */
        footer { background: #0f172a; color: white; text-align: center; padding: 5rem 24px 3rem 24px; position: relative; z-index: 20; border-top: 4px solid var(--brand-700); overflow: hidden;}
        .footer-logo-box { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: transform 0.3s; cursor: crosshair;}
        .footer-logo-box img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
        .footer-logo-box:hover { transform: rotate(10deg) scale(1.1); }
        .footer-social-pill-wrapper { margin-top: 2.5rem; display: flex; justify-content: center; }
        .footer-social-pill { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 9999px; color: #cbd5e1; font-weight: 500; font-size: 0.95rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
        .footer-social-pill:hover { background: var(--brand-600); border-color: var(--brand-500); color: white; transform: translateY(-4px); box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3); }
        .footer-social-pill svg { width: 20px; height: 20px; }
        .footer-links { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.875rem; color: #94a3b8; flex-wrap: wrap; }
        .footer-links a:hover, .footer-links a:focus-visible { color: var(--brand-400); text-decoration: underline; }

        #easter-egg-tractor { position: fixed; bottom: 20px; left: -150px; z-index: 9999; width: 120px; transition: transform 3s linear; pointer-events: none; display: none; }
        .drive-animation { display: block !important; transform: translateX(120vw); }

        /* =========================================
           LEGAL MODALS (Privacy & Terms)
           ========================================= */
        .legal-modal { position: fixed; inset: 0; z-index: 9999; background: var(--slate-50); overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 100px 24px 4rem; }
        .dark-theme .legal-modal { background: #0f172a; }
        .legal-modal.is-open { opacity: 1; pointer-events: auto; }
        
        .modal-close-btn { position: fixed; top: 20px; right: 24px; background: var(--brand-600); color: white; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 2rem; cursor: pointer; z-index: 10000; box-shadow: var(--shadow-md); transition: background 0.3s; display: flex; align-items: center; justify-content: center; line-height: 1; }
        .modal-close-btn:hover { background: var(--brand-500); transform: scale(1.05); }
        
        .legal-wrapper-modal { max-width: 800px; margin: 0 auto; background: white; padding: 3rem; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--slate-200); position: relative; transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
        .legal-modal.is-open .legal-wrapper-modal { transform: translateY(0); }
        .dark-theme .legal-wrapper-modal { background: var(--slate-100); border-color: var(--slate-200); }
        
        .legal-wrapper-modal h1 { font-size: 2.5rem; color: var(--slate-900); margin-bottom: 0.5rem; }
        .dark-theme .legal-wrapper-modal h1 { color: white; }
        .legal-wrapper-modal h2 { font-size: 1.5rem; color: var(--slate-900); margin: 2.5rem 0 1rem; border-bottom: 2px solid var(--brand-100); padding-bottom: 0.5rem; }
        .dark-theme .legal-wrapper-modal h2 { color: white; border-bottom-color: rgba(34, 197, 94, 0.2); }
        .legal-wrapper-modal p, .legal-wrapper-modal ul { color: var(--slate-600); margin-bottom: 1.25rem; font-size: 1.05rem; }
        .dark-theme .legal-wrapper-modal p, .dark-theme .legal-wrapper-modal ul { color: #cbd5e1; }
        .legal-wrapper-modal ul { padding-left: 1.5rem; }
        .legal-wrapper-modal li { margin-bottom: 0.5rem; list-style-type: square; }
        .updated-date { color: var(--slate-500); margin-bottom: 3rem; font-size: 0.95rem; }
        
        @media (max-width: 768px) {
            .legal-wrapper-modal { padding: 1.5rem; }
            .legal-wrapper-modal h1 { font-size: 2rem; }
            .modal-close-btn { top: 15px; right: 15px; width: 36px; height: 36px; font-size: 1.5rem; }
        }

        /* =========================================
           REFACTORED MEDIA QUERIES
           ========================================= */
        @media (min-width: 768px) {
            .timeline-container { flex-direction: row; }
            .timeline-container::before { left: 0; top: 24px; right: 0; bottom: auto; height: 4px; width: 100%; }
            .timeline-item { flex-direction: column; gap: 1rem; flex: 1; }
        }

        @media (max-width: 1023px) and (min-width: 769px) {
            .wwa-block, .wwa-block-reverse { flex-direction: column; gap: 3rem; }
            .wwa-media { min-height: 400px; }
            .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
            .contact-info-panel { padding: 2rem; }
        }

        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .desktop-dm { display: none; } 
            .mobile-actions { display: flex; align-items: center; } 
            
            .hero { text-align: center; padding-top: 120px; }
            .hero-content { align-items: center; }
            .hero-top { justify-content: center; }
            .hero p { border-left: none; border-bottom: 4px solid var(--brand-500); padding-left: 0; padding-bottom: 1.5rem; }
            h1 { font-size: 2.8rem; }
            .hero-bg { background-attachment: scroll; }

            .wwa-block, .wwa-block-reverse { flex-direction: column; gap: 3rem; margin-bottom: 3rem; }
            .wwa-media { min-height: 400px; }
            
            .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; border-radius: var(--organic-radius-2); }
            .contact-info-panel { padding: 1.5rem; }

            .social-banner-link { flex-direction: column; gap: 0.5rem; font-size: 1rem; }

            .dual-wheels-container { height: 350px; gap: 1rem; margin-top: 2rem; }
            .wheel-item { width: 180px; max-width: 45vw; height: 135px; margin-top: -67.5px; margin-left: -90px; }
            .wheel-overlay { padding: 0.75rem; }
            .wheel-overlay span { font-size: 0.95rem; }
            .wheel-badge { font-size: 0.7rem; padding: 0.25rem 0.6rem; top: 5px; left: 5px;}

            .testimonial-banner-section { padding: 3rem 16px; }
            .banner-item .testimonial-text { font-size: 1.1rem; }
            .banner-item .testimonial-author { font-size: 1.25rem; }
            
            .faq-question { padding: 1.25rem 1.5rem; font-size: 1.05rem; }
            .faq-answer-text { padding: 1.25rem 1.5rem; }
            
            .diag-options { grid-template-columns: 1fr; }
            .diag-options > :nth-child(3):last-child { grid-column: auto; }
            .wizard-card { padding: 1.5rem; }
            
            .weather-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
        }
        
        @media (max-width: 480px) {
            .wwa-media { min-height: 300px; }
            .ba-visual-handle::after { width: 30px; height: 30px; font-size: 14px; }
            .weather-grid { grid-template-columns: repeat(3, 1fr); }
        }