:root {
    --primary: #007bff;
    --secondary: #0056b3;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text: #333;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    color: var(--text);
    background: var(--light);
    scroll-behavior: smooth;
}

header {
    background: var(--dark);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.header-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Preis-Tabelle */
.price-card {
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin: 1rem 0;
}

/* Workflow */
.workflow {
    background: #fff;
    padding: 3rem 1rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.step {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary);
}

/* Showcase Sektion */
.showcase-card {
    margin-top: 5rem;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    background: #fff;
    border-left: 5px solid var(--primary);
}

.showcase-label {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.showcase-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.mt-05 {
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--secondary);
}

/* Browser Mockup */
.browser-mockup {
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.browser-header {
    background: #ddd;
    padding: 5px 10px;
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.browser-content {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* CTA Box & Footer */
.cta-box {
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

.btn-white:hover {
    opacity: 0.9;
}

.small-print {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2rem;
    text-align: center;
}

footer {
    text-align: center;
    padding: 4rem 1rem;
    background: #eee;
}

.footer-links {
    margin: 1rem 0;
}
.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
}
.footer-links a:hover {
    color: var(--primary);
}



/* Spezifisch für Impressum/Rechtliches */
.legal-section {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.legal-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-link:hover {
    text-decoration: underline;
}
