Luminous Acquisitions

Our Portfolio

Showcasing our successful partnerships and investments

We don't just provide marketing services - we invest in businesses we believe in. Our portfolio showcases the companies we've helped grow through strategic marketing and equity partnerships.

42+ Successful Projects
215% Average Growth

Click "View Case Study" on any project to see client testimonials and recommendation letters

Ned Africa Construction

Construction

Comprehensive branding, company strategy and management for Zimbabwe's fastest-growing construction firm.

Equity Partner View Case Study

Vigor Energy Group

Solar

Digital marketing and sales system implementation for residential and commercial solar provider.

Revenue & Equity Share Partner View Case Study

AquaZim Technologies

Interior Design

Brand development and content marketing for high-end kitchen and bathroom firm.

Marketing Partner View Case Study
Video Testimonial Available Recommendation Letter Available

Drillmark Bearings & Engineering

Industrial

Comprehensive content strategy and brand development for Zimbabwe's premier supplier of bearings and engineering solutions, with targeted campaigns for mining and farming sectors.

Marketing Partner View Case Study
Video Testimonial Available Recommendation Letter Available

Wildfin Financial Services

Corporate

Comprehensive marketing strategy and brand repositioning for leading financial services provider.

Marketing Partner View Case Study
Video Testimonial Available

Click n Pay Africa

Corporate

Strategic marketing partnership driving growth across digital payments, microfinance, and remittance services, with significant increase in *788# USSD platform adoption.

Marketing Partner View Case Study
Video Testimonial Available Recommendation Letter Available

Thronesat Energy Solutions

Solar

Marketing strategy and sales system implementation for commercial solar solutions provider.

Equity Partner View Case Study

Corporate Shop

Interior Design

Digital presence development and content strategy for luxury interior design studio.

Marketing Partner View Case Study
Video Testimonial Available Recommendation Letter Available

Offixmore Marketing

Furniture

Brand positioning and e-commerce strategy for premium furniture retailer.

Revenue Share Partner View Case Study

Our Investment Approach

We combine marketing expertise with strategic investment to create sustainable growth for our partners. Our approach is built on three key pillars:

Marketing Expertise

We bring world-class branding, digital marketing, and content production to elevate your market presence and generate qualified leads.

  • Brand development & positioning
  • Digital marketing strategies
  • Content production & distribution

Strategic Investment

We provide capital and resources through equity partnerships and revenue share models, aligning our success with yours.

  • Equity partnerships
  • Revenue share agreements
  • Strategic resource allocation

Growth Support

We implement sales systems, operational improvements, and strategic guidance to accelerate your business growth.

  • Sales system implementation
  • Operational optimization
  • Strategic business consulting

Our Success Metrics

We measure our success by the growth and achievements of our portfolio companies. Here's what we've accomplished together:

Portfolio Growth Metrics

Key Performance Indicators

Revenue Growth

215%

Average revenue growth across portfolio companies

Lead Generation

300%

Average increase in qualified leads

Conversion Rate

75%

Average improvement in lead-to-customer conversion

Client Satisfaction

98%

Client satisfaction rate across all projects

Featured Case Study

See how our strategic partnership approach transformed one of our portfolio companies.

Construction

Ned Africa Construction

Ned Africa Construction faced challenges in brand visibility and lead generation despite delivering exceptional quality in their projects. As a fast-growing construction firm in Zimbabwe, they needed a strategic partner to help scale their operations.

Our Approach:

  • Comprehensive brand development and positioning
  • Implementation of digital marketing strategy
  • Sales system optimization and CRM setup
  • Strategic equity investment for expansion

Results:

  • 250% increase in qualified leads within 6 months
  • 185% growth in revenue year-over-year
  • Expanded operations to 3 new cities
  • Established as the premier construction firm in the region
Read Full Case Study
Ned Africa Construction Project

Partner With Us

Are you ready to accelerate your business growth? We're looking for ambitious companies with strong potential to join our portfolio.

Investment Criteria

Established Business

Minimum 1 year in operation with proven market demand

Growth Potential

Clear opportunity for scaling with the right marketing and systems

Strong Leadership

Committed founders with vision and execution capability

