
    .projects-section.svelte-1tes396 {
        position: relative;
        overflow: hidden;
    }

    /* Carousel Container - overflow hidden für sauberes Clipping */
    .carousel-container.svelte-1tes396 {
        position: relative;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
    }

    /* Carousel Track - enthält alle Slides, gleitet mit translateX 
       Breite = 100% * (Anzahl Karten / sichtbare Karten) = 166.67% für 5/3 */
    .carousel-track.svelte-1tes396 {
        display: flex;
        width: calc(100% * 5 / 3);
        transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
        will-change: transform;
    }

    /* Einzelne Slide - jede Karte = 1/5 der Track-Breite (= 1/3 der sichtbaren Breite) */
    .carousel-slide.svelte-1tes396 {
        flex: 0 0 calc(100% / 5);
        padding: 0 1rem;
        box-sizing: border-box;
    }

    /* Bild-Container */
    .project-image-container.svelte-1tes396 {
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
    }

    .project-image-container.svelte-1tes396 img:where(.svelte-1tes396) {
        transition: transform 0.4s ease;
        width: 100%;
        height: auto;
    }

    /* Bild-Link */
    .project-image-link.svelte-1tes396 {
        display: block;
        cursor: pointer;
    }

    .project-image-link.svelte-1tes396:hover .project-image-container:where(.svelte-1tes396) img:where(.svelte-1tes396) {
        transform: scale(1.05);
    }

    /* Projekt-Link */
    .project-link.svelte-1tes396 {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .project-link.svelte-1tes396:hover {
        color: #16a34a;
    }

    /* Navigation Container */
    .carousel-nav.svelte-1tes396 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    /* Nav Buttons (Pfeile) */
    .nav-button.svelte-1tes396 {
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        cursor: pointer;
        color: #374151;
        transition: all 0.2s ease;
    }

    .nav-button.svelte-1tes396:hover:not(:disabled) {
        background: #006838;
        color: white;
        border-color: #006838;
    }

    .nav-button.svelte-1tes396:active:not(:disabled) {
        transform: scale(0.95);
    }

    .nav-button.svelte-1tes396:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    /* Pagination Numbers */
    .pagination-numbers.svelte-1tes396 {
        display: flex;
        gap: 0.375rem;
    }

    .pagination-number.svelte-1tes396 {
        width: 2.25rem;
        height: 2.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.375rem;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        cursor: pointer;
        font-size: 0.875rem;
        font-weight: 600;
        color: #006838;
        transition: all 0.2s ease;
    }

    .pagination-number.svelte-1tes396:hover:not(.active) {
        background: #f0fdf4;
        border-color: #006838;
    }

    .pagination-number.svelte-1tes396:active {
        transform: scale(0.95);
    }

    .pagination-number.active.svelte-1tes396 {
        background: #006838;
        border-color: #006838;
        color: white;
    }

    /* CTA Button */
    .cta-button.svelte-1tes396 {
        transition: all 0.2s ease;
    }

    .cta-button.svelte-1tes396:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 104, 56, 0.25);
    }

    .cta-button.svelte-1tes396:active {
        transform: scale(0.98);
    }

    /* Responsive: Tablet - 2 sichtbare Karten */
    @media (max-width: 1024px) {
        .carousel-track.svelte-1tes396 {
            width: calc(100% * 5 / 2); /* 5 Karten / 2 sichtbar = 250% */
        }
        
        .carousel-slide.svelte-1tes396 {
            flex: 0 0 calc(100% / 5);
            padding: 0 0.75rem;
        }
    }

    /* Responsive: Mobile - 1 sichtbare Karte */
    @media (max-width: 640px) {
        .carousel-track.svelte-1tes396 {
            width: calc(100% * 5); /* 5 Karten / 1 sichtbar = 500% */
        }
        
        .carousel-slide.svelte-1tes396 {
            flex: 0 0 calc(100% / 5);
            padding: 0 0.5rem;
        }
    }

    /* Accessibility: Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
        .carousel-track.svelte-1tes396 {
            transition: none;
        }
        
        .project-image-container.svelte-1tes396 img:where(.svelte-1tes396) {
            transition: none;
        }
    }

    .testimonials.svelte-1jhcrt0 {
        position: relative;
        padding: 6rem 1rem;
        color: white;
        isolation: isolate;
    }

    .testimonials-container.svelte-1jhcrt0 {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    .testimonials-track.svelte-1jhcrt0 {
        position: relative;
        height: 400px; /* Feste Höhe */
        margin: 0 auto;
    }

    .testimonial-slide.svelte-1jhcrt0 {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        will-change: transform, opacity;
    }

    .testimonial-card.svelte-1jhcrt0 {
        min-height: 300px;
        max-height: 60vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: white;
        transform: translateZ(0); /* Hardware-Beschleunigung */
        border-radius: 1rem;
        padding: 2.5rem;
        margin: 0 auto;
        max-width: 800px;
        position: relative;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        overflow: visible;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .quote-icon.svelte-1jhcrt0 {
        transform: translateY(-65%);
        top: 0;
        left: 1.5rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        z-index: 20;
        background: #006838;
        color: white;
        padding: 0.5rem;
        border-radius: 50%;
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-text.svelte-1jhcrt0 {
        color: #1a1a1a;
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        font-style: italic;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 0.5rem;
        scrollbar-width: thin;
        scrollbar-color: #006838 transparent;
    }

    /* Custom Scrollbar für Webkit */
    .testimonial-text.svelte-1jhcrt0::-webkit-scrollbar {
        width: 4px;
    }

    .testimonial-text.svelte-1jhcrt0::-webkit-scrollbar-thumb {
        background-color: #006838;
        border-radius: 2px;
    }

    .testimonial-author.svelte-1jhcrt0 {
        border-top: 2px solid #f3f4f6;
        padding-top: 1.5rem;
        text-align: right;
    }

    .author-name.svelte-1jhcrt0 {
        color: #006838;
        font-weight: 600;
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .author-role.svelte-1jhcrt0 {
        color: #6b7280;
        font-size: 0.875rem;
    }

    .testimonial-nav.svelte-1jhcrt0 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        position: relative;
        z-index: 2;
    }

    .nav-button.svelte-1jhcrt0 {
        background: white;
        border: none;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #006838;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-button.svelte-1jhcrt0:hover:not(:disabled) {
        background: #006838;
        color: white;
        transform: scale(1.1);
    }

    .nav-button.svelte-1jhcrt0:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .testimonial-indicators.svelte-1jhcrt0 {
        display: flex;
        gap: 0.75rem;
    }

    .indicator-button.svelte-1jhcrt0 {
        width: 3rem;
        height: 0.25rem;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        border-radius: 0.125rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator-button.active.svelte-1jhcrt0 {
        background: #90C53F;
        width: 4rem;
    }

    .indicator-label.svelte-1jhcrt0 {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    @media (max-width: 768px) {
        .testimonials.svelte-1jhcrt0 {
            padding: 4rem 1rem;
        }

        .testimonial-card.svelte-1jhcrt0 {
            min-height: 250px;
            max-height: 50vh;
            padding: 2rem 1rem 1.5rem 1.5rem;
            margin: 0 0.5rem;
            margin-top: 1.5rem;
            padding-top: 1.8rem;
        }

        .testimonial-text.svelte-1jhcrt0 {
            font-size: 1rem;
            line-height: 1.5;
            -webkit-line-clamp: 8; /* Fallback für mobile */
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Volle Länge beim Tap auf mobilen Geräten */
        .testimonial-text.svelte-1jhcrt0:active,
        .testimonial-text.svelte-1jhcrt0:focus {
            -webkit-line-clamp: unset;
            overflow-y: auto;
        }

        .quote-icon.svelte-1jhcrt0 {
            transform: translateY(-70%);
            left: 1rem;
            width: 2.2rem;
            height: 2.2rem;
        }

        .quote-icon.svelte-1jhcrt0 svg:where(.svelte-1jhcrt0) {
            width: 1.3rem;
            height: 1.3rem;
        }

        .nav-button.svelte-1jhcrt0 {
            width: 3rem;
            height: 3rem;
        }

        .indicator-button.svelte-1jhcrt0 {
            width: 2.5rem;
        }

        .indicator-button.active.svelte-1jhcrt0 {
            width: 3.5rem;
        }

        /* (unused) .testimonial-track {
            height: auto;
            min-height: 400px;
        }*/
    }
