
        /* --- VARIABLES Y RESET CSS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        :root {
            --deep-space: #0a0a0f;
            --cosmic-purple: #1a0b2e;
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --matrix-green: #00ff9d;
            --void: #000000;
            --stardust: rgba(255, 255, 255, 0.9);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.15);
            --blur-amount: 15px;
            --border-radius-card: 20px;
            --core-glow: rgba(0, 243, 255, 0.6);
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            padding-top: 6rem;
        }

        /* --- ESTRUCTURA PRINCIPAL Y FONDO --- */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.7;
        }

        .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            position: relative;
            z-index: 2;
        }

        .content-section {
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .visual-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: grab;
        }

        .visual-section:active {
            cursor: grabbing;
        }

        /* --- TIPOGRAFÍA Y TEXTOS MEJORADOS --- */
        .badge {
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid var(--matrix-green);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--matrix-green);
            width: fit-content;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
        }

        .badge-mexico {
            background: rgba(185, 103, 255, 0.15);
            border: 1px solid rgba(185, 103, 255, 0.6);
            color: #e6d4ff;
            box-shadow: 0 0 12px rgba(185, 103, 255, 0.4);
            margin-top: 0.5rem;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            border-width: 1.5px;
        }

        .badge-mexico::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .badge-mexico:hover::before {
            left: 100%;
        }

        .badge-mexico:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(185, 103, 255, 0.5);
            border-color: var(--neon-purple);
        }

        .badge-mexico i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
            color: #d4b3ff;
        }

        .hero-title {
            font-family: 'Poiret One', sans-serif; 
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.0rem;
            line-height: 1.6;
            max-width: 90%;
            font-weight: 400;
        }
        
        /* --- CARACTERÍSTICAS y CTA --- */
        .features {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin: 2rem 0;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(0, 243, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 1.3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-text h3 {
            color: white;
            margin-bottom: 0.3rem;
            font-size: 1.2rem;
            font-weight: 700;
            text-align: left;
        }

        .feature-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            text-align: left;
        }

        /* --- MÓDULO DE IA MEJORADO Y FUSIONADO --- */
        .ia-module {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 11, 46, 0.95) 100%);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 40px;
            padding: 4rem 3rem;
            margin: 4rem auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 243, 255, 0.1) inset;
            max-width: 1300px;
            position: relative;
            z-index: 2;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .ia-module::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
            animation: rotateGradient 20s linear infinite;
            z-index: -1;
        }

        @keyframes rotateGradient {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .ia-module:hover {
            border-color: var(--matrix-green);
            box-shadow: 0 12px 40px 0 rgba(0, 255, 157, 0.2);
            transform: translateY(-5px);
        }

        .ia-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.8rem;
            flex-wrap: wrap;
        }

        .ia-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(0, 255, 157, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--matrix-green);
            font-size: 2.2rem;
            border: 1px solid rgba(0, 255, 157, 0.3);
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
            position: relative;
            overflow: hidden;
            animation: pulse 3s infinite;
        }

        .ia-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(0, 255, 157, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: iaGlow 3s linear infinite;
        }

        @keyframes iaGlow {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.5); }
            70% { box-shadow: 0 0 0 20px rgba(0, 255, 157, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
        }

        .ia-text {
            flex: 1;
        }

        .ia-title {
            font-size: 3.2rem;
            font-family: 'Poiret One', sans-serif;
            font-weight: 400;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            letter-spacing: 2px;
        }

        .ia-subtitle {
            color: var(--neon-blue);
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 0.3rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ia-content {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1.1rem;
            text-align: left;
            padding-left: 0.5rem;
            margin: 2rem 0 3rem 0;
            max-width: 900px;
        }

        .ia-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .ia-highlight {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .ia-highlight:hover {
            border-color: var(--neon-blue);
            transform: translateY(-3px);
            background: rgba(0, 243, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
        }

        .ia-highlight-icon {
            color: var(--neon-blue);
            font-size: 2rem;
            margin-bottom: 1.2rem;
        }

        .ia-highlight h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
            text-align: center;
        }

        .ia-highlight p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: center;
        }

        /* --- SECCIÓN DE INTEGRACIONES IA - ESTILO COHERENTE --- */
        .integrations-section {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 11, 46, 0.95) 100%);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 40px;
            padding: 4rem 3rem;
            margin: 4rem auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 243, 255, 0.1) inset;
            max-width: 1300px;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .integrations-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
            animation: rotateGradient 20s linear infinite;
            z-index: -1;
        }

        .integrations-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .integrations-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(0, 255, 157, 0.15);
            border: 1px solid var(--matrix-green);
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--matrix-green);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
        }

        .integrations-badge i {
            font-size: 1.2rem;
        }

        .integrations-title {
            font-size: 3.2rem;
            font-family: 'Poiret One', sans-serif;
            font-weight: 400;
            margin-bottom: 1rem;
            color: white;
            line-height: 1.2;
            letter-spacing: 2px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .integrations-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3rem;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
        }

        .integrations-showcase {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin: 3rem 0;
        }

        .integrations-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .integration-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .integration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), var(--matrix-green), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .integration-card:hover::before {
            transform: translateX(100%);
        }

        .integration-card:hover {
            transform: translateY(-8px);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
            background: rgba(0, 243, 255, 0.05);
        }

        .card-inner {
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-icon-glow {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(185, 103, 255, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--neon-blue);
            margin-bottom: 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
            position: relative;
            transition: all 0.3s ease;
        }

        .integration-card:hover .card-icon-glow {
            transform: scale(1.1);
            color: var(--matrix-green);
            box-shadow: 0 0 40px rgba(0, 255, 157, 0.4);
        }

        .card-icon-glow i {
            position: relative;
            z-index: 2;
        }

        .card-inner h3 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
            background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .card-inner p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .card-stats {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-stats span {
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid rgba(0, 255, 157, 0.3);
            color: var(--matrix-green);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }

        .integrations-cta {
            text-align: center;
            margin-top: 4rem;
        }

        .integrations-button {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: var(--deep-space);
            padding: 1.2rem 3rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
            border: none;
            cursor: pointer;
        }

        .integrations-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.8);
            gap: 2rem;
        }

        .integrations-button i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .integrations-button:hover i {
            transform: translateX(5px);
        }

        .integrations-note {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }

        /* --- SECCIÓN DE CARDS - ESTILO IDÉNTICO AL PRIMERO --- */
        .cards-section {
            position: relative;
            z-index: 2;
            padding: 4rem 3rem;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(10px);
        }

        .section-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .card {
            background: var(--glass-bg);
            border-radius: var(--border-radius-card);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(var(--blur-amount));
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 10;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            padding: 2.5rem 2rem;
            min-height: 380px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px 0 rgba(0, 243, 255, 0.25);
            border-color: var(--neon-blue);
        }

        .card-icon-container {
            flex-shrink: 0;
            margin-bottom: 2rem;
            text-align: left !important;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 2.0rem;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            margin: 0 !important;
            margin-right: auto !important;
            text-align: left !important;
        }

        .card:hover .card-icon {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        }

        .card-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: var(--stardust);
            font-weight: 700;
            text-align: left;
            line-height: 1.2;
        }

        .card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
            flex-grow: 1;
            font-size: 1rem;
            text-align: left;
            font-weight: 400;
        }

        /* --- BOTONES MEJORADOS - SIN SUBRAYADO Y CON DISEÑO MODERNO --- */
        .card-button,
        .modern-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: auto;
            border-radius: 50px;
            text-decoration: none !important;
            cursor: pointer;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            min-height: 50px;
            text-align: center;
            width: 100%;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(185, 103, 255, 0.2));
            border: 1px solid rgba(0, 243, 255, 0.3);
            color: var(--stardust);
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .card-button::before,
        .modern-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .card-button span,
        .modern-button span,
        .card-button i,
        .modern-button i {
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .card-button i,
        .modern-button i {
            font-size: 1rem;
        }

        .card-button:hover,
        .modern-button:hover {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.3), rgba(185, 103, 255, 0.3));
            border-color: var(--matrix-green);
            box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
            transform: translateY(-3px);
            color: white;
        }

        .card-button:hover::before,
        .modern-button:hover::before {
            left: 100%;
        }

        .card-button:hover i,
        .modern-button:hover i {
            transform: translateX(5px);
            color: var(--matrix-green);
        }

        .card:hover .card-button,
        .card:hover .modern-button {
            border-color: rgba(0, 243, 255, 0.6);
        }

        /* --- ESTILOS MEJORADOS PARA ICONOS --- */
        .improved-icon {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.25) 0%, rgba(185, 103, 255, 0.25) 100%) !important;
            border: 1px solid rgba(0, 243, 255, 0.4) !important;
            box-shadow: 0 0 25px rgba(0, 243, 255, 0.4) !important;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .improved-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transform: rotate(45deg);
            animation: iconGlow 4s linear infinite;
        }

        @keyframes iconGlow {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

        .improved-icon i {
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 8px var(--neon-blue));
        }

        .card:hover .improved-icon {
            transform: scale(1.15) rotate(5deg);
            border-color: var(--matrix-green) !important;
            box-shadow: 0 0 35px var(--matrix-green) !important;
        }

        .card:hover .improved-icon i {
            color: var(--matrix-green);
        }

        /* --- SECCIÓN DE SERVICIOS - ESTILO IDÉNTICO --- */
        .services-section {
            position: relative;
            z-index: 2;
            padding: 4rem 3rem;
            background: rgba(26, 11, 46, 0.3);
            border-radius: 25px;
            margin: 3rem 0;
        }

        .services-content {
            max-width: 950px;
            margin: 0 auto;
            text-align: left;
        }

        .services-text h2 {
            font-family: 'Poiret One', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
            text-align: center;
        }

        .services-text p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 400;
            max-width: 100%;
            margin-left: 0;
            margin-right: auto;
            text-align: center;
        }

        .services-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .highlight {
            padding: 2.5rem 2rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            transition: border-color 0.3s ease, transform 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .highlight:hover {
            border-color: var(--neon-blue);
            transform: translateY(-5px);
        }

        .highlight h3 {
            color: var(--neon-blue);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            text-align: left;
        }

        .highlight p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
            text-align: left;
        }

        /* --- SECCIÓN FAQ - ESTILO IDÉNTICO AL PRIMERO --- */
        .faq-section {
            padding: 3rem 0;
            max-width: 900px;
            margin: 4rem auto 3rem;
            position: relative;
            z-index: 20;
        }

        .faq-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .section-subtitle {
            margin-bottom: 3rem;
            font-weight: 600;
            color: var(--neon-blue);
            text-align: center;
            font-size: 1.2rem;
        }

        .accordion-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s ease;
            position: relative;
            z-index: 21;
        }

        .accordion-item:hover {
            border-color: var(--neon-blue);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--stardust);
            transition: color 0.3s ease;
            text-align: left;
            position: relative;
            z-index: 22;
            background: var(--glass-bg);
        }

        .accordion-header:hover {
            color: var(--neon-blue);
        }

        .accordion-header i {
            font-size: 1rem;
            color: var(--matrix-green);
            transition: transform 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 2rem;
        }

        .accordion-content.active {
            max-height: 500px;
            padding: 1rem 1rem 1.2rem 1rem;
        }

        .accordion-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            text-align: left;
        }

        .accordion-header[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        .accordion-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .accordion-header > * {
            position: relative;
            z-index: 2;
        }

        /* --- CARRUSEL DE RESEÑAS 3x3 --- */
        .reviews-section {
            padding: 5rem 3rem;
            margin: 3rem 0;
            background: rgba(26, 11, 46, 0.3);
            border-radius: 25px;
            position: relative;
            z-index: 2;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }

        .google-badge i {
            color: #4285F4;
            font-size: 1.2rem;
        }

        .rating-overview {
            text-align: center;
            margin-bottom: 3rem;
        }

        .rating-main {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .rating-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--matrix-green);
            text-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
        }

        .rating-stars {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .rating-count {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .reviews-carousel {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1100px;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 1.5rem;
        }

        .review-card {
            flex: 0 0 calc(33.333% - 1rem);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            border-color: var(--neon-blue);
            transform: translateY(0px);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
        }

        .review-verified {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: var(--matrix-green);
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--deep-space);
            margin-right: 1rem;
            font-size: 1rem;
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }

        .reviewer-info h4 {
            color: var(--stardust);
            margin-bottom: 0.2rem;
            font-size: 1rem;
            font-weight: 700;
            text-align: left;
        }

        .review-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            font-weight: 400;
            text-align: left;
        }

        .review-stars {
            color: #FFD700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-align: left;
        }

        .review-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 0.9rem;
            font-style: italic;
            flex-grow: 1;
            text-align: left;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .carousel-nav {
            display: flex;
            gap: 0.8rem;
            order: 2;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--neon-blue);
            transform: scale(1.3);
            box-shadow: 0 0 10px var(--neon-blue);
        }

        .carousel-arrow {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--stardust);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            font-size: 1.2rem;
        }

        .carousel-arrow:hover {
            background: var(--neon-blue);
            color: var(--deep-space);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
            transform: scale(1.1);
        }

        .carousel-arrow.prev {
            order: 1;
        }

        .carousel-arrow.next {
            order: 3;
        }

        .review-counter {
            text-align: center;
            margin-top: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .google-link {
            text-align: center;
            margin-top: 3rem;
        }

        .google-link a {
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .google-link a:hover {
            color: var(--matrix-green);
            border-color: var(--matrix-green);
            transform: translateY(-2px);
        }

        /* --- MÓDULO DE ASESORÍA PERSONALIZADA --- */
        .personal-consult-module {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: 3rem 2rem;
            margin: 4rem auto;
            text-align: center;
            backdrop-filter: blur(var(--blur-amount));
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
            max-width: 600px;
            position: relative;
            z-index: 2;
        }

        .personal-consult-module h3 {
            color: var(--neon-blue);
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            font-family: 'Poiret One', sans-serif;
        }

        .personal-consult-module p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .personal-consult-module .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 25px rgba(0, 255, 157, 0.6);
            border: none;
            cursor: pointer;
            min-height: 65px;
        }

        .personal-consult-module .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 35px rgba(0, 255, 157, 0.8);
        }

        /* --- SISTEMA VISUAL MEJORADO - INTERACTIVO CON MOUSE --- */
        .nexus-system {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1500px;
            transform-style: preserve-3d;
            will-change: transform;
            transform: scale(1.0);
        }

        .quantum-orb {
            position: relative;
            width: clamp(200px, 42vmin, 520px);
            height: clamp(200px, 42vmin, 520px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.05s linear;
            transform-style: preserve-3d;
            will-change: transform;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translateZ(0px) rotateX(0deg) rotateY(0deg); }
            25% { transform: translateZ(20px) rotateX(2deg) rotateY(2deg); }
            50% { transform: translateZ(0px) rotateX(0deg) rotateY(5deg); }
            75% { transform: translateZ(-15px) rotateX(-2deg) rotateY(2deg); }
        }

        .core-layer {
            position: absolute;
            border-radius: 50%;
            transform-style: preserve-3d;
            transition: all 0.5s ease;
        }

        .core-inner {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle at 30% 30%, 
                #ffffff, 
                rgba(0, 243, 255, 0.6) 40%,
                rgba(185, 103, 255, 0.5) 70%,
                transparent 90%);
            box-shadow: 
                0 0 40px rgba(0, 243, 255, 0.3),
                0 0 70px rgba(185, 103, 255, 0.2),
                inset 0 0 30px rgba(255,255,255,0.3);
            position: relative;
            z-index: 20;
            animation: corePulse 6s ease-in-out infinite;
            transform-style: preserve-3d;
            will-change: transform, box-shadow;
        }

        .core-inner::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,243,255,0.2) 0%, transparent 70%);
            animation: coreGlow 4s ease-in-out infinite;
        }

        .core-inner::after {
            content: '';
            position: absolute;
            top: -35px;
            left: -35px;
            right: -35px;
            bottom: -35px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(185,103,255,0.15) 0%, transparent 70%);
            animation: coreGlow 5s ease-in-out infinite reverse;
        }

        @keyframes corePulse {
            0%, 100% { 
                transform: scale(1) rotateX(0deg) rotateY(0deg);
                box-shadow: 0 0 40px rgba(0, 243, 255, 0.3), 0 0 70px rgba(185, 103, 255, 0.2);
            }
            50% { 
                transform: scale(1.05) rotateX(2deg) rotateY(2deg);
                box-shadow: 0 0 60px rgba(0, 243, 255, 0.4), 0 0 90px rgba(185, 103, 255, 0.3);
            }
        }

        @keyframes coreGlow {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.05); }
        }

        .core-middle {
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, 
                rgba(0,243,255,0.15) 0%,
                rgba(185,103,255,0.1) 50%,
                transparent 70%);
            border: 2px solid rgba(0,243,255,0.2);
            animation: middleRotate 20s linear infinite;
            transform-style: preserve-3d;
            box-shadow: 
                0 0 30px rgba(0,243,255,0.2),
                inset 0 0 20px rgba(185,103,255,0.2);
            will-change: transform;
        }

        @keyframes middleRotate {
            0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
            100% { transform: rotateX(360deg) rotateY(180deg) rotateZ(360deg); }
        }

        .core-outer {
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, 
                rgba(0,243,255,0.1) 0%,
                rgba(0,255,157,0.05) 30%,
                transparent 70%);
            border: 1px solid rgba(0,243,255,0.15);
            animation: outerRotate 25s linear infinite reverse;
            transform-style: preserve-3d;
            box-shadow: 
                0 0 40px rgba(0,255,157,0.15),
                inset 0 0 30px rgba(0,243,255,0.15);
            will-change: transform;
        }

        @keyframes outerRotate {
            0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
            100% { transform: rotateX(-360deg) rotateY(180deg) rotateZ(-360deg); }
        }

        .ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(0,243,255,0.2);
            transform-style: preserve-3d;
            box-shadow: 0 0 20px rgba(0,243,255,0.1);
            will-change: transform;
        }

        .ring-1 {
            width: 420px;
            height: 420px;
            animation: ringRotate 25s linear infinite;
            border-color: rgba(0,243,255,0.2);
        }

        .ring-2 {
            width: 360px;
            height: 360px;
            animation: ringRotate 20s linear infinite reverse;
            border-color: rgba(185,103,255,0.2);
        }

        .ring-3 {
            width: 300px;
            height: 300px;
            animation: ringRotate 15s linear infinite;
            border-color: rgba(0,255,157,0.2);
        }

        @keyframes ringRotate {
            0% { transform: rotateX(70deg) rotateY(0deg) rotateZ(0deg); }
            100% { transform: rotateX(70deg) rotateY(360deg) rotateZ(360deg); }
        }

        .energy-beam {
            position: absolute;
            width: 2px;
            height: 200px;
            background: linear-gradient(to top, 
                transparent, 
                rgba(0, 243, 255, 0.3),
                rgba(185, 103, 255, 0.2),
                transparent);
            transform-style: preserve-3d;
            opacity: 0.3;
            animation: beamPulse 5s ease-in-out infinite;
            will-change: transform, opacity;
        }

        @keyframes beamPulse {
            0%, 100% { opacity: 0.2; transform: scaleY(1); }
            50% { opacity: 0.4; transform: scaleY(1.1); }
        }

        .node {
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(0, 243, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--neon-blue);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
            cursor: pointer;
            backdrop-filter: blur(2px);
            will-change: transform;
        }

        .node::before {
            content: '';
            position: absolute;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,243,255,0.2) 0%, transparent 70%);
            animation: nodePulse 3s ease-in-out infinite;
        }

        @keyframes nodePulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.3); opacity: 0.5; }
        }

        .node:hover {
            transform: scale(1.5) !important;
            background: rgba(0, 243, 255, 0.2);
            border-color: white;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
            z-index: 100;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--matrix-green);
            box-shadow: 0 0 8px var(--matrix-green);
            transform-style: preserve-3d;
            transition: transform 0.2s ease-out;
            opacity: 0.5;
            will-change: transform;
        }

        .particle-large {
            width: 7px;
            height: 7px;
            background: var(--neon-blue);
            box-shadow: 0 0 12px var(--neon-blue);
            opacity: 0.4;
        }

        .connection {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(0, 243, 255, 0.3),
                rgba(185, 103, 255, 0.2),
                rgba(0, 255, 157, 0.2),
                transparent);
            transform-origin: left center;
            opacity: 0.2;
            transition: opacity 0.3s ease;
            pointer-events: none;
            box-shadow: 0 0 8px rgba(0, 243, 255, 0.2);
            transform-style: preserve-3d;
            will-change: transform, opacity;
        }

        .connection:hover {
            opacity: 0.4;
        }

        .data-stream {
            position: absolute;
            width: 3px;
            height: 250px;
            background: linear-gradient(to bottom, 
                transparent, 
                rgba(0, 255, 157, 0.3),
                rgba(0, 243, 255, 0.2),
                transparent);
            animation: dataStream 10s linear infinite;
            opacity: 0.2;
            transform-style: preserve-3d;
            filter: blur(0.5px);
            will-change: transform, opacity;
        }

        @keyframes dataStream {
            0% { 
                transform: translateY(-250px) rotateZ(0deg) translateZ(0px);
                opacity: 0;
            }
            20% { 
                opacity: 0.2;
            }
            80% { 
                opacity: 0.2;
            }
            100% { 
                transform: translateY(250px) rotateZ(180deg) translateZ(70px);
                opacity: 0;
            }
        }

        .hologram-text {
            position: absolute;
            font-family: 'Poiret One', sans-serif;
            font-size: 1.2rem;
            color: var(--matrix-green);
            opacity: 0.4;
            text-transform: uppercase;
            letter-spacing: 5px;
            animation: hologramFloat 8s ease-in-out infinite;
            font-weight: bold;
            text-shadow: 
                0 0 10px var(--matrix-green),
                0 0 20px var(--neon-blue);
            white-space: nowrap;
            transform-style: preserve-3d;
            pointer-events: none;
            will-change: transform, opacity, text-shadow;
        }

        @keyframes hologramFloat {
            0%, 100% { 
                transform: translateY(0) rotateX(0deg) scale(1); 
                opacity: 0.3;
                text-shadow: 0 0 10px var(--matrix-green);
            }
            50% { 
                transform: translateY(-15px) rotateX(8deg) scale(1.05);
                opacity: 0.5;
                text-shadow: 0 0 15px var(--matrix-green), 0 0 25px var(--neon-blue);
            }
        }

        .distortion-field {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 30;
            transform-style: preserve-3d;
        }

        .distortion-wave {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, 
                rgba(0,243,255,0.15) 0%,
                rgba(185,103,255,0.1) 30%,
                transparent 70%);
            transform: scale(0);
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
            pointer-events: none;
            mix-blend-mode: screen;
            will-change: transform, opacity;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .integrations-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .integrations-title {
                font-size: 2.8rem;
            }
            
            .ia-title {
                font-size: 2.8rem;
            }
            
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .services-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .review-card {
                flex: 0 0 calc(50% - 1rem);
            }
            
            .hero-title {
                font-size: 3.2rem;
            }
            
            .section-title, .services-text h2, .faq-title {
                font-size: 2.8rem;
            }
            
            .ia-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
            
        }

        @media (max-width: 968px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .visual-section {
                min-height: 50vh;
                order: 1;
            }
            
            .content-section {
                padding: 2rem 1.5rem;
                text-align: left;
                order: -1;
            }
            
            .hero-title {
                font-size: 2.8rem;
                line-height: 1.2;
                text-align: left;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                max-width: 100%;
                margin-bottom: 2rem;
                text-align: left;
            }
            
            .badge {
                margin: 0 0 1rem 0;
                font-size: 0.8rem;
                padding: 0.6rem 1.2rem;
            }
            
            .badge-mexico {
                margin: 0 0 1rem 0;
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
            
            .features {
                margin: 1.5rem 0;
            }
            
            .feature {
                flex-direction: row;
                text-align: left;
                gap: 0.8rem;
                padding: 1rem 0;
            }
            
            .feature-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .personal-consult-module {
                margin: 2rem auto;
                padding: 2rem 1.5rem;
            }
            
            .review-card {
                flex: 0 0 calc(50% - 1rem);
            }
            
            .ia-module {
                padding: 3rem 2rem;
                margin: 3rem 1.5rem;
            }
            
            .ia-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .ia-title {
                font-size: 2.2rem;
            }
            
            .integrations-section {
                padding: 3rem 2rem;
                margin: 3rem 1.5rem;
            }
            
            .hologram-text {
                font-size: 0.9rem;
                letter-spacing: 3px;
            }
        }

        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .integrations-row {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1rem;
            }
            
            .integrations-section {
                padding: 2rem 1rem;
                margin: 2rem 0.5rem;
                border-radius: 25px;
            }
            
            .integrations-title {
                font-size: 1.8rem;
                line-height: 1.2;
            }
            
            .integrations-badge {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }
            
            .integrations-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .card-inner {
                padding: 1.5rem 1rem;
            }
            
            .card-icon-glow {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            
            .card-inner h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
            
            .card-inner p {
                font-size: 0.85rem;
                line-height: 1.4;
                margin-bottom: 1rem;
            }
            
            .card-stats span {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
            }
            
            .integrations-cta {
                margin-top: 2rem;
            }
            
            .integrations-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                gap: 1rem;
            }
            
            .ia-title {
                font-size: 2rem;
            }
            
            .integrations-subtitle {
                font-size: 1.1rem;
            }
            
            .card {
                padding: 1.5rem 1rem;
                min-height: 320px;
            }
            
            .card-icon-container {
                text-align: left !important;
                margin-bottom: 1rem !important;
            }
            
            .card-icon {
                width: 40px;
                height: 40px;
                font-size: 1.8rem;
                margin: 0 !important;
                margin-right: auto !important;
                text-align: left !important;
            }
            
            .card h3 {
                font-size: 1.3rem;
                text-align: left;
                margin-bottom: 1rem !important;
            }
            
            .card p {
                font-size: 0.9rem;
                text-align: left;
                margin-bottom: 1.5rem !important;
                line-height: 1.5;
                display: block !important;
                -webkit-line-clamp: unset !important;
                -webkit-box-orient: unset !important;
                overflow: visible !important;
            }
            
            .services-highlights {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2.5rem;
            }
            
            .highlight {
                padding: 1.5rem;
            }
            
            .highlight h3, .highlight p {
                text-align: center;
            }
            
            .review-card {
                flex: 0 0 100%;
                padding: 1.5rem;
                min-height: 250px;
            }
            
            .carousel-controls {
                gap: 1rem;
            }
            
            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .rating-number {
                font-size: 3rem;
            }
            
            .rating-stars {
                font-size: 1.5rem;
            }
            
            .section-title, .services-text h2, .faq-title {
                font-size: 2.3rem;
            }
            
            .services-text p {
                font-size: 1.1rem;
                text-align: left;
            }
            
            .ia-highlights {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .ia-module {
                padding: 2rem 1.5rem;
                margin: 2rem 1rem;
                border-radius: 30px;
            }
            
            .ia-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .ia-icon {
                width: 70px;
                height: 70px;
                margin: 0 auto;
            }
            
            .ia-title {
                text-align: center;
                font-size: 2rem;
            }
            
            .ia-subtitle {
                text-align: center;
            }
            
            .ia-content {
                text-align: center;
                padding-left: 0;
            }
            
            .hologram-text {
                font-size: 0.8rem;
                letter-spacing: 2px;
                opacity: 0.3;
            }
        }

        @media (max-width: 480px) {
            .content-section, .cards-section, .services-section, .faq-section, .reviews-section, .integrations-section {
                padding: 1.5rem 1rem;
            }
            
            .hero-title {
                font-size: 2.2rem;
                letter-spacing: 1px;
                text-align: left;
            }
            
            .section-title, .services-text h2, .faq-title, .integrations-title, .ia-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .services-text p {
                font-size: 1.1rem;
                text-align: center;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.5;
                text-align: left;
            }
            
            .badge {
                font-size: 0.7rem !important;
                padding: 0.5rem 1rem !important;
                white-space: nowrap;
                width: auto;
                display: inline-flex;
                margin: 0 auto 0.5rem !important;
            }
            
            .badge-mexico {
                font-size: 0.65rem !important;
                padding: 0.4rem 0.8rem !important;
                letter-spacing: 1.2px;
                margin: 0 auto 1rem !important;
            }
            
            .card {
                padding: 1.2rem 0.8rem;
                min-height: 280px !important;
            }
            
            .card-icon-container {
                text-align: left !important;
                margin-bottom: 0.8rem !important;
            }
            
            .card-icon {
                width: 50px !important;
                height: 50px !important;
                font-size: 1.5rem !important;
                margin: 0 !important;
                margin-right: auto !important;
            }
            
            .card h3 {
                font-size: 1.1rem !important;
                margin-bottom: 0.8rem !important;
                line-height: 1.2;
            }
            
            .card p {
                font-size: 0.8rem !important;
                line-height: 1.4;
                margin-bottom: 1rem !important;
                display: block !important;
                -webkit-line-clamp: unset !important;
                -webkit-box-orient: unset !important;
                overflow: visible !important;
            }
            
            .card-button,
            .modern-button {
                padding: 0.6rem 1rem !important;
                font-size: 0.75rem !important;
                min-height: 40px !important;
            }
            
            .cards-container {
                gap: 0.8rem !important;
            }
            
            .integrations-row {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.8rem;
            }
            
            .integrations-section {
                padding: 1.5rem 0.8rem;
            }
            
            .integrations-title {
                font-size: 1.5rem;
            }
            
            .integrations-badge {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
            }
            
            .integrations-subtitle {
                font-size: 0.9rem;
                padding: 0 0.5rem;
            }
            
            .card-inner {
                padding: 1rem 0.8rem;
            }
            
            .card-icon-glow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }
            
            .card-inner h3 {
                font-size: 0.95rem;
            }
            
            .card-inner p {
                font-size: 0.75rem;
                line-height: 1.3;
                margin-bottom: 0.8rem;
            }
            
            .card-stats span {
                font-size: 0.6rem;
                padding: 0.2rem 0.6rem;
            }
            
            .integrations-button {
                padding: 0.7rem 1.2rem;
                font-size: 0.8rem;
                gap: 0.8rem;
            }
            
            .accordion-header {
                padding: 1rem 1.2rem;
                font-size: 1rem;
                text-align: left;
            }
            
            .accordion-content {
                padding: 0 1.2rem;
            }
            
            .accordion-content.active {
                padding: 1rem 1rem 1.2rem 1rem;
            }
            
            .accordion-content p {
                font-size: 0.9rem;
                text-align: left;
            }
            
            .personal-consult-module {
                margin: 2rem auto !important;
                padding: 1.5rem 1rem;
                width: 90%;
            }
            
            .personal-consult-module h3 {
                font-size: 1.4rem;
            }
            
            .personal-consult-module p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .personal-consult-module .cta-button {
                font-size: 0.7rem;
                padding: 1rem 1.5rem;
                min-height: 55px;
            }
            
            .rating-main {
                flex-direction: column;
                gap: 1rem;
            }
            
            .rating-number {
                font-size: 2.5rem;
            }
            
            .rating-stars {
                font-size: 1.3rem;
            }
            
            .rating-count {
                font-size: 0.9rem;
            }
            
            .review-header {
                flex-direction: row;
                text-align: left;
                gap: 0.8rem;
            }
            
            .review-avatar {
                margin-right: 1rem;
            }
            
            .google-badge {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }
            
            .review-counter {
                font-size: 0.8rem;
            }
            
            .google-link a {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }
            
            .ia-module {
                padding: 1.5rem;
                margin: 2rem 0.5rem;
                border-radius: 25px;
            }
            
            .ia-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .ia-title {
                font-size: 1.8rem;
                line-height: 1.2;
            }
            
            .ia-subtitle {
                font-size: 0.9rem;
            }
            
            .ia-content {
                font-size: 1rem;
                line-height: 1.6;
                margin: 1.5rem 0 2rem 0;
            }
            
            .ia-highlight {
                padding: 1.5rem 1rem;
            }
            
            .ia-highlight-icon {
                font-size: 1.8rem;
            }
            
            .ia-highlight h4 {
                font-size: 1.1rem;
            }
            
            .ia-highlight p {
                font-size: 0.9rem;
            }
            
            .hologram-text {
                font-size: 0.7rem;
                letter-spacing: 1.5px;
                opacity: 0.25;
            }
        }

        @media (max-width: 360px) {
            .hero-title {
                font-size: 1.8rem;
                text-align: left;
            }
            
            .section-title, .services-text h2, .faq-title, .integrations-title, .ia-title {
                font-size: 1.7rem;
            }
            
            .badge {
                font-size: 0.65rem !important;
                padding: 0.4rem 0.8rem !important;
            }
            
            .badge-mexico {
                font-size: 0.6rem !important;
                padding: 0.3rem 0.6rem !important;
            }
            
            .quantum-orb {
                width: 200px;
                height: 200px;
            }
            
            .card {
                min-height: 260px !important;
                padding: 1rem 0.6rem !important;
            }
            
            .card h3 {
                font-size: 1rem !important;
            }
            
            .card p {
                font-size: 0.75rem !important;
            }
            
            .cards-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .integrations-row {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.6rem;
            }
            
            .integrations-title {
                font-size: 1.4rem;
            }
            
            .card-inner {
                padding: 0.8rem 0.6rem;
            }
            
            .card-icon-glow {
                width: 35px;
                height: 35px;
                font-size: 1rem;
                margin-bottom: 0.6rem;
            }
            
            .card-inner h3 {
                font-size: 0.85rem;
            }
            
            .card-inner p {
                font-size: 0.7rem;
                line-height: 1.2;
                margin-bottom: 0.6rem;
            }
            
            .card-stats span {
                font-size: 0.55rem;
                padding: 0.15rem 0.5rem;
            }
            
            .ia-icon {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            
            .ia-title {
                font-size: 1.5rem;
            }
            
            .ia-content {
                font-size: 0.95rem;
            }
            
            .hologram-text {
                font-size: 0.6rem;
                letter-spacing: 1px;
                opacity: 0.2;
            }
        }
    