#fish-tank {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Animation Keyframes */
@keyframes fish {
    0% {
        transform: translate(-100px, 0) rotateZ(0deg);
    }
    20% {
        transform: translate(20vw, -20vh) rotateZ(15deg);
    }
    40% {
        transform: translate(40vw, -50vh) rotateZ(10deg);
    }
    60% {
        transform: translate(60vw, -70vh) rotateZ(20deg);
    }
    80% {
        transform: translate(80vw, -30vh) rotateZ(15deg);
    }
    100% {
        transform: translate(100vw, -40vh) rotateZ(0deg);
    }
}

@keyframes green-fish {
    0% {
        transform: translate(-100px, -10vh) rotateZ(0deg);
    }
    20% {
        transform: translate(25vw, -30vh) rotateZ(10deg);
    }
    40% {
        transform: translate(50vw, -60vh) rotateZ(15deg);
    }
    60% {
        transform: translate(75vw, -80vh) rotateZ(20deg);
    }
    80% {
        transform: translate(90vw, -50vh) rotateZ(10deg);
    }
    100% {
        transform: translate(100vw, -60vh) rotateZ(0deg);
    }
}

@keyframes blue-fish-anim {
    0% {
        transform: translate(-100px, 0) rotateZ(0deg);
    }
    20% {
        transform: translate(20vw, -15vh) rotateZ(15deg);
    }
    40% {
        transform: translate(40vw, -40vh) rotateZ(10deg);
    }
    60% {
        transform: translate(65vw, -60vh) rotateZ(20deg);
    }
    80% {
        transform: translate(85vw, -25vh) rotateZ(15deg);
    }
    100% {
        transform: translate(100vw, -35vh) rotateZ(0deg);
    }
}

@keyframes tail-fin {
    0% {
        transform: rotate(25deg) skewX(-18deg) skewY(-5deg);
        left: -35px;
    }
    50% {
        transform: rotate(25deg) skewX(-18deg) skewY(-15deg);
        left: -33px;
    }
    100% {
        transform: rotate(25deg) skewX(-18deg) skewY(-5deg);
        left: -35px;
    }
}

@keyframes blue-tail-fin {
    0% {
        transform: rotate(25deg) skewX(-18deg) skewY(-5deg);
        left: -19.27px;
    }
    50% {
        transform: rotate(25deg) skewX(-18deg) skewY(-15deg);
        left: -17.87px;
    }
    100% {
        transform: rotate(25deg) skewX(-18deg) skewY(-5deg);
        left: -19.27px;
    }
}

@keyframes side-fin {
    0% {
        transform: rotate(15deg) skewX(-18deg) skewY(-15deg);
    }
    50% {
        transform: rotate(25deg) skewX(-18deg) skewY(-15deg);
    }
    100% {
        transform: rotate(15deg) skewX(-18deg) skewY(-15deg);
    }
}

@keyframes blink {
    0%, 92% {
        height: 15px;
        top: 16px;
    }
    94%, 100% {
        height: 0;
        top: 24px;
    }
}

.fish {
    position: absolute;
    left: 0;
    bottom: 10%;
    animation: fish 20s cubic-bezier(0.9, 1, 0.3, 0.75) 0s infinite normal;
    cursor: pointer;
    transform: translate(-100px, 0);
    touch-action: none;
    z-index: 1;
    pointer-events: auto;
}

.blue-fish {
    left: 0;
    bottom: 20%;
    animation: blue-fish-anim 15s cubic-bezier(0.7, 1, 0.3, 0.5) 0s infinite normal;
    transform: translate(-100px, 0);
}

.green-fish {
    left: 0;
    bottom: 15%;
    animation: green-fish 18s cubic-bezier(0.8, 1, 0.4, 0.6) 0s infinite normal;
    transform: translate(-100px, -10vh);
}

.fish-body {
    position: absolute;
    width: 115px;
    height: 75px;
    border-radius: 50%;
    background-color: #6A006A;
    box-shadow: 0px -7px 7px inset #00000045;
    transform: skewX(5deg) skewY(-10deg);
}

.blue-fish .fish-body {
    width: 80.5px;
    height: 52.5px;
    background-color: #800080;
}

.green-fish .fish-body {
    width: 149.5px;
    height: 97.5px;
    background-color: #4B004B;
}

