import React, { useState, useEffect, useRef, useCallback } from 'react'; import { Play, ChevronLeft, ChevronRight, CheckCircle2, Globe, ArrowRight, Menu, X, Linkedin, Youtube, Mail, Maximize, Award } from 'lucide-react'; // --- TRANSLATIONS DICTIONARY --- const translations = { BM: { nav: { about: "Mengenai", trackRecord: "Rekod", hybridSystem: "Sistem Hybrid", impactSociety: "Impact Society", contact: "Konsultasi" }, hero: { headline: "Membina Pertumbuhan Rangkaian Berstruktur Sejak 2006.", subhead: "90+ Pemimpin 5 Angka Dilahirkan. Sistem Pelaksanaan Hybrid Bertaraf Korporat.", subtext: "Meninggalkan pendekatan tradisional untuk kerjaya berasaskan integriti, dipacu data dan struktur korporat. Kami membina kerangka kerja yang boleh diduplikasi untuk profesional yang serius.", primaryBtn: "Jadualkan Sesi Strategi", secondaryBtn: "Tonton Kerangka Sistem" }, video: { title: "Mesej Peribadi Daripada Faiz Noordin", subtext: "Menstruktur semula landskap pemasaran rangkaian melalui prinsip korporat, SOP yang ketat, dan pelaksanaan berasaskan data." }, trackRecord: { title: "Rekod Pencapaian Industri", stats: [ { value: "20+", label: "Tahun Pengalaman" }, { value: "90+", label: "Penerima 5 Angka" }, { value: "6 Angka", label: "Pendapatan Bulanan" }, { value: "2021-24", label: "Pengurusan Tertinggi" } ], timeline: [ { year: "2006", event: "Bermula dalam Industri" }, { year: "2009", event: "Kelab Multi Millionaires" }, { year: "2010", event: "Kediaman Bangi RM1.1 Juta" }, { year: "2014", event: "Pencapaian RM32,000 Sehari" }, { year: "2018", event: "Top No.1 Swisderm" }, { year: "2024", event: "Restart / Reborn" }, { year: "2026", event: "Arkitek Sistem Hybrid" } ] }, problems: { title: "Dua Masalah Struktur Dalam Industri", prob1Title: "1. Prospecting Tidak Konsisten", prob1Desc: "Pendekatan tradisional sering bergantung kepada motivasi dan bukannya metrik, menyebabkan saluran prospek yang tidak menentu, penolakan tinggi dan keletihan pasaran.", prob2Title: "2. Duplikasi Tidak Berstruktur", prob2Desc: "Tanpa sistem operasi standard (SOP) yang jelas, pertumbuhan terhenti. Pasukan terlalu bergantung kepada karisma individu berbanding proses perniagaan yang direka dengan baik." }, hybrid: { title: "Pendekatan Hybrid Networking System", cols: [ { title: "Offline Closing Mastery", desc: "Strategi rundingan bersemuka tahap eksekutif, psikologi pembeli, dan pembinaan hubungan bernilai tinggi." }, { title: "Online Prospecting Automation", desc: "Sistem penjanaan prospek digital berstruktur dan corong (funnel) untuk memastikan aliran saluran prospek tanpa henti." }, { title: "Structured Duplication Framework", desc: "SOP langkah demi langkah berasaskan korporat yang membolehkan pasukan melaksanakan sistem dengan ralat yang minimum." } ] }, leadership: { title: "Kepimpinan & Pembangunan Eksekutif" }, impact: { title: "Membina Ekosistem Profesional", desc: "Impact Society adalah komuniti eksklusif yang direka untuk golongan profesional, usahawan, dan penggiat rangkaian yang serius. Kami mengutamakan pertumbuhan berstruktur, pembangunan kepimpinan, dan penciptaan kekayaan jangka panjang berbanding taktik promosi jangka pendek (hype).", btn: "Terokai Impact Society" }, cta: { text: "Jika anda serius untuk membina pertumbuhan rangkaian yang berstruktur dan mampan, pastikan sistem anda disejajarkan.", btn: "Tempah Konsultasi Strategi Peribadi" } }, EN: { nav: { about: "About", trackRecord: "Track Record", hybridSystem: "Hybrid System", impactSociety: "Impact Society", contact: "Consultation" }, hero: { headline: "Building Structured Network Growth Since 2006.", subhead: "90+ Five-Figure Leaders Developed. Corporate-Level Hybrid Execution System.", subtext: "Leaving traditional hype behind for an integrity-driven, data-backed corporate structure. We engineer duplicable frameworks for serious professionals.", primaryBtn: "Schedule Strategy Session", secondaryBtn: "Watch System Framework" }, video: { title: "A Personal Message From Faiz Noordin", subtext: "Restructuring the network marketing landscape through corporate principles, strict SOPs, and data-driven execution." }, trackRecord: { title: "Industry Track Record", stats: [ { value: "20+", label: "Years Experience" }, { value: "90+", label: "5-Figure Earners" }, { value: "6-Figure", label: "Monthly Income" }, { value: "2021-24", label: "Top Management" } ], timeline: [ { year: "2006", event: "Industry Inception" }, { year: "2009", event: "Multi Millionaires Club" }, { year: "2010", event: "RM1.1M Bangi Residence" }, { year: "2014", event: "RM32,000/Day Milestone" }, { year: "2018", event: "Top No.1 Swisderm" }, { year: "2024", event: "Restart / Reborn" }, { year: "2026", event: "Hybrid System Architect" } ] }, problems: { title: "Two Major Structural Industry Flaws", prob1Title: "1. Inconsistent Prospecting", prob1Desc: "Traditional approaches often rely on motivation rather than metrics, leading to unpredictable pipelines, high rejection rates, and market burnout.", prob2Title: "2. Unstructured Duplication", prob2Desc: "Without clear standard operating procedures (SOPs), growth stagnates. Teams rely heavily on individual charisma rather than well-engineered business processes." }, hybrid: { title: "The Hybrid Networking System Architecture", cols: [ { title: "Offline Closing Mastery", desc: "Executive-level face-to-face negotiation strategies, buyer psychology, and high-value relationship building." }, { title: "Online Prospecting Automation", desc: "Structured digital lead generation systems and funnels to ensure continuous pipeline flow without manual outreach." }, { title: "Structured Duplication Framework", desc: "Corporate-grade, step-by-step SOPs that allow new members to execute the operational system with minimal error." } ] }, leadership: { title: "Executive Leadership & Training" }, impact: { title: "Building a Professional Ecosystem", desc: "Impact Society is an exclusive community designed for professionals, entrepreneurs, and serious networkers. We prioritize structured growth, operational leadership development, and long-term wealth creation over short-term hype.", btn: "Explore Impact Society" }, cta: { text: "If you are serious about building structured and sustainable network growth, ensure your systems are aligned.", btn: "Book Private Strategy Consultation" } } }; // --- ANIMATION HOOK --- const useScrollReveal = () => { const ref = useRef(null); const [isVisible, setIsVisible] = useState(false); useEffect(() => { const observer = new IntersectionObserver( ([entry]) => { if (entry.isIntersecting) { setIsVisible(true); observer.unobserve(entry.target); } }, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' } ); if (ref.current) observer.observe(ref.current); return () => observer.disconnect(); }, []); return { ref, isVisible }; }; // --- MAIN APP COMPONENT --- export default function App() { const [lang, setLang] = useState('BM'); const [isScrolled, setIsScrolled] = useState(false); const [isFading, setIsFading] = useState(false); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); useEffect(() => { const savedLang = localStorage.getItem('faiz_lang'); if (savedLang && (savedLang === 'BM' || savedLang === 'EN')) { setLang(savedLang); } }, []); const toggleLanguage = (selectedLang) => { if (selectedLang === lang) return; setIsFading(true); setTimeout(() => { setLang(selectedLang); localStorage.setItem('faiz_lang', selectedLang); setTimeout(() => { setIsFading(false); }, 50); }, 400); }; useEffect(() => { const handleScroll = () => setIsScrolled(window.scrollY > 20); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const t = translations[lang]; return (
{/* --- CSS STYLES --- */}