Lunar Light Creative

Video Editing, Social Media Management, Growth Strategy & Funneling for Creators, Entrepreneurs, and Brands.

We Don’t Just Create.

We Elevate.

100M+ Views

100M+ views turned into measurable conversions, driving growth, revenue, and real business wins for our clients.

2.8M+ Followers

2.8M+ real followers gained by our clients through strategic storytelling and consistent content.

$15M+ Revenue

Our content has helped clients generate over $15 million in sales from VSLs, ads, online courses, content funnel to brand partnerships and others.

Trusted by creators and brands worldwide

$(document).ready(function(){ $('.logo-carousel').slick({ dots: true, arrows: false, infinite: true, speed: 300, slidesToShow: 6, slidesToScroll: 1, autoplay: true, autoplaySpeed: 2000, responsive: [ { breakpoint: 768, settings: { slidesToShow: 3 } }, { breakpoint: 480, settings: { slidesToShow: 2 } } ] }); });

and many more...


Lunar Light Creative results images

"We don’t just create. We elevate.
Content done right can change everything.
We’re here to make sure yours does."
- Aldo A., Founder of Lunar Light Creative

Your Growth,

Our Mission.

Lunar Light Creative is a full-service creative agency based in Perth, Western Australia, helping creators, entrepreneurs, and brands — from Australia and worldwide — grow through strategic content built for impact and virality.From scroll-stopping short-form edits to full-scale content ecosystems, we specialize in video editing, content strategy and funneling, social media management, and smart distribution for clients across the globe.We also offer end-to-end video production services locally through our studios in Perth, Western Australia, and Jakarta, Indonesia, handling everything from shooting to post-production with on-the-ground teams.Whether you need full-service support or just one part of the puzzle, we tailor each solution to fit your goals.So far, our work has helped clients generate over 100 million views, gain 2.8 million+ followers, and drive our clients $15 million+ in revenue across platforms.


Turning Content

Into Growth

Video Editing

For those who want high-quality, scroll-stopping edits without the long turnaround. Perfect for creators or brands who just need clean, compelling edits delivered fast.

  • Reels, Shorts, TikTok, etc.

  • YouTube & Long-Form Editing

  • VSLs & Ads

  • Cinematic / Documentary-Style Cuts

  • Motion Graphics & Explainer Videos

  • Podcast Post Production (Audio & Video)

  • 2D & 3D Animation

  • AI-Generated Visuals

  • Audio Engineering & Sound Design

  • Audio Cleanup, Enhancement & Syncing

  • Mixing & Mastering

  • Custom Sound Effects (SFX) & Sound Design

Social Media Management

For those who want to grow without the daily grind of content planning and posting. We’ll manage your day-to-day posting so your brand stays visible and consistent — while you stay focused on what matters.

  • Content Calendar Planning & Strategy

  • Captions, Hashtag Research & Platform Optimization

  • Scheduling & Publishing (Instagram, Facebook, TikTok, YouTube Shorts, etc.)

  • Brand Voice Consistency Across Platforms

  • Post Formatting, Tagging, and Optimization

  • Audience Engagement (Replying to comments and messages) — available as an add-on

Video Editing + Social Media Management

For those who are tired of juggling freelancers, chasing editors, or posting inconsistently. We handle both video and social so you don’t have to.

Includes everything from:

  • All Video Editing Services

  • All Social Media Management Services

Full Content System

This is our most comprehensive solution where we work closely with you to build a complete, goal-driven content system tailored to your brand.

Includes everything from:

Video Editing + Social Media Management AND

Growth Strategy & Funnel Optimization

  • All Video Editing Services

  • All Social Media Management Services

  • Insights, Reporting, and Data-Driven Growth

  • Trend Research & Content Ideas

  • Community Building & Growth Tactics

  • Sales Funnel Mapping & Offer Positioning

  • Lead Magnet & CTA Integration

  • Platform-Specific Content Funnels (e.g. Instagram → Website, YouTube → Email List)

  • Launch Campaign Planning

End-to-End Video Production

Shooting, directing, editing, and delivering premium video content tailored to your brand. From concept to final export, we bring your story to life with clarity, creativity, and cinematic execution.

  • Brand & Business Videos

  • Interviews & Testimonials

  • Event Coverage & Recaps

  • Product & Promo Videos

  • Food, Hospitality & Venue Shoots

  • Scriptwriting & Direction

  • Full Editing & Post-Production

Currently only available in Perth, Western Australia & Jakarta, Indonesia



Glimpses of Our Work

Some of our proudest work lives under NDA, but here’s a peek at what we’re allowed to share.

LONG-FORM Videos

Courses, VSL’s & ADS

