
        /* --- VARIABLES Y RESET CSS (igual que la página de inicio) --- */
        * {
            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;
            --stardust: rgba(255, 255, 255, 0.9);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.15);
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            padding-top: 6rem;
        }

        #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;
        }

        .visual-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: grab;
        }
        .visual-section:active { cursor: grabbing; }

        .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;
        }

        .hero-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 1rem;
            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;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .detail-hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .stat-item {
            background: rgba(255,255,255,0.03);
            padding: 1rem;
            border-radius: 20px;
            border-left: 3px solid var(--neon-blue);
            flex: 1;
            min-width: 100px;
        }
        .stat-number { font-size: 2.2rem; font-weight: 800; color: var(--neon-blue); line-height: 1; }
        .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; }

        .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);
            flex-shrink: 0;
        }
        .feature-text h3 {
            color: white;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
            font-weight: 700;
        }
        .feature-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Núcleo IA */
        .nexus-system {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1500px;
            transform-style: preserve-3d;
        }
        .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;
        }
        .core-layer { position: absolute; border-radius: 50%; transform-style: preserve-3d; }
        .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);
            animation: corePulse 6s ease-in-out infinite;
        }
        .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;
        }
        .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;
        }
        .ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(0,243,255,0.2);
            transform-style: preserve-3d;
        }
        .ring-1 { width: 420px; height: 420px; animation: ringRotate 25s linear infinite; }
        .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); }
        .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;
        }
        .node {
            position: absolute;
            width: 14px; height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(0,243,255,0.4);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            cursor: pointer;
        }
        .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;
            opacity: 0.5;
        }
        .particle-large { width: 7px; height: 7px; background: var(--neon-blue); }
        .hologram-text {
            position: absolute;
            font-family: 'Poiret One', sans-serif;
            font-size: 0.9rem;
            color: var(--matrix-green);
            opacity: 0.4;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: hologramFloat 8s ease-in-out infinite;
            white-space: nowrap;
            pointer-events: none;
        }

        @keyframes corePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
        @keyframes middleRotate { 0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); } 100% { transform: rotateX(360deg) rotateY(180deg) rotateZ(360deg); } }
        @keyframes outerRotate { 0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); } 100% { transform: rotateX(-360deg) rotateY(180deg) rotateZ(-360deg); } }
        @keyframes ringRotate { 0% { transform: rotateX(70deg) rotateY(0deg) rotateZ(0deg); } 100% { transform: rotateX(70deg) rotateY(360deg) rotateZ(360deg); } }
        @keyframes beamPulse { 0%,100% { opacity: 0.2; } 50% { opacity: 0.4; } }
        @keyframes hologramFloat { 0%,100% { transform: translateY(0); opacity: 0.3; } 50% { transform: translateY(-15px); opacity: 0.5; } }

        /* Secciones generales */
        .cards-section, .integrations-section, .combined-section, .process-section, .contact-module {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 4rem auto;
            padding: 2rem;
        }
        .section-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 3rem;
            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;
        }
        .cards-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }
        .card:hover { transform: translateY(-8px); border-color: var(--neon-blue); }
        .card-icon { font-size: 2.5rem; color: var(--neon-blue); margin-bottom: 1.5rem; }
        .card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
        .card p { color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 1.5rem; }
        .card-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: var(--deep-space);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }
        .card-button:hover { gap: 1.2rem; transform: translateY(-3px); }

        /* Sección de integraciones IA */
        .integrations-section {
            background: linear-gradient(135deg, rgba(10,10,15,0.95), rgba(26,11,46,0.95));
            border: 1px solid rgba(0,243,255,0.2);
            border-radius: 40px;
            backdrop-filter: blur(20px);
        }
        .integrations-header { text-align: center; margin-bottom: 3rem; }
        .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.6rem 1.5rem;
            border-radius: 60px;
            color: var(--matrix-green);
            margin-bottom: 1rem;
        }
        .integrations-title { font-size: 2.5rem; font-family: 'Poiret One', sans-serif; }
        .integrations-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .integration-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 24px;
            padding: 1.5rem;
            transition: all 0.3s;
        }
        .integration-card:hover { border-color: var(--neon-blue); transform: translateY(-5px); background: rgba(0,243,255,0.05); }
        .card-icon-glow { font-size: 2rem; color: var(--neon-blue); margin-bottom: 1rem; }
        .integration-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
        .integration-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
        .card-stats span { background: rgba(0,255,157,0.1); border: 1px solid rgba(0,255,157,0.3); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.75rem; display: inline-block; margin-top: 1rem; }

        .combined-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: var(--glass-bg);
            border-radius: 40px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
        }
        .results-block h3, .tech-block h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
            font-family: 'Poiret One', sans-serif;
            color: var(--neon-blue);
        }
        .results-mini-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .result-mini-item {
            background: rgba(255,255,255,0.03);
            padding: 1rem;
            border-radius: 16px;
            text-align: center;
            border-left: 2px solid var(--matrix-green);
        }
        .result-mini-number { font-size: 1.8rem; font-weight: 800; color: var(--matrix-green); }
        .tech-mini-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .tech-mini-item {
            background: rgba(255,255,255,0.03);
            padding: 0.8rem;
            border-radius: 16px;
            text-align: center;
        }
        .tech-mini-item i { font-size: 1.8rem; color: var(--neon-blue); margin-bottom: 0.5rem; display: block; }
        .tech-mini-item span { font-size: 0.8rem; }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        .process-step { text-align: center; }
        .step-number {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 500;
            margin: 0 auto 1rem;
            color: var(--deep-space);
            box-shadow: 0 0 15px rgba(0,243,255,0.3);
        }
        .process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
        .process-step p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

        .contact-module {
            background: linear-gradient(135deg, rgba(0,243,255,0.1), rgba(185,103,255,0.1));
            border: 1px solid rgba(0,243,255,0.3);
            border-radius: 40px;
            text-align: center;
            padding: 3rem;
        }
        .contact-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
        .contact-button-primary, .contact-button-secondary {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s;
        }
        .contact-button-primary { background: linear-gradient(45deg, var(--matrix-green), #00e08c); color: var(--deep-space); }
        .contact-button-secondary { border: 2px solid var(--neon-blue); color: var(--neon-blue); background: transparent; }

        /* RESPONSIVE - exactamente igual a la página de inicio */
        @media (max-width: 1200px) {
            .cards-container { grid-template-columns: repeat(2, 1fr); }
            .integrations-row { grid-template-columns: repeat(2, 1fr); }
            .process-timeline { grid-template-columns: repeat(2, 1fr); }
            .container { grid-template-columns: 1fr; }
            .visual-section { min-height: 50vh; order: 1; }
            .content-section { order: -1; padding: 2rem 1.5rem; text-align: center; }
            .hero-title { font-size: 3rem; }
            .detail-hero-stats { justify-content: center; }
            .combined-grid { grid-template-columns: 1fr; gap: 2rem; }
            .features { text-align: left; }
        }
        @media (max-width: 968px) {
            .container { grid-template-columns: 1fr; }
            .visual-section { min-height: 50vh; order: 1; }
            .content-section { order: -1; padding: 2rem 1.5rem; text-align: left; }
            .hero-title { font-size: 2.8rem; }
            .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
            .badge { margin: 0 0 1rem 0; font-size: 0.8rem; padding: 0.6rem 1.2rem; }
            .features { margin: 1.5rem 0; }
            .feature { flex-direction: row; gap: 0.8rem; padding: 1rem 0; }
            .feature-icon { width: 45px; height: 45px; font-size: 1.1rem; }
        }
        @media (max-width: 768px) {
            /* Ajustes específicos para la sección de integraciones en móvil */
            .integrations-section {
                padding: 1.5rem 0.8rem;
                margin: 2rem 0.5rem;
            }
            .integrations-header {
                margin-bottom: 1.5rem;
            }
            .integrations-badge {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
                margin-bottom: 0.8rem;
            }
            .integrations-title {
                font-size: 1.5rem;
            }
            .integrations-subtitle {
                font-size: 0.8rem;
                padding: 0 0.5rem;
            }
            .integrations-row {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.8rem;
                margin-bottom: 1rem;
            }
            .integration-card {
                padding: 0.8rem;
                border-radius: 16px;
            }
            .card-icon-glow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                margin-bottom: 0.6rem;
            }
            .integration-card h3 {
                font-size: 0.85rem;
                margin-bottom: 0.4rem;
            }
            .integration-card p {
                font-size: 0.7rem;
                line-height: 1.3;
                margin-bottom: 0.6rem;
            }
            .card-stats span {
                font-size: 0.55rem;
                padding: 0.15rem 0.5rem;
                margin-top: 0.3rem;
            }
            .integrations-cta {
                margin-top: 1.2rem;
            }
            .integrations-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.75rem;
                gap: 0.6rem;
            }
            /* Ajustes para cards y demás secciones (igual que inicio) */
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .card {
                padding: 1rem;
            }
            .card-icon {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }
            .card h3 {
                font-size: 1rem;
            }
            .card p {
                font-size: 0.75rem;
                margin-bottom: 1rem;
            }
            .card-button {
                padding: 0.5rem 1rem;
                font-size: 0.7rem;
            }
            .combined-grid {
                padding: 1rem;
                gap: 1rem;
            }
            .results-block h3, .tech-block h3 {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }
            .result-mini-item {
                padding: 0.5rem;
            }
            .result-mini-number {
                font-size: 1.2rem;
            }
            .tech-mini-item {
                padding: 0.4rem;
            }
            .tech-mini-item i {
                font-size: 1.2rem;
            }
            .tech-mini-item span {
                font-size: 0.65rem;
            }
            .process-timeline {
                gap: 1rem;
            }
            .step-number {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            .process-step h3 {
                font-size: 0.9rem;
            }
            .process-step p {
                font-size: 0.7rem;
            }
            .contact-module {
                padding: 1.2rem;
            }
            .contact-module h2 {
                font-size: 1.2rem;
            }
            .contact-module p {
                font-size: 0.8rem;
            }
            .contact-button-primary, .contact-button-secondary {
                padding: 0.6rem 1rem;
                font-size: 0.7rem;
            }
            /* Núcleo IA más pequeño */
            .quantum-orb {
                width: 200px;
                height: 200px;
            }
            .core-inner {
                width: 50px;
                height: 50px;
            }
            .core-middle {
                width: 100px;
                height: 100px;
            }
            .core-outer {
                width: 150px;
                height: 150px;
            }
            .hologram-text {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .integrations-title {
                font-size: 1.3rem;
            }
            .integrations-subtitle {
                font-size: 0.7rem;
            }
            .integration-card h3 {
                font-size: 0.75rem;
            }
            .integration-card p {
                font-size: 0.65rem;
            }
            .card-stats span {
                font-size: 0.5rem;
            }
            .cards-container {
                gap: 0.8rem;
            }
            .hero-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 1.2rem;
            }
            .stat-label {
                font-size: 0.55rem;
            }
        }
        @media (max-width: 360px) {
            .integrations-row {
                grid-template-columns: 1fr !important;
                gap: 0.8rem;
            }
            .cards-container {
                grid-template-columns: 1fr;
            }
            .hero-title {
                font-size: 1.6rem;
            }
        }
    