        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0a66c2;
            --secondary: #00d4ff;
            --accent: #f97316;
            --dark: #0f172a;
            --light: #f8fafc;
            --text: #1e293b;
            --border: #e2e8f0;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            background: var(--light);
            line-height: 1.6;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            animation: slideDown 0.6s ease-out;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo:hover {
            background: rgba(10, 102, 194, 0.05);
            transform: translateY(-2px);
        }

        .logo-icon {
            font-size: 2rem;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .logo-main {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .logo-main .text-primary {
            color: var(--primary);
            background: linear-gradient(135deg, #0a66c2, #0284c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-main .text-accent {
            color: var(--accent);
            background:  #424242;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-tagline {
            font-size: 0.65rem;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--accent), #ea580c);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            margin-top: 60px;
            padding: 3rem 2rem;
            min-height: auto;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
            animation: floatDiagonal 8s ease-in-out infinite;
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(10, 102, 194, 0.12) 0%, transparent 70%);
            animation: floatDiagonal 10s ease-in-out infinite reverse;
            border-radius: 50%;
        }

        .hero-content {
            max-width: 1000px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            font-size: 3.8rem;
            line-height: 1.15;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 900;
            letter-spacing: -1px;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 3.8rem;
        }

        .hero p {
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #0066b3);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(10, 102, 194, 0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 800;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 500px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            border: 2px solid transparent;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .service-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .service-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .service-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .service-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .service-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .service-card:nth-child(8) {
            animation-delay: 0.8s;
        }

        .service-card:nth-child(9) {
            animation-delay: 0.9s;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
            pointer-events: none;
        }

        .service-card:hover::after {
            left: 100%;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2), 0 0 0 2px var(--secondary);
            border-color: transparent;
        }

        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(0, 212, 255, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
            position: relative;
        }

        .service-icon-wrapper::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 24px;
            padding: 4px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-icon-wrapper::after {
            opacity: 1;
        }

        .service-card:hover .service-icon-wrapper {
            transform: rotate(-5deg) scale(1.15);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .service-icon {
            font-size: 2.5rem;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            filter: brightness(0) invert(1);
            animation: pulse 2s infinite;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            font-weight: 700;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.25rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .service-features li {
            color: var(--primary);
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.08), rgba(0, 212, 255, 0.08));
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: var(--transition);
        }

        .service-features li:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            transform: translateY(-2px);
        }

        .card-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .card-link:hover {
            gap: 1rem;
            color: var(--secondary);
        }

        .card-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .card-link:hover::after {
            transform: scaleX(1);
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--dark), #1e293b);
            color: white;
            padding: 4rem 2rem;
            margin: 4rem 0;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat {
            animation: fadeInUp 0.8s ease-out;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--secondary), #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #cbd5e1;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--dark), #1e293b);
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
            animation: fadeInUp 0.8s ease-out;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }

        .cta-button-large {
            background: linear-gradient(135deg, var(--accent), #ea580c);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .cta-button-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(249, 115, 22, 0.4);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #334155;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section a {
            color: #cbd5e1;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Products section enhancements */
        #productos {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        }

        #productos .products-tech-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        #productos .products-tech-grid {
            position: absolute;
            inset: -20% -10% 0 -20%;
            background:
                linear-gradient(90deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
                linear-gradient(180deg, rgba(10, 102, 194, 0.08) 1px, transparent 1px);
            background-size: 70px 70px;
            opacity: 0.25;
            animation: techGrid 24s linear infinite;
        }

        #productos .products-tech-nodes {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.25) 0 2px, transparent 3px),
                radial-gradient(circle at 55% 35%, rgba(10, 102, 194, 0.2) 0 2px, transparent 3px),
                radial-gradient(circle at 80% 65%, rgba(249, 115, 22, 0.2) 0 2px, transparent 3px);
            background-size: 140px 140px;
            opacity: 0.35;
            animation: techNodes 16s ease-in-out infinite;
        }

        #productos .products-tech-scan {
            position: absolute;
            top: -30%;
            left: -10%;
            width: 140%;
            height: 70%;
            background: linear-gradient(90deg, transparent, rgba(10, 102, 194, 0.18), transparent);
            transform: skewY(-6deg);
            animation: techScan 9s ease-in-out infinite;
            opacity: 0.4;
        }

        #productos .products-content {
            position: relative;
            z-index: 1;
        }

        #productos .products-highlights {
            max-width: 1200px;
            margin: 2rem auto 3rem;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        #productos .products-highlight {
            display: flex;
            gap: 0.8rem;
            align-items: flex-start;
            padding: 1rem 1.2rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(148, 163, 184, 0.35);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
            backdrop-filter: blur(8px);
        }

        #productos .products-highlight-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.18), rgba(0, 212, 255, 0.18));
            color: var(--primary);
            font-weight: 700;
            flex-shrink: 0;
        }

        #productos .products-highlight strong {
            display: block;
            color: var(--dark);
            font-size: 0.95rem;
        }

        #productos .products-highlight span {
            color: #64748b;
            font-size: 0.85rem;
        }

        #productos .product-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 4rem;
            align-items: center;
        }

        #productos .product-card {
            border: 2px solid var(--border);
        }

        #productos .product-card.ecom {
            background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
            border-color: #c7d2fe;
        }

        #productos .product-card.pos {
            background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
            border-color: #fed7aa;
        }

        #productos .product-card.health {
            background: linear-gradient(135deg, #ecfdf3 0%, #f0fdf4 100%);
            border-color: #bbf7d0;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(30px);
            }
        }

        @keyframes floatDiagonal {
            0%, 100% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(20px, -30px);
            }
            50% {
                transform: translate(-10px, 40px);
            }
            75% {
                transform: translate(-30px, -20px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes counterPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.08);
            }
        }

        @keyframes techGrid {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(70px, 70px);
            }
        }

        @keyframes techNodes {
            0%, 100% {
                opacity: 0.35;
                transform: translateY(0);
            }
            50% {
                opacity: 0.55;
                transform: translateY(8px);
            }
        }

        @keyframes techScan {
            0% {
                transform: translateY(0) skewY(-6deg);
                opacity: 0.15;
            }
            50% {
                transform: translateY(18%) skewY(-6deg);
                opacity: 0.55;
            }
            100% {
                transform: translateY(0) skewY(-6deg);
                opacity: 0.2;
            }
        }

        .counter-animated {
            animation: counterPulse 2.5s ease-in-out infinite !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 1rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: white;
                padding: 2rem;
                gap: 1rem;
                border-bottom: 1px solid var(--border);
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding: 3rem 1.5rem;
                min-height: auto;
                margin-top: 60px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero p[style*="font-size: 1.35rem"] {
                font-size: 1.1rem !important;
            }

            .hero div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }

            .hero-buttons button {
                font-size: 1rem !important;
                padding: 1rem 2rem !important;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card:hover {
                transform: translateY(-5px) scale(1.01);
            }

            .service-card:active {
                transform: scale(0.98);
            }

            .services {
                padding: 3rem 1.5rem;
            }

            .cta-section {
                padding: 3rem 1.5rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-section div[style*="display: flex"] {
                gap: 1rem !important;
            }

            .cta-section div[style*="font-size: 2.5rem"] {
                font-size: 2rem !important;
            }

            .stats-container {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stats h2 {
                font-size: 1.75rem !important;
            }

            .stats p {
                font-size: 1rem !important;
                padding: 0 1rem;
            }

            /* Social proof section responsive */
            section[style*="padding: 4rem 2rem"] h3 {
                font-size: 1.5rem !important;
            }

            section[style*="padding: 4rem 2rem"] > div > div[style*="display: grid"] {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }

            /* RPA Section Responsive */
            section[style*="padding: 5rem 2rem"] {
                padding: 3rem 1.5rem !important;
            }

            section[style*="padding: 5rem 2rem"] h2 {
                font-size: 1.8rem !important;
            }

            section[style*="padding: 5rem 2rem"] > div > div[style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            section[style*="padding: 5rem 2rem"] > div > div[style*="grid-template-columns: 1fr 1fr"] > div:first-child h3 {
                font-size: 1.5rem !important;
            }

            section[style*="padding: 5rem 2rem"] > div > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child > div[style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }

            section[style*="padding: 4rem 2rem"] button {
                width: 100%;
                padding: 1rem 1.5rem !important;
                font-size: 0.9rem !important;
            }

            section[style*="padding: 4rem 2rem"] p[style*="font-size: 1.3rem"] {
                font-size: 1.1rem !important;
            }

            header {
                position: relative;
            }

            .logo {
                gap: 0.5rem;
                padding: 0.25rem 0.5rem;
            }

            .logo-icon {
                font-size: 1.5rem;
            }

            .logo-main {
                font-size: 1.3rem;
            }

            .logo-tagline {
                font-size: 0.55rem;
            }

            /* Products section responsive */
            #productos > div > div[style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            #productos div[style*="order: 1"] {
                order: 2 !important;
            }

            #productos div[style*="order: 2"] {
                order: 1 !important;
            }

            #productos [style*="padding: 3rem"] {
                padding: 2rem !important;
            }

            #productos h3 {
                font-size: 2rem !important;
            }

            #productos .products-highlights {
                grid-template-columns: 1fr !important;
            }

            #productos .product-row {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
        }

        @media (max-width: 1024px) {
            #productos > div > div[style*="grid-template-columns: 1fr 1fr"] {
                gap: 2.5rem !important;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
                line-height: 1.3 !important;
                margin-bottom: 0.5rem !important;
            }

            .hero-content > div[style*="display: inline-flex"] {
                flex-direction: column !important;
                align-items: flex-start !important;
                margin-bottom: 1rem !important;
            }

            .hero-content > div[style*="display: inline-flex"] > div {
                font-size: 0.85rem !important;
                padding: 0.6rem 1rem !important;
            }

            .hero-content > p[style*="font-size: 1.1rem"] {
                font-size: 0.95rem !important;
                margin-bottom: 1rem !important;
            }

            .hero-content > div[style*="display: grid"] {
                margin: 0.5rem 0 !important;
            }

            .hero-content > div[style*="grid-template-columns: repeat(3"] {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }

            .hero-content > div[style*="grid-template-columns: repeat(4"] {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.5rem !important;
            }

            .hero-content > div[style*="grid-template-columns: repeat(2"] {
                grid-template-columns: 1fr !important;
                gap: 0.5rem !important;
            }

            .hero button {
                padding: 1.1rem 2rem !important;
                font-size: 0.95rem !important;
            }

            /* RPA Section - Mobile responsive */
            section[style*="padding: 5rem 2rem"] {
                padding: 2rem 1rem !important;
            }

            section[style*="padding: 5rem 2rem"] h2 {
                font-size: 1.5rem !important;
            }

            section[style*="padding: 5rem 2rem"] h3 {
                font-size: 1.3rem !important;
            }

            section[style*="padding: 5rem 2rem"] > div > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child > div[style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.6rem;
            }

            .hero-content > div[style*="grid-template-columns: repeat(3"] {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1rem !important;
            }

            .hero-content > div[style*="grid-template-columns: repeat(4"] {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.8rem !important;
            }

            .hero div[style*="margin-top: 2.5rem"] {
                padding: 1.5rem !important;
            }

            .hero div[style*="margin-top: 2.5rem"] h3 {
                font-size: 1.1rem !important;
            }

            .hero div[style*="margin-top: 2.5rem"] > div:last-child {
                grid-template-columns: 1fr 1fr !important;
                gap: 1rem !important;
            }

            .section-title h2 {
                font-size: 1.75rem;
            }

            .cta-button-large {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .cta-button-large span[style*="background: rgba"] {
                display: none;
            }

            /* Social proof adjustments */
            section[style*="padding: 4rem 2rem"] {
                padding: 2rem 1rem !important;
            }

            section[style*="padding: 4rem 2rem"] h3 {
                font-size: 1.3rem !important;
            }

            section[style*="padding: 4rem 2rem"] p[style*="font-size: 1.1rem"] {
                font-size: 0.95rem !important;
            }

            section[style*="padding: 4rem 2rem"] div[style*="padding: 2rem"] {
                padding: 1.5rem !important;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-icon-wrapper {
                width: 70px;
                height: 70px;
            }

            .service-icon {
                font-size: 2rem;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }

            .service-features {
                gap: 0.4rem;
            }

            .service-features li {
                font-size: 0.8rem;
                padding: 0.35rem 0.75rem;
            }

            /* Badge responsive */
            .service-card > div[style*="position: absolute"] {
                top: -8px !important;
                right: 10px !important;
                padding: 0.3rem 0.75rem !important;
                font-size: 0.65rem !important;
            }
        }

            /* Products adjustments for mobile */
            #productos h3 {
                font-size: 1.8rem !important;
            }

            #productos p {
                font-size: 1rem !important;
            }

            #productos [style*="font-size: 5rem"] {
                font-size: 3rem !important;
            }

            #productos [style*="display: grid; grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }
        }
    