Schedule Investment Consultation
const maxFileSize = 100 * 1024 * 1024; // 100MB const supportedFormats = ['video/mp4', 'video/webm', 'video/ogg']; if (!file) return; if (!supportedFormats.includes(file.type)) { showNotification('Please upload MP4, WebM, or OGG video files only', 'error'); return; } if (file.size > maxFileSize) { showNotification('File size should not exceed 100MB', 'error'); return; } const progressContainer = document.createElement('div'); progressContainer.className = 'w-full h-2 bg-gray-200 rounded-full overflow-hidden'; const progressBar = document.createElement('div'); progressBar.className = 'h-full bg-primary transition-all duration-300'; progressBar.style.width = '0%'; progressContainer.appendChild(progressBar); const uploadText = document.createElement('p'); uploadText.className = 'text-sm text-gray-600 mt-2'; uploadText.textContent = 'Uploading video...'; videoPlaceholder.innerHTML = ''; videoPlaceholder.appendChild(progressContainer); videoPlaceholder.appendChild(uploadText); const reader = new FileReader(); reader.onprogress = (e) => { if (e.lengthComputable) { const progress = (e.loaded / e.total) * 100; progressBar.style.width = progress + '%'; } }; reader.onload = () => { setTimeout(() => { const video = document.createElement('video'); video.classList.add('w-full', 'h-full', 'rounded-lg'); video.controls = true; video.src = URL.createObjectURL(file); videoPlaceholder.innerHTML = ''; videoPlaceholder.appendChild(video); showNotification('Video uploaded successfully!', 'success'); }, 1000); }; reader.readAsArrayBuffer(file); } function showNotification(message, type) { const notification = document.createElement('div'); notification.className = `fixed top-4 right-4 px-6 py-3 rounded-lg shadow-lg z-50 transition-all duration-300 transform translate-y-0 ${type === 'success' ? 'bg-green-500' : 'bg-red-500'} text-white`; notification.textContent = message; document.body.appendChild(notification); setTimeout(() => { notification.classList.add('translate-y-[-100%]', 'opacity-0'); setTimeout(() => notification.remove(), 300); }, 3000); } window.downloadRecommendation = function() { try { const letterContent = ` Click n Pay Africa 4th Floor, Three Anchor House Jason Moyo Ave, Harare Date: ${new Date().toLocaleDateString()} To Whom It May Concern, I am writing to express my highest recommendation for Luminous Acquisitions based on their exceptional work with Click n Pay Africa. Their strategic marketing partnership has been instrumental in our growth across multiple markets and service lines. The team demonstrated deep understanding of the fintech space and delivered remarkable results in increasing our USSD platform adoption and overall brand presence. Their integrated approach to marketing our various services has significantly contributed to our success. We particularly appreciate their data-driven methodology and ability to create targeted campaigns that resonated with our diverse user base. The results speak for themselves - with substantial increases in platform adoption, user acquisition, and transaction volumes. I highly recommend Luminous Acquisitions to any organization looking for a strategic marketing partner that delivers measurable results. Sincerely, Winnet Chimombe Chief Marketing Officer Click n Pay Africa `; const blob = new Blob([letterContent], { type: 'text/plain' }); const url = window.URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = 'ClickNPay_Recommendation_Letter.txt'; document.body.appendChild(a); a.click(); window.URL.revokeObjectURL(url); document.body.removeChild(a); } document.addEventListener('DOMContentLoaded', function() { try { const modal = document.getElementById('case-study-modal'); const closeButton = document.getElementById('close-modal'); const caseStudyContent = document.getElementById('case-study-content'); if (!modal || !closeButton || !caseStudyContent) { console.warn('Some modal elements not found'); return; } window.showModal = function(content) { if (!modal || !caseStudyContent) return; caseStudyContent.innerHTML = content; modal.classList.remove('hidden'); modal.classList.add('flex'); document.body.style.overflow = 'hidden'; } window.hideModal = function() { if (!modal) return; modal.classList.add('hidden'); modal.classList.remove('flex'); document.body.style.overflow = ''; } if (closeButton) { closeButton.addEventListener('click', window.hideModal); } if (modal) { modal.addEventListener('click', (e) => { if (e.target === modal) window.hideModal(); }); } if (closeButton) { closeButton.addEventListener('click', hideModal); } if (modal) { modal.addEventListener('click', (e) => { if (e.target === modal) hideModal(); }); } // Add event listeners to "View Case Study" links const caseStudyLinks = document.querySelectorAll('.portfolio-item a'); caseStudyLinks.forEach(link => { link.addEventListener('click', function(e) { e.preventDefault(); const portfolioItem = this.closest('.portfolio-item'); const category = portfolioItem.getAttribute('data-category'); const title = portfolioItem.querySelector('h3').textContent; const description = portfolioItem.querySelector('p').textContent; const partnerType = portfolioItem.querySelector('.text-sm.text-gray-500').textContent; const imageSrc = portfolioItem.querySelector('img').src; let caseStudyHTML = ''; if (title === "Ned Africa Construction") { caseStudyHTML = `
Construction

Ned Africa Construction

Equity Partner

Ned Africa Construction

Comprehensive branding, company strategy and management for Zimbabwe's fastest-growing construction firm.

Ned Africa Construction has established itself as a leading force in Zimbabwe's construction industry, specializing in both residential and commercial projects. Our partnership focused on scaling their operations while maintaining their reputation for excellence.

Challenge

Despite delivering exceptional quality in their projects, Ned Africa Construction faced challenges in brand visibility, lead generation, and operational scalability as they aimed to expand across multiple cities.

Solution

We implemented a comprehensive growth strategy that combined brand development, digital marketing, and operational systems optimization. This included establishing standardized processes and creating a strong market presence.

Key Initiatives

Results

185%

Revenue Growth

250%

Lead Generation

3

New Cities Expanded

Client Testimonial

Edward Mushore

Managing Director, Ned Africa Construction

`; } else { caseStudyHTML = `
${category.charAt(0).toUpperCase() + category.slice(1)}

${title}

${partnerType}

${title}

${description}

Click n Pay Africa is a leading multinational fintech and financial services provider, offering microfinance, bureau de change, and digital payment solutions across Africa. Our partnership focused on increasing their market presence and driving adoption of their digital services.

Challenge

Click n Pay needed to increase adoption of their *788# USSD platform while simultaneously building awareness for their broader financial services portfolio, including microfinance and remittance solutions.

Solution

We developed an integrated marketing strategy that highlighted the convenience of their digital services while building trust in their financial offerings. This included targeted campaigns for different user segments and comprehensive brand awareness initiatives.

Key Initiatives

Results

250%

USSD Platform Growth

180%

New User Acquisition

320%

Transaction Volume

Client Testimonial

Winnet Chimombe

Chief Marketing Officer, Click n Pay Africa

Download Recommendation Letter
`; showModal(caseStudyHTML); // Add event listener to the close button inside the modal content document.getElementById('close-modal-btn').addEventListener('click', hideModal); }); }); });