/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}S

.custom-header {
    background: #ffffb3 !important;
    border-top-left-radius: clamp(5px, 1vw, 10px);
    border-top: clamp(3px, 0.5vw, 6px) solid #333;
    border-left: clamp(3px, 0.5vw, 6px) solid #333;
    border-right: none;
    border-bottom: none;
    height: clamp(32px, 6vw, 48px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(16px, 3vw, 40px);
    position: relative;
    z-index: 1100;
    width: 100%;
    box-sizing: border-box;
}

.custom-header-text {
    font-family: serif;
    font-style: italic;
    font-weight: bold;
    font-size: clamp(1.2rem, 2.5vw, 4rem);
    color: #222;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    line-height: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.custom-header-text sup {
    font-size: 0.3em;
    vertical-align: super;
    margin-left: 2px;
}

@media (max-width: 600px) {
    .custom-header {
        height: clamp(28px, 5vw, 32px);
        padding-left: clamp(12px, 2vw, 16px);
    }
    .custom-header-text {
        font-size: clamp(1rem, 2vw, 1.8rem);
    }
}

.main-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.main-image {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: clamp(150px, 25vh, 400px);
}

.logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(16px, 3vw, 32px);
    margin-bottom: clamp(8px, 1.5vw, 16px);
    padding: 0 clamp(10px, 2vw, 20px);
}

.urbanunits-logo {
    max-width: clamp(220px, 40vw, 500px);
    width: 90%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 600px) {
    .logo-section {
        margin-top: clamp(12px, 2.5vw, 18px);
        margin-bottom: clamp(6px, 1vw, 8px);
    }
    .urbanunits-logo {
        max-width: clamp(180px, 35vw, 220px);
        width: 95%;
    }
} 