.fish-body:before { /* Auge - Augapfel */
    content: "";
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    position: absolute;
    border-radius: 50%;
    right: 18px;
    top: 16px;
    animation: blink 4s ease-in-out infinite;
    transform-origin: center;
    overflow: hidden;
}

.blue-fish .fish-body:before {
    animation: blink 3s ease-in-out infinite;
    right: 9px;
    top: 5px;
}

.green-fish .fish-body:before {
    animation: blink 5s ease-in-out infinite;
    right: 32px;
}

.fish-body:after { /* Auge - Pupille */
    content: "";
    width: 7px;
    height: 9px;
    background-color: #000000;
    position: absolute;
    border-radius: 55%;
    right: 20px;
    top: 18px;
    z-index: 2;
}

.blue-fish .fish-body:after {
    right: 13px;
}

.green-fish .fish-body:after {
    right: 36px;
}

.top-fin {
    position: absolute;
    left: 35px;
    top: -23px;
    width: 28px;
    height: 50px;
    border-radius: 20% 50%;
    background-color: #6A006A;
    box-shadow: 2px -11px 7px inset #00000080;
    transform: rotate(80deg) skewX(-23deg);
}

.blue-fish .top-fin {
    left: 24.5px;
    top: -16.1px;
    width: 19.6px;
    height: 35px;
    background-color: #800080;
}

.green-fish .top-fin {
    left: 45.5px;
    top: -29.9px;
    width: 36.4px;
    height: 65px;
    background-color: #4B004B;
}

.tail-fin {
    position: absolute;
    left: -35px;
    bottom: -89px;
    width: 43px;
    height: 50px;
    border-radius: 40% 50%;
    background-color: #6A006A;
    box-shadow: 1px -13px 7px inset #00000080;
    animation: tail-fin 0.8s ease 0s infinite normal;
}

.blue-fish .tail-fin {
    left: -19.27px;
    bottom: -62.3px;
    width: 30.1px;
    height: 35px;
    background-color: #800080;
    animation: blue-tail-fin 0.8s ease 0s infinite normal;
}

.green-fish .tail-fin {
    left: -53.5px;
    bottom: -115.7px;
    width: 55.9px;
    height: 65px;
    background-color: #4B004B;
}

.tail-fin:before {
    content: "";
    z-index: 9;
    position: absolute;
    left: -16px;
    bottom: 19px;
    width: 40px;
    height: 48px;
    border-radius: 40% 50%;
    background-color: #6A006A;
    box-shadow: 1px -13px 7px inset #00000080;
    transform: rotate(85deg);
}

.blue-fish .tail-fin:before {
    left: -19.2px;
    bottom: 13.3px;
    width: 28px;
    height: 33.6px;
    background-color: #800080;
}

.green-fish .tail-fin:before {
    left: -28.8px;
    bottom: 24.7px;
    width: 52px;
    height: 62.4px;
    background-color: #4B004B;
}

.side-fin {
    position: absolute;
    left: 39px;
    bottom: -77px;
    width: 33px;
    height: 38px;
    border-radius: 50% 40%;
    background-color: #6A006A;
    box-shadow: 1px -13px 7px inset #00000080;
    animation: side-fin 1.5s ease 0s infinite normal;
}

.blue-fish .side-fin {
    left: 27.3px;
    bottom: -53.9px;
    width: 23.1px;
    height: 26.6px;
    background-color: #800080;
}

.green-fish .side-fin {
    left: 50.7px;
    bottom: -100.1px;
    width: 42.9px;
    height: 49.4px;
    background-color: #4B004B;
}

.scale {
    position: absolute;
    width: 21px;
    height: 24px;
    border-radius: 39%;
    background-color: #6A006A;
    box-shadow: 3px -3px 5px inset #00000020;
    transform: rotate(22deg) skewX(-3deg) skewY(-10deg);
}

.blue-fish .scale {
    width: 14.7px;
    height: 16.8px;
    background-color: #800080;
}

.green-fish .scale {
    width: 27.3px;
    height: 31.2px;
    background-color: #4B004B;
}

.scale-1 { left: 20px; bottom: -44px; }
.blue-fish .scale-1 { left: 14px; bottom: -30.8px; }
.green-fish .scale-1 { left: 26px; bottom: -57.2px; }