// Optional: enable click-and-drag functionality const container = document.getElementById('carouselContainer'); let isDown = false; let startX; let scrollLeft; container.addEventListener('mousedown', (e) => { isDown = true; container.classList.add('active'); startX = e.pageX - container.offsetLeft; scrollLeft = container.scrollLeft; }); container.addEventListener('mouseleave', () => { isDown = false; container.classList.remove('active'); }); container.addEventListener('mouseup', () => { isDown = false; container.classList.remove('active'); }); container.addEventListener('mousemove', (e) => { if (!isDown) return; e.preventDefault(); const x = e.pageX - container.offsetLeft; const walk = (x - startX) * 1.5; // scroll-fastness container.scrollLeft = scrollLeft - walk; });

YouTube & Podcasts

// Optional: enable click-and-drag functionality const container = document.getElementById('carouselContainer'); let isDown = false; let startX; let scrollLeft; container.addEventListener('mousedown', (e) => { isDown = true; container.classList.add('active'); startX = e.pageX - container.offsetLeft; scrollLeft = container.scrollLeft; }); container.addEventListener('mouseleave', () => { isDown = false; container.classList.remove('active'); }); container.addEventListener('mouseup', () => { isDown = false; container.classList.remove('active'); }); container.addEventListener('mousemove', (e) => { if (!isDown) return; e.preventDefault(); const x = e.pageX - container.offsetLeft; const walk = (x - startX) * 1.5; // scroll-fastness container.scrollLeft = scrollLeft - walk; });

SHORT-FORM Videos

Courses, VSL’s & ADS

// Click-and-drag scroll for shorts const shortsContainer = document.getElementById('shortsCarouselContainer'); let isDragging = false; let startX; let initialScroll; shortsContainer.addEventListener('mousedown', (e) => { isDragging = true; startX = e.pageX - shortsContainer.offsetLeft; initialScroll = shortsContainer.scrollLeft; }); shortsContainer.addEventListener('mouseleave', () => isDragging = false); shortsContainer.addEventListener('mouseup', () => isDragging = false); shortsContainer.addEventListener('mousemove', (e) => { if (!isDragging) return; e.preventDefault(); const x = e.pageX - shortsContainer.offsetLeft; const move = (x - startX) * 1.5; shortsContainer.scrollLeft = initialScroll - move; });

REELS, SHORTS, TIKTOK ETC

// Click-and-drag scroll for shorts const shortsContainer = document.getElementById('shortsCarouselContainer'); let isDragging = false; let startX; let initialScroll; shortsContainer.addEventListener('mousedown', (e) => { isDragging = true; startX = e.pageX - shortsContainer.offsetLeft; initialScroll = shortsContainer.scrollLeft; }); shortsContainer.addEventListener('mouseleave', () => isDragging = false); shortsContainer.addEventListener('mouseup', () => isDragging = false); shortsContainer.addEventListener('mousemove', (e) => { if (!isDragging) return; e.preventDefault(); const x = e.pageX - shortsContainer.offsetLeft; const move = (x - startX) * 1.5; shortsContainer.scrollLeft = initialScroll - move; });

Let’s Elevate What You Create.



Proven Client Results

A glimpse at how our work translates into growth and tangible outcomes for our clients

Confidential Client

Service: Video Editing & 90 Day Full Content System

Overview

Before partnering with us, the client’s social platforms showed minimal growth and stagnant engagement. In mid-July 2025, we implemented a 90-day full content system that combined creative storytelling with data-driven strategy.

Result:

Massive, scalable growth across every channel in less than three months.

  • +150% increase in revenue

  • 180K → 290K Facebook followers in less than 90 days

  • +77.5K Instagram followers in less than 90 days

  • 120K+ organic YouTube views in 60 days

  • +4K YouTube subscribers

Lunar Light Creative results images
Lunar Light Creative results images
Lunar Light Creative results images

Amplify Performance

Amplify Performance

Service: Video Editing & 30 Day Instagram Funnel Strategy

Overview

Before partnering with us, the client’s social media reach and lead flow were stagnant. We implemented a 30-day campaign combining high-converting video editing with an Instagram funnel strategy built for the automotive niche.

Result:

In just one month, the brand saw a sharp rise in views, engagement, and qualified client orders, turning consistent creative output into measurable business growth.

  • 355.7K total views across all content

  • 109K views in July, 70% came from non-followers

  • 3.8K interactions from performance car enthusiasts

  • 18 new clients gained within 30 days

Lunar Light Creative results images
Lunar Light Creative results images
Lunar Light Creative results images


Get 1 Free Video Edit On Us.
No Catch!

Drop us a message! We typically reply within a few hours - no waiting days for a response.

You can also reach us directly via


🎉 Message Sent!

Thanks for reaching out, we’ve received your message and will get back to you shortly.
We usually reply fast, so keep an eye on your inbox.

While you wait, you can check out our latest work or connect with us on LinkedIn.