399 lines
17 KiB
HTML
399 lines
17 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>GPS Pricing - Arizona Computer Guru</title>
|
||
<style>
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
body { font-family: 'Segoe UI', Tahoma, sans-serif; line-height: 1.5; color: #333; }
|
||
|
||
.page {
|
||
width: 8.5in;
|
||
height: 11in;
|
||
padding: 0.5in;
|
||
padding-bottom: 0.8in;
|
||
background: white;
|
||
position: relative;
|
||
}
|
||
|
||
@media screen {
|
||
body { background: #f5f5f5; }
|
||
.page { margin: 20px auto; box-shadow: 0 0 20px rgba(0,0,0,0.1); }
|
||
}
|
||
|
||
@media print {
|
||
@page { size: letter; margin: 0; }
|
||
body { margin: 0; padding: 0; }
|
||
.page {
|
||
width: 100%;
|
||
height: 100vh;
|
||
margin: 0;
|
||
padding: 0.5in;
|
||
padding-bottom: 0.8in;
|
||
page-break-after: always;
|
||
}
|
||
.page:last-child { page-break-after: auto; }
|
||
}
|
||
|
||
.header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 3px solid #1e3c72; margin-bottom: 12px; }
|
||
.logo { font-size: 20px; font-weight: bold; color: #1e3c72; }
|
||
.contact { text-align: right; font-size: 10px; color: #666; }
|
||
.contact .phone { font-size: 14px; font-weight: bold; color: #f39c12; }
|
||
|
||
h1 { color: #1e3c72; font-size: 24px; margin-bottom: 6px; }
|
||
h2 { color: #1e3c72; font-size: 16px; margin: 12px 0 8px 0; padding-bottom: 5px; border-bottom: 2px solid #f39c12; }
|
||
.subtitle { font-size: 13px; color: #666; font-style: italic; margin-bottom: 10px; }
|
||
|
||
.hero-box { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); color: white; padding: 15px; border-radius: 8px; margin: 12px 0; }
|
||
.hero-box h2 { color: white; border-bottom: 2px solid #f39c12; margin-top: 0; font-size: 15px; }
|
||
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
|
||
.value-card { background: rgba(255,255,255,0.15); padding: 10px; border-radius: 6px; border-left: 3px solid #f39c12; }
|
||
.value-card h3 { margin: 0 0 6px 0; font-size: 12px; }
|
||
.value-card ul { list-style: none; padding: 0; }
|
||
.value-card li { padding: 2px 0; padding-left: 14px; position: relative; font-size: 10px; }
|
||
.value-card li:before { content: "✓"; position: absolute; left: 0; color: #27ae60; font-weight: bold; font-size: 10px; }
|
||
|
||
.tier-box { background: white; border: 2px solid #e0e0e0; border-radius: 8px; padding: 10px; margin: 8px 0; position: relative; }
|
||
.tier-box.popular { border-color: #f39c12; border-width: 2px; }
|
||
.tier-box .badge { position: absolute; top: -9px; right: 12px; background: #f39c12; color: white; padding: 2px 8px; border-radius: 10px; font-weight: bold; font-size: 9px; }
|
||
.tier-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
|
||
.tier-name { font-size: 13px; font-weight: bold; color: #1e3c72; }
|
||
.tier-price { font-size: 18px; font-weight: bold; color: #27ae60; }
|
||
.tier-price .period { font-size: 10px; color: #666; }
|
||
.features-list { list-style: none; padding: 0; margin: 4px 0; }
|
||
.features-list li { padding: 2px 0; padding-left: 16px; position: relative; font-size: 10px; }
|
||
.features-list li:before { content: "✓"; position: absolute; left: 0; color: #27ae60; font-weight: bold; font-size: 11px; }
|
||
.best-for { background: #e8f5e9; padding: 5px 8px; border-radius: 4px; margin-top: 5px; font-size: 9px; }
|
||
|
||
.callout-box { background: #fff3cd; border-left: 3px solid #f39c12; padding: 8px; margin: 8px 0; border-radius: 3px; font-size: 10px; }
|
||
.callout-box.success { background: #d4edda; border-left-color: #27ae60; }
|
||
.callout-box.info { background: #d1ecf1; border-left-color: #17a2b8; }
|
||
|
||
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 10px 0; }
|
||
.support-card { background: white; border: 2px solid #e0e0e0; border-radius: 8px; padding: 8px; position: relative; }
|
||
.support-card.popular { border-color: #f39c12; }
|
||
.support-card.popular:before { content: "⭐ MOST POPULAR"; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); background: #f39c12; color: white; padding: 2px 6px; border-radius: 8px; font-size: 8px; font-weight: bold; }
|
||
.support-header { text-align: center; margin-bottom: 6px; padding-bottom: 6px; border-bottom: 2px solid #f39c12; }
|
||
.support-name { font-size: 11px; font-weight: bold; color: #1e3c72; margin-bottom: 2px; }
|
||
.support-price { font-size: 15px; font-weight: bold; color: #27ae60; }
|
||
.support-rate { font-size: 8px; color: #666; margin-top: 2px; }
|
||
|
||
.table { width: 100%; border-collapse: collapse; margin: 8px 0; font-size: 10px; }
|
||
.table th { background: #1e3c72; color: white; padding: 5px; text-align: left; }
|
||
.table td { padding: 5px; border-bottom: 1px solid #e0e0e0; }
|
||
|
||
.example-box { background: white; border: 2px solid #1e3c72; border-radius: 8px; padding: 10px; margin: 8px 0; }
|
||
.example-header { font-size: 12px; font-weight: bold; color: #1e3c72; margin-bottom: 4px; }
|
||
.cost-breakdown { background: #f8f9fa; padding: 6px; border-radius: 4px; margin: 4px 0; }
|
||
.cost-breakdown .line-item { display: flex; justify-content: space-between; padding: 2px 0; font-size: 10px; }
|
||
.cost-breakdown .total { font-weight: bold; font-size: 12px; color: #1e3c72; border-top: 2px solid #1e3c72; margin-top: 4px; padding-top: 4px; }
|
||
|
||
.cta-box { background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); color: white; padding: 12px; border-radius: 8px; text-align: center; margin: 10px 0; }
|
||
.cta-box h2 { color: white; border: none; margin: 0 0 4px 0; font-size: 13px; }
|
||
.cta-box .phone-large { font-size: 20px; font-weight: bold; margin: 4px 0; }
|
||
|
||
.footer {
|
||
text-align: center;
|
||
padding-top: 8px;
|
||
border-top: 2px solid #1e3c72;
|
||
color: #666;
|
||
font-size: 9px;
|
||
position: absolute;
|
||
bottom: 0.35in;
|
||
left: 0.5in;
|
||
right: 0.5in;
|
||
background: white;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<!-- PAGE 1: INTRO -->
|
||
<div class="page">
|
||
<div class="header">
|
||
<div class="logo">Arizona Computer Guru</div>
|
||
<div class="contact">
|
||
<div class="phone">520.304.8300</div>
|
||
<div>7437 E. 22nd St, Tucson, AZ 85710</div>
|
||
</div>
|
||
</div>
|
||
|
||
<h1>Complete IT Protection & Support</h1>
|
||
<div class="subtitle">Enterprise-Grade Security + Predictable Monthly Support</div>
|
||
|
||
<p style="font-size: 12px; margin: 10px 0;">We provide comprehensive IT management through our GPS (Guru Protection Services) platform—combining advanced security monitoring with predictable support plans at transparent, competitive rates.</p>
|
||
|
||
<div class="hero-box">
|
||
<h2>What You Get with GPS</h2>
|
||
<div class="value-grid">
|
||
<div class="value-card">
|
||
<h3>🛡️ Enterprise Security</h3>
|
||
<ul>
|
||
<li>Advanced threat detection</li>
|
||
<li>Email security & anti-phishing</li>
|
||
<li>Dark web monitoring</li>
|
||
<li>Security awareness training</li>
|
||
<li>Compliance tools</li>
|
||
</ul>
|
||
</div>
|
||
<div class="value-card">
|
||
<h3>🔧 Proactive Management</h3>
|
||
<ul>
|
||
<li>24/7 monitoring & alerting</li>
|
||
<li>Automated patch management</li>
|
||
<li>Remote support</li>
|
||
<li>Performance optimization</li>
|
||
<li>Regular health reports</li>
|
||
</ul>
|
||
</div>
|
||
<div class="value-card">
|
||
<h3>👥 Predictable Support</h3>
|
||
<ul>
|
||
<li>Fixed monthly rates</li>
|
||
<li>Guaranteed response times</li>
|
||
<li>Included support hours</li>
|
||
<li>Local experienced team</li>
|
||
<li>After-hours emergency</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="callout-box success">
|
||
<strong>Trusted by Tucson businesses for over 20 years.</strong> Let us show you how GPS provides enterprise-grade protection at small business prices.
|
||
</div>
|
||
|
||
<div class="footer">Protecting Tucson Businesses Since 2001 | Page 1 of 4</div>
|
||
</div>
|
||
|
||
<!-- PAGE 2: ALL THREE GPS TIERS -->
|
||
<div class="page">
|
||
<div class="header">
|
||
<div class="logo">Arizona Computer Guru</div>
|
||
<div class="contact"><div class="phone">520.304.8300</div></div>
|
||
</div>
|
||
|
||
<h1>GPS Endpoint Monitoring</h1>
|
||
<div class="subtitle">Choose the protection level that matches your business needs</div>
|
||
|
||
<div class="tier-box">
|
||
<div class="tier-header">
|
||
<div class="tier-name">GPS-BASIC: Essential Protection</div>
|
||
<div class="tier-price">$19<span class="period">/endpoint/month</span></div>
|
||
</div>
|
||
<ul class="features-list">
|
||
<li>24/7 System Monitoring & Alerting</li>
|
||
<li>Automated Patch Management</li>
|
||
<li>Remote Management & Support</li>
|
||
<li>Endpoint Security (Antivirus)</li>
|
||
<li>Monthly Health Reports</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Best For:</strong> Small businesses with straightforward IT environments</div>
|
||
</div>
|
||
|
||
<div class="tier-box popular">
|
||
<span class="badge">⭐ MOST POPULAR</span>
|
||
<div class="tier-header">
|
||
<div class="tier-name">GPS-PRO: Business Protection</div>
|
||
<div class="tier-price">$26<span class="period">/endpoint/month</span></div>
|
||
</div>
|
||
<p style="font-weight: 600; margin-bottom: 3px; font-size: 10px;">Everything in GPS-Basic, PLUS:</p>
|
||
<ul class="features-list">
|
||
<li><strong>Advanced EDR</strong> - Stops threats antivirus misses</li>
|
||
<li><strong>Email Security</strong> - Anti-phishing & spam filtering</li>
|
||
<li><strong>Dark Web Monitoring</strong> - Alerts if credentials compromised</li>
|
||
<li><strong>Security Training</strong> - Monthly phishing simulations</li>
|
||
<li><strong>Cloud Monitoring</strong> - Microsoft 365 & Google protection</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Best For:</strong> Businesses handling customer data or requiring cyber insurance</div>
|
||
</div>
|
||
|
||
<div class="tier-box">
|
||
<div class="tier-header">
|
||
<div class="tier-name">GPS-ADVANCED: Maximum Protection</div>
|
||
<div class="tier-price">$39<span class="period">/endpoint/month</span></div>
|
||
</div>
|
||
<p style="font-weight: 600; margin-bottom: 3px; font-size: 10px;">Everything in GPS-Pro, PLUS:</p>
|
||
<ul class="features-list">
|
||
<li><strong>Advanced Threat Intelligence</strong> - Real-time global threat data</li>
|
||
<li><strong>Ransomware Rollback</strong> - Automatic recovery from attacks</li>
|
||
<li><strong>Compliance Tools</strong> - HIPAA, PCI-DSS, SOC 2 reporting</li>
|
||
<li><strong>Priority Response</strong> - Fast-tracked incident response</li>
|
||
<li><strong>Enhanced SaaS Backup</strong> - Complete M365/Google backup</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Best For:</strong> Healthcare, legal, financial services, or businesses with sensitive data</div>
|
||
</div>
|
||
|
||
<h2 style="margin-top: 8px;">GPS-Equipment Monitoring Pack</h2>
|
||
<p style="font-size: 10px; margin-bottom: 6px;">Extend support plan coverage to network equipment, printers, and other devices</p>
|
||
|
||
<div class="tier-box" style="margin: 6px 0;">
|
||
<div class="tier-header">
|
||
<div class="tier-name">Equipment Monitoring Pack</div>
|
||
<div class="tier-price">$25<span class="period">/month</span></div>
|
||
</div>
|
||
<p style="font-size: 10px; margin-bottom: 3px;"><strong>Covers up to 10 non-computer devices:</strong> Routers, switches, firewalls, printers, scanners, NAS, cameras, and other network equipment. $3 per additional device beyond 10.</p>
|
||
<ul class="features-list">
|
||
<li>Basic uptime monitoring & alerting</li>
|
||
<li>Devices eligible for Support Plan labor coverage</li>
|
||
<li>Quick fixes under 10 minutes included</li>
|
||
<li>Monthly equipment health reports</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Note:</strong> Equipment Pack makes devices eligible for Support Plan hours. Block time covers any device regardless of enrollment.</div>
|
||
</div>
|
||
|
||
<div class="callout-box info">
|
||
<strong>💰 Volume Discounts Available:</strong> Contact us for custom pricing on larger deployments.
|
||
</div>
|
||
|
||
<div class="footer">Protecting Tucson Businesses Since 2001 | Page 2 of 4</div>
|
||
</div>
|
||
|
||
<!-- PAGE 3: SUPPORT PLANS -->
|
||
<div class="page">
|
||
<div class="header">
|
||
<div class="logo">Arizona Computer Guru</div>
|
||
<div class="contact"><div class="phone">520.304.8300</div></div>
|
||
</div>
|
||
|
||
<h1>Support Plans</h1>
|
||
<div class="subtitle">Predictable monthly labor costs with guaranteed response times</div>
|
||
|
||
<div class="support-grid">
|
||
<div class="support-card">
|
||
<div class="support-header">
|
||
<div class="support-name">Essential Support</div>
|
||
<div class="support-price">$200/month</div>
|
||
<div class="support-rate">2 hours included • $100/hr effective</div>
|
||
</div>
|
||
<ul class="features-list">
|
||
<li>Next business day response</li>
|
||
<li>Email & phone support</li>
|
||
<li>Business hours coverage</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Best for:</strong> Minimal IT issues</div>
|
||
</div>
|
||
|
||
<div class="support-card popular">
|
||
<div class="support-header">
|
||
<div class="support-name">Standard Support</div>
|
||
<div class="support-price">$380/month</div>
|
||
<div class="support-rate">4 hours included • $95/hr effective</div>
|
||
</div>
|
||
<ul class="features-list">
|
||
<li>8-hour response guarantee</li>
|
||
<li>Priority phone support</li>
|
||
<li>Business hours coverage</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Best for:</strong> Regular IT needs</div>
|
||
</div>
|
||
|
||
<div class="support-card">
|
||
<div class="support-header">
|
||
<div class="support-name">Premium Support</div>
|
||
<div class="support-price">$540/month</div>
|
||
<div class="support-rate">6 hours included • $90/hr effective</div>
|
||
</div>
|
||
<ul class="features-list">
|
||
<li>4-hour response guarantee</li>
|
||
<li>After-hours emergency support</li>
|
||
<li>Extended coverage</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Best for:</strong> Technology-dependent businesses</div>
|
||
</div>
|
||
|
||
<div class="support-card">
|
||
<div class="support-header">
|
||
<div class="support-name">Priority Support</div>
|
||
<div class="support-price">$850/month</div>
|
||
<div class="support-rate">10 hours included • $85/hr effective</div>
|
||
</div>
|
||
<ul class="features-list">
|
||
<li>2-hour response guarantee</li>
|
||
<li>24/7 emergency support</li>
|
||
<li>Dedicated account manager</li>
|
||
</ul>
|
||
<div class="best-for"><strong>Best for:</strong> Mission-critical operations</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="callout-box">
|
||
<strong>How Labor Hours Work:</strong> Support plan hours are used first each month. If you also have prepaid block time, those hours are used next. Any hours beyond that are billed at $175/hour.
|
||
</div>
|
||
|
||
<div class="callout-box info">
|
||
<strong>📋 Coverage Scope:</strong> Support plan hours apply to GPS-enrolled endpoints, enrolled websites, and devices in the Equipment Pack. Block time applies to any device or service. Quick fixes under 10 minutes are included in monitoring fees. Volume discounts available for larger deployments.
|
||
</div>
|
||
|
||
<h2>Prepaid Block Time (Alternative or Supplement)</h2>
|
||
<p style="font-size: 10px; margin-bottom: 6px;">For projects, seasonal needs, or clients who prefer non-expiring hours. Available to anyone.</p>
|
||
|
||
<table class="table">
|
||
<tr><th>Block Size</th><th>Price</th><th>Effective Rate</th><th>Valid</th></tr>
|
||
<tr><td>10 hours</td><td>$1,500</td><td>$150/hour</td><td>Never expires</td></tr>
|
||
<tr><td>20 hours</td><td>$2,600</td><td>$130/hour</td><td>Never expires</td></tr>
|
||
<tr><td>30 hours</td><td>$3,000</td><td>$100/hour</td><td>Never expires</td></tr>
|
||
</table>
|
||
|
||
<div class="callout-box">
|
||
<strong>Note:</strong> Block time can be purchased by anyone and used alongside a Support Plan. Block hours never expire—use them for special projects or as backup when plan hours run out.
|
||
</div>
|
||
|
||
<div class="footer">Protecting Tucson Businesses Since 2001 | Page 3 of 4</div>
|
||
</div>
|
||
|
||
<!-- PAGE 4: EXAMPLES & CTA -->
|
||
<div class="page">
|
||
<div class="header">
|
||
<div class="logo">Arizona Computer Guru</div>
|
||
<div class="contact"><div class="phone">520.304.8300</div></div>
|
||
</div>
|
||
|
||
<h1>What Will This Cost My Business?</h1>
|
||
|
||
<div class="example-box">
|
||
<div class="example-header">Example 1: Small Office (10 endpoints + 4 devices)</div>
|
||
<p style="font-size: 10px;"><strong>Recommended:</strong> GPS-Pro + Equipment Pack + Standard Support</p>
|
||
<div class="cost-breakdown">
|
||
<div class="line-item"><span>GPS-Pro Monitoring (10 × $26)</span><span>$260</span></div>
|
||
<div class="line-item"><span>Equipment Pack (4 devices)</span><span>$25</span></div>
|
||
<div class="line-item"><span>Standard Support (4 hrs included)</span><span>$380</span></div>
|
||
<div class="line-item total"><span>Total Monthly</span><span>$665</span></div>
|
||
</div>
|
||
<p style="font-size: 9px; margin-top: 4px; color: #27ae60;">✓ All computers + network gear covered • 4 hours labor • 8-hour response</p>
|
||
</div>
|
||
|
||
<div class="example-box">
|
||
<div class="example-header">Example 2: Growing Business (22 endpoints)</div>
|
||
<p style="font-size: 10px;"><strong>Recommended:</strong> GPS-Pro + Premium Support</p>
|
||
<div class="cost-breakdown">
|
||
<div class="line-item"><span>GPS-Pro Monitoring (22 × $26)</span><span>$572</span></div>
|
||
<div class="line-item"><span>Premium Support (6 hrs included)</span><span>$540</span></div>
|
||
<div class="line-item total"><span>Total Monthly</span><span>$1,112</span></div>
|
||
</div>
|
||
<p style="font-size: 9px; margin-top: 4px; color: #27ae60;">✓ 6 hours labor • 4-hour response • After-hours emergency • $51/endpoint total</p>
|
||
</div>
|
||
|
||
<div class="example-box">
|
||
<div class="example-header">Example 3: Established Company (42 endpoints)</div>
|
||
<p style="font-size: 10px;"><strong>Recommended:</strong> GPS-Pro + Priority Support</p>
|
||
<div class="cost-breakdown">
|
||
<div class="line-item"><span>GPS-Pro Monitoring (42 × $26)</span><span>$1,092</span></div>
|
||
<div class="line-item"><span>Priority Support (10 hrs included)</span><span>$850</span></div>
|
||
<div class="line-item total"><span>Total Monthly</span><span>$1,942</span></div>
|
||
</div>
|
||
<p style="font-size: 9px; margin-top: 4px; color: #27ae60;">✓ 10 hours labor • 2-hour response • 24/7 emergency • $46/endpoint total</p>
|
||
</div>
|
||
|
||
<div class="cta-box">
|
||
<h2>Ready to Get Started?</h2>
|
||
<p style="font-size: 10px;">Schedule your free consultation today</p>
|
||
<div class="phone-large">520.304.8300</div>
|
||
<p style="font-size: 9px;"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d5bcbbb3ba95b4afb6bab8a5a0a1b0a7b2a0a7a0fbb6bab8">[email protected]</a> | azcomputerguru.com</p>
|
||
</div>
|
||
|
||
<div class="callout-box success">
|
||
<strong>🎁 Special Offer for New Clients:</strong> Sign up within 30 days and receive waived setup fees, first month 50% off support plans, and a free security assessment ($500 value).
|
||
</div>
|
||
|
||
<div class= |