.pxl-divider {
    width: 100%;
    margin: clamp(20px, 4vw, 40px) 0 clamp(16px, 3vw, 32px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(10px, 2vw, 20px);
}

.pxl-line {
    width: 100%;
    border: none;
    border-top: 1px solid #bbb;
    margin: 0;
}

.oxl-line-top {
    margin-top: clamp(80px, 15vw, 160px) !important;
}

.pxl-content {
    width: 100%;
    max-width: clamp(600px, 80vw, 900px);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(40px, 8vw, 130px);
    padding: clamp(12px, 2vw, 16px) clamp(10px, 2vw, 20px);
    position: relative;
    background: #fff;
    z-index: 1;
    box-sizing: border-box;
}

.pxl-center, .pxl-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pxl-left {
    flex: 0.8;
    display: flex;
    justify-content: flex-start;
}

.pxl-center {
    flex: 1.2;
    text-align: left;
    font-size: clamp(0.9rem, 1rem, 1.2rem);
    font-weight: normal;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pxl-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: clamp(0.7rem, 0.8rem, 1rem);
    color: #666;
    font-weight: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.case-btn {
    padding: clamp(8px, 2vw, 18px) clamp(12px, 3vw, 24px);
    font-size: clamp(0.8rem, 1.2vw, 1.1rem);
    background: #222;
    color: #fff;
    border: none;
    border-radius: clamp(3px, 0.8vw, 6px);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.case-btn:hover {
    background: #444;
}

.case-btn-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .pxl-content {
        flex-direction: column;
        gap: clamp(8px, 2vw, 12px);
        padding: clamp(8px, 1.5vw, 12px) clamp(8px, 1.5vw, 12px);
    }
    .pxl-left, .pxl-center, .pxl-right {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .pxl-center {
        font-size: clamp(0.9rem, 1.2vw, 1.3rem);
    }
} 

.oxl-line {
    width: 100%;
    border: none;
    border-top: 1px solid #bbb;
    margin: 0;
}

.oxl-gallery {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: #fff;
    padding: 16px 0;
}

.oxl-img {
    max-width: clamp(120px, 18vw, 200px);
    width: 100%;
    height: auto;
    border-radius: clamp(6px, 1.2vw, 12px);
    box-shadow: 0 clamp(1px, 0.3vw, 3px) clamp(4px, 1vw, 12px) rgba(0,0,0,0.06);
    object-fit: cover;
    background: #f5f5f5;
}

@media (max-width: 900px) {
    .oxl-img {
        max-width: clamp(100px, 15vw, 140px);
    }
    .oxl-gallery {
        gap: clamp(8px, 2vw, 16px);
        padding: clamp(12px, 2vw, 20px) 0;
    }
} 

.oxl-carousel-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    background: #fff;
    padding: clamp(12px, 2vw, 16px) clamp(8px, 1.5vw, 16px);
    box-sizing: border-box;
    overflow: hidden;
}

.oxl-carousel-wrapper.right-align {
    justify-content: flex-end;
}

.oxl-carousel-scroll {
    display: flex;
    flex-direction: row;
    gap: clamp(16px, 2.5vw, 24px);
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    padding: clamp(6px, 1vw, 8px) clamp(8px, 2vw, 16px);
    background: #fff;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}

.oxl-carousel-scroll::-webkit-scrollbar {
    display: none;
}

.oxl-carousel-scroll .oxl-img {
    flex: 0 0 clamp(220px, 25vw, 350px);
    max-width: clamp(220px, 25vw, 350px);
    width: clamp(220px, 25vw, 350px);
    height: clamp(160px, 20vw, 280px);
    border-radius: clamp(4px, 0.8vw, 8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    object-fit: cover;
    background: #f5f5f5;
    display: block;
    min-width: 0;
}

.oxl-arrows {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 24px);
    margin-right: clamp(12px, 2vw, 16px);
}

.oxl-arrow {
    width: clamp(32px, 4.5vw, 56px);
    height: clamp(32px, 4.5vw, 56px);
    background: #111;
    color: #fff;
    border: none;
    border-radius: clamp(2px, 0.5vw, 6px);
    font-size: clamp(1.2rem, 2.2vw, 2.2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.oxl-arrow:hover {
    background: #333;
}

.oxl-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    min-height: 220px;
}

.oxl-carousel .oxl-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    object-fit: cover;
    background: #f5f5f5;
    display: none;
}

@media (max-width: 900px) {
    .oxl-carousel-wrapper {
        gap: clamp(8px, 2vw, 16px);
        padding: clamp(8px, 1.5vw, 12px) clamp(4px, 1vw, 8px);
        justify-content: center;
    }
    .oxl-carousel-scroll {
        padding: clamp(4px, 1vw, 6px) clamp(4px, 1vw, 8px);
        justify-content: center;
    }
    .oxl-carousel-scroll .oxl-img {
        flex-basis: clamp(130px, 16vw, 180px);
        max-width: clamp(130px, 16vw, 180px);
        width: clamp(130px, 16vw, 180px);
        height: clamp(80px, 10vw, 110px);
    }
    .oxl-arrow {
        width: clamp(28px, 4vw, 40px);
        height: clamp(28px, 4vw, 40px);
        font-size: clamp(1rem, 1.8vw, 1.5rem);
    }
    .oxl-carousel {
        max-width: clamp(200px, 25vw, 280px);
        min-height: clamp(100px, 15vw, 140px);
    }
    .oxl-carousel .oxl-img {
        max-width: clamp(200px, 25vw, 280px);
    }
} 

@media (max-width: 1500px) {
    .oxl-carousel-scroll {
        width: 100%;
        max-width: 100%;
        padding: clamp(6px, 1vw, 8px) clamp(6px, 1.5vw, 12px);
        justify-content: center;
    }
    .oxl-carousel-scroll .oxl-img {
        flex-basis: clamp(160px, 20vw, 220px);
        max-width: clamp(160px, 20vw, 220px);
        width: clamp(160px, 20vw, 220px);
        height: clamp(100px, 14vw, 140px);
    }
}

@media (max-width: 600px) {
    .oxl-carousel-wrapper {
        gap: clamp(6px, 1.5vw, 12px);
        padding: clamp(6px, 1vw, 8px) clamp(2px, 0.8vw, 6px);
        justify-content: center;
    }
    .oxl-carousel-scroll {
        padding: clamp(2px, 0.8vw, 4px) clamp(2px, 0.8vw, 6px);
        justify-content: center;
    }
    .oxl-carousel-scroll .oxl-img {
        flex-basis: clamp(100px, 12vw, 140px);
        max-width: clamp(100px, 12vw, 140px);
        width: clamp(100px, 12vw, 140px);
        height: clamp(60px, 8vw, 80px);
    }
    .oxl-arrow {
        width: clamp(24px, 3.5vw, 32px);
        height: clamp(24px, 3.5vw, 32px);
        font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .oxl-carousel-wrapper {
        gap: clamp(4px, 1vw, 8px);
        padding: clamp(4px, 0.8vw, 6px) clamp(1px, 0.5vw, 4px);
        justify-content: center;
    }
    .oxl-carousel-scroll {
        padding: clamp(1px, 0.5vw, 2px) clamp(1px, 0.5vw, 4px);
        justify-content: center;
    }
    .oxl-carousel-scroll .oxl-img {
        flex-basis: clamp(80px, 10vw, 110px);
        max-width: clamp(80px, 10vw, 110px);
        width: clamp(80px, 10vw, 110px);
        height: clamp(50px, 6vw, 65px);
    }
    .oxl-arrow {
        width: clamp(20px, 3vw, 28px);
        height: clamp(20px, 3vw, 28px);
        font-size: clamp(0.8rem, 1.2vw, 1rem);
    }
}

.case-icon-container {
    width: 100%;
    max-width: none;
    margin: clamp(40px, 8vw, 80px) 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: clamp(24px, 4vw, 48px);
    padding: 0 clamp(16px, 3vw, 24px) clamp(32px, 6vw, 64px) clamp(16px, 3vw, 24px);
    box-sizing: border-box;
}

.case-icon-box {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
    min-height: clamp(350px, 60vw, 600px);
    background: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc !important;
    border-right: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(80px, 12vw, 120px) clamp(20px, 3vw, 32px) clamp(50px, 10vw, 100px) clamp(20px, 3vw, 32px);
    position: relative;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
}

.case-icon-box:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.icon-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: none;
}

.icon-title-text {
    font-size: clamp(1rem, 1.2rem, 1.4rem);
    font-weight: 900;
    color: #111;
    letter-spacing: 1px;
    margin-top: 130px;
    text-align: center;
    transition: color 0.3s, margin-top 0.3s;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.case-icon-box:hover .icon-title-text {
    color: #111;
    margin-top: 0;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.icon-svg {
    transition: opacity 0.3s, transform 0.4s cubic-bezier(.4,1.6,.6,1), filter 0.3s;
    will-change: transform, opacity;
}

.case-icon-box:hover .icon-svg {
    opacity: 0;
    transform: translateY(-60px);
    filter: blur(2px);
}

.icon-desc {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 40px);
    font-size: clamp(0.9rem, 1.05rem, 1.2rem);
    color: #222;
    text-align: center;
    width: 80%;
    transition: opacity 0.3s, transform 0.4s cubic-bezier(.4,1.6,.6,1);
    will-change: transform, opacity;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.case-icon-box:hover .icon-desc {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 30px);
}

@media (max-width: 1100px) {
    .case-icon-container {
        flex-direction: column;
        justify-content: flex-start;
        gap: clamp(20px, 4vw, 40px);
        align-items: stretch;
        padding: 0 clamp(12px, 2.5vw, 20px) clamp(32px, 6vw, 48px) clamp(12px, 2.5vw, 20px);
    }
    .case-icon-box {
        max-width: none;
        width: 100%;
        min-width: 0;
        min-height: clamp(200px, 35vw, 300px);
        padding: clamp(40px, 6vw, 60px) clamp(16px, 2.5vw, 24px) clamp(24px, 4vw, 40px) clamp(16px, 2.5vw, 24px);
        flex: none;
    }
    .icon-title-text {
        font-size: clamp(1rem, 1.3rem, 1.6rem);
        margin-top: clamp(60px, 80px, 100px);
    }
    .icon-desc {
        font-size: clamp(0.9rem, 1.1rem, 1.3rem);
        line-height: 1.5;
    }
    .custom-svg-bg {
        width: clamp(90px, 12vw, 120px);
        height: clamp(90px, 12vw, 120px);
    }
    .icon-img {
        max-width: clamp(90px, 12vw, 120px);
        max-height: clamp(90px, 12vw, 120px);
    }
}

@media (max-width: 768px) {
    .case-icon-container {
        flex-direction: column;
        justify-content: flex-start;
        gap: clamp(16px, 3vw, 32px);
        padding: 0 clamp(8px, 1.5vw, 16px) clamp(24px, 4vw, 36px) clamp(8px, 1.5vw, 16px);
    }
    .case-icon-box {
        max-width: none;
        width: 100%;
        min-height: clamp(180px, 30vw, 250px);
        padding: clamp(32px, 5vw, 48px) clamp(12px, 2vw, 20px) clamp(20px, 3vw, 32px) clamp(12px, 2vw, 20px);
        flex: none;
    }
    .icon-title-text {
        font-size: clamp(0.9rem, 1.2rem, 1.4rem);
        margin-top: clamp(50px, 70px, 90px);
    }
    .icon-desc {
        font-size: clamp(0.8rem, 1rem, 1.2rem);
        line-height: 1.4;
    }
    .custom-svg-bg {
        width: clamp(80px, 10vw, 100px);
        height: clamp(80px, 10vw, 100px);
    }
    .icon-img {
        max-width: clamp(80px, 10vw, 100px);
        max-height: clamp(80px, 10vw, 100px);
    }
}

@media (max-width: 480px) {
    .case-icon-container {
        flex-direction: column;
        justify-content: flex-start;
        gap: clamp(12px, 2.5vw, 24px);
        padding: 0 clamp(6px, 1vw, 12px) clamp(20px, 3vw, 28px) clamp(6px, 1vw, 12px);
    }
    .case-icon-box {
        max-width: none;
        width: 100%;
        min-height: clamp(160px, 25vw, 220px);
        padding: clamp(24px, 4vw, 36px) clamp(8px, 1.5vw, 16px) clamp(16px, 2.5vw, 28px) clamp(8px, 1.5vw, 16px);
        flex: none;
    }
    .icon-title-text {
        font-size: clamp(0.8rem, 1.1rem, 1.3rem);
        margin-top: clamp(40px, 60px, 80px);
    }
    .icon-desc {
        font-size: clamp(0.75rem, 0.9rem, 1.1rem);
        line-height: 1.3;
    }
    .custom-svg-bg {
        width: clamp(70px, 8vw, 90px);
        height: clamp(70px, 8vw, 90px);
    }
    .icon-img {
        max-width: clamp(70px, 8vw, 90px);
        max-height: clamp(70px, 8vw, 90px);
    }
}

.lucide-bg {
    background: #111;
    padding: clamp(20px, 4vw, 40px);
    border-radius: clamp(3px, 0.8vw, 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.lucide-bg i,
.lucide-bg svg {
    color: #fff;
    width: clamp(36px, 5vw, 56px);
    height: clamp(36px, 5vw, 56px);
    stroke-width: clamp(2px, 0.4vw, 3px);
} 

.custom-svg-bg {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: clamp(3px, 0.8vw, 6px);
    margin: 0 auto;
}

.custom-svg-bg svg {
    width: clamp(32px, 4vw, 48px);
    height: clamp(32px, 4vw, 48px);
    display: block;
} 

.icon-img {
    max-width: clamp(90px, 12vw, 130px);
    max-height: clamp(90px, 12vw, 130px);
    display: block;
    margin: 0 auto;
} 

.case-icon-box:not(:first-child) {
    border-left: 1px solid #ccc !important;
} 

.abschnitt2-container {
    margin-top: 64px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}
.abschnitt2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 32px 32px;
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch;
}
.abschnitt2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    min-height: 320px;
}
.abschnitt2-text {
    background: #ffffb3;
    border-radius: 8px;
    padding: clamp(24px, 48px, 60px) clamp(20px, 40px, 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    font-size: clamp(1rem, 1.15rem, 1.3rem);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.abschnitt2-text h2 {
    font-size: clamp(1.5rem, 2.1rem, 2.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: #111;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.abschnitt2-text p {
    margin-top: clamp(32px, 56px, 64px);
    margin-bottom: 32px;
    color: #444;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.abschnitt2-btn {
    font-weight: bold;
    color: #111;
    background: none;
    border: none;
    font-size: clamp(1rem, 1.1rem, 1.3rem);
    cursor: pointer;
    display: inline-block;
    margin-top: auto;
}
@media (max-width: 900px) {
    .abschnitt2-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }
    .abschnitt2-img img, .abschnitt2-text {
        min-height: 180px;
        padding: 24px 16px;
    }
    .abschnitt2-text h2 {
        font-size: 1.4rem;
    }
} 

.abschnitt2-row {
    display: flex;
    flex-direction: row;
    gap: clamp(16px, 24px, 32px);
    max-width: 100vw;
    margin: clamp(32px, 64px, 80px) 0 0 0;
    padding: 0 clamp(16px, 24px, 32px);
    width: 100%;
    box-sizing: border-box;
    height: clamp(400px, 600px, 700px);
    min-height: clamp(400px, 600px, 700px);
}
.abschnitt2-img, .abschnitt2-text {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    border-radius: 8px;
    box-sizing: border-box;
}
.abschnitt2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.abschnitt2-text {
    background: #ffffb3;
    padding: clamp(24px, 40px, 48px) clamp(20px, 32px, 40px);
    font-size: clamp(1rem, 1.15rem, 1.3rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1100px) {
    .abschnitt2-row {
        flex-direction: column;
        gap: clamp(16px, 24px, 32px);
        padding: 0 clamp(16px, 24px, 32px);
        height: auto;
        min-height: auto;
        margin: clamp(32px, 48px, 64px) 0 0 0;
    }
    .abschnitt2-img, .abschnitt2-text {
        min-height: clamp(200px, 25vh, 300px);
        padding: clamp(20px, 3vw, 32px) clamp(12px, 2vw, 20px);
        max-height: none;
        height: auto;
    }
    .abschnitt2-text h2 {
        font-size: clamp(1.2rem, 1.6rem, 2rem);
        margin-bottom: clamp(12px, 16px, 20px);
    }
    .abschnitt2-text p {
        margin-top: clamp(12px, 16px, 20px);
        margin-bottom: clamp(16px, 20px, 24px);
        font-size: clamp(0.9rem, 1.1rem, 1.3rem);
        line-height: 1.5;
    }
    .abschnitt2-btn {
        font-size: clamp(0.9rem, 1.1rem, 1.3rem);
        margin-top: clamp(12px, 16px, 20px);
    }
}

@media (max-width: 768px) {
    .abschnitt2-row {
        flex-direction: column;
        gap: clamp(12px, 16px, 20px);
        padding: 0 clamp(12px, 16px, 20px);
        height: auto;
        min-height: auto;
        margin: clamp(24px, 32px, 48px) 0 0 0;
    }
    .abschnitt2-img,     .abschnitt2-text {
        min-height: clamp(180px, 22vh, 250px);
        padding: clamp(16px, 2.5vw, 24px) clamp(8px, 1.5vw, 16px);
    }
    .abschnitt2-text h2 {
        font-size: clamp(1.1rem, 1.4rem, 1.7rem);
        margin-bottom: clamp(10px, 12px, 16px);
    }
    .abschnitt2-text p {
        margin-top: clamp(10px, 12px, 16px);
        margin-bottom: clamp(12px, 16px, 20px);
        font-size: clamp(0.85rem, 1rem, 1.2rem);
        line-height: 1.4;
    }
    .abschnitt2-btn {
        font-size: clamp(0.85rem, 1rem, 1.2rem);
        margin-top: clamp(10px, 12px, 16px);
    }
}

@media (max-width: 480px) {
    .abschnitt2-row {
        flex-direction: column;
        gap: clamp(8px, 12px, 16px);
        padding: 0 clamp(8px, 12px, 16px);
        height: auto;
        min-height: auto;
        margin: clamp(16px, 24px, 32px) 0 0 0;
    }
    .abschnitt2-img, .abschnitt2-text {
        min-height: clamp(150px, 20vh, 200px);
        padding: clamp(12px, 2vw, 20px) clamp(6px, 1vw, 12px);
    }
    .abschnitt2-text h2 {
        font-size: clamp(1rem, 1.3rem, 1.5rem);
        margin-bottom: clamp(8px, 10px, 12px);
    }
    .abschnitt2-text p {
        margin-top: clamp(8px, 10px, 12px);
        margin-bottom: clamp(10px, 12px, 16px);
        font-size: clamp(0.8rem, 0.95rem, 1.1rem);
        line-height: 1.4;
    }
    .abschnitt2-btn {
        font-size: clamp(0.8rem, 0.95rem, 1.1rem);
        margin-top: clamp(8px, 10px, 12px);
    }
}

.kontaktform-section {
    margin: 80px 0 0 0;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}
.kontaktform-grid {
    display: flex;
    flex-direction: row;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}
.kontaktform-left {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 400px;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.kontaktform-left h3 {
    font-size: clamp(1.5rem, 2rem, 2.5rem);
    font-weight: 900;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.kontaktform-address {
    color: #888;
    font-size: clamp(0.9rem, 1rem, 1.2rem);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.kontaktform-mail, .kontaktform-phone {
    font-size: clamp(1.1rem, 1.3rem, 1.5rem);
    font-weight: 500;
    margin: 12px 0 0 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.kontaktform-socials {
    margin-top: 32px;
    border-radius: 2px;
    padding: 18px 0 12px 0;
    display: flex;
    gap: 36px;
    font-size: 1.15rem;
    justify-content: flex-start;
}
.kontaktform-socials a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}
.kontaktform-socials a:hover {
    color: #b38aff;
}
.kontaktform-right {
    flex: 2 1 0;
    min-width: 320px;
    background: #fff;
    border-radius: 4px;
    padding: 32px 32px 32px 32px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.case-heading {
    font-size: clamp(1.2rem, 1.5rem, 1.8rem);
    font-weight: 700;
    margin-bottom: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.case-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
}
.form-row input, .form-row select {
    flex: 1 1 0;
    padding: 14px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    outline: none;
    transition: border 0.2s;
}
.form-row input:focus, .form-row select:focus {
    border: 1.5px solid #b38aff;
}
.case-btn {
    margin-top: 18px;
    width: 260px;
    max-width: 100%;
    align-self: flex-start;
}
@media (max-width: 900px) {
    .kontaktform-grid {
        flex-direction: row;
        gap: clamp(24px, 32px, 40px);
        padding: 0 clamp(16px, 20px, 24px);
    }
    .kontaktform-left {
        max-width: clamp(200px, 280px, 320px);
        min-width: clamp(180px, 220px, 260px);
    }
    .kontaktform-right {
        flex: 1 1 0;
        padding: clamp(20px, 24px, 28px) clamp(16px, 20px, 24px);
        min-width: clamp(250px, 300px, 350px);
    }
    .kontaktform-section {
        padding: 0 clamp(12px, 16px, 20px);
    }
    .kontaktform-left h3 {
        font-size: clamp(1.2rem, 1.5rem, 1.8rem);
    }
    .kontaktform-address {
        font-size: clamp(0.8rem, 0.9rem, 1rem);
    }
    .kontaktform-mail, .kontaktform-phone {
        font-size: clamp(1rem, 1.1rem, 1.3rem);
    }
    .kontaktform-socials {
        gap: clamp(20px, 24px, 28px);
        font-size: clamp(1rem, 1.1rem, 1.2rem);
    }
    .case-heading {
        font-size: clamp(1rem, 1.2rem, 1.4rem);
    }
    .form-row input, .form-row select {
        padding: clamp(10px, 12px, 14px);
        font-size: clamp(0.9rem, 1rem, 1.1rem);
    }
    .case-btn {
        width: clamp(200px, 240px, 280px);
        font-size: clamp(0.9rem, 1rem, 1.1rem);
    }
}

@media (max-width: 600px) {
    .kontaktform-grid {
        flex-direction: row;
        gap: clamp(16px, 20px, 24px);
        padding: 0 clamp(12px, 16px, 20px);
    }
    .kontaktform-left {
        max-width: clamp(150px, 200px, 250px);
        min-width: clamp(120px, 160px, 200px);
    }
    .kontaktform-right {
        padding: clamp(16px, 20px, 24px) clamp(12px, 16px, 20px);
        min-width: clamp(200px, 250px, 300px);
    }
    .kontaktform-section {
        padding: 0 clamp(8px, 12px, 16px);
    }
    .kontaktform-left h3 {
        font-size: clamp(1rem, 1.3rem, 1.6rem);
    }
    .kontaktform-address {
        font-size: clamp(0.75rem, 0.8rem, 0.9rem);
    }
    .kontaktform-mail, .kontaktform-phone {
        font-size: clamp(0.9rem, 1rem, 1.1rem);
    }
    .kontaktform-socials {
        gap: clamp(16px, 20px, 24px);
        font-size: clamp(0.9rem, 1rem, 1.1rem);
    }
    .case-heading {
        font-size: clamp(0.9rem, 1.1rem, 1.3rem);
    }
    .form-row input, .form-row select {
        padding: clamp(8px, 10px, 12px);
        font-size: clamp(0.8rem, 0.9rem, 1rem);
    }
    .case-btn {
        width: clamp(180px, 220px, 260px);
        font-size: clamp(0.8rem, 0.9rem, 1rem);
    }
}

@media (max-width: 480px) {
    .kontaktform-grid {
        flex-direction: row;
        gap: clamp(12px, 16px, 20px);
        padding: 0 clamp(8px, 12px, 16px);
    }
    .kontaktform-left {
        max-width: clamp(120px, 160px, 200px);
        min-width: clamp(100px, 140px, 180px);
    }
    .kontaktform-right {
        padding: clamp(12px, 16px, 20px) clamp(8px, 12px, 16px);
        min-width: clamp(160px, 200px, 250px);
    }
    .kontaktform-section {
        padding: 0 clamp(6px, 8px, 12px);
    }
    .kontaktform-left h3 {
        font-size: clamp(0.9rem, 1.1rem, 1.4rem);
    }
    .kontaktform-address {
        font-size: clamp(0.7rem, 0.75rem, 0.85rem);
    }
    .kontaktform-mail, .kontaktform-phone {
        font-size: clamp(0.8rem, 0.9rem, 1rem);
    }
    .kontaktform-socials {
        gap: clamp(12px, 16px, 20px);
        font-size: clamp(0.8rem, 0.9rem, 1rem);
    }
    .case-heading {
        font-size: clamp(0.8rem, 1rem, 1.2rem);
    }
    .form-row input, .form-row select {
        padding: clamp(6px, 8px, 10px);
        font-size: clamp(0.75rem, 0.8rem, 0.9rem);
    }
    .case-btn {
        width: clamp(160px, 200px, 240px);
        font-size: clamp(0.75rem, 0.8rem, 0.9rem);
    }
}

.kontaktform-address-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 6px;
    transition: background 0.18s;
    cursor: pointer;
    padding: 6px 0 6px 0;
}
.kontaktform-address-link:hover {
    background: rgba(0,0,0,0.08);
} 

.case-magdeburg-section {
    margin: 120px auto 0 auto;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.case-heading-typewriter {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 1400;
    margin-bottom: 36px;
    margin-top: 0;
    letter-spacing: -2px;
    line-height: 1.05;
    font-family: 'Quicksand', Arial, sans-serif;
    white-space: nowrap;
    text-shadow: 1px 0 0 #111, -1px 0 0 #111, 0 1px 0 #111, 0 -1px 0 #111;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.case-subheading-rounded {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 32px;
    padding: clamp(6px, 8px, 12px) clamp(10px, 14px, 18px);
    font-size: clamp(0.8rem, 0.95rem, 1.1rem);
    font-weight: 700;
    margin-bottom: 32px;
    min-width: 180px;
    max-width: 90vw;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.case-text-editor {
    font-size: clamp(0.9rem, 1.08rem, 1.3rem);
    color: #444;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 32px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
@media (max-width: 700px) {
    .case-heading-typewriter {
        font-size: 2.2rem;
    }
    .case-subheading-rounded {
        font-size: 1rem;
        padding: 10px 10px;
    }
    .case-magdeburg-section {
        margin-top: 60px;
    }
} 

.stats-section {
    margin: clamp(40px, 8vw, 80px) 0 0 0;
    width: 100%;
    padding: 0 clamp(16px, 3vw, 24px);
    box-sizing: border-box;
}
.stats-grid {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 3vw, 32px);
    width: 100%;
    max-width: none;
    margin: 0;
    align-items: stretch;
}
.stats-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 32px);
}
.stats-row {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 3vw, 32px);
    flex: 1 1 0;
    min-height: clamp(300px, 40vw, 480px);
    height: auto;
}
.stats-img {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: clamp(4px, 0.8vw, 8px);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    box-sizing: border-box;
    overflow: hidden;
    min-height: clamp(200px, 30vw, 300px);
}
.stats-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: clamp(4px, 0.8vw, 8px);
    min-height: clamp(200px, 30vw, 300px);
}
.stats-counter {
    flex: 1 1 0;
    min-width: 0;
    min-height: clamp(300px, 40vw, 480px);
    height: auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: clamp(4px, 0.8vw, 8px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px);
    gap: clamp(12px, 2vw, 18px);
    text-align: left;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.2s;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.stats-detail {
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,1.6,.6,1), opacity 0.3s, transform 0.4s cubic-bezier(.4,1.6,.6,1);
    width: 100%;
    margin-top: 12px;
    position: relative;
    pointer-events: none;
}
.stats-counter:hover .stats-detail, 
.stats-counter:focus-within .stats-detail,
.stats-counter:active .stats-detail,
.stats-counter.touched .stats-detail {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.stats-detail-title {
    font-size: clamp(1rem, 1.2rem, 1.4rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.stats-counter:hover .stats-detail-title {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1rem, 1.2rem, 1.4rem);
}
.stats-detail-text {
    font-size: clamp(0.9rem, 1rem, 1.2rem);
    color: #444;
    line-height: 1.5;
    margin-top: 48px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.stats-icon {
    font-size: clamp(1.4rem, 2vw, 2.6rem);
    color: #111;
    margin-bottom: clamp(6px, 1vw, 8px);
}
.stats-number {
    font-size: clamp(1.6rem, 2.5vw, 2.8rem);
    font-weight: 400;
    color: #111;
    margin-bottom: clamp(6px, 1vw, 8px);
    position: relative;
    width: 100%;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.stats-number::after {
    content: "";
    display: block;
    margin: 16px auto 0 auto;
    width: 85%;
    height: 1.5px;
    background: #ddd;
    border-radius: 1px;
}
.stats-unit {
    font-size: 0.5em;
    font-weight: 400;
    margin-left: 2px;
    vertical-align: super;
    position: relative;
    top: -4px;
}
.stats-label {
    transition: opacity 0.3s, transform 0.4s cubic-bezier(.4,1.6,.6,1);
    opacity: 1;
    position: static;
    display: block;
    margin-top: clamp(8px, 1.5vw, 12px);
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.2vw, 1.3rem);
    color: #222;
    pointer-events: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}
.stats-counter:hover .stats-label,
.stats-counter:focus-within .stats-label,
.stats-counter:active .stats-label,
.stats-counter.touched .stats-label {
    opacity: 1;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1rem, 1.2rem, 1.4rem);
    z-index: 2;
    pointer-events: none;
    margin-top: 0;
    color: #111;
}

@media (max-width: 1100px) {
    .stats-grid {
        flex-direction: column;
        gap: clamp(20px, 3vw, 32px);
    }
    .stats-col {
        gap: clamp(20px, 3vw, 32px);
    }
    .stats-row {
        flex-direction: row;
        gap: clamp(16px, 2.5vw, 24px);
        min-height: clamp(200px, 25vw, 300px);
    }
    .stats-img, .stats-counter {
        min-height: clamp(200px, 25vw, 300px);
    }
    .stats-counter {
        padding: clamp(16px, 2.5vw, 18px) clamp(12px, 2vw, 16px);
    }
    .stats-counter:hover .stats-detail,
    .stats-counter:focus-within .stats-detail,
    .stats-counter:active .stats-detail,
    .stats-counter.touched .stats-detail {
        max-height: 150px;
    }
    .stats-detail-text {
        font-size: clamp(0.7rem, 1vw, 1rem);
        margin-top: clamp(6px, 1vw, 8px);
    }
} 

@media (max-width: 800px) {
    .stats-row {
        flex-direction: column;
        gap: clamp(12px, 2vw, 16px);
        min-height: auto;
    }
    .stats-img, .stats-counter {
        min-height: clamp(150px, 20vw, 200px);
    }
    .stats-counter {
        padding: clamp(12px, 2vw, 16px);
    }
    .stats-number {
        font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    }
    .stats-label {
        font-size: clamp(0.8rem, 1.1vw, 1rem);
    }
    .stats-counter:hover .stats-detail,
    .stats-counter:focus-within .stats-detail,
    .stats-counter:active .stats-detail,
    .stats-counter.touched .stats-detail {
        max-height: 120px;
    }
    .stats-detail-text {
        font-size: clamp(0.6rem, 0.9vw, 0.8rem);
        margin-top: clamp(4px, 0.8vw, 6px);
    }
}

/* Touch devices and mobile: Layout adjustments */
@media (max-width: 1024px), (hover: none) {
    .stats-section {
        padding: 0 clamp(16px, 3vw, 20px);
        margin: clamp(30px, 6vw, 50px) 0 0 0;
    }
    .stats-grid {
        flex-direction: column;
        gap: clamp(20px, 4vw, 30px);
    }
    .stats-col {
        gap: clamp(20px, 4vw, 30px);
    }
    .stats-row {
        flex-direction: column;
        gap: clamp(16px, 3vw, 24px);
        min-height: auto;
    }
    .stats-img, .stats-counter {
        min-height: clamp(180px, 30vw, 220px);
        flex: none;
    }
    .stats-img {
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .stats-img img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
        border-radius: clamp(4px, 0.8vw, 8px);
    }
    .stats-counter {
        padding: clamp(20px, 4vw, 28px);
        text-align: center;
        align-items: center;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        user-select: none;
        height: auto;
    }
    .stats-icon {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: clamp(12px, 2vw, 16px);
    }
    .stats-number {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: clamp(8px, 1.5vw, 12px);
        text-align: center;
    }
    .stats-label {
        font-size: clamp(1rem, 1.8vw, 1.4rem);
        text-align: center;
        margin-top: clamp(8px, 1.5vw, 12px);
        line-height: 1.4;
    }
    /* Touch devices: Show details on tap/click */
    .stats-detail {
        max-height: 0;
        opacity: 0;
        transform: translateY(20px);
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(.4,1.6,.6,1), opacity 0.3s, transform 0.4s cubic-bezier(.4,1.6,.6,1);
        width: 100%;
        margin-top: 12px;
        position: relative;
    }
    .stats-counter.active .stats-detail,
    .stats-counter.touched .stats-detail {
        max-height: 200px;
        opacity: 1;
        transform: translateY(0);
    }
    .stats-detail-text {
        font-size: clamp(0.9rem, 1.6vw, 1.2rem);
        margin-top: 0;
        line-height: 1.5;
        text-align: center;
    }
    .stats-number::after {
        width: 60%;
        margin: clamp(12px, 2vw, 16px) auto 0 auto;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 0 clamp(12px, 2.5vw, 16px);
        margin: clamp(25px, 5vw, 40px) 0 0 0;
    }
    .stats-grid {
        gap: clamp(16px, 3vw, 24px);
    }
    .stats-col {
        gap: clamp(16px, 3vw, 24px);
    }
    .stats-row {
        gap: clamp(12px, 2.5vw, 20px);
    }
    .stats-img, .stats-counter {
        min-height: clamp(140px, 25vw, 180px);
    }
    .stats-img {
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .stats-img img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
        border-radius: clamp(4px, 0.8vw, 8px);
    }
    .stats-counter {
        padding: clamp(16px, 3vw, 24px);
        height: auto;
    }
    .stats-icon {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: clamp(10px, 2vw, 14px);
    }
    .stats-number {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: clamp(6px, 1.5vw, 10px);
    }
    .stats-label {
        font-size: clamp(0.9rem, 2.2vw, 1.2rem);
        margin-top: clamp(6px, 1.5vw, 10px);
    }
    /* Small screens: Show details only on touch/hover */
    .stats-detail {
        max-height: 0 !important;
        opacity: 0 !important;
        transform: translateY(20px) !important;
        position: relative !important;
        margin-top: 12px !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
    .stats-counter:hover .stats-detail,
    .stats-counter:focus-within .stats-detail,
    .stats-counter:active .stats-detail,
    .stats-counter.touched .stats-detail {
        max-height: 200px !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    .stats-detail-text {
        font-size: clamp(0.8rem, 2vw, 1.1rem);
        margin-top: 0;
        line-height: 1.5;
        text-align: center;
    }
    .stats-number::after {
        width: 70%;
        margin: clamp(10px, 2vw, 14px) auto 0 auto;
    }
}

.stats-counter .stats-icon,
.stats-counter .stats-number {
    transition: opacity 0.3s, transform 0.4s cubic-bezier(.4,1.6,.6,1);
}
.stats-counter:hover .stats-icon,
.stats-counter:hover .stats-number {
    opacity: 0;
    transform: translateY(-30px);
}
.stats-counter:hover .stats-number::after {
    opacity: 0;
} 

.reach-section {
    background: #111;
    color: #fff;
    width: 100vw;
    margin: 40px 0 0 0;
    padding: 0 0 0 0;
    box-sizing: border-box;
}
.reach-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    gap: 48px;
    padding: 0 20px;
}

.reach-heading-container, .reach-text-container {
    min-width: 0;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.reach-heading, .reach-text {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.reach-heading h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 0 100px;
    color: #fff;
    letter-spacing: -2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reach-heading {
    min-width: 0;
    text-align: left;
}

.reach-text {
    min-width: 0;
    font-size: clamp(0.9rem, 1.15rem, 1.3rem);
    color: #ececec;
    text-align: left;
    max-width: 100%;
    margin-left: 40px;
    margin-bottom: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
.reach-divider {
    width: 100vw;
    height: 2px;
    background: #eaeaea;
    margin: 0 0 0 0;
    border: none;
}
.reach-features {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1600px;
    margin: 0 auto;
    padding: 32px 0 32px 0;
    width: 100%;
    box-sizing: border-box;
    background: #111;
}
.reach-feature {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    text-align: center;
    position: relative;
}
.reach-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 30%;
    height: 40%;
    width: 1px;
    background: #444;
    opacity: 0.3;
}
.reach-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: #fff;
}
.reach-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.reach-sub {
    font-size: 0.98rem;
    color: #ccc;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .reach-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 16px 20px 16px;
        gap: 24px;
    }
    .reach-heading-container, .reach-text-container {
        min-width: 0;
        max-width: 100%;
        flex: none;
        justify-content: flex-start;
        overflow: visible;
    }
    .reach-heading, .reach-text {
        min-width: 0;
        max-width: 100%;
        margin-left: 0;
        overflow: visible;
    }
    .reach-heading h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .reach-text {
        margin-top: 24px;
        margin-bottom: 0;
        max-width: 100%;
        margin-left: 0;
    }
    .reach-features {
        flex-direction: row;
        padding: clamp(16px, 24px, 32px) clamp(12px, 20px, 28px);
        gap: clamp(8px, 12px, 16px);
    }
    .reach-feature {
        padding: clamp(8px, 12px, 16px);
        border-bottom: none;
        min-width: 0;
        flex: 1 1 0;
    }
    .reach-feature:not(:last-child)::after {
        display: block;
    }
} 

.reach-divider-vert {
    width: 1.5px;
    height: 40%;
    background: rgba(255,255,255,0.18);
    align-self: center;
    margin: 0 0;
    border-radius: 1px;
    flex-shrink: 0;
    display: block;
    transform: translateY(20px);
}
@media (max-width: 1100px) {
    .reach-features {
        flex-direction: row;
        padding: clamp(12px, 16px, 20px) clamp(8px, 12px, 16px);
        gap: clamp(4px, 8px, 12px);
    }
    .reach-divider-vert {
        display: block;
        height: clamp(15%, 25%, 35%);
        transform: translateY(clamp(8px, 12px, 16px));
    }
}

@media (max-width: 600px) {
    .reach-content {
        padding: 30px 12px 15px 12px;
        gap: 20px;
    }
    .reach-heading-container, .reach-text-container {
        justify-content: flex-start;
        overflow: visible;
    }
    .reach-heading h2 {
        font-size: clamp(1.5rem, 3.5vw, 2.5rem);
        margin: 0;
    }
    .reach-text {
        font-size: clamp(0.8rem, 1rem, 1.1rem);
        margin-top: 16px;
    }
    .reach-features {
        padding: clamp(8px, 12px, 16px) clamp(6px, 8px, 12px);
        gap: clamp(2px, 6px, 8px);
    }
    .reach-feature {
        padding: clamp(4px, 8px, 12px);
    }
    .reach-icon {
        font-size: clamp(1.5rem, 2rem, 2.5rem);
        margin-bottom: clamp(8px, 12px, 16px);
    }
    .reach-title {
        font-size: clamp(0.8rem, 1rem, 1.1rem);
        margin-bottom: clamp(6px, 8px, 10px);
    }
    .reach-sub {
        font-size: clamp(0.7rem, 0.9rem, 1rem);
    }
}

@media (max-width: 480px) {
    .reach-features {
        padding: clamp(6px, 8px, 12px) clamp(4px, 6px, 8px);
        gap: clamp(1px, 4px, 6px);
    }
    .reach-feature {
        padding: clamp(2px, 6px, 8px);
    }
    .reach-icon {
        font-size: clamp(1.2rem, 1.5rem, 2rem);
        margin-bottom: clamp(6px, 8px, 12px);
    }
    .reach-title {
        font-size: clamp(0.7rem, 0.8rem, 1rem);
        margin-bottom: clamp(4px, 6px, 8px);
    }
    .reach-sub {
        font-size: clamp(0.6rem, 0.75rem, 0.9rem);
        line-height: 1.2;
    }
    .reach-divider-vert {
        height: clamp(20%, 30%, 40%);
        transform: translateY(clamp(10px, 15px, 20px));
    }
}

@media (min-width: 1600px) {
    .reach-content {
        max-width: 1600px;
        gap: 60px;
    }
    .reach-heading h2 {
        font-size: clamp(3rem, 4vw, 5rem);
    }
    .reach-text {
        font-size: clamp(1.1rem, 1.2rem, 1.4rem);
        max-width: 700px;
    }
} 

.maps-section {
    margin: 48px 0 0 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}
.maps-container {
    width: 95%;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    background: #fff;
    border: 1.5px solid #eee;
}
.maps-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 280px;
    max-height: 700px;
    height: 55vw;
    border: none;
    display: block;
}
@media (max-width: 700px) {
    .maps-container {
        max-width: 98vw;
        border-radius: 10px;
    }
    .maps-container iframe {
        height: 240px;
    }
} 

.curated-section {
    margin: 100px auto 0 auto;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.curated-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 56px;
    margin-top: 0;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #111;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.curated-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 32px;
    padding: clamp(12px, 18px, 24px) clamp(40px, 80px, 100px);
    font-size: clamp(1rem, 1.25rem, 1.5rem);
    font-weight: 700;
    margin-bottom: 38px;
    min-width: clamp(300px, 620px, 800px);
    max-width: 900px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.curated-text {
    font-size: clamp(0.9rem, 1.08rem, 1.3rem);
    color: #666;
    margin: 0 auto 18px auto;
    max-width: 700px;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
@media (max-width: 700px) {
    .curated-section {
        margin: clamp(40px, 8vw, 60px) auto 0 auto;
        padding: 0 clamp(16px, 3vw, 24px);
    }
    .curated-heading {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: clamp(30px, 6vw, 40px);
        letter-spacing: -1px;
    }
    .curated-subheading {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        padding: clamp(10px, 2vw, 16px) clamp(20px, 4vw, 30px);
        min-width: auto;
        max-width: 100%;
        border-radius: clamp(20px, 4vw, 28px);
        margin-bottom: clamp(20px, 4vw, 30px);
    }
    .curated-text {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        margin: 0 auto clamp(12px, 2.5vw, 16px) auto;
        line-height: 1.6;
    }
} 

.grundriss-section {
    margin: 80px 0 0 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}
.grundriss-container {
    display: flex;
    flex-direction: row;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: flex-start;
}
.grundriss-image {
    flex: 1 1 0;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.grundriss-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: clamp(12px, 2vw, 18px);
    display: block;
    object-fit: contain;
    aspect-ratio: 1.1/1;
    transform: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.grundriss-img:hover {
    transform: rotate(5deg);
}

.grundriss-img.rotate-45 {
    transform: rotate(45deg);
}

.grundriss-img.rotate-90 {
    transform: rotate(90deg);
}

.grundriss-img.rotate-135 {
    transform: rotate(135deg);
}

.grundriss-img.rotate-180 {
    transform: rotate(180deg);
}

.grundriss-img.rotate-225 {
    transform: rotate(225deg);
}

.grundriss-img.rotate-270 {
    transform: rotate(270deg);
}

.grundriss-img.rotate-315 {
    transform: rotate(315deg);
}

.grundriss-img.rotate-360 {
    transform: rotate(360deg);
}



.grundriss-img-placeholder {
    width: 100%;
    aspect-ratio: 1.1/1;
    background: #f2f2f2;
    border: 2px dashed #ccc;
    border-radius: 18px;
    color: #aaa;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.grundriss-content {
    flex: 2 1 0;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
}
.grundriss-heading {
    font-size: clamp(2rem, 2.6rem, 3rem);
    font-weight: 900;
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: -1px;
    color: #111;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.grundriss-desc {
    font-size: clamp(0.9rem, 1.08rem, 1.3rem);
    color: #444;
    margin-bottom: 18px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.grundriss-accordion {
    width: 100%;
    margin-bottom: 18px;
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}
.accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: clamp(0.9rem, 1.08rem, 1.3rem);
    font-weight: 700;
    color: #111;
    padding: 18px 0 18px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.accordion-toggle .accordion-icon {
    font-size: 1.5rem;
    font-weight: 900;
    margin-left: 12px;
    transition: color 0.2s;
}
.accordion-item .accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(.4,1.6,.6,1), opacity 0.3s;
    font-size: clamp(0.9rem, 1.02rem, 1.2rem);
    color: #444;
    padding: 0 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.accordion-item.active .accordion-content {
    max-height: 300px;
    opacity: 1;
    padding: 0 0 18px 0;
}
.grundriss-btn {
    margin-top: 18px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    border: none;
    border-radius: 2px;
    padding: 16px 38px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}
.grundriss-btn:hover {
    background: #333;
    color: #fff;
}
@media (max-width: 900px) {
    .grundriss-container {
        flex-direction: row;
        gap: clamp(24px, 32px, 40px);
        max-width: 98vw;
        padding: 0 clamp(16px, 20px, 24px);
    }
    .grundriss-image, .grundriss-content {
        min-width: 0;
        max-width: none;
        flex: 1 1 0;
    }
    .grundriss-image {
        max-width: clamp(500px, 650px, 750px);
    }
    .grundriss-content {
        max-width: clamp(300px, 400px, 500px);
    }
    .grundriss-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: clamp(10px, 1.5vw, 14px);
        transform: none;
    }
    .grundriss-img:hover {
        transform: rotate(5deg);
    }
    .grundriss-img.rotate-45 {
        transform: rotate(45deg);
    }
    .grundriss-img.rotate-90 {
        transform: rotate(90deg);
    }
    .grundriss-img.rotate-135 {
        transform: rotate(135deg);
    }
    .grundriss-img.rotate-180 {
        transform: rotate(180deg);
    }
    .grundriss-img.rotate-225 {
        transform: rotate(225deg);
    }
    .grundriss-img.rotate-270 {
        transform: rotate(270deg);
    }
    .grundriss-img.rotate-315 {
        transform: rotate(315deg);
    }
    .grundriss-img.rotate-360 {
        transform: rotate(360deg);
    }
    .grundriss-img-placeholder {
        font-size: clamp(1rem, 1.2rem, 1.5rem);
    }
    .grundriss-heading {
        font-size: clamp(1.5rem, 1.8rem, 2.2rem);
    }
    .grundriss-desc {
        font-size: clamp(0.8rem, 0.9rem, 1.1rem);
        line-height: 1.5;
    }
    .accordion-toggle {
        font-size: clamp(0.8rem, 0.9rem, 1.1rem);
        padding: clamp(14px, 16px, 18px) 0;
    }
    .accordion-content {
        font-size: clamp(0.8rem, 0.85rem, 0.95rem);
    }
    .grundriss-btn {
        font-size: clamp(0.9rem, 1rem, 1.1rem);
        padding: clamp(12px, 14px, 16px) clamp(24px, 28px, 32px);
    }
}

@media (max-width: 600px) {
    .grundriss-section {
        margin: clamp(40px, 8vw, 60px) 0 0 0;
    }
    .grundriss-container {
        flex-direction: column;
        gap: clamp(24px, 5vw, 32px);
        padding: 0 clamp(16px, 3vw, 24px);
    }
    .grundriss-image {
        order: 1;
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }
    .grundriss-content {
        order: 2;
        min-width: auto;
        gap: clamp(16px, 3vw, 24px);
    }
    .grundriss-img {
        width: 100%;
        max-width: 100%;
        transform: none;
        border-radius: clamp(12px, 2.5vw, 16px);
        aspect-ratio: 1.2/1;
    }
    .grundriss-img:hover {
        transform: none;
    }
    .grundriss-img.rotate-45 {
        transform: rotate(45deg);
    }
    .grundriss-img.rotate-90 {
        transform: rotate(90deg);
    }
    .grundriss-img.rotate-135 {
        transform: rotate(135deg);
    }
    .grundriss-img.rotate-180 {
        transform: rotate(180deg);
    }
    .grundriss-img.rotate-225 {
        transform: rotate(225deg);
    }
    .grundriss-img.rotate-270 {
        transform: rotate(270deg);
    }
    .grundriss-img.rotate-315 {
        transform: rotate(315deg);
    }
    .grundriss-img.rotate-360 {
        transform: rotate(360deg);
    }
    .grundriss-img-placeholder {
        border-radius: clamp(12px, 2.5vw, 16px);
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    .grundriss-heading {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: clamp(6px, 1.5vw, 10px);
    }
    .grundriss-desc {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        margin-bottom: clamp(16px, 3vw, 24px);
        line-height: 1.5;
    }
    .accordion-toggle {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        padding: clamp(12px, 2.5vw, 16px) 0;
    }
    .accordion-content {
        font-size: clamp(0.8rem, 1.6vw, 0.9rem);
        line-height: 1.5;
    }
    .grundriss-btn {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
    }
}

@media (max-width: 480px) {
    .grundriss-section {
        margin: clamp(30px, 6vw, 50px) 0 0 0;
    }
    .grundriss-container {
        flex-direction: column;
        gap: clamp(20px, 4vw, 28px);
        padding: 0 clamp(12px, 2.5vw, 16px);
    }
    .grundriss-image {
        order: 1;
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }
    .grundriss-content {
        order: 2;
        min-width: auto;
        gap: clamp(12px, 2.5vw, 20px);
    }
    .grundriss-img {
        width: 100%;
        max-width: 100%;
        transform: none;
        border-radius: clamp(10px, 2vw, 14px);
        aspect-ratio: 1.1/1;
    }
    .grundriss-img:hover {
        transform: none;
    }
    .grundriss-img.rotate-45 {
        transform: rotate(45deg);
    }
    .grundriss-img.rotate-90 {
        transform: rotate(90deg);
    }
    .grundriss-img.rotate-135 {
        transform: rotate(135deg);
    }
    .grundriss-img.rotate-180 {
        transform: rotate(180deg);
    }
    .grundriss-img.rotate-225 {
        transform: rotate(225deg);
    }
    .grundriss-img.rotate-270 {
        transform: rotate(270deg);
    }
    .grundriss-img.rotate-315 {
        transform: rotate(315deg);
    }
    .grundriss-img.rotate-360 {
        transform: rotate(360deg);
    }
    .grundriss-img-placeholder {
        border-radius: clamp(10px, 2vw, 14px);
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }
    .grundriss-heading {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
        margin-bottom: clamp(4px, 1vw, 8px);
    }
    .grundriss-desc {
        font-size: clamp(0.8rem, 1.6vw, 0.95rem);
        margin-bottom: clamp(12px, 2.5vw, 20px);
        line-height: 1.4;
    }
    .accordion-toggle {
        font-size: clamp(0.8rem, 1.6vw, 0.95rem);
        padding: clamp(10px, 2vw, 14px) 0;
    }
    .accordion-content {
        font-size: clamp(0.75rem, 1.4vw, 0.85rem);
        line-height: 1.4;
    }
    .grundriss-btn {
        font-size: clamp(0.8rem, 1.6vw, 0.95rem);
        padding: clamp(8px, 1.5vw, 12px) clamp(14px, 2.5vw, 20px);
    }
}

.grundriss-section, .reach-section {
    overflow-x: hidden;
}
.grundriss-container, .reach-content, .reach-features {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.grundriss-image, .grundriss-content, .reach-heading, .reach-text, .reach-feature {
    min-width: 0;
} 

.services-section {
    background: #000000;
    color: #fdfdfd;
    width: 100vw;
    margin: 100px 0 0 0;
    padding: 0 0 0 0;
    box-sizing: border-box;
}

/* Abstand am Ende der Seite */
.services-section::after {
    content: '';
    display: block;
    height: clamp(60px, 100px, 150px);
    width: 100%;
}
.services-container {
    display: flex;
    flex-direction: row;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: flex-start;
    padding: 64px 20px 64px 20px;
    box-sizing: border-box;
}

.services-left {
    flex: 1 1 0;
    min-width: 0;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
    margin-left: -24px;
    overflow: visible;
    min-height: 200px;
}

.services-label {
    font-size: 0.75rem;
    color: #b3b3b3;
    margin-bottom: 32px;
    letter-spacing: 1.5px;
}

.services-heading-container {
    width: 100%;
    max-width: 320px;
    min-height: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}

.services-heading {
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fdfdfd;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: font-size 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}
.services-subheading {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 24px;
    margin-top: -16px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-align: left;
}
.services-middle {
    flex: 2 1 0;
    min-width: 0;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
}

.service-box {
    margin-bottom: 0;
    width: 100%;
}

.service-title {
    font-size: clamp(1rem, 1.25rem, 1.4rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-desc {
    font-size: clamp(0.9rem, 1.05rem, 1.2rem);
    color: #e0e0e0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-right {
    flex: 1.5 1 0;
    min-width: 0;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 32px;
    overflow: hidden;
}
.services-accordion {
    width: 100%;
}
.services-accordion-item {
    border-bottom: 1px solid #444;
    padding: 0;
}
.services-accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    padding: 22px 0 22px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
}
.services-accordion-toggle .services-accordion-icon {
    font-size: 1.5rem;
    font-weight: 900;
    margin-left: 12px;
    transition: color 0.2s;
}
.services-accordion-item .services-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(.4,1.6,.6,1), opacity 0.3s;
    font-size: 0.9rem;
    color: #e0e0e0;
    padding: 0 0;
}
.services-accordion-item.active .services-accordion-content {
    max-height: 300px;
    opacity: 1;
    padding: 0 0 18px 0;
}
@media (max-width: 1100px) {
    .services-container {
        flex-direction: column;
        gap: clamp(32px, 40px, 48px);
        max-width: 100%;
        padding: clamp(24px, 32px, 40px) clamp(12px, 16px, 20px);
    }
    .services-left, .services-middle, .services-right {
        min-width: 0;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
        overflow: visible;
        flex: none;
        width: 100%;
    }
    .services-left {
        max-width: none;
        text-align: center;
    }
    .services-middle {
        max-width: none;
    }
    .services-right {
        max-width: none;
    }
    .services-heading-container {
        max-width: 100%;
        min-height: clamp(80px, 100px, 120px);
        text-align: center;
    }
    .services-heading {
        font-size: clamp(1.8rem, 3vw, 2.2rem);
        text-align: center;
    }
    .service-title {
        font-size: clamp(0.9rem, 1rem, 1.2rem);
    }
    .service-desc {
        font-size: clamp(0.8rem, 0.9rem, 1rem);
        line-height: 1.4;
    }
    .services-accordion-toggle {
        font-size: clamp(0.9rem, 1rem, 1.1rem);
        padding: clamp(16px, 20px, 24px) 0;
    }
    .services-accordion-content {
        font-size: clamp(0.8rem, 0.85rem, 0.9rem);
    }
}

@media (max-width: 600px) {
    .services-container {
        flex-direction: column;
        padding: clamp(16px, 20px, 24px) clamp(8px, 12px, 16px);
        gap: clamp(24px, 32px, 40px);
    }
    .services-left {
        margin-left: 0;
        max-width: none;
        text-align: center;
    }
    .services-middle {
        max-width: none;
    }
    .services-right {
        max-width: none;
        padding-right: 0;
    }
    .services-heading-container {
        max-width: 100%;
        min-height: clamp(60px, 80px, 100px);
        text-align: center;
    }
    .services-heading {
        font-size: clamp(1.5rem, 2.5vw, 1.8rem);
        text-align: center;
    }
    .service-title {
        font-size: clamp(0.8rem, 0.9rem, 1.1rem);
    }
    .service-desc {
        font-size: clamp(0.75rem, 0.8rem, 0.9rem);
        line-height: 1.3;
    }
    .services-accordion-toggle {
        font-size: clamp(0.8rem, 0.9rem, 1rem);
        padding: clamp(12px, 16px, 20px) 0;
    }
    .services-accordion-content {
        font-size: clamp(0.75rem, 0.8rem, 0.85rem);
    }
}

@media (max-width: 480px) {
    .services-container {
        flex-direction: column;
        padding: clamp(12px, 16px, 20px) clamp(6px, 8px, 12px);
        gap: clamp(20px, 28px, 36px);
    }
    .services-left {
        max-width: none;
        text-align: center;
    }
    .services-middle {
        max-width: none;
    }
    .services-right {
        max-width: none;
    }
    .services-heading-container {
        min-height: clamp(50px, 70px, 90px);
        text-align: center;
    }
    .services-heading {
        font-size: clamp(1.3rem, 2.2vw, 1.6rem);
        text-align: center;
    }
    .service-title {
        font-size: clamp(0.75rem, 0.8rem, 1rem);
    }
    .service-desc {
        font-size: clamp(0.7rem, 0.75rem, 0.85rem);
        line-height: 1.2;
    }
    .services-accordion-toggle {
        font-size: clamp(0.75rem, 0.8rem, 0.9rem);
        padding: clamp(8px, 12px, 16px) 0;
    }
    .services-accordion-content {
        font-size: clamp(0.7rem, 0.75rem, 0.8rem);
    }
}

@media (max-width: 400px) {
    .custom-header-text {
        font-size: clamp(1.1rem, 1.6rem, 2.2rem);
    }
    .pxl-center {
        font-size: clamp(0.75rem, 0.85rem, 0.95rem);
    }
    .pxl-right {
        font-size: clamp(0.65rem, 0.75rem, 0.85rem);
    }
    .icon-title-text {
        font-size: clamp(0.75rem, 0.9rem, 1.1rem);
    }
    .icon-desc {
        font-size: clamp(0.75rem, 0.85rem, 0.95rem);
    }
    .abschnitt2-text h2 {
        font-size: clamp(1.1rem, 1.4rem, 1.7rem);
    }
    .abschnitt2-text p {
        font-size: clamp(0.75rem, 0.9rem, 1rem);
    }
    .kontaktform-left h3 {
        font-size: clamp(1.1rem, 1.4rem, 1.7rem);
    }
    .case-heading {
        font-size: clamp(0.9rem, 1.1rem, 1.3rem);
    }
    .case-heading-typewriter {
        font-size: clamp(1.3rem, 1.8rem, 2.2rem);
    }
    .curated-heading {
        font-size: clamp(1.6rem, 2.2rem, 2.8rem);
    }
    .grundriss-heading {
        font-size: clamp(1.3rem, 1.8rem, 2.2rem);
    }
    .reach-heading h2 {
        font-size: clamp(1.1rem, 1.4rem, 1.8rem);
    }
    .reach-text {
        font-size: clamp(0.75rem, 0.85rem, 0.95rem);
    }
    .services-heading-container {
        max-width: none;
        min-height: clamp(60px, 8vw, 80px);
        text-align: center;
    }
    .services-heading {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        text-align: center;
    }
    
    /* Zusätzliche mobile Optimierungen */
    .oxl-img {
        max-width: clamp(80px, 12vw, 120px);
    }
    .oxl-arrow {
        width: clamp(24px, 3.5vw, 32px);
        height: clamp(24px, 3.5vw, 32px);
        font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    }
    .case-btn {
        padding: clamp(6px, 1.5vw, 10px) clamp(10px, 2.5vw, 18px);
        font-size: clamp(0.75rem, 1vw, 0.9rem);
    }
    .custom-svg-bg {
        width: clamp(60px, 10vw, 90px);
        height: clamp(60px, 10vw, 90px);
    }
    .icon-img {
        max-width: clamp(70px, 10vw, 100px);
        max-height: clamp(70px, 10vw, 100px);
    }
} 

.scroll-indicator {
  position: fixed;
  bottom: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  z-index: 9999;
  width: clamp(36px, 5vw, 52px);
  height: clamp(36px, 5vw, 52px);
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 clamp(1px, 0.3vw, 3px) clamp(4px, 1vw, 12px) rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: box-shadow 0.2s;
}
.scroll-indicator:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  cursor: pointer;
}
.scroll-indicator-svg {
  width: clamp(36px, 5vw, 52px);
  height: clamp(36px, 5vw, 52px);
}
.scroll-indicator-bg {
  fill: #181d25;
  stroke: #444a56;
  stroke-width: 1.5;
}
.scroll-indicator-arrow {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
} 