285 lines
No EOL
8.3 KiB
HTML
285 lines
No EOL
8.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AI Enterprise Suite - Preise</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
padding: 20px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
max-width: 210mm;
|
|
margin: 0 auto;
|
|
background: white;
|
|
border-radius: 20px;
|
|
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
|
|
overflow: hidden;
|
|
height: 297mm;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.header {
|
|
background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
|
|
color: white;
|
|
padding: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 10px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.header p {
|
|
font-size: 1.1rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
padding: 40px;
|
|
flex: 1;
|
|
}
|
|
|
|
.plan {
|
|
background: #f8f9fa;
|
|
border-radius: 15px;
|
|
padding: 25px;
|
|
text-align: center;
|
|
position: relative;
|
|
border: 3px solid transparent;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.plan:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.plan.popular {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border-color: #FFD700;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.plan.popular::before {
|
|
content: "BELIEBTESTE WAHL";
|
|
position: absolute;
|
|
top: -15px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: #FFD700;
|
|
color: #2C3E50;
|
|
padding: 8px 20px;
|
|
border-radius: 20px;
|
|
font-size: 0.8rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.plan h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 15px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.price {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.period {
|
|
font-size: 0.9rem;
|
|
opacity: 0.7;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.features {
|
|
list-style: none;
|
|
margin-bottom: 25px;
|
|
text-align: left;
|
|
}
|
|
|
|
.features li {
|
|
padding: 8px 0;
|
|
position: relative;
|
|
padding-left: 25px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.features li::before {
|
|
content: "✓";
|
|
position: absolute;
|
|
left: 0;
|
|
color: #27AE60;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.plan.popular .features li::before {
|
|
color: #FFD700;
|
|
}
|
|
|
|
.setup-fee {
|
|
background: #e74c3c;
|
|
color: white;
|
|
padding: 8px 15px;
|
|
border-radius: 20px;
|
|
font-size: 0.8rem;
|
|
display: inline-block;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.cta-button {
|
|
background: #2C3E50;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px 25px;
|
|
border-radius: 25px;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
width: 100%;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background: #34495E;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.plan.popular .cta-button {
|
|
background: white;
|
|
color: #667eea;
|
|
}
|
|
|
|
.plan.popular .cta-button:hover {
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.footer {
|
|
background: #2C3E50;
|
|
color: white;
|
|
padding: 25px;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.footer h4 {
|
|
margin-bottom: 10px;
|
|
color: #FFD700;
|
|
}
|
|
|
|
.footer p {
|
|
font-size: 0.9rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.contact {
|
|
border-top: 1px solid #34495E;
|
|
padding-top: 15px;
|
|
font-size: 0.9rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>PowerOn</h1>
|
|
<p>Integrierte AI Plattform für DeineDaten - E-Mail, Kalender & SharePoint Integration</p>
|
|
</div>
|
|
|
|
<div class="pricing-grid">
|
|
<div class="plan">
|
|
<h3>Starter</h3>
|
|
<div class="price">CHF 1'190</div>
|
|
<div class="period">pro Monat</div>
|
|
<div class="setup-fee">Setup: CHF 7'900</div>
|
|
<ul class="features">
|
|
<li>1'000 AI-Abfragen/Monat</li>
|
|
<li>E-Mail Integration</li>
|
|
<li>Basis-Dashboard</li>
|
|
<li>E-Mail Support</li>
|
|
<li>Professional Services: CHF 195/h</li>
|
|
<li><strong>Einsparung: <1 FTE/Jahr</strong></li>
|
|
</ul>
|
|
<button class="cta-button">Jetzt starten</button>
|
|
</div>
|
|
|
|
<div class="plan popular">
|
|
<h3>Professional</h3>
|
|
<div class="price">CHF 3'990</div>
|
|
<div class="period">pro Monat</div>
|
|
<div class="setup-fee">Setup: CHF 14'900</div>
|
|
<ul class="features">
|
|
<li>20'000 AI-Abfragen/Monat</li>
|
|
<li>Vollständige SharePoint Integration</li>
|
|
<li>Advanced Analytics</li>
|
|
<li>Custom Workflows</li>
|
|
<li>Priority Support</li>
|
|
<li>Professional Services: CHF 195/h</li>
|
|
<li><strong>Einsparung: 1-3 FTE/Jahr</strong></li>
|
|
</ul>
|
|
<button class="cta-button">Empfohlen</button>
|
|
</div>
|
|
|
|
<div class="plan">
|
|
<h3>Enterprise</h3>
|
|
<div class="price">CHF 7'990</div>
|
|
<div class="period">pro Monat</div>
|
|
<div class="setup-fee">Setup: CHF 19'900</div>
|
|
<ul class="features">
|
|
<li>50'000 AI-Abfragen/Monat</li>
|
|
<li>Google Workspace Integration</li>
|
|
<li>Dedicated Server Option</li>
|
|
<li>White-Label Lösung</li>
|
|
<li>24/7 Support</li>
|
|
<li>Professional Services: CHF 195/h</li>
|
|
<li><strong>Einsparung: 12+ FTE/Jahr</strong></li>
|
|
</ul>
|
|
<button class="cta-button">CHF 3.25/Min</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<div class="footer-grid">
|
|
<div>
|
|
<h4>Zusätzliche Abfragen</h4>
|
|
<p>CHF 0.20 pro zusätzliche AI-Abfrage bei Überschreitung des Kontingents</p>
|
|
</div>
|
|
<div>
|
|
<h4>Jahresrabatt</h4>
|
|
<p>15% Rabatt bei Jahresvertrag<br>25% Rabatt bei 3-Jahres-Vertrag</p>
|
|
</div>
|
|
<div>
|
|
<h4>Compliance & Sicherheit</h4>
|
|
<p>DSGVO-konform<br>Swiss Cloud Hosting verfügbar</p>
|
|
</div>
|
|
</div>
|
|
<div class="contact">
|
|
<strong>Kontakt:</strong> sales@poweron.ch | +41 44 123 45 67 | Kostenlose Demo verfügbar
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |