<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Automate Your Business Growth</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #000000;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .glow {
            text-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7, 0 0 30px #a855f7;
        }

        .purple-glow {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, #000000 70%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%),
                linear-gradient(0deg, transparent 0%, rgba(168, 85, 247, 0.05) 50%, transparent 100%);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            pointer-events: none;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: #c4b5fd;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .cta-section {
            background: rgba(168, 85, 247, 0.1);
            border: 2px solid #a855f7;
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem auto;
            max-width: 600px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .form-content {
            position: relative;
            z-index: 1;
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .form-description {
            color: #c4b5fd;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .input-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #e9d5ff;
            font-weight: 500;
            font-size: 0.95rem;
        }

        input {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid #7c3aed;
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        input:focus {
            outline: none;
            border-color: #a855f7;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
        }

        input::placeholder {
            color: #6b7280;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            border: none;
            border-radius: 12px;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn.loading {
            pointer-events: none;
            opacity: 0.7;
        }

        .submit-btn .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto;
        }

        .submit-btn.loading .spinner {
            display: block;
        }

        .submit-btn.loading .btn-text {
            display: none;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .success-message {
            display: none;
            padding: 1.5rem;
            background: rgba(34, 197, 94, 0.1);
            border: 2px solid #22c55e;
            border-radius: 12px;
            color: #86efac;
            margin-top: 1.5rem;
            text-align: center;
        }

        .success-message.show {
            display: block;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .examples-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #c4b5fd;
            margin-bottom: 4rem;
            font-size: 1.2rem;
        }

        .examples-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }

        .example-card {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
            border: 2px solid #7c3aed;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .example-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .example-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
            border-color: #a855f7;
        }

        .example-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
        }

        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-weight: 700;
        }

        .card-description {
            color: #c4b5fd;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .card-benefits {
            list-style: none;
            margin-top: 1rem;
        }

        .card-benefits li {
            padding: 0.5rem 0;
            color: #e9d5ff;
            position: relative;
            padding-left: 1.5rem;
        }

        .card-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #a855f7;
            font-weight: bold;
        }

        .social-media-section {
            background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
            padding: 6rem 2rem;
        }

        .content-examples {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .content-card {
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid #6b21a8;
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .content-card:hover {
            border-color: #a855f7;
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(168, 85, 247, 0.2);
        }

        .content-type {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .content-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #ffffff;
        }

        .content-description {
            color: #c4b5fd;
            font-size: 0.95rem;
        }

        footer {
            text-align: center;
            padding: 3rem 2rem;
            color: #9ca3af;
            border-top: 1px solid #1f2937;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 2rem;
            }

            .examples-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>
<body>
    <section class="hero">
        <div class="hero-content">
            <h1 class="glow">Automate Your Business Growth</h1>
            <p class="subtitle">Save hours every week with smart automation and professional social media content that converts browsers into buyers</p>
            
            <div class="cta-section purple-glow">
                <div class="form-content">
                    <h2>Book Your Free Strategy Call</h2>
                    <p class="form-description">Discover how automation can transform your business</p>
                    
                    <form id="contactForm">
                        <div class="input-group">
                            <label for="name">Your Name</label>
                            <input type="text" id="name" name="name" placeholder="Enter your full name" required>
                        </div>
                        
                        <div class="input-group">
                            <label for="phone">Phone Number</label>
                            <input type="tel" id="phone" name="phone" placeholder="Enter your phone number" required>
                        </div>
                        
                        <button type="submit" class="submit-btn">
                            <span class="btn-text">Schedule My Free Call</span>
                            <div class="spinner"></div>
                        </button>
                    </form>
                    
                    <div class="success-message" id="successMessage">
                        ✓ Thank you! We'll contact you within 24 hours to schedule your strategy call.
                    </div>
                </div>
            </div>
        </div>
    </section>

    <section class="examples-section">
        <h2 class="section-title">Powerful Automations for Small Business</h2>
        <p class="section-subtitle">Let technology handle the repetitive work while you focus on growing your business</p>
        
        <div class="examples-grid">
            <div class="example-card">
                <div class="card-icon">📧</div>
                <h3 class="card-title">Email Follow-Up Sequences</h3>
                <p class="card-description">Automatically nurture leads with personalized email sequences that convert prospects into paying customers</p>
                <ul class="card-benefits">
                    <li>Welcome new subscribers instantly</li>
                    <li>Send targeted offers based on behavior</li>
                    <li>Re-engage inactive customers automatically</li>
                </ul>
            </div>

            <div class="example-card">
                <div class="card-icon">📊</div>
                <h3 class="card-title">Customer Data Sync</h3>
                <p class="card-description">Keep your customer information perfectly synchronized across all your business tools</p>
                <ul class="card-benefits">
                    <li>Eliminate manual data entry</li>
                    <li>Prevent duplicate contacts</li>
                    <li>Update records across all platforms instantly</li>
                </ul>
            </div>

            <div class="example-card">
                <div class="card-icon">💬</div>
                <h3 class="card-title">Instant Lead Notifications</h3>
                <p class="card-description">Get alerted immediately when potential customers show interest so you can respond while they're hot</p>
                <ul class="card-benefits">
                    <li>SMS alerts for new inquiries</li>
                    <li>Automated lead scoring</li>
                    <li>Priority routing for high-value leads</li>
                </ul>
            </div>

            <div class="example-card">
                <div class="card-icon">📅</div>
                <h3 class="card-title">Appointment Reminders</h3>
                <p class="card-description">Reduce no-shows with automated reminder messages sent at the perfect time</p>
                <ul class="card-benefits">
                    <li>SMS and email reminders</li>
                    <li>Easy rescheduling links</li>
                    <li>Confirmation tracking</li>
                </ul>
            </div>

            <div class="example-card">
                <div class="card-icon">🎯</div>
                <h3 class="card-title">Social Media Posting</h3>
                <p class="card-description">Schedule and publish engaging content across all platforms without lifting a finger</p>
                <ul class="card-benefits">
                    <li>Multi-platform scheduling</li>
                    <li>Content calendar automation</li>
                    <li>Performance tracking</li>
                </ul>
            </div>

            <div class="example-card">
                <div class="card-icon">🛒</div>
                <h3 class="card-title">Order Processing</h3>
                <p class="card-description">Streamline your sales process from order to fulfillment with zero manual work</p>
                <ul class="card-benefits">
                    <li>Automatic invoice generation</li>
                    <li>Inventory updates</li>
                    <li>Customer notifications</li>
                </ul>
            </div>
        </div>
    </section>

    <section class="social-media-section">
        <h2 class="section-title">Social Media Content That Converts</h2>
        <p class="section-subtitle">Professionally crafted posts that engage your audience and drive real results</p>
        
        <div class="content-examples">
            <div class="content-card">
                <span class="content-type">EDUCATIONAL</span>
                <h3 class="content-title">How-To Guides</h3>
                <p class="content-description">Position yourself as the expert with valuable tips and tutorials that solve your customers' problems</p>
            </div>

            <div class="content-card">
                <span class="content-type">PROMOTIONAL</span>
                <h3 class="content-title">Product Showcases</h3>
                <p class="content-description">Highlight your products and services in a way that drives excitement and urgency without being pushy</p>
            </div>

            <div class="content-card">
                <span class="content-type">ENGAGEMENT</span>
                <h3 class="content-title">Interactive Posts</h3>
                <p class="content-description">Polls, questions, and contests that boost engagement and build a loyal community around your brand</p>
            </div>

            <div class="content-card">
                <span class="content-type">TESTIMONIALS</span>
                <h3 class="content-title">Customer Stories</h3>
                <p class="content-description">Leverage social proof with compelling success stories and reviews that build trust with new prospects</p>
            </div>

            <div class="content-card">
                <span class="content-type">TRENDING</span>
                <h3 class="content-title">Timely Content</h3>
                <p class="content-description">Jump on trending topics and seasonal events to maximize reach and stay relevant in your industry</p>
            </div>

            <div class="content-card">
                <span class="content-type">BEHIND-THE-SCENES</span>
                <h3 class="content-title">Brand Personality</h3>
                <p class="content-description">Humanize your business with authentic behind-the-scenes content that creates emotional connections</p>
            </div>
        </div>
    </section>

    <footer>
        <p>&copy; 2026 Your Business Automation Partner. Transform your business with smart automation.</p>
    </footer>

    <script>
        const form = document.getElementById('contactForm');
        const submitBtn = form.querySelector('.submit-btn');
        const successMessage = document.getElementById('successMessage');

        form.addEventListener('submit', async (e) => {
            e.preventDefault();
            
            // Get form data
            const formData = {
                name: document.getElementById('name').value,
                phone: document.getElementById('phone').value
            };

            // Show loading state
            submitBtn.classList.add('loading');

            // Simulate API call (replace with actual n8n webhook URL)
            try {
                // IMPORTANT: Replace this URL with your actual n8n webhook URL
                const webhookURL = 'YOUR_N8N_WEBHOOK_URL_HERE';
                
                // Uncomment this when you have your webhook URL:
                /*
                const response = await fetch(webhookURL, {
                    method: 'POST',
                    headers: {
                        'Content-Type': 'application/json',
                    },
                    body: JSON.stringify(formData)
                });
                */

                // Simulated delay for demo purposes
                await new Promise(resolve => setTimeout(resolve, 1500));

                // Show success message
                submitBtn.classList.remove('loading');
                successMessage.classList.add('show');
                form.reset();

                // Hide success message after 5 seconds
                setTimeout(() => {
                    successMessage.classList.remove('show');
                }, 5000);

            } catch (error) {
                console.error('Error:', error);
                submitBtn.classList.remove('loading');
                alert('Something went wrong. Please try again or call us directly.');
            }
        });

        // Add smooth scrolling for better UX
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                const target = document.querySelector(this.getAttribute('href'));
                if (target) {
                    target.scrollIntoView({
                        behavior: 'smooth',
                        block: 'start'
                    });
                }
            });
        });
    </script>
</body>
</html>
Scroll to Top