835 lines
31 KiB
HTML
835 lines
31 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Federated Computer - Business SaaS for Fiber Networks</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
.page {
|
|
max-width: 1200px;
|
|
margin: 20px auto;
|
|
background: white;
|
|
box-shadow: 0 0 20px rgba(0,0,0,0.1);
|
|
page-break-after: always;
|
|
}
|
|
|
|
/* Cover Page */
|
|
.cover {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 80px 60px;
|
|
min-height: 800px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cover::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
right: -20%;
|
|
width: 600px;
|
|
height: 600px;
|
|
background: rgba(255,255,255,0.1);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.cover::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -30%;
|
|
left: -10%;
|
|
width: 400px;
|
|
height: 400px;
|
|
background: rgba(255,255,255,0.05);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 48px;
|
|
font-weight: bold;
|
|
letter-spacing: 2px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.logo::before {
|
|
content: '✦';
|
|
margin-right: 10px;
|
|
font-size: 36px;
|
|
}
|
|
|
|
.cover-content {
|
|
z-index: 1;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.cover h1 {
|
|
font-size: 52px;
|
|
line-height: 1.2;
|
|
margin-bottom: 30px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.cover .subtitle {
|
|
font-size: 24px;
|
|
opacity: 0.95;
|
|
max-width: 700px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.network-illustration {
|
|
margin: 60px 0;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.network-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 20px;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.network-node {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: rgba(255,255,255,0.2);
|
|
border: 2px solid rgba(255,255,255,0.4);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 32px;
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.network-node:nth-child(odd) {
|
|
animation-delay: 0.5s;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); opacity: 0.8; }
|
|
50% { transform: scale(1.1); opacity: 1; }
|
|
}
|
|
|
|
/* Content Pages */
|
|
.content-page {
|
|
padding: 60px;
|
|
}
|
|
|
|
.header {
|
|
border-bottom: 4px solid #667eea;
|
|
padding-bottom: 20px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.header h2 {
|
|
font-size: 42px;
|
|
color: #667eea;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.section h3 {
|
|
font-size: 28px;
|
|
color: #764ba2;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.section h3::before {
|
|
content: '●';
|
|
color: #667eea;
|
|
margin-right: 15px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.section p {
|
|
font-size: 16px;
|
|
line-height: 1.8;
|
|
margin-bottom: 15px;
|
|
color: #555;
|
|
}
|
|
|
|
/* Stats Chart */
|
|
.chart {
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
padding: 40px;
|
|
border-radius: 15px;
|
|
margin: 40px 0;
|
|
}
|
|
|
|
.chart-title {
|
|
text-align: center;
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.bars {
|
|
display: grid;
|
|
gap: 15px;
|
|
}
|
|
|
|
.bar-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.bar-label {
|
|
min-width: 140px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #555;
|
|
}
|
|
|
|
.bar-container {
|
|
flex: 1;
|
|
background: white;
|
|
height: 35px;
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.bar-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding-right: 15px;
|
|
color: white;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
transition: width 1s ease;
|
|
}
|
|
|
|
/* Feature Grid */
|
|
.feature-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 30px;
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.feature-card {
|
|
background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
|
|
padding: 30px;
|
|
border-radius: 15px;
|
|
border-left: 4px solid #667eea;
|
|
}
|
|
|
|
.feature-card h4 {
|
|
font-size: 20px;
|
|
color: #667eea;
|
|
margin-bottom: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 32px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
/* Pricing Table */
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 25px;
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.pricing-card {
|
|
background: white;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 15px;
|
|
padding: 30px;
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
|
|
border-color: #667eea;
|
|
}
|
|
|
|
.pricing-card.featured {
|
|
border: 3px solid #667eea;
|
|
background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
|
|
}
|
|
|
|
.pricing-header {
|
|
text-align: center;
|
|
margin-bottom: 25px;
|
|
padding-bottom: 20px;
|
|
border-bottom: 2px solid #f0f0f0;
|
|
}
|
|
|
|
.pricing-name {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: #667eea;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.pricing-price {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
.pricing-price span {
|
|
font-size: 16px;
|
|
color: #888;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.pricing-features {
|
|
list-style: none;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.pricing-features li {
|
|
padding: 10px 0;
|
|
display: flex;
|
|
align-items: start;
|
|
}
|
|
|
|
.pricing-features li::before {
|
|
content: '✓';
|
|
color: #667eea;
|
|
font-weight: bold;
|
|
margin-right: 10px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.revenue-badge {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 8px 15px;
|
|
border-radius: 20px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
/* Customer Examples */
|
|
.customer-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 20px;
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.customer-icon {
|
|
background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
|
|
padding: 25px;
|
|
border-radius: 15px;
|
|
text-align: center;
|
|
font-size: 48px;
|
|
}
|
|
|
|
.customer-label {
|
|
margin-top: 15px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #555;
|
|
}
|
|
|
|
/* Call to Action */
|
|
.cta {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 50px;
|
|
border-radius: 20px;
|
|
text-align: center;
|
|
margin: 50px 0;
|
|
}
|
|
|
|
.cta h3 {
|
|
font-size: 32px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.cta p {
|
|
font-size: 18px;
|
|
margin-bottom: 30px;
|
|
opacity: 0.95;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
background: white;
|
|
color: #667eea;
|
|
padding: 15px 40px;
|
|
border-radius: 30px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
transition: transform 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.contact-info {
|
|
background: #f9f9f9;
|
|
padding: 30px;
|
|
border-radius: 15px;
|
|
margin-top: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.contact-info h4 {
|
|
color: #667eea;
|
|
margin-bottom: 15px;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.contact-info p {
|
|
font-size: 16px;
|
|
color: #555;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
@media print {
|
|
.page {
|
|
margin: 0;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Cover Page -->
|
|
<div class="page cover">
|
|
<div class="logo">Federated</div>
|
|
<div class="cover-content">
|
|
<h1>Transform Your Fiber Network Into a High-Margin Software Platform</h1>
|
|
<p class="subtitle">Deliver Business SaaS and DevOps Solutions to Your Customers with Federated Computer</p>
|
|
</div>
|
|
<div class="network-illustration">
|
|
<div class="network-grid">
|
|
<div class="network-node">🏢</div>
|
|
<div class="network-node">🏪</div>
|
|
<div class="network-node">🏥</div>
|
|
<div class="network-node">🏫</div>
|
|
<div class="network-node">⚡</div>
|
|
<div class="network-node">⚡</div>
|
|
<div class="network-node">⚡</div>
|
|
<div class="network-node">⚡</div>
|
|
<div class="network-node">💼</div>
|
|
<div class="network-node">👨💼</div>
|
|
<div class="network-node">👩💻</div>
|
|
<div class="network-node">🏠</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Page 1: The Opportunity -->
|
|
<div class="page content-page">
|
|
<div class="header">
|
|
<h2>The Opportunity in 2026</h2>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>The Challenge</h3>
|
|
<p>The fiber business is increasingly competitive. Major players are expanding into more markets every day. A basic fiber connection—whether to homes or businesses—no longer differentiates you from the competition. Revenue teams are asking: <strong>What's our next move?</strong></p>
|
|
</div>
|
|
|
|
<div class="chart">
|
|
<div class="chart-title">What Fiber Customers Want Bundled With Their Broadband</div>
|
|
<div class="bars">
|
|
<div class="bar-item">
|
|
<div class="bar-label">TV Services</div>
|
|
<div class="bar-container">
|
|
<div class="bar-fill" style="width: 61%;">61%</div>
|
|
</div>
|
|
</div>
|
|
<div class="bar-item">
|
|
<div class="bar-label">Mobile</div>
|
|
<div class="bar-container">
|
|
<div class="bar-fill" style="width: 56%;">56%</div>
|
|
</div>
|
|
</div>
|
|
<div class="bar-item">
|
|
<div class="bar-label">Privacy/Security</div>
|
|
<div class="bar-container">
|
|
<div class="bar-fill" style="width: 55%;">55%</div>
|
|
</div>
|
|
</div>
|
|
<div class="bar-item">
|
|
<div class="bar-label">Cloud Storage</div>
|
|
<div class="bar-container">
|
|
<div class="bar-fill" style="width: 43%;">43%</div>
|
|
</div>
|
|
</div>
|
|
<div class="bar-item">
|
|
<div class="bar-label">Smart Home</div>
|
|
<div class="bar-container">
|
|
<div class="bar-fill" style="width: 40%;">40%</div>
|
|
</div>
|
|
</div>
|
|
<div class="bar-item">
|
|
<div class="bar-label">Home Working</div>
|
|
<div class="bar-container">
|
|
<div class="bar-fill" style="width: 38%;">38%</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<p style="text-align: center; margin-top: 20px; font-size: 12px; color: #666;">Source: Ernest & Young Digital Home Survey</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>The Solution</h3>
|
|
<p>Bundle software with your fiber service and unlock <strong>100-200% revenue increases</strong> on existing ARPU with minimal cost. Each dollar invested returns more than $10 in revenue.</p>
|
|
<p>But success requires the right partner—one with the technology, expertise, and support infrastructure to deliver world-class software to your customers.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Page 2: About Federated Computer -->
|
|
<div class="page content-page">
|
|
<div class="header">
|
|
<h2>Your Partner: Federated Computer</h2>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<p style="font-size: 18px; font-weight: 600; color: #667eea; margin-bottom: 20px;">Founded by the inventors of cloud computing (US Patents 8,346,935; 8,555,276; 8,789,050; 8,959,217), Federated Computer helps fiber companies deliver high-value, high-margin software solutions to business and residential customers.</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Comprehensive Software Portfolio</h3>
|
|
<p>Federated Computer enables you to offer a complete suite of SaaS solutions including:</p>
|
|
|
|
<div class="feature-grid">
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">📧</span> Groupware & Email</h4>
|
|
<p>Professional email, calendars, and contact management</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🌐</span> Website Hosting</h4>
|
|
<p>Build and host professional websites with ease</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🔒</span> Cybersecurity</h4>
|
|
<p>VPN, password management, and security tools</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">💼</span> Business Tools</h4>
|
|
<p>CRM, project management, team chat, databases</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">📹</span> Video Conferencing</h4>
|
|
<p>Professional video meetings and collaboration</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">📊</span> Knowledge Management</h4>
|
|
<p>Document storage, wikis, and team knowledge bases</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🎓</span> Education Solutions</h4>
|
|
<p>Tools for schools and educational institutions</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🏛️</span> Government & Non-Profit</h4>
|
|
<p>Specialized solutions for public sector organizations</p>
|
|
</div>
|
|
</div>
|
|
|
|
<p style="margin-top: 30px; font-style: italic; color: #666;">In short: all the software needed to run a modern business on the internet—tailored for every customer on your network.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Page 3: How It Works -->
|
|
<div class="page content-page">
|
|
<div class="header">
|
|
<h2>How It Works</h2>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Simple Integration</h3>
|
|
<p>After paying a small monthly licensing fee, your customers can purchase individual software titles or bundles directly from your existing eCommerce platform at prices you determine.</p>
|
|
</div>
|
|
|
|
<div class="feature-grid">
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🔌</span> Easy API Integration</h4>
|
|
<p>Purchase, modification, or cancellation is simply an API call to the Federated Computer platform.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">⚙️</span> Infrastructure Management</h4>
|
|
<p>We install software on our servers (or yours), keeping everything operational and up-to-date.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🛡️</span> Security & Updates</h4>
|
|
<p>Automatic security patches and feature improvements keep your customers protected and current.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">💬</span> Customer Support</h4>
|
|
<p>We handle technical support via email with 3-hour response time and 6-hour resolution.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">💾</span> Backup & Recovery</h4>
|
|
<p>All data backed up using Backblaze B2—trusted by infrastructure providers for 15+ years.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">📈</span> Go-to-Market Support</h4>
|
|
<p>We help develop bundles, campaigns, and materials to equip your sales team for success.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section" style="margin-top: 50px;">
|
|
<h3>Sales Enablement</h3>
|
|
<p>Selling software is different from selling fiber connections—but we're here to help. Federated Computer provides:</p>
|
|
<ul style="margin-left: 40px; margin-top: 20px;">
|
|
<li style="margin-bottom: 10px;">Go-to-market bundle development</li>
|
|
<li style="margin-bottom: 10px;">Marketing campaigns and sales materials</li>
|
|
<li style="margin-bottom: 10px;">Virtual participation in sales calls</li>
|
|
<li style="margin-bottom: 10px;">Subject-matter expertise for your team</li>
|
|
</ul>
|
|
<p style="margin-top: 20px;">You're partnering with both a technology provider and a go-to-market expert with proven experience.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Page 4: Economics & Customers -->
|
|
<div class="page content-page">
|
|
<div class="header">
|
|
<h2>The Economics of Software</h2>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Transform Your Revenue Per Customer</h3>
|
|
<p>Consider a typical customer, "Sally," with a $70/month 1G fiber line. You understand those economics—infrastructure costs, maintenance, regulatory expenses, support. The margins are what they are.</p>
|
|
<p style="margin-top: 20px;"><strong>But with software, you can transform that line into a high-margin revenue stream.</strong></p>
|
|
</div>
|
|
|
|
<div style="background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%); padding: 40px; border-radius: 20px; margin: 40px 0;">
|
|
<h4 style="font-size: 24px; color: #667eea; margin-bottom: 25px; text-align: center;">Example: Sally's Business Bundle</h4>
|
|
<div style="display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center;">
|
|
<div style="text-align: center;">
|
|
<div style="font-size: 48px; color: #764ba2; font-weight: bold;">$70</div>
|
|
<div style="color: #666; margin-top: 10px;">Fiber Line</div>
|
|
<div style="font-size: 14px; color: #888; margin-top: 5px;">Standard margins</div>
|
|
</div>
|
|
<div style="font-size: 48px; color: #667eea;">+</div>
|
|
<div style="text-align: center;">
|
|
<div style="font-size: 48px; color: #667eea; font-weight: bold;">$150</div>
|
|
<div style="color: #666; margin-top: 10px;">Business Bundle</div>
|
|
<div style="font-size: 14px; color: #888; margin-top: 5px;">High-margin software</div>
|
|
</div>
|
|
</div>
|
|
<div style="text-align: center; margin-top: 30px; padding-top: 30px; border-top: 2px solid #667eea;">
|
|
<div style="font-size: 56px; color: #764ba2; font-weight: bold;">$220</div>
|
|
<div style="color: #333; margin-top: 10px; font-size: 18px; font-weight: 600;">Total Monthly Revenue</div>
|
|
<div style="color: #667eea; margin-top: 10px; font-size: 16px;">214% increase with minimal marginal cost</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>Who Uses Federated Computer?</h3>
|
|
<p>Our customers span every industry and continent (except Antarctica!):</p>
|
|
|
|
<div class="customer-grid">
|
|
<div>
|
|
<div class="customer-icon">🦷</div>
|
|
<div class="customer-label">Dental Practices</div>
|
|
</div>
|
|
<div>
|
|
<div class="customer-icon">⚖️</div>
|
|
<div class="customer-label">Law Offices</div>
|
|
</div>
|
|
<div>
|
|
<div class="customer-icon">⛪</div>
|
|
<div class="customer-label">Churches</div>
|
|
</div>
|
|
<div>
|
|
<div class="customer-icon">🏫</div>
|
|
<div class="customer-label">Schools</div>
|
|
</div>
|
|
<div>
|
|
<div class="customer-icon">🏛️</div>
|
|
<div class="customer-label">Government</div>
|
|
</div>
|
|
<div>
|
|
<div class="customer-icon">🔧</div>
|
|
<div class="customer-label">Tradespeople</div>
|
|
</div>
|
|
<div>
|
|
<div class="customer-icon">👨💻</div>
|
|
<div class="customer-label">Developers</div>
|
|
</div>
|
|
<div>
|
|
<div class="customer-icon">🏠</div>
|
|
<div class="customer-label">Families</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section" style="margin-top: 50px;">
|
|
<h3>Why Customers Choose Us</h3>
|
|
<p>The typical customer using Google Workspace or Microsoft 365 spends more than <strong>$100 per seat per month</strong>. Federated Computer operates on an "unlimited" basis—customers buy features, not seats, allowing them to grow without growing software costs.</p>
|
|
<p style="margin-top: 15px; font-weight: 600; color: #667eea;">Most customers save thousands of dollars every month.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Page 5: Partnership Tiers -->
|
|
<div class="page content-page">
|
|
<div class="header">
|
|
<h2>Partnership Options</h2>
|
|
</div>
|
|
|
|
<p style="font-size: 18px; margin-bottom: 40px; color: #555;">Choose the partnership level that fits your business needs and growth strategy:</p>
|
|
|
|
<div class="pricing-grid">
|
|
<div class="pricing-card featured">
|
|
<div class="pricing-header">
|
|
<div class="pricing-name">On Premise Level</div>
|
|
<div class="pricing-price">$15,000<span>/month</span></div>
|
|
</div>
|
|
<ul class="pricing-features">
|
|
<li>Core Platform on YOUR hardware and private cloud</li>
|
|
<li>Customized bundles from our software catalog</li>
|
|
<li>Third-party software integration available</li>
|
|
<li>Administrative monitoring tools</li>
|
|
<li>eCommerce system integration</li>
|
|
<li>Comprehensive marketing & sales support</li>
|
|
<li>Customer support (3hr response, 6hr resolution)</li>
|
|
</ul>
|
|
<div class="revenue-badge">You retain 80% of revenue</div>
|
|
</div>
|
|
|
|
<div class="pricing-card featured">
|
|
<div class="pricing-header">
|
|
<div class="pricing-name">Marketing-Assist Level</div>
|
|
<div class="pricing-price">$5,000<span>/month</span></div>
|
|
</div>
|
|
<ul class="pricing-features">
|
|
<li>Core Platform on Federated infrastructure</li>
|
|
<li>US, EU, Singapore, Africa, Australia locations</li>
|
|
<li>Customized bundles from software catalog</li>
|
|
<li>eCommerce system integration</li>
|
|
<li>Comprehensive marketing & sales support</li>
|
|
<li>Customer support (3hr response, 6hr resolution)</li>
|
|
</ul>
|
|
<div class="revenue-badge">You retain 60% of revenue</div>
|
|
</div>
|
|
|
|
<div class="pricing-card">
|
|
<div class="pricing-header">
|
|
<div class="pricing-name">Customer-Support Level</div>
|
|
<div class="pricing-price">$2,500<span>/month</span></div>
|
|
</div>
|
|
<ul class="pricing-features">
|
|
<li>Core Platform on Federated infrastructure</li>
|
|
<li>Global infrastructure availability</li>
|
|
<li>eCommerce system integration</li>
|
|
<li>Customized bundles from software catalog</li>
|
|
<li>Customer support through your system</li>
|
|
<li>3-hour response, 6-hour resolution</li>
|
|
</ul>
|
|
<div class="revenue-badge">You retain 40% of revenue</div>
|
|
</div>
|
|
|
|
<div class="pricing-card">
|
|
<div class="pricing-header">
|
|
<div class="pricing-name">Entry Level</div>
|
|
<div class="pricing-price">$500<span>/month</span></div>
|
|
</div>
|
|
<ul class="pricing-features">
|
|
<li>Core Platform on Federated infrastructure</li>
|
|
<li>Global infrastructure availability</li>
|
|
<li>eCommerce system integration</li>
|
|
<li>Existing Federated bundles & products</li>
|
|
<li>Customer support via Federated system</li>
|
|
<li>3-hour response, 6-hour resolution</li>
|
|
</ul>
|
|
<div class="revenue-badge">You retain 20% of revenue</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cta" style="margin-top: 50px;">
|
|
<h3>Try Federated Computer FREE for 30 Days</h3>
|
|
<p>Test the platform yourself. Visit federated.computer, sign up for a free trial, and we'll walk you through all applications and options.</p>
|
|
<a href="https://federated.computer" class="cta-button">Start Free Trial</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Page 6: Technology & Final CTA -->
|
|
<div class="page content-page">
|
|
<div class="header">
|
|
<h2>Proven Technology</h2>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h3>The Federated Core Platform</h3>
|
|
<p>Our technology has been successfully operating for over 3 years, delivering quality solutions to customers around the globe. Built for reliability, security, and continuous improvement.</p>
|
|
</div>
|
|
|
|
<div class="feature-grid">
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🛡️</span> Battle-Tested Reliability</h4>
|
|
<p>3+ years of proven uptime and performance across global deployments</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🔐</span> Security-First Design</h4>
|
|
<p>Built to resist intrusions with continuous security updates</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🚀</span> Innovation Heritage</h4>
|
|
<p>Created by the engineers behind Node.js, containers, and cloud operating systems</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<h4><span class="feature-icon">🌍</span> Global Infrastructure</h4>
|
|
<p>Data centers in US, EU, Singapore, Africa, and Australia</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section" style="margin-top: 50px;">
|
|
<p style="font-size: 16px; line-height: 1.8; color: #555;">Learn more about our complete platform and software catalog at <a href="https://enterprise.federated.computer" style="color: #667eea; font-weight: 600;">enterprise.federated.computer</a></p>
|
|
</div>
|
|
|
|
<div class="cta" style="margin-top: 60px;">
|
|
<h3>Let's Build the Future Together</h3>
|
|
<p>The vision of selling software to your customers requires investment and partnership to find the right mix. Our experience demonstrates that customers want to buy software solutions from their broadband provider.</p>
|
|
<p style="margin-top: 20px; font-size: 20px; font-weight: 600;">The industry is pivoting this way. What will be your answer?</p>
|
|
</div>
|
|
|
|
<div class="contact-info">
|
|
<h4>Ready to Get Started?</h4>
|
|
<p style="font-size: 18px; font-weight: 600; color: #667eea; margin: 20px 0;">David Young</p>
|
|
<p><strong>Email:</strong> david@federated.computer</p>
|
|
<p><strong>Website:</strong> federated.computer</p>
|
|
<p style="margin-top: 20px; color: #888; font-size: 14px;">Federated Computer, Inc.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|