<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>G2G Productions</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>

    <!-- NAVIGATION -->
    <header class="navbar">
        <div class="logo">G2G PRODUCTIONS</div>
        <nav>
            <a href="index.html">Home</a>
            <a href="services.html">Services</a>
            <a href="about.html">About</a>
            <a href="contact.html">Contact</a>
        </nav>
    </header>

    <!-- HERO SECTION -->
    <section class="hero">
        <img src="logo.png" alt="G2G Productions Logo" class="hero-logo">

        <h1>Websites. Apps. Production. Built for Growth.</h1>
        <p>Premium digital solutions for businesses ready to scale.</p>

        <div class="hero-buttons">
            <a href="services.html" class="btn gold-btn">View Services</a>
            <a href="contact.html" class="btn outline-btn">Get a Quote</a>
        </div>
    </section>

    <!-- SERVICES PREVIEW -->
    <section class="services-preview">
        <h2>What We Do</h2>

        <div class="service-grid">
            <div class="service-card">
                <h3>Website Development</h3>
                <p>Custom, modern, mobile‑optimized websites built for performance and branding.</p>
            </div>

            <div class="service-card">
                <h3>App Development</h3>
                <p>iOS, Android, and web apps with login systems, subscriptions, AI, and more.</p>
            </div>

            <div class="service-card">
                <h3>Maintenance & Management</h3>
                <p>Monthly support, updates, hosting, analytics, and full digital management.</p>
            </div>
        </div>
    </section>

    <!-- PRICING PREVIEW -->
    <section class="pricing-preview">
        <h2>Pricing Overview</h2>

        <div class="pricing-grid">
            <div class="price-box">
                <h3>Websites</h3>
                <p><strong>$500–$1,500</strong> Basic</p>
                <p><strong>$1,500–$4,000</strong> Business</p>
                <p><strong>$5,000+</strong> Advanced</p>
            </div>

            <div class="price-box">
                <h3>Apps</h3>
                <p><strong>$3,000–$10,000</strong> Basic</p>
                <p><strong>$10,000–$40,000</strong> Mid‑Level</p>
                <p><strong>$50,000+</strong> Enterprise</p>
            </div>

            <div class="price-box">
                <h3>Starter Packages</h3>
                <p><strong>$750 + $75/mo</strong> Starter Website</p>
                <p><strong>$1,500–$2,500 + $125–$250/mo</strong> Business Website</p>
                <p><strong>$5,000–$8,000</strong> Simple App</p>
            </div>
        </div>
    </section>

    <!-- FOOTER -->
    <footer>
        <p>© 2026 G2G Productions. All Rights Reserved.</p>
    </footer>

</body>
</html>
