Clean Air, Delivered

Sample Page

blob:https://claude.ai/27dd63a9-bedd-4ece-ad51-6d1f97db595c


FilterFresh Pro – Air Filter Guide

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>FilterFresh Pro - Air Filter Guide</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }
        
        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .header .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            font-style: italic;
        }
        
        .section {
            background: white;
            margin-bottom: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .section:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .section-header {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 20px;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .section-content {
            padding: 25px;
        }
        
        .merv-chart {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .merv-card {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .merv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            transition: left 0.5s ease;
        }
        
        .merv-card:hover::before {
            left: 0;
        }
        
        .merv-basic {
            border-color: #fbbf24;
            background: linear-gradient(135deg, #fef3c7, #fed7aa);
        }
        
        .merv-basic::before {
            background: #fbbf24;
        }
        
        .merv-better {
            border-color: #3b82f6;
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        }
        
        .merv-better::before {
            background: #3b82f6;
        }
        
        .merv-best {
            border-color: #10b981;
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
        }
        
        .merv-best::before {
            background: #10b981;
        }
        
        .merv-premium {
            border-color: #8b5cf6;
            background: linear-gradient(135deg, #ede9fe, #ddd6fe);
        }
        
        .merv-premium::before {
            background: #8b5cf6;
        }
        
        .merv-rating {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .filter-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #374151;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .feature-card {
            background: linear-gradient(135deg, #f9fafb, #f3f4f6);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #10b981;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateX(5px);
        }
        
        .feature-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .comparison-table th {
            background: linear-gradient(135deg, #374151, #1f2937);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }
        
        .comparison-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e5e7eb;
            background: white;
        }
        
        .comparison-table tr:nth-child(even) td {
            background: #f9fafb;
        }
        
        .price-highlight {
            background: linear-gradient(135deg, #fef3c7, #fed7aa);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #f59e0b;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #1e40af, #2563eb);
            color: white;
            padding: 40px;
            text-align: center;
            border-radius: 15px;
            margin-top: 30px;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
        }
        
        .benefits-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .benefits-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .health-impact {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border: 2px solid #ef4444;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .cost-calculator {
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            border: 2px solid #10b981;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #fffbeb, #fef3c7);
            border: 2px solid #f59e0b;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            position: relative;
        }
        
        .highlight-box::before {
            content: 'ðŸ’Ą';
            position: absolute;
            top: -10px;
            left: 20px;
            background: #f59e0b;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 1.2rem;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <h1>FilterFresh Pro</h1>
            <div class="tagline">Professional HVAC Air Filter Service</div>
        </div>

        <div class="section">
            <div class="section-header">
                🏠 Why Air Filter Quality Matters
            </div>
            <div class="section-content">
                <div class="health-impact">
                    <h3 style="color: #dc2626; margin-bottom: 15px;">Health Impact</h3>
                    <p>Poor air filtration can lead to respiratory issues, allergies, and reduced indoor air quality. The EPA ranks indoor air pollution among the top 5 environmental health risks.</p>
                </div>
                
                <div class="feature-grid">
                    <div class="feature-card">
                        <div class="feature-icon">ðŸŦ</div>
                        <h4>Respiratory Health</h4>
                        <p>Quality filters remove allergens, dust, and pollutants that can trigger asthma and allergies.</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">💰</div>
                        <h4>Energy Savings</h4>
                        <p>Clean filters improve airflow, reducing energy consumption by up to 15%.</p>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">🔧</div>
                        <h4>System Protection</h4>
                        <p>Proper filtration extends HVAC equipment life and prevents costly repairs.</p>
                    </div>
                </div>
            </div>
        </div>

        <div class="section">
            <div class="section-header">
                📊 MERV Rating System Explained
            </div>
            <div class="section-content">
                <p style="margin-bottom: 20px; font-size: 1.1rem;">MERV (Minimum Efficiency Reporting Value) ratings range from 1-20, measuring a filter's ability to capture particles.</p>
                
                <div class="merv-chart">
                    <div class="merv-card merv-basic">
                        <div class="merv-rating" style="color: #f59e0b;">MERV 1-4</div>
                        <div class="filter-name">Basic Fiberglass</div>
                        <ul style="text-align: left; margin: 15px 0;">
                            <li>Captures: Large particles (>10 Ξm)</li>
                            <li>Dust, lint, pollen</li>
                            <li>20-25% efficiency</li>
                            <li>$1-3 per filter</li>
                        </ul>
                        <div style="background: #f59e0b; color: white; padding: 8px; border-radius: 5px; margin-top: 10px;">
                            <strong>Minimal Protection</strong>
                        </div>
                    </div>
                    
                    <div class="merv-card merv-better">
                        <div class="merv-rating" style="color: #3b82f6;">MERV 8-11</div>
                        <div class="filter-name">Pleated Standard</div>
                        <ul style="text-align: left; margin: 15px 0;">
                            <li>Captures: Medium particles (3-10 Ξm)</li>
                            <li>Mold spores, pet dander</li>
                            <li>65-85% efficiency</li>
                            <li>$5-15 per filter</li>
                        </ul>
                        <div style="background: #3b82f6; color: white; padding: 8px; border-radius: 5px; margin-top: 10px;">
                            <strong>Good Protection</strong>
                        </div>
                    </div>
                    
                    <div class="merv-card merv-best">
                        <div class="merv-rating" style="color: #10b981;">MERV 13-16</div>
                        <div class="filter-name">High Efficiency</div>
                        <ul style="text-align: left; margin: 15px 0;">
                            <li>Captures: Small particles (0.3-3 Ξm)</li>
                            <li>Bacteria, smoke, viruses</li>
                            <li>90-95% efficiency</li>
                            <li>$15-40 per filter</li>
                        </ul>
                        <div style="background: #10b981; color: white; padding: 8px; border-radius: 5px; margin-top: 10px;">
                            <strong>Superior Protection</strong>
                        </div>
                    </div>
                    
                    <div class="merv-card merv-premium">
                        <div class="merv-rating" style="color: #8b5cf6;">MERV 17-20</div>
                        <div class="filter-name">HEPA Grade</div>
                        <ul style="text-align: left; margin: 15px 0;">
                            <li>Captures: Ultra-fine particles (<0.3 Ξm)</li>
                            <li>All allergens, most viruses</li>
                            <li>99.97% efficiency</li>
                            <li>$25-60 per filter</li>
                        </ul>
                        <div style="background: #8b5cf6; color: white; padding: 8px; border-radius: 5px; margin-top: 10px;">
                            <strong>Maximum Protection</strong>
                        </div>
                    </div>
                </div>
                
                <div class="highlight-box">
                    <h4 style="margin-top: 20px;">Recommended: MERV 11-13 for Most Homes</h4>
                    <p>Provides excellent filtration without restricting airflow in standard residential HVAC systems.</p>
                </div>
            </div>
        </div>

        <div class="section">
            <div class="section-header">
                🏆 Filter Type Comparison
            </div>
            <div class="section-content">
                <table class="comparison-table">
                    <thead>
                        <tr>
                            <th>Filter Type</th>
                            <th>MERV Rating</th>
                            <th>Lifespan</th>
                            <th>Best For</th>
                            <th>Price Range</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><strong>Fiberglass</strong></td>
                            <td>1-4</td>
                            <td>30 days</td>
                            <td>Basic dust protection</td>
                            <td>$1-3</td>
                        </tr>
                        <tr>
                            <td><strong>Pleated Standard</strong></td>
                            <td>8-11</td>
                            <td>90 days</td>
                            <td>Most residential homes</td>
                            <td>$8-15</td>
                        </tr>
                        <tr>
                            <td><strong>Pleated Premium</strong></td>
                            <td>13-16</td>
                            <td>90 days</td>
                            <td>Allergies, pets, high dust</td>
                            <td>$15-30</td>
                        </tr>
                        <tr>
                            <td><strong>Electrostatic</strong></td>
                            <td>8-12</td>
                            <td>Washable/Reusable</td>
                            <td>Eco-conscious homeowners</td>
                            <td>$20-40</td>
                        </tr>
                        <tr>
                            <td><strong>HEPA</strong></td>
                            <td>17-20</td>
                            <td>180 days</td>
                            <td>Severe allergies, medical needs</td>
                            <td>$25-60</td>
                        </tr>
                        <tr>
                            <td><strong>Carbon/Odor</strong></td>
                            <td>8-13</td>
                            <td>90 days</td>
                            <td>Odors, VOCs, cooking smells</td>
                            <td>$12-25</td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>

        <div class="section">
            <div class="section-header">
                ðŸ’Ą When to Replace Your Filter
            </div>
            <div class="section-content">
                <div class="feature-grid">
                    <div class="feature-card">
                        <div class="feature-icon">📅</div>
                        <h4>Time-Based</h4>
                        <ul style="margin-top: 10px;">
                            <li>Basic filters: 30 days</li>
                            <li>Pleated filters: 90 days</li>
                            <li>HEPA filters: 6 months</li>
                        </ul>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">👁ïļ</div>
                        <h4>Visual Inspection</h4>
                        <ul style="margin-top: 10px;">
                            <li>Visible dirt buildup</li>
                            <li>Clogged filter surface</li>
                            <li>Gray or dark coloration</li>
                        </ul>
                    </div>
                    <div class="feature-card">
                        <div class="feature-icon">🏠</div>
                        <h4>System Performance</h4>
                        <ul style="margin-top: 10px;">
                            <li>Reduced airflow</li>
                            <li>Higher energy bills</li>
                            <li>More dust in home</li>
                        </ul>
                    </div>
                </div>
                
                <div class="highlight-box">
                    <h4 style="margin-top: 20px;">Don't Wait Too Long!</h4>
                    <p>A dirty filter can increase energy costs by 15% and reduce HVAC system lifespan by years.</p>
                </div>
            </div>
        </div>

        <div class="section">
            <div class="section-header">
                💰 Cost Analysis: DIY vs FilterFresh Pro
            </div>
            <div class="section-content">
                <div class="cost-calculator">
                    <h3 style="color: #059669; margin-bottom: 15px;">Annual Cost Comparison</h3>
                    <table class="comparison-table">
                        <thead>
                            <tr>
                                <th>Expense</th>
                                <th>DIY Approach</th>
                                <th>FilterFresh Pro</th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <td>Filter Cost (4 changes/year)</td>
                                <td>$40-80</td>
                                <td>$45-85</td>
                            </tr>
                            <tr>
                                <td>Time Value (2 hrs @ $25/hr)</td>
                                <td>$50</td>
                                <td>$0</td>
                            </tr>
                            <tr>
                                <td>Transportation/Shopping</td>
                                <td>$20</td>
                                <td>$0</td>
                            </tr>
                            <tr>
                                <td>Service Fee</td>
                                <td>$0</td>
                                <td>$80-120</td>
                            </tr>
                            <tr>
                                <td>Forgotten Changes (energy waste)</td>
                                <td>$75-150</td>
                                <td>$0</td>
                            </tr>
                            <tr style="font-weight: bold; background: #f3f4f6;">
                                <td><strong>Total Annual Cost</strong></td>
                                <td><strong>$185-300</strong></td>
                                <td><strong>$125-205</strong></td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                
                <div class="price-highlight">
                    <h4>FilterFresh Pro Advantage</h4>
                    <ul class="benefits-list">
                        <li>Save $60-95 annually compared to DIY when factoring in missed changes</li>
                        <li>Never forget another filter change</li>
                        <li>Professional installation and system inspection</li>
                        <li>Bulk purchasing power for better filter prices</li>
                        <li>Right filter for your specific system</li>
                    </ul>
                </div>
            </div>
        </div>

        <div class="section">
            <div class="section-header">
                ðŸŽŊ FilterFresh Pro Service Plans
            </div>
            <div class="section-content">
                <div class="merv-chart">
                    <div class="merv-card merv-basic">
                        <div class="merv-rating" style="color: #f59e0b;">Basic Plan</div>
                        <div class="filter-name">$19.99/visit</div>
                        <ul style="text-align: left; margin: 15px 0;">
                            <li>MERV 8-11 filters included</li>
                            <li>Quarterly service visits</li>
                            <li>Basic system inspection</li>
                            <li>Service reminders</li>
                        </ul>
                        <div style="background: #f59e0b; color: white; padding: 8px; border-radius: 5px; margin-top: 10px;">
                            <strong>Great Value</strong>
                        </div>
                    </div>
                    
                    <div class="merv-card merv-better">
                        <div class="merv-rating" style="color: #3b82f6;">Premium Plan</div>
                        <div class="filter-name">$29.99/visit</div>
                        <ul style="text-align: left; margin: 15px 0;">
                            <li>MERV 13 high-efficiency filters</li>
                            <li>Air quality testing</li>
                            <li>System performance report</li>
                            <li>Priority scheduling</li>
                        </ul>
                        <div style="background: #3b82f6; color: white; padding: 8px; border-radius: 5px; margin-top: 10px;">
                            <strong>Most Popular</strong>
                        </div>
                    </div>
                    
                    <div class="merv-card merv-best">
                        <div class="merv-rating" style="color: #10b981;">Deluxe Plan</div>
                        <div class="filter-name">$39.99/visit</div>
                        <ul style="text-align: left; margin: 15px 0;">
                            <li>Premium HEPA or specialty filters</li>
                            <li>Comprehensive system inspection</li>
                            <li>Maintenance recommendations</li>
                            <li>24/7 customer support</li>
                        </ul>
                        <div style="background: #10b981; color: white; padding: 8px; border-radius: 5px; margin-top: 10px;">
                            <strong>Complete Care</strong>
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <div class="cta-section">
            <h2 style="margin-bottom: 20px;">Ready to Breathe Easier?</h2>
            <p style="font-size: 1.2rem; margin-bottom: 25px;">Join hundreds of homeowners who trust FilterFresh Pro for cleaner air and lower energy bills.</p>
            
            <button class="cta-button">Schedule Free Consultation</button>
            <button class="cta-button">Call (555) 123-FILTER</button>
            
            <div style="margin-top: 20px; font-size: 1.1rem;">
                <strong>Special Offer:</strong> First filter replacement FREE with annual plan signup!
            </div>
        </div>
    </div>
</body>
</html>