        :root {
            --primary-blue: #0A66C2;
            --primary-dark: #004182;
            --accent: #00b4d8;
            --gradient-start: #00b4d8;
            --gradient-end: #2563eb;
            --purple: #a855f7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        /* ===== VIDEO ===== */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            object-fit: cover;
            z-index: -2;
            opacity: 0.3;
            transition: opacity 0.6s ease-out;
            pointer-events: none;
        }

        .video-background.hidden {
            opacity: 0;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            z-index: -3;
            opacity: 0;
            transition: opacity 0.6s ease-out;
        }

        body.video-hidden::before {
            opacity: 1;
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 15px 0;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        header.scrolled .nav-links a {
            color: #7e9ed1;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo-easy {
            height: 55px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo-color {
            filter: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
            z-index: 1001;
        }

        /* ===== HERO ===== */
        .hero {
            overflow: hidden;
            padding: 7% 1% 1% 1%;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(180deg, #00010e00,#05162979,#173757, #17293a);
            overflow: hidden;
        }

        .contpaqi {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .logo-maquinas {
            margin-bottom: 30px;
        }

        .logo-maquinas img {
            width: 500px;
        }

        h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .light {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end), var(--purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 3.7rem;
        }

        .contact-btn {
            background: transparent;
            border: 1px solid white;
            padding: 14px 50px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,180,216,0.4);
        }

        /* ===== MAQUINAS INFO ===== */
        .maquinas {
            padding: 60px 0;
        }

        .recua-maquinas {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
        }

        .text-maquinas h1 {
            font-size: 3rem;
            background: linear-gradient(135deg, white, var(--gradient-start));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .text-maquinas p {
            font-size: 1.1rem;
            color: #cbd5e1;
            line-height: 1.6;
            margin: 20px 0;
        }

        .img-maquinas {
            background: linear-gradient(135deg, #1e3a5f, #0f2740);
            border-radius: 30px;
            padding: 40px;
            text-align: center;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0,180,216,0.3);
        }

        .img-maquinas::before {
            content: "☁️";
            font-size: 5rem;
            opacity: 0.5;
        }

        /* ===== CUADRO CARACTERÍSTICAS ===== */
        .cuadro-maquinas {
            display: grid;
            grid-template-columns: 2fr auto 2fr;
            gap: 30px;
            align-items: center;
            background: rgba(255,255,255,0.03);
            border-radius: 40px;
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .part1, .part2 {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .part1 { text-align: right; }
        .part2 { text-align: left; }

        .acceso, .seguridad, .trabajo, .ahorro {
            padding: 20px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .acceso:hover, .seguridad:hover, .trabajo:hover, .ahorro:hover {
            transform: translateY(-5px);
            background: rgba(0,180,216,0.1);
        }

        .cuadro-maquinas h3 {
            color: var(--gradient-start);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .cuadro-maquinas p {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* ===== PUNTOS ===== */
        .puntos {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 60px;
        }

        .puntos-arriba, .puntos-abajo {
            display: flex;
            gap: 30px;
        }

        .puntos i {
            font-size: 1.8rem;
            color: var(--purple);
            transition: all 0.3s ease;
        }

        .puntos i:hover {
            transform: scale(1.2);
            color: var(--gradient-start);
        }

        /* ===== SECCIÓN FINAL ===== */
        .text-h1 {
            text-align: center;
            padding: 60px 0 40px;
        }

        .text-h1 span:first-child {
            font-size: 4rem;
            color: white;
            font-weight: 700;
        }

        .text-h1 .light {
            font-size: 3rem;
        }

        .logos-maquinas {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 70%;
            margin: 40px auto;
        }

        .logos-div {
            background: rgba(78, 96, 117, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .logos-div:hover {
            transform: translateY(-8px);
            border-color: var(--gradient-start);
        }

        .logos-div img {
            width: 70%;
            filter: brightness(0) invert(1);
        }

        /* ===== SERVICIOS ===== */
        .servicios {
            padding: 40px 0;
        }

        .recuadro, .recuadro2 {
            display: grid;
            gap: 50px;
            align-items: center;
        }

        .recuadro {
            grid-template-columns: 1fr 2fr;
        }

        .recuadro2 {
            grid-template-columns: 2fr 1fr;
        }

        .imagen-vdi img {
            width: 100%;
            border-radius: 20px;
        }

        .info img {
            width: 40%;
            margin-bottom: 20px;
        }

        .info h2 {
            font-size: 2rem;
            color: white;
            margin-bottom: 20px;
        }

        .sub-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }

        .sub-info h3 {
            color: var(--gradient-start);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .sub-info p {
            color: #cbd5e1;
            font-size: 0.95rem;
        }

        /* ===== TABLA COMPARATIVA ===== */
        .table {
            margin: 60px auto;
        }

        .text {
            text-align: center;
            margin-bottom: 40px;
        }

        .text h1 {
            font-size: 4rem;
            color: white;
            margin-bottom: 10px;
        }

        .sections {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }

        .subs p {
            text-align: right;
            padding: 15px;
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
        }

        .spaxium {
            text-align: center;
            padding: 20px;
            border-radius: 20px;
        }

        .spaxium p {
            padding: 12px;
            color: white;
            font-weight: 600;
        }

        .t1 { background: #0b4783; }
        .t2 { background: #1e67b1; }
        .t3 { background: #57c3f5; }

        /* ===== BOTONES CENTRADOS ===== */
        .button-container {
            text-align: center;
            margin: 30px 0;
        }

        .button-demo {
            text-align: center;
            margin: 20px 0;
        }

      

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .recua-maquinas, .recuadro, .recuadro2 {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .part1, .part2 { text-align: center; }
            .logos-maquinas { width: 100%; }
            .sections { grid-template-columns: repeat(2, 1fr); }
            .subs { display: none; }
            .light { font-size: 2rem; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 16px; }
            
            .menu-toggle { display: block; }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: linear-gradient(135deg, #0f172a, #1e293b);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
                transition: 0.4s;
                z-index: 1000;
            }
            
            .nav-links.active { right: 0; }
            
            .cuadro-maquinas {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .puntos { flex-direction: row; gap: 30px; }
            .logos-maquinas { grid-template-columns: 1fr; }
            .sections { grid-template-columns: 1fr; }
            .sub-info { grid-template-columns: 1fr; }
            
            .logo-maquinas img { width: 250px; }
            h1 { font-size: 1.8rem; }
            .light { font-size: 1.5rem; }
            .text h1 { font-size: 2.5rem; }
        }

        @media (max-width: 480px) {
            .logo-easy { height: 40px; }
            .contact-btn { padding: 10px 30px; font-size: 0.9rem; }
            .text-h1 span:first-child { font-size: 2rem; }
            .text-h1 .light { font-size: 1.5rem; }
        }

        /* ===== ANIMACIONES ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .recua-maquinas, .cuadro-maquinas, .servicios, .table {
            animation: fadeInUp 0.6s ease-out;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1e293b;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 10px;
        }