* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0071e3;
    --secondary-color: #147ce5;
    --dark-bg: #000000;
    --light-bg: #fbfbfd;
    --text-dark: #1d1d1f;
    --text-light: #6e6e73;
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(251, 251, 253, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    margin-top: 64px;
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 20px; /* Verhindert Abschneiden an den Rändern */
    word-wrap: break-word; /* Text umbricht bei Bedarf */
}

.hero p {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.price-tag {
    display: inline-block;
    margin-top: 24px;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-subtext {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 8px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 48px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Page Hero */
.page-hero {
    margin-top: 64px;
    padding: 80px 20px 60px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    opacity: 0.8;
}

/* Features */
.features {
    padding: 100px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light-bg);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Product Showcase */
.product-showcase {
    padding: 100px 20px;
    background: var(--light-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.showcase-item {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.showcase-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.showcase-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.showcase-item p {
    font-size: 14px;
    color: var(--text-light);
}

.showcase-arrow {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-white {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 48px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 16px 48px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Content Sections */
.content-section {
    padding: 100px 20px;
    background: white;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-light);
}

.text-content ul {
    margin: 24px 0 24px 32px;
}

.text-content li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

.text-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 24px;
}

.text-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Features Detail */
.features-detail {
    padding: 100px 20px;
    background: var(--light-bg);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.detail-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.detail-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Tech Specs */
.tech-section {
    padding: 100px 20px;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--light-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.spec-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.spec-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Process Timeline */
.process-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    align-items: center;
}

.timeline-number {
    min-width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.timeline-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing */
.pricing-section {
    padding: 100px 20px;
    background: white;
}

.pricing-card-main {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 48px;
    text-align: center;
    color: white;
}

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.currency {
    font-size: 36px;
    font-weight: 600;
    margin-top: 8px;
}

.amount {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 24px;
    align-self: flex-end;
    margin-bottom: 12px;
    opacity: 0.9;
}

.pricing-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.pricing-features {
    background: white;
    padding: 48px;
}

.pricing-features h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: #34c759;
    font-weight: 700;
    font-size: 20px;
}

.guarantee-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
    text-align: center;
}

.guarantee-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.guarantee-box p {
    font-size: 14px;
    color: var(--text-light);
}

.buy-button {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.buy-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ROI Calculator */
.roi-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.calculator-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.calculator-input {
    margin-bottom: 32px;
}

.calculator-input label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.calculator-input input,
.calculator-input select {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
    transition: all 0.3s;
    font-family: inherit;
}

.calculator-input input:focus,
.calculator-input select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calculator-result {
    margin-top: 40px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.result-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.result-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-section {
    padding: 100px 20px;
    background: white;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.check-mark {
    color: #34c759;
    font-size: 24px;
    font-weight: 700;
    margin-right: 8px;
}

.cross-mark {
    color: #ff3b30;
    font-size: 24px;
    font-weight: 700;
    margin-right: 8px;
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
}

.faq-question {
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 113, 227, 0.05);
}

.faq-answer {
    padding: 0 32px 24px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 16px;
}

.contact-icon {
    font-size: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item small {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.7;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: normal;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.form-message {
    padding: 20px;
    border-radius: 12px;
    margin-top: 24px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px; /* Kleiner auf Mobile */
        letter-spacing: -1px;
        padding: 0 10px;
    }

    .hero p {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid,
    .feature-detail-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-arrow {
        display: none;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .pricing-header,
    .pricing-features {
        padding: 40px 24px;
    }

    .price-display .amount {
        font-size: 56px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .calculator-box {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px; /* Noch kleiner auf sehr kleinen Bildschirmen */
        letter-spacing: -0.5px;
        line-height: 1.3;
    }

    .price-tag {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 48px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}