<!-- 
  MODULE 3: PACKAGE CARDS GRID
  
  INSTRUCTIONS FOR HUBSPOT:
  1. Go to Design Manager > Create > Module
  2. Name it "Package Cards"
  3. Paste this code in the HTML + HubL section
  4. Save and use in your page
  
  NOTE: Make sure the Niche Selector module is on the page for pricing toggle to work
-->

<style>
.gfd-packages-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gfd-white) 0%, var(--gfd-gray-light) 100%);
}

.gfd-packages-intro {
    text-align: center;
    margin-bottom: 50px;
}

.gfd-packages-intro h2 {
    color: var(--gfd-purple);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gfd-packages-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gfd-text-dark);
}

.gfd-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 70px;
    padding-top: 30px;
}

.gfd-package-card {
    background: var(--gfd-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
}

.gfd-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gfd-purple) 0%, var(--gfd-orange) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gfd-package-card:hover::before {
    opacity: 1;
}

.gfd-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 58, 139, 0.25);
    border-color: var(--gfd-purple-light);
}

.gfd-package-card.featured {
    background: linear-gradient(135deg, rgba(139, 58, 139, 0.03) 0%, rgba(255, 140, 0, 0.03) 100%);
    border: 3px solid var(--gfd-orange);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.gfd-package-card.featured::before {
    opacity: 1;
    height: 8px;
}

.gfd-package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 140, 0, 0.4);
}

.gfd-package-card .badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(135deg, var(--gfd-orange) 0%, var(--gfd-gold) 100%);
    color: var(--gfd-white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.gfd-package-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gfd-purple) 0%, var(--gfd-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.gfd-package-card h3 {
    font-size: 2rem;
    color: var(--gfd-purple);
    margin-bottom: 10px;
    font-weight: 700;
}

.gfd-package-card .tagline {
    color: var(--gfd-gray-dark);
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 500;
}

.gfd-price {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gfd-purple) 0%, var(--gfd-purple-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0;
    line-height: 1;
}

.gfd-price-range {
    font-size: 1.1rem;
    color: var(--gfd-gray-dark);
    display: block;
    background: none;
    -webkit-text-fill-color: var(--gfd-gray-dark);
    font-weight: 400;
}

.gfd-price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
}

.gfd-features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.gfd-features-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--gfd-text-dark);
    line-height: 1.5;
    transition: all 0.3s ease;
}

.gfd-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gfd-orange);
    font-weight: 700;
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    top: 10px;
}

.gfd-features-list li:hover {
    padding-left: 40px;
    color: var(--gfd-purple);
}

.gfd-ad-spend-note {
    font-size: 0.9rem;
    color: #666;
    margin: 20px 0;
    font-style: italic;
    padding: 12px;
    background: rgba(255, 140, 0, 0.05);
    border-left: 3px solid var(--gfd-orange);
    border-radius: 5px;
}

.gfd-package-card .gfd-btn {
    margin-top: 25px;
    width: 100%;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 18px 40px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gfd-package-card .gfd-btn-primary {
    background: linear-gradient(135deg, var(--gfd-orange) 0%, var(--gfd-gold) 100%);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.gfd-package-card .gfd-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.6);
    transform: translateY(-3px);
}

.gfd-package-card .gfd-btn-secondary {
    border: 3px solid var(--gfd-purple);
    background: var(--gfd-white);
}

.gfd-package-card .gfd-btn-secondary:hover {
    background: var(--gfd-purple);
    color: var(--gfd-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 58, 139, 0.4);
}

@media (max-width: 768px) {
    .gfd-packages-section {
        padding: 60px 0;
    }
    
    .gfd-packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gfd-package-card.featured {
        transform: scale(1);
    }

    .gfd-package-card.featured:hover {
        transform: translateY(-10px);
    }

    .gfd-package-card h3 {
        font-size: 1.8rem;
    }

    .gfd-price {
        font-size: 2.3rem;
    }
    
    .gfd-package-icon {
        font-size: 3rem;
    }
    
    .gfd-features-list li {
        font-size: 0.95rem;
    }
}
</style>

