      /* === AGENTIC CALLCENTER: TABBED CONTENT === */
      .ac-tabs {
        padding: 6rem 0;
        background: #fafafa;
      }
      .ac-tabs__header {
        text-align: center;
        margin-bottom: 3rem;
      }
      .ac-tabs__label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #555;
        margin-bottom: 1rem;
      }
      .ac-tabs__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
        margin: 0;
      }
      .ac-tabs__nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
        padding: 0 1rem;
      }
      .ac-tabs__btn {
        padding: 0.7rem 1.4rem;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        background: white;
        font-family: 'Manrope', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #444;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .ac-tabs__btn:hover {
        border-color: #66ff7e;
        color: #111;
      }
      .ac-tabs__btn.active {
        background: #66ff7e;
        border-color: #66ff7e;
        color: #111;
      }
      .ac-tabs__panel {
        display: none;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
        animation: acFadeIn 0.4s ease;
      }
      .ac-tabs__panel.active {
        display: block;
      }
      @keyframes acFadeIn {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .ac-panel__grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: start;
      }
      .ac-panel__subtitle {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: #66ff7e;
        margin-bottom: 0.5rem;
      }
      .ac-panel__title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 1rem;
      }
      .ac-panel__text {
        font-family: 'Manrope', sans-serif;
        font-size: 0.95rem;
        line-height: 1.7;
        color: #444;
        margin-bottom: 1.5rem;
      }
      .ac-panel__services {
        background: #f8f9fa;
        border: 1px solid #e8e8e8;
        border-radius: 16px;
        padding: 2rem;
        color: #333;
        box-shadow: 0 4px 24px rgba(0,0,0,0.04);
      }
      .ac-panel__services-title {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      .ac-panel__services-title svg {
        color: #4ADE80;
      }
      .ac-panel__services-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .ac-panel__services-list li {
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        color: #444;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
      }
      .ac-panel__services-list li:last-child { border-bottom: none; }
      .ac-panel__services-list li::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #4ADE80;
        margin-top: 0.5rem;
        flex-shrink: 0;
      }

      /* === ZIGZAG ZIELGRUPPEN === */
      .ac-zigzag {
        padding: 6rem 0;
        background: white;
      }
      .ac-zigzag__header {
        text-align: center;
        margin-bottom: 4rem;
      }
      .ac-zigzag__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
      }
      .ac-zigzag__items {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        gap: 4rem;
      }
      .ac-zigzag__item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
      .ac-zigzag__item:nth-child(even) { direction: rtl; }
      .ac-zigzag__item:nth-child(even) > * { direction: ltr; }
      .ac-zigzag__visual {
        background: #f5f5f5;
        border-radius: 16px;
        padding: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 250px;
        position: relative;
        overflow: hidden;
      }
      .ac-zigzag__visual img {
        width: 100%;
        max-width: 200px;
        height: auto;
      }
      .ac-zigzag__number {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: rgba(102, 255, 126, 0.3);
      }
      .ac-zigzag__content h3 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.75rem;
      }
      .ac-zigzag__content p {
        font-family: 'Manrope', sans-serif;
        font-size: 0.95rem;
        line-height: 1.7;
        color: #444;
        margin-bottom: 1rem;
      }
      .ac-zigzag__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
      }
      .ac-zigzag__tag {
        display: inline-block;
        padding: 0.3rem 0.7rem;
        background: #f0f0f0;
        border-radius: 0;
        font-size: 0.75rem;
        font-weight: 600;
        color: #555;
        font-family: 'Manrope', sans-serif;
      }

      /* === STICKY SCROLL: CUSTOM TRAINING === */
      .ac-sticky {
        padding: 6rem 0;
        background: #fafafa;
      }
      .ac-sticky__header {
        text-align: center;
        margin-bottom: 4rem;
        padding: 0 2rem;
      }
      .ac-sticky__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
      }
      .ac-sticky__subtext {
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        color: #555;
        margin-top: 0.75rem;
      }
      .ac-sticky__grid {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
      }
      .ac-sticky__grid::before {
        content: '';
        position: absolute;
        left: 2rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, #4ADE80, rgba(74,222,128,0.15));
      }
      .ac-sticky__steps {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding-left: 3rem;
      }
      .ac-sticky__step {
        padding: 2rem 2.5rem;
        background: white;
        border-radius: 16px;
        border: 1px solid #e8e8e8;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 2px 12px rgba(0,0,0,0.03);
      }
      .ac-sticky__step::before {
        content: '';
        position: absolute;
        left: -2.1rem;
        top: 2.2rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #4ADE80;
        border: 3px solid #fafafa;
        box-shadow: 0 0 0 2px #4ADE80;
      }
      .ac-sticky__step::after {
        content: '';
        position: absolute;
        left: -1.05rem;
        top: 2.6rem;
        width: 1rem;
        height: 2px;
        background: rgba(74,222,128,0.4);
      }
      .ac-sticky__step:hover {
        border-color: #4ADE80;
        box-shadow: 0 8px 32px rgba(74,222,128,0.08);
        transform: translateX(4px);
      }
      .ac-sticky__step-num {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        color: #4ADE80;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.4rem;
      }
      .ac-sticky__step h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.5rem;
      }
      .ac-sticky__step p {
        font-family: 'Manrope', sans-serif;
        font-size: 0.9rem;
        line-height: 1.7;
        color: #555;
      }

      /* === GLASMORPHISM CARDS: DSGVO === */
      .ac-glass {
        padding: 7rem 0;
        background: #f9fafb;
        position: relative;
        overflow: hidden;
      }
      .ac-glass__video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.08;
        pointer-events: none;
      }
      .ac-glass::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at 20% 30%, rgba(74,222,128,0.12) 0%, transparent 45%),
                    radial-gradient(ellipse at 80% 70%, rgba(74,222,128,0.08) 0%, transparent 40%),
                    radial-gradient(circle at 60% 20%, rgba(74,222,128,0.06) 0%, transparent 30%);
        pointer-events: none;
        z-index: 1;
      }
      .ac-glass__header {
        text-align: center;
        margin-bottom: 3.5rem;
        position: relative;
        z-index: 2;
        padding: 0 2rem;
      }
      .ac-glass__label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #66ff7e;
        margin-bottom: 1rem;
      }
      .ac-glass__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #3a4a6b;
      }
      .ac-glass__badges {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
      }
      .ac-glass__badge {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1.2rem;
        background: #87CEFA; border: none;
        border: none;
        border-radius: 0;
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        color: #3a4a6b;
        letter-spacing: 0.01em;
      }
      .ac-glass__grid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        position: relative;
        z-index: 2;
      }
      .ac-glass__card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        padding: 2.2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      .ac-glass__card::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(74,222,128,0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }
      .ac-glass__card::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: -20px;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(74,222,128,0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }
      .ac-glass__card:hover {
        border-color: rgba(74,222,128,0.5);
        box-shadow: 0 8px 32px rgba(74,222,128,0.12), 0 2px 8px rgba(0,0,0,0.04);
        transform: translateY(-6px);
      }
      .ac-glass__card-icon {
        width: 140px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.4rem;
        position: relative;
        z-index: 1;
      }
      .ac-glass__card-icon img {
        width: 140px;
        height: 140px;
        object-fit: contain;
      }
      .ac-glass__card h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #3a4a6b;
        margin-bottom: 0.7rem;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .ac-glass__card p {
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        line-height: 1.7;
        color: #555555;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .ac-glass__bottom-row {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 760px;
        margin: 0 auto;
        width: 100%;
      }

      /* === NUMBERED STEPS: SYSTEMINTEGRATION === */
      .ac-steps {
        padding: 6rem 2rem;
        background: #ffffff;
        background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
        background-size: 24px 24px;
        position: relative;
        overflow: hidden;
      }
      .ac-steps::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(102,255,126,0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }
      .ac-steps__header {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 2rem;
      }
      .ac-steps__heading {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: #111;
      }
      .ac-steps__subtext {
        font-family: 'Manrope', sans-serif;
        font-size: 1rem;
        color: #555;
        margin-top: 0.75rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
      .ac-steps__hub {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 420px 1fr;
        grid-template-rows: auto auto;
        gap: 2.5rem;
        align-items: center;
      }
      .ac-steps__hub-graphic {
        grid-column: 2;
        grid-row: 1 / 3;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .ac-steps__hub-graphic img {
        width: 420px;
        height: 420px;
        object-fit: contain;
        animation: hubFloat 6s ease-in-out infinite;
        /* mix-blend-mode removed for new graphic */
      }
      @keyframes hubFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
      }
      .ac-steps__left {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .ac-steps__right {
        grid-column: 3;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .ac-steps__card {
        background: #ffffff;
        border: 1px solid #eaeaea;
        border-radius: 16px;
        padding: 1.75rem 1.5rem;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      }
      .ac-steps__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #66ff7e, #4ADE80);
        border-radius: 16px 16px 0 0;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      .ac-steps__card:hover {
        border-color: #c8f7d0;
        box-shadow: 0 12px 40px rgba(102,255,126,0.12);
        transform: translateY(-4px);
      }
      .ac-steps__card:hover::before {
        opacity: 1;
      }
      .ac-steps__card-icon {
        display: none;
      }
      .ac-steps__card h4 {
        font-family: 'Bricolage Grotesque', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 0.5rem;
      }
      .ac-steps__card p {
        font-family: 'Manrope', sans-serif;
        font-size: 0.88rem;
        line-height: 1.7;
        color: #555;
      }

      /* === ANIMATED COUNTER === */



      /* === RESPONSIVE === */
      @media (max-width: 768px) {
        .ac-panel__grid { grid-template-columns: 1fr; }
        .ac-zigzag__item { grid-template-columns: 1fr; }
        .ac-zigzag__item:nth-child(even) { direction: ltr; }
        .ac-tabs__nav { gap: 0.3rem; }
        .ac-tabs__btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
        .ac-sticky__grid::before { left: 1rem; }
        .ac-sticky__steps { padding-left: 2.5rem; }
        .ac-glass__grid { grid-template-columns: 1fr; }
        .ac-glass__bottom-row { grid-template-columns: 1fr; max-width: 100%; }
        .ac-steps__hub { grid-template-columns: 1fr; }
        .ac-steps__hub-graphic { grid-column: 1; grid-row: auto; }
        .ac-steps__left { grid-column: 1; }
        .ac-steps__right { grid-column: 1; }
      }
