        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-dark: #0A0A0F;
            --bg-card: #12121A;
            --accent-red: #FF3B3B;
            --accent-green: #00FF88;
            --accent-blue: #00D4FF;
            --text-primary: #FFFFFF;
            --text-secondary: #8A8A9A;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            cursor: auto;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent-blue);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, border-color 0.3s ease;
            mix-blend-mode: difference;
        }

        .cursor.hovering {
            transform: scale(2);
            border-color: var(--accent-green);
        }

        .cursor-clicking {
            transform: scale(0.8);
        }

        /* Scanline Effect */
        .scanlines {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9000;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.03) 2px,
                rgba(0, 0, 0, 0.03) 4px
            );
        }

        /* Noise Overlay */
        .noise {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 8999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(255,255,255,0.1);
            z-index: 8000;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
            width: 0%;
            transition: width 0.1s ease;
        }

        /* Section Base */
        section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 24px;
            position: relative;
        }

        /* CLIENT FLOAT BUTTON */
        .client-float-btn {
            position: absolute;
            top: 40px;
            right: 40px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .client-float-btn:hover {
            background: rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.4);
            transform: translateY(-2px);
        }

        .float-btn-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
            50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
        }

        .float-btn-text {
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .float-btn-arrow {
            font-size: 1rem;
            color: var(--accent-blue);
            transition: transform 0.3s ease;
        }

        .client-float-btn:hover .float-btn-arrow {
            transform: translateX(4px);
        }

        /* INTRO - Glitch Title */
        .intro {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        /* Video Background */
        .intro-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .intro-video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        .intro-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(10, 10, 15, 0.7) 0%,
                rgba(10, 10, 15, 0.5) 50%,
                rgba(10, 10, 15, 0.9) 100%
            );
            z-index: 1;
        }

        .intro-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        @media (max-width: 600px) {
            .client-float-btn {
                top: 20px;
                right: 20px;
                padding: 10px 16px;
            }
            
            .float-btn-text {
                font-size: 0.7rem;
            }
        }

        /* Logo in intro */
        .intro-logo {
            margin-bottom: 40px;
            animation: fadeInDown 1s ease forwards;
        }

        .intro-logo img {
            height: 100px;
            max-width: 320px;
            object-fit: contain;
            opacity: 0.95;
            transition: opacity 0.3s ease;
        }

        .intro-logo img:hover {
            opacity: 1;
        }

        .tagline {
            font-family: 'Space Mono', monospace;
            font-size: 1rem;
            color: var(--accent-blue);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 30px;
            animation: fadeInDown 1.2s ease forwards;
            opacity: 0;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glitch-container {
            text-align: center;
            position: relative;
        }

        .glitch {
            font-family: 'Space Mono', monospace;
            font-size: clamp(2rem, 6vw, 5rem);
            font-weight: 700;
            text-transform: uppercase;
            position: relative;
            color: var(--text-primary);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch::before {
            animation: glitch-1 2s infinite linear alternate-reverse;
            color: var(--accent-red);
            z-index: -1;
            clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
        }

        .glitch::after {
            animation: glitch-2 3s infinite linear alternate-reverse;
            color: var(--accent-blue);
            z-index: -2;
            clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
        }

        @keyframes glitch-1 {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(-3px, 3px); }
            40% { transform: translate(-3px, -3px); }
            60% { transform: translate(3px, 3px); }
            80% { transform: translate(3px, -3px); }
        }

        @keyframes glitch-2 {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(3px, -3px); }
            40% { transform: translate(3px, 3px); }
            60% { transform: translate(-3px, -3px); }
            80% { transform: translate(-3px, 3px); }
        }

        .scroll-hint {
            margin-top: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            opacity: 0.6;
        }

        .scroll-hint span {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }

        .scroll-arrow {
            width: 24px;
            height: 24px;
            border-right: 2px solid var(--text-secondary);
            border-bottom: 2px solid var(--text-secondary);
            transform: rotate(45deg);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translate(0, 0); }
            40% { transform: rotate(45deg) translate(5px, 5px); }
            60% { transform: rotate(45deg) translate(2px, 2px); }
        }

        /* CRISIS - The Problem */
        .crisis {
            background: linear-gradient(180deg, var(--bg-dark) 0%, #1A0A0A 100%);
            position: relative;
        }

        .crisis::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: linear-gradient(rgba(10, 10, 20, 0.75), rgba(10, 10, 20, 0.75)), url('../crisis-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            opacity: 0.1;
            z-index: 0;
        }

        .crisis-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            width: 100%;
            text-align: center;
        }

        .crisis-timer {
            font-family: 'Space Mono', monospace;
            font-size: clamp(4rem, 15vw, 12rem);
            font-weight: 700;
            color: var(--accent-red);
            text-shadow: 0 0 60px rgba(255, 59, 59, 0.5);
            line-height: 1;
            margin-bottom: 20px;
        }

        .crisis-label {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .crisis-context {
            background: var(--bg-card);
            border: 1px solid rgba(255, 59, 59, 0.3);
            border-radius: 16px;
            padding: 40px;
            text-align: left;
        }

        .crisis-context h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-red);
        }

        .crisis-context p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

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

        .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 59, 59, 0.2);
            padding: 8px 16px;
            border-radius: 100px;
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            color: var(--accent-red);
            margin-bottom: 30px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-red);
            border-radius: 50%;
            animation: pulse-red 1s infinite;
        }

        @keyframes pulse-red {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
            50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
        }

        /* MAP SECTION */
        .map-section {
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .paraguay-map {
            position: relative;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 1/1.4;
        }

        .map-svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 100px rgba(0, 212, 255, 0.3));
        }

        .vehicle-dot {
            position: absolute;
            width: 16px;
            height: 16px;
            background: var(--accent-green);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px var(--accent-green);
            transition: all 0.5s ease;
        }

        .vehicle-dot.alert {
            background: var(--accent-red);
            box-shadow: 0 0 30px var(--accent-red);
            animation: alert-pulse 0.5s infinite;
        }

        @keyframes alert-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.5); }
        }

        .city-label {
            position: absolute;
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .map-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--bg-card);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 12px;
            padding: 20px;
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
        }

        .map-info-row {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        .map-info-row:last-child {
            margin-bottom: 0;
        }

        .map-info-row .value {
            color: var(--accent-green);
            font-weight: 700;
        }

        .map-info-row .value.danger {
            color: var(--accent-red);
        }

        /* STATS FALLING */
        .stats-falling {
            background: linear-gradient(180deg, #1A0A0A 0%, var(--bg-dark) 100%);
        }

        .falling-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            width: 100%;
        }

        .falling-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transform: translateY(100px);
            opacity: 0;
        }

        .falling-card.visible {
            animation: fall-in 0.8s ease forwards;
        }

        @keyframes fall-in {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .falling-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-red), transparent);
        }

        .falling-card .icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .falling-card .number {
            font-family: 'Space Mono', monospace;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-red);
            margin-bottom: 10px;
        }

        .falling-card .label {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        /* TESTIMONIAL REEL */
        .testimonial-reel {
            background: var(--bg-dark);
            position: relative;
        }

        .reel-container {
            max-width: 800px;
            width: 100%;
        }

        .reel-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 50px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .reel-card::before {
            content: '"';
            font-family: Georgia, serif;
            font-size: 10rem;
            color: var(--accent-blue);
            opacity: 0.1;
            position: absolute;
            top: -20px;
            left: 20px;
            line-height: 1;
        }

        .reel-quote {
            font-size: 1.4rem;
            line-height: 1.8;
            color: var(--text-primary);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .reel-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .reel-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .reel-author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .reel-author-info span {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .reel-nav {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .reel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reel-dot.active {
            background: var(--accent-blue);
            transform: scale(1.2);
        }

        /* SOLUTION TRANSITION */
        .solution {
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0A1A1A 100%);
            text-align: center;
        }

        .solution-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid rgba(0, 255, 136, 0.3);
            padding: 12px 24px;
            border-radius: 100px;
            margin-bottom: 40px;
        }

        .solution-badge .check {
            width: 24px;
            height: 24px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-dark);
            font-weight: 700;
        }

        .solution h2 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .solution p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        /* DASHBOARD PREVIEW */
        .dashboard-preview {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(0, 255, 136, 0.2);
            box-shadow: 0 0 100px rgba(0, 255, 136, 0.1);
            max-width: 900px;
            width: 100%;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dashboard-title {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .dashboard-status {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-green);
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .dash-stat {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .dash-stat-value {
            font-family: 'Space Mono', monospace;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-green);
            margin-bottom: 5px;
        }

        .dash-stat-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .dashboard-vehicles {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
        }

        .vehicle-card {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 15px 10px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .vehicle-card:hover {
            border-color: var(--accent-green);
            transform: translateY(-2px);
        }

        .vehicle-card.safe {
            border-left: 3px solid var(--accent-green);
        }

        .vehicle-card.warning {
            border-left: 3px solid #FFD600;
        }

        .vehicle-card.danger {
            border-left: 3px solid var(--accent-red);
        }

        .vehicle-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .vehicle-name {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }

        .vehicle-speed {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent-green);
        }

        .vehicle-card.warning .vehicle-speed {
            color: #FFD600;
        }

        .vehicle-card.danger .vehicle-speed {
            color: var(--accent-red);
        }

        /* SERVICES GRID */
        .services {
            background: linear-gradient(180deg, #0A1A1A 0%, var(--bg-dark) 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 1000px;
            width: 100%;
        }

        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            gap: 24px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .service-card:hover {
            border-color: var(--accent-blue);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .service-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .service-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .service-tag {
            display: inline-block;
            margin-top: 15px;
            padding: 6px 14px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 100px;
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--accent-blue);
        }

        /* PROMO BANNER */
        .promo-banner {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            border-bottom: 1px solid rgba(0, 255, 136, 0.2);
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .promo-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300D4FF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .promo-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .promo-badge {
            display: inline-block;
            background: rgba(0, 212, 255, 0.15);
            border: 1px solid rgba(0, 212, 255, 0.3);
            padding: 8px 20px;
            border-radius: 100px;
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            color: var(--accent-blue);
        }

        .promo-banner h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .promo-banner p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .promo-banner strong {
            color: var(--accent-green);
            font-weight: 700;
        }

        .promo-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--accent-green), #00b868);
            color: var(--bg-dark);
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .promo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
        }

        /* FOOTER TAGLINE */
        .footer-tagline {
            background: var(--bg-dark);
            text-align: center;
            padding: 40px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-tagline p {
            font-family: 'Space Mono', monospace;
            font-size: 1.1rem;
            color: var(--accent-blue);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* SOCIAL FOOTER */
        .social-footer {
            background: #08080C;
            padding: 60px 24px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .social-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .social-section h4,
        .location-section h4,
        .contact-section h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent-blue);
            border-color: var(--accent-blue);
            color: white;
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
        }

        .location-cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .location-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .location-card:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: rgba(0, 212, 255, 0.3);
            transform: translateX(5px);
        }

        .location-icon {
            font-size: 1.2rem;
        }

        .location-info {
            display: flex;
            flex-direction: column;
        }

        .location-info strong {
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .location-info span {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .contact-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .contact-item:hover {
            color: var(--accent-blue);
        }

        .contact-icon {
            font-size: 1.1rem;
        }

        .footer-bottom {
            max-width: 1000px;
            margin: 0 auto;
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            opacity: 0.6;
        }

        @media (max-width: 768px) {
            .social-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /* FINAL CTA */
        .final-cta {
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0A0A0F 100%);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 50px;
        }

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

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent-green);
            color: var(--bg-dark);
        }

        .btn-primary:hover {
            background: #00E07A;
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            border-color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .cta-trust {
            margin-top: 40px;
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .trust-item .icon {
            color: var(--accent-green);
        }

        /* WHATSAPP FLOAT */
        .whatsapp-fixed {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 7000;
            width: 64px;
            height: 64px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-fixed:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-fixed svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* COUNTER ANIMATION */
        .counter {
            display: inline-block;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .falling-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .cta-buttons {
                flex-direction: column;
            }

            .cursor {
                display: none;
            }
        }

        /* Particles */
        .particles {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-blue);
            border-radius: 50%;
            opacity: 0.3;
            animation: float-particle 20s infinite linear;
        }

        @keyframes float-particle {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        /* Section Labels */
        .section-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--text-secondary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--text-secondary);
        }

        /* Comparison */
        .comparison {
            background: var(--bg-dark);
            position: relative;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1000px;
            width: 100%;
        }

        .comparison-col {
            padding: 40px;
            border-radius: 20px;
        }

        .comparison-col.bad {
            background: linear-gradient(135deg, rgba(255, 59, 59, 0.1), rgba(255, 59, 59, 0.02));
            border: 1px solid rgba(255, 59, 59, 0.2);
        }

        .comparison-col.good {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.02));
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .comparison-col h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .comparison-col.bad h3 {
            color: var(--accent-red);
        }

        .comparison-col.good h3 {
            color: var(--accent-green);
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        .comparison-col.bad .comparison-list li .icon {
            color: var(--accent-red);
        }

        .comparison-col.good .comparison-list li .icon {
            color: var(--accent-green);
        }

        /* Calculator */
        .calculator {
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0A1A1A 100%);
        }

        .calc-container {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 50px;
            max-width: 700px;
            width: 100%;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .calc-container h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .calc-container > p {
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .calc-row {
            margin-bottom: 30px;
        }

        .calc-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .calc-label span:last-child {
            font-family: 'Space Mono', monospace;
            color: var(--accent-blue);
        }

        .calc-slider {
            width: 100%;
            height: 8px;
            -webkit-appearance: none;
            appearance: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            outline: none;
        }

        .calc-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            background: var(--accent-blue);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .calc-result {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            margin-top: 40px;
        }

        .calc-result-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .calc-result-value {
            font-family: 'Space Mono', monospace;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-red);
        }

        .calc-result-note {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 10px;
        }

        /* Final Stats */
        .final-stats {
            background: var(--bg-dark);
            position: relative;
        }

        .stats-row {
            display: flex;
            gap: 80px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .stat-big {
            text-align: center;
        }

        .stat-big .number {
            font-family: 'Space Mono', monospace;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-big .label {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 10px;
        }


/* Accessibility and deploy hardening */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 10001;
    background: #FFFFFF;
    color: #000000;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
}

.hero-subtitle {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 1.2rem;
}

.intro-video-bg {
    background-image: linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.5) 50%, rgba(10, 10, 15, 0.9) 100%), url('../hero-poster.jpg');
    background-size: cover;
    background-position: center;
}

.section-label--center {
    justify-content: center;
}

.section-label--mb-30 { margin-bottom: 30px; }
.section-label--mb-50 { margin-bottom: 50px; }
.section-label--mb-60 { margin-bottom: 60px; }

.vehicle-dot--1 { top: 42%; left: 48%; }
.vehicle-dot--2 { top: 38%; left: 52%; }
.vehicle-dot--3 { top: 45%; left: 45%; }
.vehicle-dot--4 { top: 35%; left: 55%; }
.vehicle-dot--5 { top: 50%; left: 50%; }
.city-label--cde { top: 30%; left: 70%; }
.city-label--enc { top: 65%; left: 15%; }

.reel-dot {
    border: 0;
    padding: 0;
}

.calc-slider:focus-visible,
.reel-dot:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 3px;
}

.footer-logo-wrap {
    margin-bottom: 30px;
}

.footer-logo {
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
    .intro-video-bg video {
        display: none;
    }
}

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

    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

    .cursor,
    .particles,
    .scanlines,
    .noise,
    .progress-container {
        display: none !important;
    }

    .intro-video-bg video {
        display: none !important;
    }
}
