@charset "utf-8";
/* CSS Document */
/* Landing Page spezifische Styles */
        .hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            color: #6c757d;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .trust-indicators {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 60px;
        }
        
        .trust-item {
            text-align: center;
            padding: 20px;
        }
        
        .trust-icon {
            font-size: 3rem;
            color: #28a745;
            margin-bottom: 15px;
        }
        
        .trust-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .trust-description {
            color: #6c757d;
            font-size: 0.95rem;
        }
        
        .evolution-section {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .evolution-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .evolution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-color: #28a745;
        }
        
        .evolution-icon {
            font-size: 3.5rem;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .evolution-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .evolution-description {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .evolution-benefits {
            list-style: none;
            padding: 0;
        }
        
        .evolution-benefits li {
            padding: 5px 0;
            color: #495057;
        }
        
        .evolution-benefits li:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .comparison-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .comparison-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .comparison-header {
            background: #2c3e50;
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .comparison-header h3 {
            margin: 0;
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .comparison-row {
            display: flex;
            border-bottom: 1px solid #dee2e6;
        }
        
        .comparison-row:last-child {
            border-bottom: none;
        }
        
        .comparison-cell {
            flex: 1;
            padding: 20px;
            text-align: center;
        }
        
        .comparison-cell.feature {
            background: #f8f9fa;
            font-weight: 600;
            color: #2c3e50;
            text-align: left;
        }
        
        .comparison-cell.traditional {
            color: #dc3545;
        }
        
        .comparison-cell.modern {
            color: #28a745;
            font-weight: 600;
        }
        
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
			margin-bottom: -50px;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
			color: #ffffff;
        }
        
        .cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }
        
        .cta-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            max-width: 600px;
            margin: 0 auto;
            color: #2c3e50;
        }
        
        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }
        
        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
            color: #ffffff;
        }
        
        .form-control {
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 15px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #28a745;
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        }
        
        .btn-cta {
            background: #28a745;
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-cta:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        }
        
        .privacy-note {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 20px;
            text-align: center;
        }
        
        .testimonials-section {
            padding: 80px 0;
            background: white;
        }
        
        .testimonial-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-quote {
            font-size: 1.1rem;
            font-style: italic;
            color: #495057;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .testimonial-role {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .quote-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: #28a745;
            opacity: 0.3;
        }
        
        .security-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .security-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .security-badge i {
            color: #28a745;
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .trust-indicators {
                padding: 30px 20px;
            }
            
            .evolution-card {
                padding: 30px 20px;
            }
            
            .cta-form {
                padding: 30px 20px;
            }
            
            .comparison-row {
                flex-direction: column;
            }
            
            .comparison-cell {
                text-align: center;
            }
            
            .comparison-cell.feature {
                text-align: center;
                background: #2c3e50;
                color: white;
                font-weight: 600;
            }
        }

