* {
            font-family: 'Outfit', sans-serif;
        }

        /* =====================
           IT-Services Section Styles
           ===================== */

        /* IT-Services Header */
        .it-services-header {
            position: relative;
        }

        /* Zielgruppen Icons */
        .it-target-icons-wrapper {
            display: flex;
            justify-content: center;
        }

        .it-target-icons {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .it-target-icons {
                gap: 1.5rem;
            }
        }

        @media (min-width: 768px) {
            .it-target-icons {
                gap: 2rem;
            }
        }

        .it-target-icon-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .it-target-icon-btn.active {
            transform: translateY(-6px);
        }

        .it-target-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .it-target-icon-btn.active .it-target-icon-circle {
            background: transparent;
        }

        .it-target-icon-lg {
            width: 40px;
            height: 40px;
            stroke-width: 1.5;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        @media (min-width: 640px) {
            .it-target-icon-lg {
                width: 40px;
                height: 40px;
            }
        }

        @media (min-width: 768px) {
            .it-target-icon-lg {
                width: 36px;
                height: 36px;
            }
        }

        .it-target-icon-btn.active .it-target-icon-lg {
            color: #9B7CD3;
        }

        .it-target-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0);
            text-align: center;
            white-space: nowrap;
            transition: all 0.3s ease;
            height: 0;
            overflow: hidden;
        }

        @media (min-width: 640px) {
            .it-target-label {
                font-size: 0.875rem;
            }
        }

        .it-target-icon-btn.active .it-target-label {
            color: white;
            height: auto;
        }

        /* Zielgruppen Contents */
        .it-target-contents {
            position: relative;
        }

        .it-target-content {
            display: none;
            animation: fadeInUp 0.5s ease;
        }

        .it-target-content.active {
            display: block;
        }

        /* Content Wrapper - transparent, kein Hintergrund */
        .it-content-wrapper {
            padding: 0;
            overflow: hidden;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Content Header */
        .it-content-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .it-content-icon {
            width: 22px;
            height: 22px;
            stroke-width: 2;
            color: white;
        }

        /* Content Label (Zielgruppen-Bezeichnung) */

        .it-content-badge {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.08);
            padding: 0.375rem 0.75rem;
            border-radius: 9999px;
        }

        /* Services Grid - Flexbox für zentrierte letzte Zeile */
        .it-services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
        }

        .it-services-grid > .it-service-card {
            width: 100%;
            flex: 0 0 100%;
        }

        @media (min-width: 768px) {
            .it-services-grid {
                gap: 1rem;
            }
            
            .it-services-grid > .it-service-card {
                width: calc(50% - 0.5rem);
                flex: 0 0 calc(50% - 0.5rem);
            }
        }

        @media (min-width: 1024px) {
            .it-services-grid > .it-service-card {
                width: calc(33.333% - 0.667rem);
                flex: 0 0 calc(33.333% - 0.667rem);
            }
            
            .it-services-grid-4 > .it-service-card {
                width: calc(50% - 0.5rem);
                flex: 0 0 calc(50% - 0.5rem);
            }
        }

        @media (min-width: 1280px) {
            .it-services-grid-4 > .it-service-card {
                width: calc(25% - 0.75rem);
                flex: 0 0 calc(25% - 0.75rem);
            }
        }

        /* Service Cards - nutzt glass-navy grain Klassen */
        .it-service-card {
            border-radius: 1rem;
            padding: 1rem;
            transition: all 0.3s ease;
            display: flex !important;
            flex-direction: row !important;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .it-service-card > .it-service-icon-free {
            flex-shrink: 0;
            order: -1;
        }

        .it-service-card > .it-service-content {
            flex: 1;
            min-width: 0;
        }

        @media (min-width: 768px) {
            .it-service-card {
                border-radius: 1.5rem;
                padding: 1.5rem;
                gap: 1rem;
            }
        }

        .it-service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        /* Freistehende Icons ohne Box */
        .it-service-icon-free {
            width: 24px;
            height: 24px;
            min-width: 24px;
            stroke-width: 1.5;
            color: #9B7CD3;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        /* Teal accent for design section icons */
        #design .it-service-icon-free,
        .design-section .it-service-icon-free {
            color: #6AD9D4;
        }

        @media (min-width: 768px) {
            .it-service-icon-free {
                width: 26px;
                height: 26px;
                min-width: 26px;
            }
        }

        .it-service-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: linear-gradient(135deg, rgba(155, 124, 211, 0.2), rgba(106, 217, 212, 0.2));
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .it-service-icon {
            width: 22px;
            height: 22px;
            stroke-width: 1.75;
            color: #9B7CD3;
        }

        .it-service-content {
            flex: 1;
            min-width: 0;
        }

        .it-service-title {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        /* Größere Titel für Service-Kategorien */
        .it-service-title-lg {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.625rem;
        }

        @media (min-width: 768px) {
            .it-service-title-lg {
                font-size: 1.25rem;
                margin-bottom: 0.625rem;
            }
        }

        .it-service-list {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        @media (min-width: 768px) {
            .it-service-list {
                gap: 0.625rem;
            }
        }

        .it-service-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.375rem;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        @media (min-width: 768px) {
            .it-service-list li {
                gap: 0.5rem;
                font-size: 1rem;
                line-height: 1.5;
            }
        }

        .it-list-icon {
            width: 12px;
            height: 12px;
            min-width: 12px;
            stroke-width: 2;
            color: #9B7CD3;
            margin-top: 2px;
        }

        @media (min-width: 768px) {
            .it-list-icon {
                width: 16px;
                height: 16px;
                min-width: 16px;
                margin-top: 3px;
            }
        }
        
        /* Teal list icons for design section */
        #design .it-list-icon,
        .design-section .it-list-icon {
            color: #6AD9D4;
        }

        /* Highlight Box - nutzt glass-navy grain Klassen, ergänzt mit Akzentfarbe */
        .it-highlight-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            border-radius: 1.5rem;
            border-color: rgba(155, 124, 211, 0.25);
        }

        .it-highlight-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            border-radius: 10px;
            color: white;
        }

        .it-highlight-icon.it-highlight-teal {
            background: linear-gradient(135deg, #6AD9D4, #22d3ee);
        }

        .it-highlight-icon.it-highlight-lavender {
            background: linear-gradient(135deg, #9B7CD3, #6366f1);
        }

        .it-highlight-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        .it-highlight-text strong {
            color: white;
        }

        /* CTA Button */
        .it-cta-wrapper {
            display: flex;
            justify-content: center;
        }

        /* CTA immer zentriert */
        .it-cta-wrapper {
            display: flex;
            justify-content: center;
        }

        .it-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: white;
            background: transparent;
            border: none;
            border-radius: 9999px;
            position: relative;
            z-index: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .it-cta-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 9999px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .it-cta-btn:hover {
            transform: translateY(-2px);
        }

        .it-cta-btn:hover::before {
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
        }

        .it-cta-icon {
            width: 18px;
            height: 18px;
            stroke-width: 2;
        }

        /* CTA Box - zentriert unter dem Grid, als Container mit Hintergrund */
        .it-cta-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.25rem;
            margin-top: 3rem;
            margin-left: auto;
            margin-right: auto;
            padding: 1.5rem 2rem;
            border-radius: 1.5rem;
            max-width: 600px;
            transition: all 0.3s ease;
        }

        .it-cta-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .it-cta-box-icon {
            width: 40px;
            height: 40px;
            stroke-width: 1.5;
            color: #ec4899;
        }

        .it-cta-box-icon-teal {
            color: #6AD9D4;
        }

        .it-cta-box-icon-lavender {
            color: #9B7CD3;
        }

        .it-cta-box-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            max-width: 500px;
            position: relative;
            z-index: 2;
        }

        .it-cta-box-text strong {
            color: white;
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .it-cta-box .it-cta-btn {
            position: relative;
            z-index: 2;
        }

        /* Centered CTA Style - freistehend mit Icon */
        .it-cta-centered {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            margin-top: 3.5rem;
            margin-bottom: 1rem;
            padding: 0 1rem;
        }

        .it-cta-centered-icon {
            width: 48px;
            height: 48px;
            stroke-width: 1.5;
            color: #9B7CD3;
            opacity: 0.9;
        }

        .it-cta-centered-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.3;
        }

        @media (min-width: 768px) {
            .it-cta-centered-title {
                font-size: 1.75rem;
            }
        }

        .it-cta-centered-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 100%;
            margin: 0;
            line-height: 1.5;
        }

        .it-cta-centered .it-cta-btn {
            margin-top: 0.5rem;
        }

        /* Zusatzleistungen Grid - Kompakte Karten */
        .web-extras-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 2.5rem;
            max-width: 100%;
        }

        @media (min-width: 640px) {
            .web-extras-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Breite begrenzen - kompakter als Website-Typen-Listing */
        @media (min-width: 1024px) {
            .web-extras-grid {
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        .web-extras-card {
            border-radius: 1rem;
            padding: 1.25rem;
            transition: all 0.3s ease;
        }

        .web-extras-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .web-extras-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .web-extras-card-icon {
            width: 24px;
            height: 24px;
            stroke-width: 1.75;
            color: #9B7CD3;
            flex-shrink: 0;
        }

        .web-extras-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin: 0;
        }

        .web-extras-card-desc {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            margin: 0;
        }

        /* Legacy CTA Card styles */
        .it-cta-card {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .it-cta-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .it-cta-card-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .it-cta-card-icon {
            width: 36px;
            height: 36px;
            stroke-width: 1.5;
            color: #ec4899;
        }

        .it-cta-card-icon-teal {
            color: #6AD9D4;
        }

        .it-cta-card-icon-lavender {
            color: #9B7CD3;
        }

        .it-cta-card-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        .it-cta-card-text strong {
            color: white;
            display: block;
            margin-bottom: 0.25rem;
        }

        /* 3-Spalten Grid für Business */
        @media (min-width: 1024px) {
            .it-services-grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* =====================
           Design Section Styles
           ===================== */

        /* Design Category Tabs (Icons wie bei IT-Services) */
        .design-category-wrapper {
            display: flex;
            justify-content: center;
        }

        .design-category-tabs {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .design-category-tabs {
                gap: 1.5rem;
            }
        }

        @media (min-width: 768px) {
            .design-category-tabs {
                gap: 2rem;
            }
        }

        .design-category-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .design-category-btn.active {
            transform: translateY(-6px);
        }

        .design-category-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .design-category-icon-lg {
            width: 40px;
            height: 40px;
            stroke-width: 1.5;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        @media (min-width: 640px) {
            .design-category-icon-lg {
                width: 40px;
                height: 40px;
            }
        }

        @media (min-width: 768px) {
            .design-category-icon-lg {
                width: 36px;
                height: 36px;
            }
        }

        .design-category-btn.active .design-category-icon-lg {
            color: #9B7CD3;
        }

        .design-category-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0);
            text-align: center;
            white-space: nowrap;
            transition: all 0.3s ease;
            height: 0;
            overflow: hidden;
        }

        @media (min-width: 640px) {
            .design-category-label {
                font-size: 0.875rem;
            }
        }

        .design-category-btn.active .design-category-label {
            color: white;
            height: auto;
        }

        /* Design Category Contents */
        .design-category-contents {
            position: relative;
        }

        .design-category-content {
            display: none;
            animation: fadeInUp 0.5s ease;
        }

        .design-category-content.active {
            display: block;
        }

        .design-content-wrapper {
            padding: 0;
            overflow: hidden;
        }

        /* Design Content Header */
        .design-content-header {
            position: relative;
        }

        .design-content-header span {
            display: block;
        }

        /* Design Services Grid */
        .design-services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
        }

        .design-services-grid > .design-service-card {
            width: 100%;
            flex: 0 0 100%;
        }

        @media (min-width: 768px) {
            .design-services-grid {
                gap: 1rem;
            }
            
            .design-services-grid > .design-service-card {
                width: calc(50% - 0.5rem);
                flex: 0 0 calc(50% - 0.5rem);
            }
        }

        @media (min-width: 1024px) {
            .design-services-grid > .design-service-card {
                width: calc(33.333% - 0.667rem);
                flex: 0 0 calc(33.333% - 0.667rem);
            }
        }

        /* Design Service Cards - nutzt glass-navy grain Klassen */
        .design-service-card {
            border-radius: 1rem;
            padding: 1rem;
            transition: all 0.3s ease;
            display: flex !important;
            flex-direction: row !important;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .design-service-card > .design-service-icon-free {
            flex-shrink: 0;
            order: -1;
        }

        .design-service-card > .design-service-content {
            flex: 1;
            min-width: 0;
        }

        @media (min-width: 768px) {
            .design-service-card {
                border-radius: 1.5rem;
                padding: 1.5rem;
                gap: 1rem;
            }
        }

        .design-service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .design-service-icon-free {
            width: 24px;
            height: 24px;
            min-width: 24px;
            stroke-width: 1.5;
            color: #9B7CD3;
            flex-shrink: 0;
            margin-top: 2px;
        }

        @media (min-width: 768px) {
            .design-service-icon-free {
                width: 26px;
                height: 26px;
                min-width: 26px;
            }
        }

        .design-service-content {
            flex: 1;
            min-width: 0;
        }

        .design-service-title-lg {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.625rem;
        }

        @media (min-width: 768px) {
            .design-service-title-lg {
                font-size: 1.25rem;
                margin-bottom: 0.625rem;
            }
        }

        .design-service-list {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        @media (min-width: 768px) {
            .design-service-list {
                gap: 0.625rem;
            }
        }

        .design-service-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.375rem;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        @media (min-width: 768px) {
            .design-service-list li {
                gap: 0.5rem;
                font-size: 1rem;
                line-height: 1.5;
            }
        }

        .design-list-icon {
            width: 12px;
            height: 12px;
            min-width: 12px;
            stroke-width: 2;
            color: #6AD9D4;
            margin-top: 2px;
        }

        @media (min-width: 768px) {
            .design-list-icon {
                width: 16px;
                height: 16px;
                min-width: 16px;
                margin-top: 3px;
            }
        }

        /* Design Highlight Box - nutzt glass-navy grain Klassen */
        .design-highlight-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            border-radius: 1rem;
            border-color: rgba(155, 124, 211, 0.25);
        }

        @media (min-width: 768px) {
            .design-highlight-box {
                border-radius: 1.5rem;
            }
        }

        .design-highlight-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            stroke-width: 1.5;
            color: #9B7CD3;
            flex-shrink: 0;
        }

        .design-highlight-text {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        .design-highlight-text strong {
            color: white;
        }

        /* Design CTA Box */
        .design-cta-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.25rem;
            margin-top: 3rem;
            margin-left: auto;
            margin-right: auto;
            padding: 1rem 0;
            background: transparent;
            border: none;
            max-width: 600px;
        }

        .design-cta-box-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            max-width: 500px;
        }

        .design-cta-box-text strong {
            color: white;
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .design-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: white;
            background: transparent;
            border: none;
            border-radius: 9999px;
            position: relative;
            z-index: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .design-cta-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 9999px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .design-cta-btn:hover {
            transform: translateY(-2px);
        }

        .design-cta-btn:hover::before {
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
        }

        .design-cta-icon {
            width: 18px;
            height: 18px;
            stroke-width: 2;
        }

        /* =====================
           Website Types Showcase
           ===================== */

        .website-types-showcase {
            margin-bottom: 1rem;
        }

        .website-types-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            text-align: center;
        }

        @media (min-width: 768px) {
            .website-types-title {
                font-size: 1.5rem;
            }
        }

        /* Horizontaler Scroll-Wrapper mit Navigation */
        .website-types-scroll-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .website-types-scroll {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 1rem 1rem;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .website-types-scroll::-webkit-scrollbar {
            display: none;
        }

        .website-types-scroll > .website-type-card {
            flex: 0 0 calc(100% - 1rem);
            scroll-snap-align: center;
            min-width: 280px;
        }

        @media (min-width: 640px) {
            .website-types-scroll > .website-type-card {
                flex: 0 0 calc(50% - 0.75rem);
                max-width: 340px;
            }
        }

        @media (min-width: 1024px) {
            .website-types-scroll > .website-type-card {
                flex: 0 0 calc(33.333% - 0.75rem);
                max-width: 380px;
            }
        }

        /* Navigation Buttons - nutzt glass-navy grain Klassen */
        .website-types-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease, opacity 0.3s ease;
            flex-shrink: 0;
            z-index: 10;
        }

        .website-types-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .website-types-nav svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile: Kleinere Buttons, aber sichtbar wenn scrollbar */
        /* @media (max-width: 639px) {
            .website-types-nav {
                width: 32px;
                height: 32px;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
            }
            
            .website-types-nav-prev {
                left: 0.25rem;
            }
            
            .website-types-nav-next {
                right: 0.25rem;
            }
            
            .website-types-nav svg {
                width: 16px;
                height: 16px;
            }
            
            .website-types-scroll-wrapper {
                position: relative;
            }
            
            .website-types-scroll {
                padding: 1rem 2.5rem;
            }
        } */

        /* Legacy Grid (falls noch verwendet) */
        .website-types-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .website-types-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .website-types-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Website Type Cards - nutzt glass-navy grain Klassen */
        .website-type-card {
            border-radius: 1.25rem;
            padding: 1.5rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .website-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .website-type-card.featured {
            border-color: rgba(155, 124, 211, 0.4);
        }

        .website-type-card.featured::after {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, rgba(155, 124, 211, 0.4) 0%, rgba(106, 217, 212, 0.4) 100%);
            border-radius: 1.25rem;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: 0;
            pointer-events: none;
        }

        .website-type-featured-badge {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            padding: 0.25rem 0.75rem;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: white;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 9999px;
            z-index: 5;
        }

        .website-type-header {
            margin-bottom: 1rem;
        }

        .website-type-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(155, 124, 211, 0.15), rgba(106, 217, 212, 0.15));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 0.75rem;
        }

        .website-type-icon {
            width: 24px;
            height: 24px;
            stroke-width: 1.5;
            color: #9B7CD3;
        }

        .website-type-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.375rem;
        }

        /* Größere Titel-Variante für Website-Typ-Karten */
        .website-type-name-lg {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .website-type-name-lg {
                font-size: 1.625rem;
            }
        }

        .website-type-badge {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            font-size: 0.65rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.08);
            border-radius: 9999px;
        }

        .website-type-desc {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .website-type-features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
        }

        .website-type-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .website-feature-icon {
            width: 14px;
            height: 14px;
            stroke-width: 2.5;
            color: #6AD9D4;
            flex-shrink: 0;
        }

        .website-type-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.75rem 1rem;
            font-weight: 600;
            font-size: 0.85rem;
            color: white;
            background: transparent;
            border: none;
            border-radius: 9999px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .website-type-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, rgba(106, 217, 212, 0.6) 0%, rgba(155, 124, 211, 0.6) 100%);
            border-radius: 9999px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .website-type-cta:hover {
            transform: translateY(-2px);
        }

        .website-type-cta:hover::before {
            background: linear-gradient(135deg, #9B7CD3 0%, #6AD9D4 100%);
        }

        .website-type-cta-icon {
            width: 14px;
            height: 14px;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }

        .website-type-cta:hover .website-type-cta-icon {
            transform: translateX(3px);
        }

        /* =====================
           Alles aus einer Hand Footer
           ===================== */

        /* design-alles-aus-einer-hand - nutzt glass-navy grain Klassen */
        .design-alles-aus-einer-hand {
            margin-top: 3rem;
            padding: 2rem;
            border-radius: 1.5rem;
            border-color: rgba(155, 124, 211, 0.25);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .design-alles-aus-einer-hand {
                flex-direction: row;
                text-align: left;
                padding: 2rem 2.5rem;
            }
        }

        .design-aeh-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }

        @media (min-width: 768px) {
            .design-aeh-content {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        .design-aeh-icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: linear-gradient(135deg, rgba(155, 124, 211, 0.2), rgba(106, 217, 212, 0.2));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
        }

        .design-aeh-icon {
            width: 28px;
            height: 28px;
            stroke-width: 1.5;
            color: #9B7CD3;
        }

        .design-aeh-text {
            flex: 1;
        }

        .design-aeh-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            .design-aeh-title {
                font-size: 1.5rem;
            }
        }

        .design-aeh-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .design-aeh-desc strong {
            color: white;
        }

        .design-aeh-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: #0F1822;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border: none;
            border-radius: 9999px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .design-aeh-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(155, 124, 211, 0.3);
        }

        .design-aeh-cta-icon {
            width: 18px;
            height: 18px;
            stroke-width: 2;
        }

        /* Outline CTA Button für "Alles aus einer Hand" */
        .design-aeh-cta-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: white;
            background: transparent;
            border: none;
            border-radius: 9999px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .design-aeh-cta-outline::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 9999px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .design-aeh-cta-outline:hover {
            transform: translateY(-2px);
        }

        .design-aeh-cta-outline:hover::before {
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
        }

        /* Design Section Spacing */
        .design-section {
            position: relative;
        }

        /* IT Content Header für Design (konsistentes Styling) */
        .it-content-header span {
            display: block;
        }

        /* Website Types Grid - 3 Spalten Variante */
        .website-types-grid-3 {
            grid-template-columns: 1fr;
        }

        @media (min-width: 640px) {
            .website-types-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .website-types-grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Design Extras Section */
        .design-extras-section {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .design-extras-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
        }

        @media (min-width: 768px) {
            .design-extras-title {
                font-size: 1.25rem;
            }
        }

        .design-extras-title-icon {
            width: 22px;
            height: 22px;
            stroke-width: 1.5;
            color: #9B7CD3;
        }

        .design-extra-card {
            border-color: rgba(155, 124, 211, 0.15);
        }

        /* Mobile Responsive für Design Tabs */
        @media (max-width: 639px) {
            .design-service-card {
                flex-direction: column;
            }
            
            .design-highlight-box {
                flex-direction: column;
                text-align: center;
            }
        }

        /* =====================
           3D-Druck Section Styles
           ===================== */

        /* 3D-Druck Section Icon Colors */
        .druck-section .it-service-icon-free,
        #3d-druck .it-service-icon-free {
            color: #9B7CD3;
        }

        .druck-section .it-list-icon,
        #3d-druck .it-list-icon {
            color: #9B7CD3;
        }

        /* Druck Subsections */
        .druck-subsection {
            position: relative;
        }

        /* 3D-Druck AEH Icon Wrapper Color Override */
        .druck-aeh-icon-wrapper {
            background: linear-gradient(135deg, rgba(155, 124, 211, 0.25), rgba(106, 217, 212, 0.15));
        }

        .druck-alles-aus-einer-hand {
            border-color: rgba(155, 124, 211, 0.2);
        }

        /* =====================
           3D-Druck Specs Section (Compact & Interactive)
           ===================== */

        /* druck-specs-compact - nutzt glass-navy grain Klassen */
        .druck-specs-compact {
            margin-top: 1rem;
            margin-bottom: 2rem;
            padding: 1rem 1.25rem;
            border-radius: 1rem;
            overflow: visible;
        }

        @media (min-width: 768px) {
            .druck-specs-compact {
                padding: 1.25rem 2rem;
            }
        }

        .druck-specs-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .druck-specs-row {
                flex-wrap: nowrap;
                gap: 1rem;
            }
        }

        /* Spec Items */
        .druck-spec-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 0.75rem;
            cursor: default;
            transition: all 0.3s ease;
            position: relative;
        }

        .druck-spec-item:hover {
            background: rgba(155, 124, 211, 0.1);
            border-color: rgba(155, 124, 211, 0.25);
            transform: translateY(-2px);
        }

        @media (min-width: 768px) {
            .druck-spec-item {
                padding: 0.625rem 1rem;
            }
        }

        .druck-spec-item-icon {
            width: 18px;
            height: 18px;
            stroke-width: 1.75;
            color: #9B7CD3;
            flex-shrink: 0;
        }

        @media (min-width: 768px) {
            .druck-spec-item-icon {
                width: 20px;
                height: 20px;
            }
        }

        .druck-spec-item-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            white-space: nowrap;
        }

        @media (min-width: 768px) {
            .druck-spec-item-label {
                font-size: 0.95rem;
            }
        }

        /* Divider */
        .druck-spec-divider {
            width: 1px;
            height: 20px;
            background: rgba(255, 255, 255, 0.15);
            display: none;
        }

        @media (min-width: 768px) {
            .druck-spec-divider {
                display: block;
            }
        }

        /* Material Pills */
        .druck-spec-materials {
            flex-wrap: wrap;
        }

        @media (min-width: 768px) {
            .druck-spec-materials {
                flex-wrap: nowrap;
            }
        }

        .druck-materials-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.375rem;
        }

        @media (min-width: 768px) {
            .druck-materials-pills {
                gap: 0.5rem;
            }
        }

        .druck-material-pill {
            padding: 0.25rem 0.625rem;
            background: rgba(155, 124, 211, 0.15);
            border: 1px solid rgba(155, 124, 211, 0.25);
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #9B7CD3;
            cursor: pointer;
            transition: all 0.25s ease;
            position: relative;
        }

        .druck-material-pill:hover {
            background: rgba(155, 124, 211, 0.25);
            border-color: rgba(155, 124, 211, 0.4);
            transform: scale(1.05);
        }

        .druck-material-pill.active {
            background: #9B7CD3;
            color: #0F1822;
            border-color: #9B7CD3;
        }

        @media (min-width: 768px) {
            .druck-material-pill {
                padding: 0.3rem 0.75rem;
                font-size: 0.75rem;
            }
        }

        /* Color Dots */
        .druck-spec-colors {
            gap: 0.625rem;
        }

        .druck-color-dots {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .druck-color-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.25s ease;
        }

        .druck-color-dot:hover {
            transform: scale(1.3);
            box-shadow: 0 0 8px currentColor;
        }

        @media (min-width: 768px) {
            .druck-color-dots {
                gap: 0.375rem;
            }
            
            .druck-color-dot {
                width: 12px;
                height: 12px;
            }
        }

        /* Material Info Tooltip */
        .druck-material-info {
            position: absolute;
            bottom: calc(100% + 0.75rem);
            left: 50%;
            transform: translateX(-50%);
            padding: 0.625rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0.75rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 100;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: all 0.25s ease;
        }

        .druck-material-info.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .druck-material-info::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(155, 124, 211, 0.3);
        }

        .druck-material-info-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .druck-material-info.hidden {
            display: none;
        }

        /* Tooltip on hover (native) */
        .druck-spec-item[data-tooltip]:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%);
            padding: 0.5rem 0.875rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            white-space: nowrap;
            z-index: 50;
            pointer-events: none;
            animation: tooltipFade 0.2s ease;
        }

        @keyframes tooltipFade {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* =====================
           Referenz Gallery (Infinity Scroll)
           ===================== */

        .referenz-gallery-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 1rem 0;
            position: relative;
        }

        .referenz-gallery {
            display: flex;
            width: fit-content;
            cursor: grab;
            user-select: none;
        }

        .referenz-gallery:active {
            cursor: grabbing;
        }

        .referenz-gallery.dragging {
            cursor: grabbing;
        }

        .referenz-gallery-track {
            display: flex;
            gap: 1.5rem;
            animation: scrollGallery 45s linear infinite; /* Mobile: 45s */
        }

        /* Desktop: Langsamere Animation (80s) */
        @media (min-width: 768px) {
            .referenz-gallery-track {
                animation-duration: 80s;
            }
        }

        @media (min-width: 1024px) {
            .referenz-gallery-track {
                animation-duration: 100s;
            }
        }

        .referenz-gallery-track-reverse {
            animation: scrollGalleryReverse 80s linear infinite;
        }

        /* Pause on hover (nur wenn nicht gedraggt wird) */
        .referenz-gallery:hover .referenz-gallery-track {
            animation-play-state: paused;
        }

        /* Bei aktivem Dragging Animation pausieren */
        .referenz-gallery.dragging .referenz-gallery-track {
            animation-play-state: paused !important;
        }

        @keyframes scrollGallery {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 0.75rem));
            }
        }

        @keyframes scrollGalleryReverse {
            0% {
                transform: translateX(calc(-50% - 0.75rem));
            }
            100% {
                transform: translateX(0);
            }
        }

        .referenz-item {
            flex-shrink: 0;
            width: 320px;
        }

        @media (min-width: 768px) {
            .referenz-item {
                width: 380px;
            }
        }

        @media (min-width: 1024px) {
            .referenz-item {
                width: 420px;
            }
        }

        .referenz-item-inner {
            border-radius: 1.25rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            background: transparent;
            /* background: linear-gradient(#08080800, #08080840); */
            border: none;
            box-shadow: none;
        }
        .referenz-item-inner:before{
            content: '';
            position: absolute; bottom: 0; left: 0;
            margin-top: auto;
            height: 66.67%; width: 100%;
            pointer-events: none;
            border-radius: 1.25rem;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            inset: 0;
            pointer-events: none;
            z-index: -2;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .referenz-item-inner:after{
            content: '';
            position: absolute; bottom: 0; left: 0;
            margin-top: auto;
            height: 66.67%; width: 100%;
            pointer-events: none;
            border-radius: 1.25rem;
            inset: 0;
            pointer-events: none;
            z-index: -1;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.05;
        }

        .referenz-item-inner:hover {
            transform: translateY(-4px);
            box-shadow: none;
        }

        .referenz-image {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 1rem;
        }

        .referenz-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .referenz-item-inner:hover .referenz-image img {
            transform: scale(1.05);
        }

        .referenz-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
        }

        .referenz-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.25rem 1.5rem;
            background: linear-gradient(to top, rgba(15, 24, 34, 0.95) 0%, rgba(15, 24, 34, 0.8) 60%, transparent 100%);
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .referenz-item-inner:hover .referenz-info {
            transform: translateY(0);
            opacity: 1;
        }

        .referenz-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.375rem;
        }

        @media (min-width: 768px) {
            .referenz-title {
                font-size: 1.25rem;
            }
        }

        .referenz-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }

        .referenz-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.875rem;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: white;
            background: linear-gradient(135deg, rgba(155, 124, 211, 0.3), rgba(106, 217, 212, 0.3));
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 9999px;
            transition: all 0.3s ease;
        }

        .referenz-btn:hover {
            background: linear-gradient(135deg, rgba(155, 124, 211, 0.5), rgba(106, 217, 212, 0.5));
            border-color: rgba(255, 255, 255, 0.25);
        }

        .referenz-btn-icon {
            width: 14px;
            height: 14px;
            stroke-width: 2;
        }

        /* Mobile Responsive für IT-Tabs */
        @media (max-width: 639px) {
            .it-target-tabs {
                width: 100%;
                justify-content: center;
            }
            
            .it-target-btn {
                padding: 0.625rem 0.875rem;
                font-size: 0.8rem;
            }
            
            .it-target-btn span {
                display: none;
            }
            
            .it-target-btn.active span {
                display: inline;
            }
            
            .it-target-icon {
                width: 20px;
                height: 20px;
            }
            
            .it-service-card {
                flex-direction: column;
            }
            
            .it-highlight-box {
                flex-direction: column;
                text-align: center;
            }
        }

        /* =====================
           Lucide Icon Styles
           ===================== */
        
        /* Navigation Icons (Desktop) */
        .nav-icon {
            width: 18px;
            height: 18px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 6px;
            stroke-width: 2;
        }

        /* Navigation Icons (Mobile) */
        .mobile-nav-icon {
            width: 20px;
            height: 20px;
            display: inline-block;
            vertical-align: middle;
            stroke-width: 2;
        }

        /* FAB Button Icons */
        .fab-icon-size {
            width: 24px;
            height: 24px;
            stroke-width: 2;
            stroke: white;
        }

        /* Tab Icons */
        .tab-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            stroke-width: 2;
        }

        /* Tab Scroll Indicator Icons */
        .tab-scroll-icon {
            width: 20px;
            height: 20px;
            stroke-width: 2;
        }

        /* Scroll Indicator Icon (Hero) */
        .scroll-indicator-icon {
            width: 24px;
            height: 24px;
            color: rgba(255, 255, 255, 0.5);
            stroke-width: 2;
        }

        /* Section Icons (Über uns, Kontakt, etc.) */
        .section-icon {
            width: 32px;
            height: 32px;
            stroke-width: 1.5;
        }

        /* Back to Top Icon */
        .back-to-top-icon {
            width: 20px;
            height: 20px;
            color: white;
            stroke-width: 2;
        }

        /* Footer Icons */
        .footer-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            stroke-width: 2;
        }

        /* Footer Grid Layout */
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
        }

        .footer-col-1 {
            grid-column: span 2;
        }

        .footer-col-2,
        .footer-col-3 {
            grid-column: span 1;
        }

        .footer-col-4 {
            grid-column: span 2;
        }

        /* Tablet: 2 Spalten */
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop: 5 Spalten (2/5 + 1/5 + 1/5 + 1/5) */
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }

            .footer-col-1,
            .footer-col-2,
            .footer-col-3,
            .footer-col-4 {
                grid-column: span 1;
            }
        }

        /* Heart Icon */
        .heart-icon {
            width: 16px;
            height: 16px;
            color: #f87171;
            fill: #f87171;
            stroke-width: 2;
        }

        /* Animated Background Bulbs */
        .bg-bulb {
            position: fixed;
            border-radius: 50%;
            filter: blur(240px);
            z-index: -2;
            animation: float 16s ease-in-out infinite;
        }

        .bg-bulb-lavender {
            background: rgba(155, 124, 211, 0.5);
            width: 50vw;
            height: 50vw;
            /* max-width: 900px;
            max-height: 900px; */
            top: -25%;
            left: -15%;
        }

        .bg-bulb-teal {
            background: rgba(106, 217, 212, 0.5);
            width: 50vw;
            height: 50vw;
            /* max-width: 800px;
            max-height: 800px; */
            bottom: -25%;
            right: -15%;
            animation-delay: -6s;
            animation-name: float-alt;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            20% {
                transform: translate(60px, -40px) scale(1.1) rotate(5deg);
            }
            40% {
                transform: translate(-30px, 60px) scale(0.9) rotate(-3deg);
            }
            60% {
                transform: translate(-70px, -30px) scale(1.05) rotate(8deg);
            }
            80% {
                transform: translate(40px, 50px) scale(0.95) rotate(-5deg);
            }
        }

        @keyframes float-alt {
            0%, 100% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            20% {
                transform: translate(-50px, 50px) scale(1.08) rotate(-6deg);
            }
            40% {
                transform: translate(70px, -40px) scale(0.92) rotate(4deg);
            }
            60% {
                transform: translate(50px, 70px) scale(1.1) rotate(-8deg);
            }
            80% {
                transform: translate(-60px, -50px) scale(0.88) rotate(6deg);
            }
        }

        /* Background Overlay */
        .bg-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 24, 34, 0.5);
            z-index: -1;
        }

        /* Tech Grid Pattern Overlay */
        .bg-grid {
            position: fixed;
            inset: 0;
            z-index: -1;
            background-image: 
                linear-gradient(rgba(155, 124, 211, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(155, 124, 211, 0.04) 1px, transparent 1px),
                linear-gradient(rgba(106, 217, 212, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(106, 217, 212, 0.03) 1px, transparent 1px);
            background-size: 
                100px 100px,
                100px 100px,
                30px 30px,
                30px 30px;
            background-position: center center;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
        }
        .bg-bp{
            position: fixed;
            inset: 0;
            z-index: -1;
            background-image: url('/src/blueprint-pattern-v3.png');
            background-repeat: repeat;
            background-size: 128px;
            background-position: center center;
            mix-blend-mode: overlay;
            opacity: .5;
        }

        /* Glass Effect - Einheitliches transparentes Glass-Styling */
        .glass,
        .glass-navy {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .glass-strong,
        .glass-navy-strong {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            position: relative;
            overflow: hidden;
        }

        /* Grain Overlay - Einheitlicher Rausch-Effekt */
        .grain::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.05;
            pointer-events: none;
            z-index: 1;
            background-size: 256px 256px;
            border-radius: inherit;
        }

        /* Header Background - overflow visible für Dropdown, grain weiterhin begrenzt */
        #header-bg {
            overflow: visible !important;
        }
        
        #header-bg.grain::before {
            overflow: hidden;
            border-radius: 1rem;
        }

        /* Leistungen Tabs Grain - use background instead of ::before for scroll compatibility */
        .leistungen-tabs.grain {
            background-image: 
                url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
            background-size: 256px 256px;
            background-repeat: repeat;
        }
        
        .leistungen-tabs.grain::before {
            display: none;
        }

        /* Sonderkonditionen & Kontakt Grain - ensure consistent size */
        #sonderkonditionen.grain::before,
        #kontakt .glass-navy.grain::before {
            background-size: 256px 256px;
        }

        /* Header - feste Höhe für konsistenten Abstand zu Tabs */
        #header {
            height: 5.5rem; /* Feste Höhe: pt-4 (1rem) + py-4 (2rem) + Logo (2.5rem) */
        }
        
        @media (max-width: 768px) {
            #header {
                height: 5rem; /* Header-Höhe auf Tablet/Mobile */
            }
        }
        
        @media (max-width: 480px) {
            #header {
                height: 4.5rem; /* Header-Höhe auf kleinen Bildschirmen */
            }
        }

        /* Header Background Animation */
        .header-bg-hidden {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-color: transparent;
        }

        .header-bg-hidden::before {
            opacity: 0;
        }

        .header-bg-visible {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .header-bg-visible::before {
            opacity: 0.05;
        }
        
        /* Header container width based on logo for tablet (when menu is hidden) */
        @media (min-width: 640px) and (max-width: 1023px) {
            #header .container {
                width: auto;
                max-width: fit-content;
            }
        }

        /* Logo Animation */
        .logo-hidden {
            opacity: 0;
            transform: translateY(-20px);
        }

        .logo-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 5. Logo full width in mobile view */
        @media (max-width: 639px) {
            #header-logo {
                width: 100%;
                max-width: 100%;
                height: auto;
            }
            
            .footer-col-1 img {
                width: 100%;
                max-width: 100%;
            }
        }

        /* Menu Item Animation */
        .menu-item {
            opacity: 0;
            transform: translateY(-25px);
            transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .menu-item.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Active Menu Item Underline */
        .menu-item:not(.nav-contact)::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: auto;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 1px;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Leistungen menu item - exclude chevron from underline */
        .menu-item-leistungen::after {
            right: 1.25rem !important;
        }

        .menu-item:not(.nav-contact).active::after,
        .menu-item:not(.nav-contact):hover::after {
            transform: scaleX(1);
            transform-origin: left center;
        }

        .menu-item:not(.nav-contact):not(.active):not(:hover)::after {
            transform-origin: right center;
        }

        /* Desktop Dropdown Menu */
        .menu-item-dropdown {
            position: relative;
        }

        .menu-item-dropdown .menu-item-leistungen {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .menu-item-dropdown .menu-chevron {
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .menu-item-dropdown:hover .menu-chevron {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-5px);
            min-width: 220px;
            padding-top: 12px; /* Unsichtbare Brücke zum Menü-Item */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease-out, 
                        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                        visibility 0.25s ease-out;
            z-index: 100;
        }

        /* dropdown-menu-inner - nutzt glass-navy-strong grain Klassen */
        .dropdown-menu-inner {
            border-radius: 0.75rem;
            padding: 0.75rem;
        }

        .menu-item-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .dropdown-item:hover {
            color: white;
            background: rgba(255, 255, 255, 0.08);
        }

        .dropdown-item i {
            color: #6AD9D4;
            transition: color 0.2s ease;
        }

        .dropdown-item:hover i {
            color: #9B7CD3;
        }

        /* Mobile Menu - Floating Container */
        .mobile-menu {
            bottom: calc(1.5rem + 1.75rem); /* FAB bottom + half FAB height (28px) */
            left: 1.5rem;
            right: 1.5rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(20px) scale(0.98);
            transition: opacity 0.35s ease-out, 
                        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                        visibility 0.35s ease-out;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .mobile-menu-container {
            overflow: hidden;
            padding: 1.5rem 1.5rem 3rem 1.5rem;
            position: relative;
            /* GPU-beschleunigte Rendering für smoother backdrop-blur */
            will-change: transform;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .mobile-menu-slider {
            display: flex;
            gap: 3rem; /* Abstand zwischen den Panels */
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .mobile-menu-slider.show-submenu {
            transform: translateX(calc(-100% - 3rem)); /* 100% + gap */
        }

        .mobile-menu-panel {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            min-width: 100%;
            width: 100%;
            flex-shrink: 0;
        }

        .mobile-submenu {
            padding-left: 0;
        }

        .mobile-menu-link-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .mobile-submenu-chevron {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .mobile-submenu-chevron:hover {
            background: rgba(255, 255, 255, 0.12);
            color: white;
        }

        .mobile-submenu-back {
            opacity: 1 !important;
            transform: none !important;
        }

        .mobile-menu-item {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: left;
        }

        .mobile-menu-item.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-submenu .mobile-menu-item {
            opacity: 0;
            transform: translateX(20px);
        }

        .mobile-submenu .mobile-menu-item.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        /* FAB Icon Animation */
        .fab-icon {
            position: absolute;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .fab-icon.hidden {
            transform: scale(0) rotate(-90deg);
            opacity: 0;
        }

        .fab-icon.visible {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }

        /* Floating Action Button with Gradient Border */
        .fab {
            box-shadow: none;
            transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            background: transparent !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: relative;
        }

        .fab::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 9999px;
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .fab:hover::before {
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
        }

        .fab.fab-hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateX(-50%) scale(0.8);
        }

        /* Typing Animation */
        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            /* background: linear-gradient(135deg, #9B7CD3, #6AD9D4); */
            background: #ffffff80;
            margin-left: 0px; margin-top: -3px; margin-bottom: 3px;
            animation: blink 1s infinite;
            vertical-align: text-bottom;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Hero Section */
        .hero-section {
            min-height: 100svh;
        }

        /* Section Placeholder */
        .section-placeholder {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Service Buttons */
        .service-btn {
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(155, 124, 211, 0.3);
        }

        /* Subtle Outline Button */
        .btn-outline {
            background: transparent;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
            color: white;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-outline:hover {
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 1);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Contact Button Highlight */
        .nav-contact {
            padding: 0.5rem 1.25rem;
            border-radius: 9999px!important;
            border: none;
            background: transparent;
            position: relative;
            z-index: 0;
        }

        .nav-contact::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(to left, #9B7CD3, #6AD9D4);
            border-radius: 9999px;
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .nav-contact:hover::before {
            background: linear-gradient(to left, #6AD9D4, #9B7CD3);
        }

        /* Mobile Contact Button */
        .nav-contact-mobile {
            padding: 1rem 2rem;
            border-radius: 9999px!important;
            border: none;
            background: transparent;
            position: relative;
            z-index: 0;
        }

        .nav-contact-mobile::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(to left, #9B7CD3, #6AD9D4);
            border-radius: 9999px;
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .nav-contact-mobile:hover::before {
            background: linear-gradient(to left, #6AD9D4, #9B7CD3);
        }

        /* Back to Top Button */
        .back-to-top {
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .back-to-top::before {
            border-radius: 9999px;
        }

        /* Hide on mobile when mobile menu FAB is visible */
        @media (max-width: 1023px) {
            .back-to-top {
                bottom: 5.5rem;
            }
        }

        /* ===================
           Leistungen Tabs
           =================== */
        
        /* Wrapper für Sticky-Bereich (Leistungen + Referenzen) */
        .tabs-sticky-wrapper {
            position: relative;
        }

        .leistungen-section {
            min-height: auto;
            position: relative;
        }

        .referenzen-section {
            min-height: auto;
            position: relative;
        }

        .leistungen-tabs-wrapper {
            display: flex;
            justify-content: center;
            position: sticky;
            top: 5.5rem; /* Platz für Header (feste Höhe) */
            z-index: 35; /* Unter dem Mobile-Menü (z-40) */
            padding-top: 0.5rem; /* 0.5rem Abstand zum Header */
            /* custom */
            margin-bottom: 12rem;
        }

        /* Tabs: auto width and centered by default */
        .leistungen-tabs-container {
            width: auto;
        }
        
        .leistungen-tabs {
            width: auto;
        }
        
        /* Only full width when horizontal scroll is needed (very small screens) */
        @media (max-width:768px) {
            .leistungen-tabs-wrapper {
                padding-top: 0.5rem; /* 0.5rem Abstand zum Header */
                top: 6rem; /* Header-Höhe auf Tablet/Mobile */
            }
        }
        @media (max-width: 480px) {
            .leistungen-tabs-wrapper {
                top: 6rem; /* Header-Höhe auf kleinen Bildschirmen */
            }
            
            .leistungen-tabs-container {
                width: 100%;
            }
            
            .leistungen-tabs {
                width: 100%;
                border-radius: 0;
            }
        }

        .leistungen-tabs-container {
            max-width: calc(100% - 3rem);
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            border-radius: 9999px;
        }

        /* Fade-Overlays für bessere Chevron-Sichtbarkeit */
        .leistungen-tabs-container::before,
        .leistungen-tabs-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 3.5rem;
            pointer-events: none;
            z-index: 5;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .leistungen-tabs-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(15, 24, 34, 1) 0%, rgba(15, 24, 34, 0) 100%);
            border-radius: 9999px 0 0 9999px;
        }

        .leistungen-tabs-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(15, 24, 34, 1) 0%, rgba(15, 24, 34, 0) 100%);
            border-radius: 0 9999px 9999px 0;
        }

        .leistungen-tabs-container.fade-left::before {
            opacity: 1;
        }

        .leistungen-tabs-container.fade-right::after {
            opacity: 1;
        }

        /* Scroll Indikatoren (Chevrons) */
        .scroll-indicator {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            color: rgba(255, 255, 255, 1);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .scroll-indicator.visible {
            opacity: 1;
        }

        .scroll-indicator-left {
            left: 0.75rem;
        }

        .scroll-indicator-right {
            right: 0.75rem;
        }

        .leistungen-tabs {
            display: inline-flex;
            align-items: center;
            /* gap: 0.25rem; */
            padding: 0.375rem;
            border-radius: 9999px;
            position: relative;
            overflow-x: auto;
            overflow-y: hidden;
            max-width: 100%;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .leistungen-tabs::-webkit-scrollbar {
            display: none;
        }

        /* Tab Indicator (Sliding Background with Gradient Border) */
        .tab-indicator {
            position: absolute;
            height: calc(100% - 0.75rem);
            top: 0.375rem;
            background: transparent;
            border-radius: 9999px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 0;
        }

        .tab-indicator::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 9999px;
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        /* Tab Buttons */
        .tab-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 9999px;
            font-weight: 500;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            background: transparent;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .tab-btn:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        .tab-btn.active {
            color: white;
        }

        .tab-btn svg {
            flex-shrink: 0;
        }

        /* Tab Contents */
        .tab-contents {
            position: relative;
            min-height: 50vh;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Referenzen Content */
        .referenz-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .referenz-content.active {
            display: block;
        }

        /* Placeholder für leere Tab-Inhalte */
        .tab-content:empty::before {
            content: 'Inhalte werden in Kürze hinzugefügt...';
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 40vh;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.125rem;
            text-align: center;
        }

        /* ===================
           Sonderkonditionen Section
           =================== */
        
        .sonderkonditionen-section {
            min-height: auto;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Dark Background Overlay */
        .sonderkonditionen-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.4) 0%, 
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.4) 100%);
            z-index: 1;
        }

        .sonderkonditionen-inner {
            width: 100%;
        }

        /* .sonderkonditionen-content h2 {
            letter-spacing: -0.02em;
        } */

        .sonderkonditionen-cta {
            border: none;
            background: transparent;
            position: relative;
            z-index: 0;
            transition: all 0.3s ease;
        }

        .sonderkonditionen-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(to left, #9B7CD3, #6AD9D4);
            border-radius: 9999px;
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .sonderkonditionen-cta:hover {
            transform: translateY(-2px);
        }

        .sonderkonditionen-cta:hover::before {
            background: linear-gradient(to left, #6AD9D4, #9B7CD3);
        }

        /* Image Placeholder */
        .sonderkonditionen-image-placeholder {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            border: 2px dashed rgba(255, 255, 255, 0.15);
            border-radius: 24px;
        }

        /* Mobile Header mit kleinem Prozent-Zeichen */
        .sonderkonditionen-mobile-header {
            display: flex;
            align-items: flex-start;
            gap: .5rem;
        }

        /* .sonderkonditionen-mobile-text {
            width: 70%!important;
        } 

        .sonderkonditionen-mobile-icon {
            flex-shrink: 0;
            width: 80px;
            opacity: 0.9;
            width: 30%!important;
            margin-left: -16px; margin-top: -16px; margin-bottom: 16px;
        } */

        /* Desktop: Header inline ohne Wrapper-Effekt */
        @media (min-width: 768px) {
            .sonderkonditionen-mobile-header {
                display: block;
            }

            .sonderkonditionen-mobile-text {
                display: contents;
            }
        }

        /* Mobile: Visual oben */
        @media (max-width: 1023px) {
            .sonderkonditionen-content {
                order: 2;
                text-align: left;
            }
            
            .sonderkonditionen-visual {
                order: 1;
            }
            
            .sonderkonditionen-cta {
                display: inline-flex;
            }

            .sonderkonditionen-image-placeholder {
                max-width: 280px;
            }
        }

        /* ===================
           Kontakt Form Section
           =================== */
        
        .kontakt-section {
            min-height: auto;
        }

        /* Honeypot Field (Hidden) */
        .contact-honeypot {
            position: absolute;
            left: -9999px;
            opacity: 0;
            height: 0;
            overflow: hidden;
            pointer-events: none;
        }

        /* Form Labels */
        .form-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-label-icon {
            width: 18px;
            height: 18px;
            stroke-width: 2;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Form Inputs */
        .form-input {
            width: 100%;
            padding: 0.875rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

        .form-input:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.07);
        }

        .form-input:focus {
            border-color: rgba(155, 124, 211, 0.6);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(155, 124, 211, 0.15);
        }

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

        /* Form Rows */
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Service Selection Group */
        .service-select-group {
            display: flex;
            gap: 0.5rem;
            align-items: stretch;
        }

        .service-select-option {
            flex: 1;
            cursor: pointer;
        }

        .service-select-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .service-select-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
            padding: 0.75rem 0.5rem;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            font-weight: 500;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            text-align: center;
            height: 100%;
        }

        .service-select-icon {
            width: 22px;
            height: 22px;
            stroke-width: 1.5;
            flex-shrink: 0;
        }

        .service-select-option:hover .service-select-content {
            border-color: rgba(255, 255, 255, 0.25);
            color: rgba(255, 255, 255, 0.9);
        }

        .service-select-option.active .service-select-content,
        .service-select-option input:checked + .service-select-content {
            border-color: transparent;
            background: transparent;
            color: white;
            position: relative;
        }

        .service-select-option.active .service-select-content::before,
        .service-select-option input:checked + .service-select-content::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 0.75rem;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
        }

        /* Customer Type Selection */
        .customer-type-group {
            display: flex;
            gap: 0.5rem;
            align-items: stretch;
        }

        .customer-type-option {
            flex: 1;
            cursor: pointer;
        }

        .customer-type-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .customer-type-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
            padding: 0.75rem 0.5rem;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            transition: all 0.3s ease;
            height: 100%;
        }

        .customer-type-icon-wrapper {
            display: none;
        }

        .customer-type-icon {
            width: 22px;
            height: 22px;
            stroke-width: 1.5;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .customer-type-label {
            font-weight: 500;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            transition: all 0.3s ease;
        }

        .customer-type-option:hover .customer-type-content {
            border-color: rgba(255, 255, 255, 0.25);
        }

        .customer-type-option:hover .customer-type-icon {
            color: rgba(255, 255, 255, 0.9);
        }

        .customer-type-option:hover .customer-type-label {
            color: rgba(255, 255, 255, 0.9);
        }

        .customer-type-option.active .customer-type-content,
        .customer-type-option input:checked + .customer-type-content {
            border-color: transparent;
            background: transparent;
            position: relative;
        }

        .customer-type-option.active .customer-type-content::before,
        .customer-type-option input:checked + .customer-type-content::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 0.75rem;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
        }

        .customer-type-option.active .customer-type-label,
        .customer-type-option input:checked + .customer-type-content .customer-type-label {
            color: white;
        }

        /* Organization Fields Animation */
        .organization-fields {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
                        opacity 0.3s ease,
                        margin 0.3s ease;
            margin-bottom: 0;
        }

        .organization-fields.visible {
            max-height: 300px;
            opacity: 1;
            margin-bottom: 1.5rem;
        }

        /* Checkbox Styles */
        .checkbox-label {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0.75rem;
            transition: all 0.3s ease;
        }

        .checkbox-label:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .checkbox-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .checkbox-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .checkbox-icon {
            width: 14px;
            height: 14px;
            stroke-width: 3;
            color: #0F1822;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.2s ease;
        }

        .checkbox-input:checked + .checkbox-custom {
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .checkbox-input:checked + .checkbox-custom::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 8px;
            z-index: -1;
        }

        .checkbox-input:checked + .checkbox-custom .checkbox-icon {
            opacity: 1;
            transform: scale(1);
        }

        .checkbox-text {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .checkbox-hint {
            font-size: 0.85rem;
            color: rgba(106, 217, 212, 0.8);
        }

        @media (max-width: 639px) {
            .checkbox-hint {
                width: 100%;
                margin-left: 2.5rem;
                margin-top: -0.25rem;
            }
        }

        /* File Upload Area */
        .file-upload-area {
            position: relative;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 2px dashed rgba(255, 255, 255, 0.15);
            border-radius: 0.75rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-upload-area:hover,
        .file-upload-area.dragover {
            border-color: rgba(155, 124, 211, 0.5);
            background: rgba(155, 124, 211, 0.05);
        }

        .file-input {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .file-upload-content {
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .file-upload-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0.625rem;
            flex-shrink: 0;
        }

        .file-upload-icon {
            width: 20px;
            height: 20px;
            stroke-width: 1.5;
            color: rgba(155, 124, 211, 0.8);
        }

        .file-upload-text-wrapper {
            text-align: left;
        }

        .file-upload-text {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.125rem;
        }

        .file-upload-link {
            color: #9B7CD3;
            font-weight: 500;
        }

        .file-upload-hint {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* File List */
        .file-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .file-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            animation: fadeIn 0.3s ease;
        }

        .file-item-icon {
            width: 20px;
            height: 20px;
            stroke-width: 2;
            color: rgba(155, 124, 211, 0.8);
            flex-shrink: 0;
        }

        .file-item-info {
            flex: 1;
            min-width: 0;
        }

        .file-item-name {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .file-item-size {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .file-item-remove {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.05);
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .file-item-remove:hover {
            background: rgba(239, 68, 68, 0.2);
        }

        .file-item-remove-icon {
            width: 16px;
            height: 16px;
            stroke-width: 2;
            color: rgba(255, 255, 255, 0.6);
        }

        .file-item-remove:hover .file-item-remove-icon {
            color: #ef4444;
        }

        /* Submit Button */
        .submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            border: none;
            background: transparent;
            color: white;
            position: relative;
            z-index: 0;
            transition: all 0.3s ease;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(to left, #9B7CD3, #6AD9D4);
            border-radius: 9999px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .submit-btn-content,
        .submit-btn-loading {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .submit-btn-icon {
            width: 18px;
            height: 18px;
            stroke-width: 2;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        .submit-btn:hover::before {
            background: linear-gradient(to left, #6AD9D4, #9B7CD3);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        /* Loading Spinner */
        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Form Messages */
        .form-message {
            margin-top: 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: 0.75rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .form-message.success {
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #86efac;
        }

        .form-message.error {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fca5a5;
        }

        .form-message-icon {
            width: 20px;
            height: 20px;
            stroke-width: 2;
            flex-shrink: 0;
        }

        /* =====================
           Tools / Logo Slider Section
           ===================== */

        .tools-section {
            position: relative;
            overflow: hidden;
            padding-left: 0;
            padding-right: 0;
        }

        .tools-section .container {
            max-width: 100%;
            padding: 0;
        }

        .tools-section .text-center {
            padding: 0 1.5rem;
        }

        .logo-slider-wrapper {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            overflow: hidden;
            position: relative;
        }

        .logo-slider {
            width: 100%;
            overflow: hidden;
        }

        .logo-slider-track {
            display: flex;
            align-items: center;
            gap: 2rem;
            animation: infiniteScroll 45s linear infinite;
            width: max-content;
        }

        @media (min-width: 768px) {
            .logo-slider-track {
                gap: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .logo-slider-track {
                gap: 3rem;
            }
        }

        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .logo-slider-track:hover {
            animation-play-state: paused;
        }

        /* logo-slide - nutzt glass-navy grain Klassen */
        .logo-slide {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
            padding: 1.5rem 2rem;
        }

        .logo-img {
            height: 40px;
            width: auto;
            max-width: 120px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.6;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        @media (min-width: 768px) {
            .logo-img {
                height: 48px;
                max-width: 140px;
            }
        }

        .logo-img:hover {
            filter: brightness(0) invert(1);
            opacity: 0.9;
            transform: scale(1.05);
        }

        /* =====================
           Leistungen Text Centering & Mobile Heading Sizes
           ===================== */

        /* Center text for all Leistungen subsections on ALL screen sizes */
        /* Center content headers (subheadings in Leistungen) */
        .it-content-header,
        .design-section .it-content-header,
        .druck-subsection .it-content-header {
            text-align: center;
        }
        
        .it-content-header h2,
        .it-content-header h4,
        .it-content-header p,
        .it-content-header span,
        .design-section .it-content-header h2,
        .design-section .it-content-header h4,
        .design-section .it-content-header p,
        .design-section .it-content-header span,
        .druck-subsection .it-content-header h2,
        .druck-subsection .it-content-header h4,
        .druck-subsection .it-content-header p,
        .druck-subsection .it-content-header span {
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Website types showcase title centered */
        .website-types-title {
            text-align: center;
        }
        
        /* Design extras title centered */
        .design-extras-title {
            justify-content: center;
        }

        /* Mobile: increase heading sizes in Leistungen sections */
        /* @media (max-width: 767px) {

            .it-content-header span.bg-gradient-to-r,
            .design-section .it-content-header span.bg-gradient-to-r,
            .druck-subsection .it-content-header span.bg-gradient-to-r {
                font-size: 1.75rem;
            }
            
            .it-content-header h4,
            .design-section .it-content-header h4,
            .druck-subsection .it-content-header h4 {
                font-size: 1.625rem;
            }
            
            .it-service-title-lg {
                font-size: 1.125rem;
            }
        } */

        /* =====================
           SEO & Hosting Compact Cards
           ===================== */
        /* design-extra-compact - Layout-Anpassungen */
        .design-extra-compact {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
        }

        .design-extra-compact .it-service-content {
            flex: 1;
        }

        .design-extra-compact .it-service-title-lg {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .design-extra-compact .it-service-desc {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        @media (min-width: 768px) {
            .design-extra-compact {
                padding: 1rem 1.25rem;
            }
            
            .design-extra-compact .it-service-title-lg {
                font-size: 1.1rem;
            }
        }

        /* Inline layout for SEO/Hosting compact cards container */
        .design-extras-inline {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        @media (min-width: 768px) {
            .design-extras-inline {
                flex-direction: row;
                gap: 1rem;
            }
            
            .design-extras-inline > .it-service-card {
                flex: 1;
            }
        }

        /* Sonderkonditionen & Kontakt Grain Override - higher resolution */
        .sonderkonditionen-section.grain::before,
        .kontakt .glass-navy.grain::before {
            background-size: 256px 256px;
        }

        /* Mobile Menu Item Active Underline - same as desktop header */
        .mobile-menu-item.mobile-menu-link {
            position: relative;
            width: fit-content;
        }

        .mobile-menu-item.mobile-menu-link:not(.nav-contact-mobile)::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #6AD9D4 0%, #9B7CD3 100%);
            border-radius: 1px;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .mobile-menu-item.mobile-menu-link:not(.nav-contact-mobile).active::after,
        .mobile-menu-item.mobile-menu-link:not(.nav-contact-mobile):hover::after {
            transform: scaleX(1);
            transform-origin: left center;
        }

        .mobile-menu-item.mobile-menu-link:not(.nav-contact-mobile):not(.active):not(:hover)::after {
            transform-origin: right center;
        }

        /* Mobile Kontakt Button volle Breite zentriert */
        .mobile-menu-item.nav-contact-mobile {
            width: 100% !important;
            justify-content: center;
            text-align: center;
        }

        /* Referenz Gallery Drag Cursor */
        .referenz-gallery {
            cursor: grab;
            user-select: none;
        }

        .referenz-gallery.dragging {
            cursor: grabbing;
        }

        .referenz-gallery.dragging .referenz-gallery-track {
            animation-play-state: paused;
        }

/* =====================================================
   Services Overview Grid - Compact Cards with Mehr erfahren
   ===================================================== */

.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* service-overview-card - nutzt glass-navy grain Klassen */
.service-overview-card {
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-overview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(106, 217, 212, 0.15) 0%, rgba(155, 124, 211, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-overview-icon i,
.service-overview-icon svg {
    width: 24px;
    height: 24px;
    color: #6AD9D4;
}

.service-overview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.service-overview-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-overview-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-overview-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-overview-highlights li i,
.service-overview-highlights li svg {
    color: #6AD9D4;
    flex-shrink: 0;
}

.service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6AD9D4;
    text-decoration: none;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    background: rgba(106, 217, 212, 0.1);
    border: 1px solid rgba(106, 217, 212, 0.2);
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.service-more-link:hover {
    background: rgba(106, 217, 212, 0.2);
    border-color: rgba(106, 217, 212, 0.4);
    color: #fff;
    transform: translateX(4px);
}

.service-more-link i,
.service-more-link svg {
    transition: transform 0.3s ease;
}

.service-more-link:hover i,
.service-more-link:hover svg {
    transform: translateX(3px);
}

/* =====================================================
   Subpage Fixes
   ===================================================== */

/* 1. Reduce section spacing on subpages */
.subpage-hero {
    padding-bottom: 1rem;
}

.subpage-content .service-section:first-child {
    padding-top: 1.5rem;
}

.subpage-content .service-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Reduce spacing before referenz-section on subpages */
.subpage-content + .referenz-section,
main.subpage-content ~ .referenz-section {
    padding-top: 0.5rem;
    margin-top: 0;
}

.referenz-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

/* 2. Scroll margin for sections - prevent header from covering headings */
.service-section[id],
section[id].service-section,
#brand-design,
#grafikdesign,
#webdesign,
#business,
#privat,
#gaming,
#engineering,
#creative,
#produktion,
#referenzen,
#faq,
#leistungen,
#ueber-uns,
#kontakt,
#sonderkonditionen {
    scroll-margin-top: 7rem;
}

@media (max-width: 1023px) {
    .service-section[id],
    section[id].service-section,
    #brand-design,
    #grafikdesign,
    #webdesign,
    #business,
    #privat,
    #gaming,
    #engineering,
    #creative,
    #produktion,
    #referenzen,
    #faq,
    #leistungen,
    #ueber-uns,
    #kontakt,
    #sonderkonditionen {
        scroll-margin-top: 6rem;
    }
}

/* =====================================================
   Website Types Slider - Mobile Optimization
   ===================================================== */

/* Make cards properly sized on mobile - one card visible */
@media (max-width: 639px) {
    .website-types-scroll-wrapper {
        position: relative;
        margin: 0;
    }
    
    .website-types-scroll {
        padding: 1rem 2rem;
        scroll-padding: 0 2rem;
    }
    
    .website-types-scroll > .website-type-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
    }
    
    /* Navigation buttons overlay on mobile - larger */
    .website-types-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 15;
        width: 44px;
        height: 44px;
    }
    
    .website-types-nav-prev {
        left: 0.5rem;
    }
    
    .website-types-nav-next {
        right: 0.5rem;
    }
    
    .website-types-nav svg {
        width: 22px;
        height: 22px;
    }
}

/* Tablet: show 2 cards */
@media (min-width: 640px) and (max-width: 1023px) {
    .website-types-scroll > .website-type-card {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

/* Arrow button base styles - remove hover transform */
.website-types-nav {
    transition: background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.website-types-nav:hover {
    background: rgba(155, 124, 211, 0.3);
    border-color: rgba(155, 124, 211, 0.5);
    /* Removed transform: scale(1.1) */
}

/* =====================================================
   FAQ Animation - Smooth Expand/Collapse
   ===================================================== */

/* FAQ default state - closed */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), 
                opacity 0.3s ease,
                padding 0.3s ease;
}

/* FAQ open state */
.faq-item.faq-active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1.25rem !important;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* =====================================================
   Table of Contents (TOC) - Subpages
   ===================================================== */

.toc-wrapper {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: none !important; /* Temporarily hidden */
}

@media (min-width: 1280px) {
    .toc-wrapper {
        display: none !important; /* Temporarily hidden */
    }
}

@media (min-width: 1536px) {
    .toc-wrapper {
        right: 2rem;
    }
}

/* toc-container - nutzt glass-navy grain Klassen */
.toc-container {
    border-radius: 1rem;
    padding: 0.75rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* TOC Toggle Button */
.toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 2;
}

.toc-toggle:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.toc-toggle-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.toc-wrapper.collapsed .toc-toggle-icon {
    transform: rotate(180deg);
}

/* TOC Content - collapsible */
.toc-content {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    max-height: 300px;
    opacity: 1;
}

.toc-wrapper.collapsed .toc-content {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.toc-wrapper.collapsed .toc-toggle {
    margin-bottom: 0;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 2;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toc-item:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.toc-item.active {
    color: white;
    background: rgba(155, 124, 211, 0.15);
}

.toc-item.active .toc-dot {
    background: linear-gradient(135deg, #6AD9D4, #9B7CD3);
    box-shadow: 0 0 8px rgba(155, 124, 211, 0.5);
}

.toc-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.toc-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    flex-shrink: 0;
}

/* =====================================================
   Share Buttons - Subpages (Inline in content)
   ===================================================== */

.share-inline-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* share-toggle - nutzt glass-navy grain Klassen */
.share-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-toggle:hover {
    color: white;
}

.share-toggle.active {
    background: linear-gradient(135deg, rgba(106, 217, 212, 0.15), rgba(155, 124, 211, 0.15));
    border-color: rgba(155, 124, 211, 0.3);
    color: white;
}

.share-toggle-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.share-toggle-text {
    position: relative;
    z-index: 2;
}

.share-toggle.active .share-toggle-icon {
    transform: rotate(180deg);
}

/* share-dropdown - nutzt glass-navy-strong grain Klassen */
.share-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    border-radius: 0.75rem;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    min-width: 150px;
    z-index: 50;
}

.share-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.share-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.share-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.share-link-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    flex-shrink: 0;
}

.share-link.share-x:hover {
    background: rgba(0, 0, 0, 0.3);
}

.share-link.share-facebook:hover {
    background: rgba(24, 119, 242, 0.2);
}

.share-link.share-linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
}

.share-link.share-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
}

.share-link.share-email:hover {
    background: rgba(155, 124, 211, 0.2);
}

.share-link.share-copy:hover {
    background: rgba(106, 217, 212, 0.2);
}

/* Copy feedback */
.share-link.copied {
    color: #6AD9D4;
}

.share-link.copied .share-link-icon {
    color: #6AD9D4;
}