.scale-2 { left: 36px; bottom: -32px; }
.blue-fish .scale-2 { left: 25.2px; bottom: -22.4px; }
.green-fish .scale-2 { left: 46.8px; bottom: -41.6px; }

.scale-3 { left: 53px; bottom: -37px; }
.blue-fish .scale-3 { left: 37.1px; bottom: -25.9px; }
.green-fish .scale-3 { left: 68.9px; bottom: -48.1px; }

/* Anpassung für den White-Mode */
.white-mode #fish-tank {
    background-color: transparent;
}

.white-mode .fish:not(.blue-fish):not(.green-fish) .fish-body,
.white-mode .fish:not(.blue-fish):not(.green-fish) .top-fin,
.white-mode .fish:not(.blue-fish):not(.green-fish) .tail-fin,
.white-mode .fish:not(.blue-fish):not(.green-fish) .tail-fin:before,
.white-mode .fish:not(.blue-fish):not(.green-fish) .side-fin,
.white-mode .fish:not(.blue-fish):not(.green-fish) .scale {
    background-color: #A0A0A0;
}
.white-mode .fish:not(.blue-fish):not(.green-fish) .fish-body { box-shadow: 0px -7px 7px inset #00000025; }
.white-mode .fish:not(.blue-fish):not(.green-fish) .top-fin { box-shadow: 2px -11px 7px inset #00000035; }
.white-mode .fish:not(.blue-fish):not(.green-fish) .tail-fin,
.white-mode .fish:not(.blue-fish):not(.green-fish) .tail-fin:before { box-shadow: 1px -13px 7px inset #00000035; }
.white-mode .fish:not(.blue-fish):not(.green-fish) .side-fin { box-shadow: 1px -13px 7px inset #00000035; }
.white-mode .fish:not(.blue-fish):not(.green-fish) .scale { box-shadow: 3px -3px 5px inset #00000010; }

.white-mode .blue-fish .fish-body,
.white-mode .blue-fish .top-fin,
.white-mode .blue-fish .tail-fin,
.white-mode .blue-fish .tail-fin:before,
.white-mode .blue-fish .side-fin,
.white-mode .blue-fish .scale {
    background-color: #C8C8C8;
}
.white-mode .blue-fish .fish-body { box-shadow: 0px -7px 7px inset #00000020; }
.white-mode .blue-fish .top-fin { box-shadow: 2px -11px 7px inset #00000030; }
.white-mode .blue-fish .tail-fin,
.white-mode .blue-fish .tail-fin:before { box-shadow: 1px -13px 7px inset #00000030; }
.white-mode .blue-fish .side-fin { box-shadow: 1px -13px 7px inset #00000030; }
.white-mode .blue-fish .scale { box-shadow: 3px -3px 5px inset #0000000A; }

.white-mode .green-fish .fish-body,
.white-mode .green-fish .top-fin,
.white-mode .green-fish .tail-fin,
.white-mode .green-fish .tail-fin:before,
.white-mode .green-fish .side-fin,
.white-mode .green-fish .scale {
    background-color: #888888;
}
.white-mode .green-fish .fish-body { box-shadow: 0px -7px 7px inset #00000030; }
.white-mode .green-fish .top-fin { box-shadow: 2px -11px 7px inset #00000040; }
.white-mode .green-fish .tail-fin,
.white-mode .green-fish .tail-fin:before { box-shadow: 1px -13px 7px inset #00000040; }
.white-mode .green-fish .side-fin { box-shadow: 1px -13px 7px inset #00000040; }
.white-mode .green-fish .scale { box-shadow: 3px -3px 5px inset #00000015; }

.white-mode .fish-body:before {
    background-color: #ffffff;
}
.white-mode .fish-body:after {
    background-color: #000000;
}

/* Rest der bestehenden Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --transition-speed: 2s;
    --display-duration: 4s;
    --easing-curve: cubic-bezier(0.76, 0, 0.24, 1);
}

body {
    font-family: 'Advent Pro', sans-serif;
    height: 100vh;
    overflow: hidden;
    text-transform: lowercase;
    background-color: #25002e;
    color: #fff;
}

.white-mode {
    background-color: #fff !important;
    color: #000 !important;
}

.button-6 {
    align-items: center;
    background-color: #333;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: 'Advent Pro', sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 1cm 0 0 0;
    min-height: 3rem;
    padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    text-transform: lowercase;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.button-6:hover,
.button-6:focus {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    color: #ddd;
}

.button-6:hover {
    transform: translateY(-1px);
}

.button-6:active {
    background-color: #444;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: #ddd;
    transform: translateY(0);
}

.style-switcher {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.style-switcher button {
    padding: 8px 16px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.style-switcher button:hover {
    background: #fff;
    color: #000;
}

.style-switcher button.active {
    background: #fff;
    color: #000;
}

.white-mode .style-switcher button {
    border: 1px solid #000;
    color: #000;
}

.white-mode .style-switcher button:hover {
    background: #000;
    color: #fff;
}

.white-mode .style-switcher button.active {
    background: #000;
    color: #fff;
}

.menu-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.menu-btn:hover {
    transform: scale(1.1);
}

.menu-line {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: all 0.3s;
    opacity: 0.9;
}

.white-mode .menu-line {
    background: #000;
}

.menu-line:nth-child(2) {
    width: 80%;
    margin-left: auto;
}

.menu-line:last-child {
    width: 60%;
    margin-left: auto;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
}

.white-mode .menu-overlay {
    background: rgba(255, 255, 255, 0.95) !important;
}

.menu-overlay.active {
    right: 0;
}

.menu-item {
    color: #fff;
    font-size: 2.5rem;
    margin: 1rem 0;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
    font-weight: 300;
    letter-spacing: 1px;
}

.white-mode .menu-item {
    color: #000;
}

.menu-item:hover {
    opacity: 1;
    transform: translateX(10px);
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.page.active {
    opacity: 1;
    pointer-events: auto;
}

.content {
    display: flex;
    align-items: center;
    padding: 0 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.text-content {
    flex: 1;
}

.title {
    font-size: 8vw;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pump 0.5s ease-out;
}

@keyframes pump {
    0% { transform: scale(0.8); opacity: 0; }
    70% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.subtitle {
    font-size: 1.8vw;
    font-weight: 200;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 15px;
    max-width: 600px;
}

.arrow {
    position: fixed;
    top: calc(70% + 3cm);
    cursor: pointer;
    width: 100px;
    height: 100px;
    transition: all 0.3s;
    z-index: 800;
    transform: translateY(-50%);
}

#nextArrow { right: 40px; }
#nextArrow:hover { transform: translateY(-50%) scale(1.1); }
#prevArrow { left: 40px; right: auto; }
#prevArrow:hover { transform: translateY(-50%) scale(1.1); }

.arrow-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.arrow path { stroke: #fff; stroke-width: 1.5; }
.white-mode .arrow path { stroke: #000; }

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: #fff;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2000;
}

.white-mode .popup { background: #fff !important; color: #000 !important; }
.white-mode .popup a { color: #000 !important; text-decoration: underline !important; }

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
.white-mode .popup-close { color: #000 !important; }
.popup.active { display: block; }

a { color: inherit; text-decoration: none; }
.white-mode a { color: #b6b6b6; }

.features-wrapper {
    display: flex;
    align-items: flex-end;
    margin-top: 30px;
}
.features-wrapper .container { padding-top: 0; }
.features-wrapper .button-6 { margin: 0 0 30px 3cm; }

.container { display: flex; gap: 20px; justify-content: flex-start; padding-top: 30px; width: auto; }
.item-wrapper { text-align: center; }

.square {
    width: 80px; height: 80px; border: 2px solid; border-radius: 10px;
    display: flex; justify-content: center; align-items: center;
    font-size: 60px; line-height: 1; font-weight: bold; font-family: 'Advent Pro', sans-serif;
    transition: all 0.3s ease; padding-bottom: 8px;
}

.caption { margin-top: 10px; font-family: 'Advent Pro', sans-serif; font-size: 18px; }
.caption { color: #fff; }
.box-w { background-color: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.box-x { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.box-p { background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.6); color: #fff; }

.white-mode .caption { color: #000; }
.white-mode .box-w { background-color: #f0f0f0; border-color: #dcdcdc; color: #333333; }
.white-mode .box-x { background-color: #e0e0e0; border-color: #c0c0c0; color: #222222; }
.white-mode .box-p { background-color: #b0b0b0; border-color: #909090; color: white; }

.social-icons-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30%;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 25px;
    height: 25px;
    fill: #e0e0e0;
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    transform: translateY(-6px);
}

.social-icon:hover {
    box-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff;
}
.social-icon:hover svg {
    fill: #ffffff;
}

.white-mode .social-icon {
    background-color: #f0f0f0;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.white-mode .social-icon svg {
    fill: #333;
}

.white-mode .icon-facebook:hover {
    box-shadow: 0 0 15px #555555, 0 0 30px #555555;
}
.white-mode .icon-facebook:hover svg {
    fill: #1877F2;
}

.white-mode .icon-linkedin:hover {
    box-shadow: 0 0 15px #555555, 0 0 30px #555555;
}
.white-mode .icon-linkedin:hover svg {
    fill: #0A66C2;
}

.white-mode .icon-x:hover {
    box-shadow: 0 0 15px #555555, 0 0 30px #555555;
}
.white-mode .icon-x:hover svg {
    fill: #000; 
}


/* --- START: Angepasste Styles für Kund*innen-Liste --- */
.contact-grid {
    display: flex;
    align-items: flex-start;
    gap: 120px; 
    width: 100%;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.customer-list-container {
    flex: 1;
    min-width: 300px;
    padding-top: 0; 
}

.customer-list-header {
    font-size: 1.8vw;
    font-weight: 200;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 20px;
}

.morph-container {
    position: relative;
    filter: none;
    will-change: transform, opacity, filter;
    height: 100px; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.text-morph {
    position: absolute;
    top: 50%;
    left: 0; 
    transform: translateY(-50%) scale(1);
    transform-origin: left center;
    font-family: 'Advent Pro', sans-serif;
    font-size: 3.5vw;
    font-weight: 600;
    white-space: nowrap;
    color: #fff;
    transition: 
        transform var(--transition-speed) var(--easing-curve),
        opacity var(--transition-speed) var(--easing-curve),
        filter var(--transition-speed) var(--easing-curve);
    opacity: 1;
    filter: blur(0px);
}

#text2.text-morph {
    opacity: 0;
    filter: blur(1.5px);
    transform: translateY(-50%) scale(1.2);
}

/* Anpassungen für White-Mode */
.white-mode .customer-list-header,
.white-mode .text-morph {
    color: #000;
}
/* --- ENDE: Angepasste Styles für Kund*innen-Liste --- */


/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .title { font-size: 12vw; }
    .subtitle { font-size: 3vw; }
    .customer-list-header { font-size: 3vw; }
    .text-morph { font-size: 5vw; }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column; padding: 0 30px;
        justify-content: center; align-items: center;
    }
    .content-wrapper {
        flex-direction: column; gap: 30px; padding: 0;
        align-items: center; width: 90%; max-width: 600px;
    }
    .title { font-size: 12vw; text-align: left; }
    .subtitle {
        font-size: 5vw; letter-spacing: 1px; max-width: 100%;
        text-align: left; white-space: normal;
    }
    .features-wrapper { flex-direction: column; align-items: flex-start; }
    .features-wrapper .button-6 { margin: 20px 0 0 0; }
    #home .subtitle { white-space: normal; line-height: 1.4; }
    #home .subtitle br { display: inline; }
    #contact .subtitle, #datenschutz .subtitle, .popup .subtitle {
        font-size: 6vw; white-space: normal;
    }
    .arrow { width: 70px; height: 70px; }
    #nextArrow { right: 20px; }
    #prevArrow { left: 20px; }
    .menu-item { font-size: 2rem; }
    .button-6 {
        padding: calc(.875rem - 1px) calc(1.5rem - 1px); font-size: 14px;
        width: auto; justify-content: center; align-self: flex-start;
    }
    .style-switcher { top: 30px; left: 20px; }
    #sozpaed .text-content, #carejobs .text-content, #datenschutz .text-content,
    #home .text-content, #contact .text-content {
        display: flex; flex-direction: column;
        align-items: flex-start; width: 100%;
    }
    .container { gap: 15px; padding-top: 25px; }
    .square { width: 60px; height: 60px; font-size: 50px; padding-bottom: 5px; }
    .caption { font-size: 14px; }

    /* Responsive für Kontakt-Seite */
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
    .customer-list-header { font-size: 6vw; }
    .text-morph { font-size: 8vw; }
    .morph-container { justify-content: flex-start; }
}