<section class="gfd-packages-section" id="packages">
    <div class="gfd-container">
        <div class="gfd-packages-intro">
            <h2>Choose Your Package</h2>
            <p>From establishing consistent presence to driving measurable growth with paid advertising—we have a solution that fits your needs.</p>
        </div>
        
        <div class="gfd-packages-grid">
            
            <!-- FOUNDATION PACKAGE -->
            <div class="gfd-package-card">
                <div class="gfd-package-icon">⚡</div>
                <h3>Foundation</h3>
                <p class="tagline">Building Your Digital Presence</p>
                <div class="gfd-price">
                    <span class="gfd-outdoor-price">$1,200</span>
                    <span class="gfd-healthcare-price" style="display:none;">$1,400</span>
                    <span class="gfd-price-range">/month</span>
                </div>
                <p class="gfd-price-note gfd-outdoor-price">$1,200-1,500/mo</p>
                <p class="gfd-price-note gfd-healthcare-price" style="display:none;">$1,400-1,700/mo</p>
                
                <ul class="gfd-features-list">
                    <li>8-12 social posts/month</li>
                    <li>2 platforms</li>
                    <li>Basic engagement</li>
                    <li>Monthly analytics</li>
                    <li>Quarterly strategy call</li>
                    <li>Phone & email support</li>
                </ul>
                
                <a href="#contact" class="gfd-btn gfd-btn-secondary" style="width: 100%;">Get Started</a>
            </div>

            <!-- MOMENTUM PACKAGE (FEATURED) -->
            <div class="gfd-package-card featured">
                <div class="badge">MOST POPULAR</div>
                <div class="gfd-package-icon">🚀</div>
                <h3>Momentum</h3>
                <p class="tagline">Growing Your Audience</p>
                <div class="gfd-price">
                    <span class="gfd-outdoor-price">$2,400</span>
                    <span class="gfd-healthcare-price" style="display:none;">$2,800</span>
                    <span class="gfd-price-range">/month</span>
                </div>
                <p class="gfd-price-note gfd-outdoor-price">$2,400-2,800/mo</p>
                <p class="gfd-price-note gfd-healthcare-price" style="display:none;">$2,800-3,200/mo</p>
                
                <ul class="gfd-features-list">
                    <li>12-16 social posts/month</li>
                    <li>2-3 platforms</li>
                    <li>1 blog post/month</li>
                    <li>1 email newsletter/month</li>
                    <li>Active community management</li>
                    <li>Monthly 45-min strategy call</li>
                </ul>
                
                <a href="#contact" class="gfd-btn gfd-btn-primary" style="width: 100%;">Get Started</a>
            </div>

            <!-- ACCELERATION PACKAGE -->
            <div class="gfd-package-card">
                <div class="gfd-package-icon">🔥</div>
                <h3>Acceleration</h3>
                <p class="tagline">Driving Measurable Growth</p>
                <div class="gfd-price">
                    <span class="gfd-outdoor-price">$4,800</span>
                    <span class="gfd-healthcare-price" style="display:none;">$5,500</span>
                    <span class="gfd-price-range">/month</span>
                </div>
                <p class="gfd-price-note gfd-outdoor-price">$4,800-5,500/mo</p>
                <p class="gfd-price-note gfd-healthcare-price" style="display:none;">$5,500-6,200/mo</p>
                
                <ul class="gfd-features-list">
                    <li>12-16 strategic posts/month</li>
                    <li>3-4 platforms</li>
                    <li>2 SEO blog posts/month</li>
                    <li>2-3 email campaigns/month</li>
                    <li><strong>Meta Ads INCLUDED</strong></li>
                    <li>Bi-weekly strategy calls</li>
                    <li>Quarterly competitor analysis</li>
                </ul>
                
                <p class="gfd-ad-spend-note">+ $1,500-3,000/mo ad spend (paid to Meta)</p>
                
                <a href="#contact" class="gfd-btn gfd-btn-secondary" style="width: 100%;">Get Started</a>
            </div>

            <!-- BREAKTHROUGH PACKAGE -->
            <div class="gfd-package-card">
                <div class="gfd-package-icon">💎</div>
                <h3>Breakthrough</h3>
                <p class="tagline">Full-Service Partnership</p>
                <div class="gfd-price">
                    <span class="gfd-outdoor-price">$7,000</span>
                    <span class="gfd-healthcare-price" style="display:none;">$7,500</span>
                    <span class="gfd-price-range">/month</span>
                </div>
                <p class="gfd-price-note gfd-outdoor-price">$7,000-9,500/mo</p>
                <p class="gfd-price-note gfd-healthcare-price" style="display:none;">$7,500-10,000/mo</p>
                
                <ul class="gfd-features-list">
                    <li>Everything in Acceleration</li>
                    <li><strong>Google Ads INCLUDED</strong></li>
                    <li>Custom projects (5 hrs/mo)</li>
                    <li>Website updates</li>
                    <li>Partnership coordination</li>
                    <li>Weekly check-ins</li>
                    <li>White-glove service</li>
                </ul>
                
                <p class="gfd-ad-spend-note">+ $4,000-8,000/mo ad spend (paid to platforms)</p>
                
                <a href="#contact" class="gfd-btn gfd-btn-secondary" style="width: 100%;">Get Started</a>
            </div>

        </div>
    </div>
</section>