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

        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #10b981;
            --secondary-dark: #059669;
            --dark: #1f2937;
            --gray: #6b7280;
            --light: #f3f4f6;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

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

        /* Navigation */
        nav {
            background: var(--white);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            width: 35px;
            height: 45px;
            margin-right: 12px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 600;
        }

        .logo-text .lohn {
            color: var(--primary);
        }

        .logo-text .klar {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-cta-termine a {
            background: #10b981;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .nav-cta-termine a:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .nav-cta::after, .nav-cta-termine::after {
            display: none;
        }

        .nav-social {
            margin-left: 0.5rem;
        }

        .nav-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light);
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .nav-social a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        .nav-social a::after {
            display: none;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

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

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 6rem 2rem 4rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* ✅ H1 Styling */
        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        /* ✅ Trust Badges */
        .trust-badges {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--dark);
            font-weight: 500;
        }

        .trust-badge .icon {
            color: var(--secondary);
            font-size: 1.3rem;
        }

        .hero-bullets {
            list-style: none;
            margin-bottom: 2rem;
        }

        .hero-bullets li {
            padding: 0.5rem 0;
            padding-left: 30px;
            position: relative;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .hero-bullets li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-graphic {
            width: 100%;
            max-width: 500px;
            height: auto;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: var(--white);
        }

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

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

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 2px solid var(--light);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--white);
            padding: 3rem 2rem;
            border-top: 1px solid var(--light);
            border-bottom: 1px solid var(--light);
        }

        .trust-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .trust-stat {
            text-align: center;
            padding: 1.5rem;
        }

        .trust-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .trust-stat-label {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .trust-bar-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .trust-bar-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .service-benefit {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            color: var(--dark);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--secondary);
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 0.5rem 0;
            padding-left: 25px;
            position: relative;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .service-features li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }

        /* Team Section */
        .team {
            padding: 5rem 2rem;
            background: var(--light);
        }

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

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            background: none;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
            font-weight: 600;
        }

        .team-member h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .team-position {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-bio {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Pricing Calculator Section */
        .pricing-calculator {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
        }

        /* Pricing Philosophy Section */
        /* Pricing Simple Section */
        .pricing-simple {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
        }

        .pricing-simple-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .pricing-simple-content h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .pricing-simple-text {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .pricing-simple-text strong {
            color: var(--primary);
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .pricing-simple-content h2 {
                font-size: 2rem;
            }

            .pricing-simple-text {
                font-size: 1.1rem;
            }
        }

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

        .pricing-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: start;
        }

        .pricing-intro h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .pricing-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .pricing-benefits {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .pricing-benefit {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .benefit-icon {
            color: var(--secondary);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .calculator-card-large {
            background: var(--white);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            border: 2px solid var(--light);
        }

        .calculator-result-large {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 2rem;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .result-note {
            margin-top: 0.5rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .result-note small {
            color: var(--gray);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .calc-cta-button-large {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
            display: block;
        }

        .calc-cta-button-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 2rem;
            background: var(--white);
        }

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

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--light);
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }

        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .star {
            font-size: 1.25rem;
        }

        .testimonial-quote-large {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            font-size: 5rem;
            color: var(--secondary);
            opacity: 0.15;
            line-height: 1;
            font-family: Georgia, serif;
        }

        .testimonial-card .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--light);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .author-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .author-info strong {
            color: var(--dark);
            font-size: 1.1rem;
        }

        .author-info span {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .company-type {
            color: var(--primary) !important;
            font-weight: 500 !important;
        }

        .social-proof-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 20px;
        }

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

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: 500;
        }

        /* Contact Section - Updated */
        .contact-container-simple {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-trust {
            display: flex;
            flex-direction: column;
        }

        .trust-badge-large {
            background: var(--white);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--light);
        }

        .badge-header {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--light);
            margin-bottom: 2rem;
        }

        .badge-stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .star-large {
            font-size: 2rem;
        }

        .badge-rating {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .badge-subtitle {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .badge-stats {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .badge-stat {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .stat-content {
            display: flex;
            flex-direction: column;
        }

        .stat-content strong {
            color: var(--dark);
            font-size: 1.1rem;
        }

        .stat-content span {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .badge-cta {
            text-align: center;
            padding-top: 2rem;
            border-top: 2px solid var(--light);
        }

        .badge-cta p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        /* Process Section */
        .process {
            padding: 5rem 2rem;
            background: var(--white);
        }

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

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-step::after {
            content: "→";
            position: absolute;
            right: -1.5rem;
            top: 2.5rem;
            font-size: 2rem;
            color: var(--secondary);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 1.5rem;
        }

        .process-step h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .process-step p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Calendar Section */
        .calendar {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            text-align: center;
        }

        .calendar-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .calendar h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .calendar p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 2rem;
            background: var(--white);
        }

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

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 3rem;
        }

        .faq-item {
            background: var(--white);
            border: 2px solid var(--light);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
        }

        .faq-item.active {
            border-color: var(--primary);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            text-align: left;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 300;
            min-width: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem 2rem;
        }

        .faq-answer p {
            color: var(--gray);
            line-height: 1.8;
            margin: 0;
        }

        .faq-answer strong {
            color: var(--dark);
            font-weight: 600;
        }

        .faq-cta {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 20px;
        }

        .faq-cta h3 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .faq-cta p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: var(--light);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .contact-info > p {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .contact-icon {
            font-size: 1.5rem;
            min-width: 30px;
        }

        .contact-label {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .contact-value {
            color: var(--gray);
        }

        .contact-value a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--primary-dark);
        }

        /* Calculator Section */
        .contact-calculator {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .calculator-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--light);
        }

        .calculator-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .calculator-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .calculator-header h3 {
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .calculator-header p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .calculator-body {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .calculator-input label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--dark);
        }

        .label-value {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .slider {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: linear-gradient(to right, var(--primary) 0%, var(--primary) 15%, #e5e7eb 15%, #e5e7eb 100%);
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
        }

        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5);
        }

        .slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
        }

        .slider-labels {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }

        .calculator-services {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .service-checkbox {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: var(--light);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .service-checkbox:hover {
            background: #e0f2fe;
        }

        .service-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary);
        }

        .calculator-result {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 1.5rem;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

        .result-item.highlight {
            background: var(--white);
            padding: 1rem;
            border-radius: 8px;
            margin: 0.5rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .result-label {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .result-item.highlight .result-label {
            color: var(--dark);
            font-weight: 600;
        }

        .result-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
        }

        .result-item.highlight .result-value {
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .calc-cta-button {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .calc-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        /* Trust Card */
        .trust-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--light);
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--light);
        }

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

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.4;
        }

        .testimonial {
            position: relative;
            padding: 1.5rem;
            background: var(--light);
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .testimonial-quote {
            position: absolute;
            top: -10px;
            left: 10px;
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.3;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--dark);
            line-height: 1.7;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .testimonial-author strong {
            color: var(--dark);
        }

        .testimonial-author span {
            font-size: 0.85rem;
            color: var(--gray);
        }

        .trust-cta-button {
            display: block;
            background: var(--secondary);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .trust-cta-button:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section ul li a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

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

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .trust-badges {
                justify-content: center;
            }

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

            .pricing-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .calculator-card-large {
                padding: 2rem;
            }

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

            .social-proof-stats {
                grid-template-columns: repeat(2, 1fr);
                padding: 2rem;
            }

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

            .process-step::after {
                display: none;
            }

            .contact-container-simple {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .calculator-services {
                grid-template-columns: 1fr;
            }

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

            .trust-badge-large {
                padding: 2rem;
            }

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

        /* Partner Section Styling */
        .partner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
        }
        
        .partner-item img {
            filter: grayscale(0%);
            opacity: 0.9;
            transition: all 0.3s ease;
        }
        
        .partner-item:hover img {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* USP Section */
        .usp-section {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .usp-card {
            background: var(--white);
            border: 2px solid var(--light);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .usp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }

        .usp-card.featured {
            border-color: var(--primary);
            background: linear-gradient(135deg, #f0f9ff 0%, var(--white) 100%);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .usp-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, var(--secondary), #059669);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .usp-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .usp-card h3 {
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .usp-description {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .usp-comparison {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .comparison-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.875rem 1.25rem;
            border-radius: 10px;
        }

        .comparison-item.old {
            background: #fee;
            text-decoration: line-through;
            opacity: 0.7;
        }

        .comparison-item.new {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            font-weight: 700;
        }

        .comparison-label {
            font-size: 0.95rem;
        }

        .comparison-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .usp-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0 0;
        }

        .usp-features li {
            padding: 0.75rem 0;
            color: var(--gray);
            border-bottom: 1px solid var(--light);
            font-size: 0.95rem;
        }

        .usp-features li:last-child {
            border-bottom: none;
        }

        .usp-timeline {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .timeline-item {
            display: flex;
            gap: 1rem;
            align-items: center;
            padding: 0.75rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 10px;
        }

        .timeline-week {
            font-weight: 700;
            color: var(--primary);
            min-width: 80px;
        }

        .timeline-desc {
            color: var(--gray);
            font-size: 0.95rem;
        }

        @media (max-width: 968px) {
            .usp-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Sticky CTA Button */
        .sticky-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 1rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .sticky-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
        }

        .sticky-cta-icon {
            font-size: 1.5rem;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
            }
            50% {
                box-shadow: 0 8px 24px rgba(37, 99, 235, 0.6);
            }
        }

        @media (max-width: 768px) {
            .sticky-cta {
                bottom: 20px;
                right: 20px;
                padding: 0.875rem 1.25rem;
                font-size: 0.9rem;
            }

            .sticky-cta-text {
                display: none;
            }

            .sticky-cta-icon {
                font-size: 1.75rem;
            }

            .sticky-cta {
                width: 60px;
                height: 60px;
                justify-content: center;
                padding: 0;
            }
        }


.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Schneidet Foto perfekt zu */
    display: block;
}

.team-avatar-fallback {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 600;
}