.section_hero{
    height: 790px;
    position: relative;
    overflow-x: clip;
    margin-top: 60px;
    align-items: flex-start;
    padding-top: 60px;
}

.section_hero::before,
.section_hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, #226DFB42, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Ellipse vertikal mittig */
.section_hero::before {
    width: 300px;
    height: 96%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Ellipse horizontal oberes Drittel */
.section_hero::after {
    margin-top: 100px;
    width: 100%;
    height: 250px;
    left: 0;
    top: 0;
}

/* Viereck-Pattern in Ellipsen sichtbar */
.hero_dots {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image:
        radial-gradient(ellipse 300px 400px at 50% 50%, black 0%, transparent 70%),
        radial-gradient(ellipse 50% 175px at 50% 22%, black 0%, transparent 70%);
    mask-image:
        radial-gradient(ellipse 300px 400px at 50% 50%, black 0%, transparent 70%),
        radial-gradient(ellipse 50% 175px at 50% 22%, black 0%, transparent 70%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
    pointer-events: none;
    z-index: 1;
}
.hero_center_line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-8%);
    width: 2px;
    height: 60%;
    top: 20%;
    background: linear-gradient(to bottom, transparent, var(--primary-color) 45%, var(--primary-color) 55%, transparent);
    pointer-events: none;
    z-index: 1;
}

.sec_hero{
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    position: relative;
    z-index: 2;
}
.hero_left {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
    padding-right: 20px;
    box-sizing: border-box;
}
.hero_header {
    font-size: var(--font-size-hero);
    color: var(--white);
    line-height: normal;
    font-weight: 600;
}
.header_highlitecolor {
    color: var(--primary-color);
}
.hero_text {
    color: var(--font-color-text);
    font-size: var(--font-size-lg);
    margin-top: 24px;
    padding-right: 25px;
    box-sizing: border-box;
}
.hero-checkbox {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 44px;
}
.hero-checkcon {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: center;
    gap: 12px;
}
.hero-checkcon {
    position: relative;
}
.hero-check-iconwrap {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}
.hero-check-icon {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.hero-check-iconwrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    z-index: 0;
}
.hero-check-text {
    color: var(--font-color-text);
}
.hero_right {
    width: 50%;
    position: relative;
}
.hero-pic {
    position: absolute;
    top: 0;
    width: 1100px;
    left: 40px;
    border-radius: 16px;
    mask-image: linear-gradient(to bottom, black 50%, transparent 85%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 85%);
}

/* ========== Partner Slider ========== */
.sec-partner {
    overflow: hidden;
}
.partner-text{
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}
.partner-slider {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) invert(100%);
    flex-shrink: 0;
}
.partner-logo-kw {
    height: 80px;
}

/* ========== Service Cards Slider ========== */
.section_servcards {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    box-sizing: border-box;
}

.section_servcards::before {
    content: '';
    position: absolute;
    width: 942px;
    height: 448px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB20 0%, #226DFB10 50%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.sec_servcards {
    margin-top: 100px;
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    z-index: 1;
}
.servcards-pille {
    background-color: var(--background-color-pille);
    border: 1px solid var(--border-color-pille);
    border-radius: 100px;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 8px;
}
.servcards-pille-circel {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--primary-color);
}
.servcards-pille-text {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: var(--font-size-base);
}
.servcard-header {
    margin-top: 16px;
    font-size: var(--font-size-section-header);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    line-height: 125%;
}
.servcards-subheadline {
    color: var(--font-color-text);
    margin-top: 24px;
    margin-bottom: 64px;
    text-align: center;
}
.servcards-wrapper {
    position: relative;
    width: 100%;
}

.servcards-viewport {
    overflow: hidden;
    width: 100%;
}

.servcards-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.servcard {
    flex: 0 0 calc((min(1460px, 90vw) - 48px) / 3);
    background: var(--highlite-color-light, #060B28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

/* Raster-Pattern oben in der Card */
.servcard::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(ellipse 220px 140px at 50% 0%, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 220px 140px at 50% 0%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Blauer Glow-Schimmer oben */
.servcard::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB18, transparent 70%);
    filter: blur(30px);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.servcard-icon {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #FFFFFF0F;
    background: var(--background-color-card-icon);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
}

.servcard-icon-img {
    width: 100%;
    object-fit: contain;
}

.servcard-title {
    color: var(--white);
    font-size: var(--font-size-lg);
    line-height: 135%;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.servcard-text {
    position: relative;
    z-index: 1;
    color: var(--font-color-text);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.servcards-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s, border-color 0.3s;
}

.servcards-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.servcards-arrow-left {
    left: -22px;
}

.servcards-arrow-right {
    right: -22px;
}

/* ========== Partner abschnitt ========== */
.section-solution{
    background-color: var(--white);
    padding-top: 130px;
    padding-bottom: 130px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    position: relative;
}
.solution-topstripe{
    width: 100%;
    height: 30px;
    border-radius: 0px 0px 48px 48px;
    background-color: var(--highlite-color);
    position: absolute;
    top: 0;
}
.solution-botstripe{
    width: 100%;
    height: 30px;
    border-radius: 48px 48px 0px 0px;
    background-color: var(--highlite-color);
    position: absolute;
    bottom: 0;
}

/* Blauer Blur-Glow */
.section-solution::before {
    content: '';
    position: absolute;
    width: 942px;
    height: 448px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB30 0%, #226DFB18 50%, transparent 100%);
    filter: blur(30px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Graues Viereck-Pattern mit Mask */
.solution-dots {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 942px 448px at 50% 50%, black 0%, black 70%, transparent 100%);
    mask-image: radial-gradient(ellipse 942px 448px at 50% 50%, black 0%, black 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.sec-solution {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.solution-left {
    width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.solution-pille {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: #226DFB1F;
    border: 1px solid var(--primary-color);
}
.solution-pille-circel {
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #1B5ABF;
}
.solution-pille-text {
    font-size: var(--font-size-base);
    color: #1B5ABF;
    font-weight: 500;
    text-transform: uppercase;
}
.solution-header {
    font-size: var(--font-size-section-header);
    font-weight: 600;
    line-height: 125%;
    margin-top: 24px;
    margin-bottom: 24px;
    color: var(--font-color-dark);
}
.solution-text {
    font-weight: 400;
    font-size: var(--font-size-lg);
    color: var(--font-color-dark-secondary);
}
.solution-checkwrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 24px;
}
.solution-checkrow {
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: center;
    gap: 12px;
}
.solution-check-icon {
    width: 20px;
}
.solution-check-text {
    font-size: var(--font-size-lg);
    color: var(--font-color-dark-secondary);
}
.solution-right {
    width: 600px;
    border: 1px solid #226DFB29;
    background-color: #226DFB1F;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 20px;
}
.solution-pic {
    width: 100%;
}

/* ========== Leistungen abschnitt ========== */
.section-leistung{
    margin-top: 100px;
    margin-bottom: 100px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.section-leistung::before {
    content: '';
    position: absolute;
    width: 1200px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB20 0%, #226DFB10 50%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.sec-leistung{
    flex-direction: column;
}

.leistung-cardwrapper {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    gap: 24px;
    width: min(1460px, 90vw);
    margin: 40px auto 0;
}

.leistung-card {
    background: var(--highlite-color-light, #030822);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

/* Raster-Pattern oben */
.leistung-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(ellipse 220px 140px at 50% 0%, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 220px 140px at 50% 0%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Blauer Glow oben */
.leistung-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB18, transparent 70%);
    filter: blur(30px);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.leistung-card .servcard-title,
.leistung-card .servcard-text {
    position: relative;
    z-index: 1;
}

/* Row 1: 4 gleich breite Karten (je 6 von 24 Spalten) */
.leistung-card:nth-child(1) { grid-column: span 6; }
.leistung-card:nth-child(2) { grid-column: span 6; }
.leistung-card:nth-child(3) { grid-column: span 6; }
.leistung-card:nth-child(4) { grid-column: span 6; }

/* Row 2: 1 card over 14 columns */
.leistung-card:nth-child(5) { grid-column: 1 / 15; }

/* Tall card: 10 columns, spans 2 rows */
.leistung-card-tall {
    grid-column: 15 / 25;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.leistung-card-tall .servcard-icon-img {
    margin-top: auto;
    align-self: stretch;
}

/* Row 3: 2 gleich breite Karten (je 7 von 14 Spalten) */
.leistung-card:nth-child(7) { grid-column: 1 / 8; }
.leistung-card:nth-child(8) { grid-column: 8 / 15; }

.xis{
    background-color: rgba(255, 255, 255, .02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .04)
}

/*=================Abschnitt ZUsammen=======================*/
.section-zusammen{
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Blauer Blur-Glow */
.section-zusammen::before {
    content: '';
    position: absolute;
    width: 1200px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB20 0%, #226DFB10 50%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Viereck-Pattern */
.section-zusammen::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 1200px 600px at 50% 50%, black 0%, black 50%, transparent 100%);
    mask-image: radial-gradient(ellipse 1200px 600px at 50% 50%, black 0%, black 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.sec-zusammen{
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.zusammen-bg{
    position: absolute;
    width: 100%;
    top: 0;
    transform: translateY(-45%);
}
.zusammen-text{
    margin-top: 24px;
    color: var(--font-color-text);
    font-size: var(--font-size-lg);
    text-align: center;
}

/* ========== Timeline ========== */
.zusammen-timeline {
    position: relative;
    width: 100%;
    margin: 80px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color-timeline);
    transform: translateX(-50%);
}

.timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform-origin: top;
    transform: scaleY(0);
    will-change: transform;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    box-sizing: border-box;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.timeline-left {
    margin-right: auto;
    text-align: left;
}

.timeline-item.timeline-right {
    margin-left: auto;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border-color-timeline);
    background: var(--background-color, #030822);
    z-index: 2;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.timeline-left .timeline-dot {
    right: -9px;
}

.timeline-right .timeline-dot {
    left: -9px;
}

.timeline-dot.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(34, 109, 251, 0.5);
}

.timeline-content {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-left .timeline-content {
    transform: translateX(-60px);
}

.timeline-right .timeline-content {
    transform: translateX(60px);
}

.timeline-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 8px;
}

.timeline-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.timeline-content .servcard-title {
    margin-top: 12px;
}

.timeline-content .servcard-text {
    margin-top: 4px;
}

/*==================Abshcnitt fallstudie=====================*/
.section-fall{
    background-color: var(--white);
    padding-top: 130px;
    padding-bottom: 130px;
    position: relative;
    overflow: hidden;
}
.sec-fall{
    flex-direction: column;
}
.fall-wrapper {
    margin-top: 64px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    gap: 20px;
}
.fall-wrapper-reverse {
    flex-direction: row-reverse;
}

/* Blauer Blur-Glow */
.fall-wrapper::before {
    content: '';
    position: absolute;
    width: 942px;
    height: 448px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB30 0%, #226DFB18 50%, transparent 100%);
    filter: blur(30px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Viereck-Pattern */
.fall-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 942px 448px at 50% 50%, black 0%, black 70%, transparent 100%);
    mask-image: radial-gradient(ellipse 942px 448px at 50% 50%, black 0%, black 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.fall-wrapper-left {
    width: 650px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.fall-wrapper-header {
    font-size: var(--font-size-section-header);
    font-weight: 600;
    line-height: 125%;
}
.fall-wrapper-text {
    margin-top: 24px;
    font-size: var(--font-size-lg);
    color: var(--font-color-dark-secondary);
}
.fall-wrapper-right {
    width: 650px;
    position: relative;
    z-index: 1;
}
.fall-wrapper-imgcon {
    width: 100%;
    background-color: #226DFB1F;
    border: 1px solid #226DFB29;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.fall-wrapper-img {
    width: 100%;
    border-radius: 18px;
}
.fall-right-botwrapper {
    width: 100%;
    background-color: #226DFB1F;
    border: 1px solid #226DFB29;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    margin-top: 24px;
}
.fall-botwrapper-text {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
}
.fall-botwrapper-header {
    color: var(--font-color-dark);
    font-size: var(--font-size-card-title);
    font-weight: 600;
}
.fall-botwrapper-subheadline {
    color: var(--font-color-dark-secondary);
    font-size: var(--font-size-lg);
    font-weight: 400;
}
.fall-botwrapper-falllogo {
    width: 110px;
}

/*===================Abschnitt Kundenstimmen=====================*/

.section-rating{
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
    position: relative;
    clip-path: inset(-30px 0 0 0 round 30px 30px 0px 0px);  
}
.rating-topstripe{
    width: 100%;
    height: 30px;
    border-radius: 48px 48px 0px 0px;
    background-color: var(--highlite-color);
    position: absolute;
    top: 0;
    transform: translateY(-30px);
}
.sec-rating{
    flex-direction: column;
}
.rating-bg-light{
    width: 100%;
    top: 0;
    transform: translateY(-20%);
    position: absolute;
    z-index: 1;
}

.rating-wrapper {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-top: 64px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.rating-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rating-card {
    background: var(--highlite-color-light, #060B28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Raster-Pattern rechts oben */
.rating-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.07) 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(ellipse 120% 120% at 100% 0%, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 120% 120% at 100% 0%, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Blauer Glow rechts oben */
.rating-card::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB28, transparent 70%);
    filter: blur(30px);
    top: -250px;
    right: -250px;
    pointer-events: none;
    z-index: 0;
}

.rating-stars {
    height: 20px;
    width: auto;
    position: relative;
    z-index: 1;
}

.rating-text {
    color: var(--font-color-text);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.rating-name {
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.rating-source {
    color: var(--font-color-text);
    font-size: var(--font-size-sm, 14px);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}
/*=================Abschnitt ueber-uns====================*/
.us-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

.us-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB20 0%, #226DFB10 50%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.us-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 600px 300px at 50% 50%, black 0%, black 50%, transparent 100%);
    mask-image: radial-gradient(ellipse 600px 300px at 50% 50%, black 0%, black 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.us-sec {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.us-left {
    width: 650px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
    padding-right: 20px;
    box-sizing: border-box;
}
.us-header {
    text-align: left;
}
.header_highlitecolor {}
.us-text {
    margin-top: 24px;
    font-size: var(--font-size-lg);
    color: var(--font-color-text);
}
.us_highlite {
    color: var(--white);
    font-weight: 600;
}
.us-right {
    width: 650px;
}
.us-img-con {
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding: 20px;
    background-color: var(--highlite-color);
    border: 1px solid #6A8BC829;
    border-radius: 20px;
}
.us-img {
    width: 100%;
}
.us-left-lion{
    padding-right: 20px;
    box-sizing: border-box;
}

/* ========== Gründer abschnitt ========== */
.section-gruender {
    background-color: var(--white);
    padding-top: 130px;
    padding-bottom: 130px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.gruender-topstripe {
    width: 100%;
    height: 30px;
    border-radius: 0px 0px 48px 48px;
    background-color: var(--highlite-color);
    position: absolute;
    top: 0;
    z-index: 3;
}
.gruender-botstripe {
    width: 100%;
    height: 30px;
    border-radius: 48px 48px 0px 0px;
    background-color: var(--highlite-color);
    position: absolute;
    bottom: 0;
    z-index: 3;
}
.section-gruender::before {
    content: '';
    position: absolute;
    width: 1600px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB35 0%, #226DFB28 25%, #226DFB18 50%, #226DFB0C 75%, transparent 100%);
    filter: blur(100px);
    left: 50%;
    top: 600px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}
.gruender-dots {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 942px 448px at 50% 50%, black 0%, black 70%, transparent 100%);
    mask-image: radial-gradient(ellipse 942px 448px at 50% 50%, black 0%, black 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.sec-gruender {
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.gruender-row {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px
}
.gruender-row.gruender-row-reverse {
    flex-direction: row-reverse;
}
.gruender-text-side {
    width: 650px;
}
.gruender-img-side {
    width: 600px;
    border: 1px solid #226DFB29;
    background-color: #226DFB1F;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 20px;
}
.gruender-img {
    width: 100%;
    border-radius: 12px;
}
.gruender-name {
    font-size: 35px;
    font-weight: 600;
    line-height: 125%;
    color: var(--font-color-dark);
}
.gruender-role {
    margin-top: 8px;
    font-size: var(--font-size-sm);
    color: var(--font-color-dark);
}
.gruender-text {
    margin-top: 24px;
    font-size: var(--font-size-lg);
    color: var(--font-color-dark-secondary);
}

/* ========== Social / Instagram abschnitt ========== */
.section-social {
    margin-top: 100px;
    margin-bottom: 100px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.section-social::before {
    content: '';
    position: absolute;
    width: 942px;
    height: 448px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB20 0%, #226DFB10 50%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.sec-social {
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.social-phone-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    margin-top: 120px;
}
.social-con {
    width: 32%;
}
.social-con-phonewrapper {
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 290px;
    border-radius: 22px;
    background-color: #FFFFFF0A;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid #FFFFFF0F;
}
.social-con-phonewrapper a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 50%;
}
.social-con-phone {
    width: 100%;
    transform-origin: bottom center;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.social-con-phone:hover {
    transform: scale(1.08);
}
.social-con-text {
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
}
.social-con-header {
    color: var(--white);
    font-size: var(--font-size-subheader);
    font-weight: 600;
    margin-top: 32px;
}
.social-con-subline {
    font-size: var(--font-size-lg);
    color: var(--font-color-muted);
    margin-top: 8px;
    margin-bottom: 16px;
}
/*===================Abschnitt FAQ===========================*/
.section-faq {
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.section-faq::before {
    content: '';
    position: absolute;
    width: min(942px, 100%);
    height: 448px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB20 0%, #226DFB10 50%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 300px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}
.faq-bg{
    position: absolute;
    top: 0;
    width: 100%;
}
.sec-faq {
    flex-direction: column;
}
.faq-wrapper {
    width: min(1000px,90vw);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 60px;
}
.faq-item {
    background-color: #FFFFFF0A;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #FFFFFF0F;
    border-radius: 16px;
    overflow: hidden;
    transform: translateZ(0);
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
}
.faq-question {
    font-size: var(--font-size-card-title);
    font-weight: 600;
    color: var(--white);
}
.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: #FFFFFF14;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}
.faq-icon span {
    position: absolute;
    background-color: var(--white);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon span:first-child {
    width: 16px;
    height: 2px;
}
.faq-icon span:last-child {
    width: 2px;
    height: 16px;
}
.faq-item.faq-active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.faq-active .faq-answer {
    grid-template-rows: 1fr;
}
.faq-answer-inner {
    overflow: hidden;
    padding: 0 28px;
}
.faq-item.faq-active .faq-answer-inner {
    padding: 0 28px 24px;
}
.faq-answer-text {
    font-size: var(--font-size-lg);
    color: var(--font-color-muted);
    line-height: 170%;
}
/*=========================Abschnitt Pitch===========================*/
.section-pitch {
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
}
.sec-pitch {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 60px 260px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.sec-pitch::before {
    content: '';
    position: absolute;
    width: 942px;
    height: 448px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #ffffff18 0%, #ffffff0a 50%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.sec-pitch::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 700px 350px at 50% 50%, black 0%, black 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 700px 350px at 50% 50%, black 0%, black 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.sec-pitch > * {
    position: relative;
    z-index: 1;
}
.pitch-pille {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background-color: #FFFFFF1F;
    border: 1px solid #FFFFFF42;
    padding: 8px 16px;
}
.pitch-pille-circel {
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: var(--white);
}
.pitch-pille-text {
    font-size: var(--font-size-base);
    color: var(--white);
    text-transform: uppercase;
}
.pitch-header {
    margin-top: 16px;
    font-size: var(--font-size-section-header);
    line-height: 125%;
    color: var(--white);
    font-weight: 600;
    text-align: center;
}
.pitch-text {
    margin-top: 24px;
    color: #BDD3FE;
    font-size: var(--font-size-lg); 
    margin-bottom: 32px;
    text-align: center;
}
/*========================Abschnitt Standort===========================*/
.section-location {
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
    position: relative;
}
.section-location::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB12 0%, #226DFB0E 40%, #226DFB0A 65%, #226DFB06 85%, transparent 100%);
    filter: blur(40px);
    left: 50%;
    top: 250px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}
.section-location::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.07) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 600px 300px at 50% 400px, black 0%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 600px 300px at 50% 400px, black 0%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.sec-location {
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}
.location-left {
    width: 650px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
}
.location-subheader {
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-subheader);
    margin-top: 40px;
    margin-bottom: 16px;

}
.location-kontakt-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}
.location-kontakt-con {
    border-radius: 16px;
    border: 1px solid #FFFFFF0F;
    background-color: #FFFFFF0A;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    box-sizing: border-box;
}
.location-kontakt-icon {
    width: 48px;
}
.location-kontakt-textbox {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}
.location-kontakt-header {
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 600;
}
.location-kontakt-subline {
    color: var(--font-color-text);
    font-size: var(--font-size-lg);
}
.location-right {
    width: 650px;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Map Overlay */
.location-kontakt-link {
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.location-kontakt-link:hover {
    border-color: var(--primary-color);
}
.location-kontakt-map {
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.location-kontakt-map:hover {
    border-color: var(--primary-color);
}
.map-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 3, 18, 0);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: background-color 0.4s ease;
}
.map-overlay.map-active {
    background-color: rgba(0, 3, 18, 0.85);
    pointer-events: all;
}
.map-overlay-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: var(--white);
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.map-overlay.map-active .map-overlay-close {
    opacity: 1;
}
.map-overlay-close:hover {
    color: var(--primary-color);
}
.map-iframe {
    width: min(1200px, 90vw);
    height: min(700px, 80vh);
    border: none;
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.map-overlay.map-active .map-iframe {
    opacity: 1;
    transform: scale(1);
}

/*================================================================================*/
/*================================================================================*/
/*===============================Mobile Querys====================================*/
/*================================================================================*/
/*================================================================================*/
@media (max-width: 1550px) {
    .hero_header{
        font-size: var(--font-size-header-tablet);
    }
    .servcard-header{
        font-size: var(--font-size-header-tablet);
    }
    .solution-header{
        font-size: var(--font-size-header-tablet);
    }
    .fall-wrapper-header{
        font-size: var(--font-size-header-tablet);
    }
    .pitch-header{
        font-size: var(--font-size-header-tablet);
    }
    .solution-left{
        padding-right: 20px;
    }
}
@media (max-width: 1400px) {
    .sec-pitch{
        padding: 60px 180px;
    }
}
@media (max-width: 1300px) {
    /* ===== Location ===== */
    .sec-location {
        flex-direction: column-reverse;
        gap: 48px;
    }
    .location-left {
        width: 100%;
    }
    .location-left .servcard-header {
        font-size: var(--font-size-header-tablet);
    }
    .location-right {
        width: 100%;
    }
    .section-location {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* ===== Solution ===== */
    .section-solution{
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .sec-solution{
        flex-direction: column-reverse;
        align-items: center;
        gap: 48px;
    }
    .solution-left{
        padding-right: 0px;
        width: min(850px,100%);
        align-items: center;
        text-align: center;
    }
    .solution-header,
    .solution-text{
        text-align: center;
    }
    .solution-checkwrapper{
        align-items: center;
    }
    .solution-checkrow{
        justify-content: center;
    }
    .solution-right{
        width: 100%;
        max-width: 600px;
    }

    /* ===== Servcards Slider ===== */
    .servcard {
        flex: 0 0 calc((min(1460px, 90vw) - 24px) / 2);
    }

    /* ===== Leistungen ===== */
    .leistung-cardwrapper{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .leistung-card:nth-child(1),
    .leistung-card:nth-child(2),
    .leistung-card:nth-child(3),
    .leistung-card:nth-child(4),
    .leistung-card:nth-child(5),
    .leistung-card:nth-child(7),
    .leistung-card:nth-child(8){
        grid-column: auto;
    }
    .leistung-card-tall{
        grid-column: auto;
        grid-row: auto;
    }
    .section-leistung{
        margin-top: 70px;
        margin-bottom: 70px;
    }

    /* ===== Über Uns ===== */
    .us-sec {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    .us-left {
        width: 100%;
        max-width: 850px;
        align-items: center;
    }
    .us-header {
        text-align: center;
    }
    .us-text {
        text-align: center;
    }
    .us-right {
        width: 100%;
        max-width: 600px;
    }
    .us-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* ===== Gründer ===== */
    .section-gruender {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .gruender-row {
        flex-direction: column;
        align-items: center;
        gap: 48px;
        margin-top: 48px;
    }
    .gruender-le{
        flex-direction: column-reverse;
    }
    .gruender-text-side {
        width: 100%;
        max-width: 750px;
        text-align: center;
    }
    .gruender-img-side {
        width: 100%;
        max-width: 500px;
    }

    /* ===== Social ===== */
    .section-social {
        margin-top: 70px;
        margin-bottom: 70px;
    }
    .social-phone-wrapper {
        flex-direction: column;
        gap: 110px;
        margin-top: 100px;
    }
    .social-con {
        width: 100%;
        max-width: 400px;
    }
    .social-con-phonewrapper {
        width: 100%;
    }
    .social-con-text{
        align-items: center;
    }
    .social-con-subline{
        text-align: center;
    }

    /* ===== Rating ===== */
    .section-rating{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .rating-wrapper{
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 48px;
    }
    .rating-col{
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
    }

    /* ===== Fall ===== */
    .section-fall{
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .fall-wrapper,
    .fall-wrapper-reverse{
        flex-direction: column-reverse;
        gap: 48px;
        margin-top: 48px;
    }
    .fall-wrapper-left,
    .fall-wrapper-right{
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
    }
    .fall-wrapper-right{
        max-width: none;
    }
    .fall-wrapper-imgcon{
        width: 100%;
    }
    .fall-wrapper-left{
        align-items: center;
        text-align: center;
    }
    /*======pitch=====*/
    .sec-pitch{
        padding: 60px 60px;
    }
    .location-text{
        text-align: left !important;
    }
    .faq-question{
        font-size: 18px;
    }
}
@media (max-width: 1000px) {
    .section_hero{
        height: auto;
    }
    .sec_hero{
        flex-direction: column;
        gap: 60px;
    }
    .hero-pic{
        width: 100%;
        left: 0px;
        position: initial;
    }
    .hero_right{
        width: 100%;
        height: auto;
    }
    .hero_left{
        width: 100%;
        align-items: center;
        padding-right: 0px;
    }
    .hero_text{
        text-align: center;
        width: 70%;
    }
    .hero_header{
        text-align: center;
    }
    .hero-checkbox{
        justify-content: center;
        align-items: center;
    }
    .hero-checkcon{
        align-items: center;
        justify-content: center;
    }
    .hero_center_line{
        display:none;
    }
}
@media (max-width: 1100px) {
    .fall-wrapper::before{
        width: 600px;
        height: 320px;
    }
    .fall-wrapper::after{
        -webkit-mask-image: radial-gradient(ellipse 600px 320px at 50% 50%, black 0%, black 70%, transparent 100%);
        mask-image: radial-gradient(ellipse 600px 320px at 50% 50%, black 0%, black 70%, transparent 100%);
    }
    .hero_header{
        font-size: var(--font-size-hero-zwi);
    }
    .servcard-header{
        font-size: var(--font-size-header-zwi);
    }
    .solution-header{
        font-size: var(--font-size-header-zwi);
    }
    .fall-wrapper-header{
        font-size: var(--font-size-header-zwi);
    }
    .pitch-header{
        font-size: var(--font-size-header-zwi);
    }
    .us-header{
        font-size: var(--font-size-header-zwi);
    }
    .gruender-name{
        font-size: var(--font-size-header-zwi);
    }
    .location-left .servcard-header{
        font-size: var(--font-size-header-zwi);
    }
    .solution-right{
        max-width: 1100px;
    }
    .us-right{
        max-width: 1100px;
    }
    .gruender-img-side{
        max-width: 1100px;
    }
}
@media (max-width: 1050px) {

}
@media (max-width: 700px) {
    .fall-wrapper::before{
        width: 320px;
        height: 480px;
    }
    .fall-wrapper::after{
        -webkit-mask-image: radial-gradient(ellipse 320px 480px at 50% 50%, black 0%, black 70%, transparent 100%);
        mask-image: radial-gradient(ellipse 320px 480px at 50% 50%, black 0%, black 70%, transparent 100%);
    }
    .social-hide-breake{
        display:none;
    }
}
@media (max-width: 950px) {
    .hero_text{
        width: 100%;
    }

    /* ===== Solution ===== */
    .section-solution{
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .solution-header{
        font-size: var(--font-size-header-tablet);
    }

    /* ===== Servcards Slider ===== */
    .servcard {
        flex: 0 0 min(1460px, 90vw);
        padding: 28px;
    }
    .sec_servcards{
        margin-top: 70px;
    }
    .servcard-header{
        font-size: var(--font-size-header-tablet);
    }

    /* ===== Rating ===== */
    .rating-wrapper{
        flex-direction: column;
    }
    .rating-col{
        flex: none;
        width: 100%;
    }

    /* ===== Fall ===== */
    .section-fall{
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .fall-wrapper-header{
        font-size: var(--font-size-header-tablet);
    }

}
@media (max-width: 950px) {
    .servcard-header-break{
        display:none;
    }
}
@media (max-width: 850px) {
    /* ===== Leistungen ===== */
    .leistung-cardwrapper{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .leistung-card{
        padding: 28px;
    }
}
@media (max-width: 750px) {
    .section_hero{
        padding-top: 0px;
    }
    .hero-checkbox{
        display:none;
    }
    .hero_text{
        margin-bottom: 24px;
    }
    .zusammen-breake-hide{
        display:none;
    }

    /* ===== Zusammen / Timeline ===== */
    .section-zusammen{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .zusammen-text{
        font-size: var(--font-size-text-handy);
    }
    .zusammen-timeline{
        margin-top: 50px;
        padding: 20px 0;
    }
    .timeline-line{
        left: 12px;
        transform: none;
    }
    .timeline-item{
        width: 100%;
        padding: 0 0 0 44px;
        margin-bottom: 40px;
    }
    .timeline-item.timeline-left,
    .timeline-item.timeline-right{
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
    .timeline-left .timeline-dot,
    .timeline-right .timeline-dot{
        left: 4px;
        right: auto;
    }
    .timeline-left .timeline-content,
    .timeline-right .timeline-content{
        transform: translateX(-30px);
    }
    .timeline-content.visible{
        transform: translateX(0);
    }
    .timeline-content .servcard-title{
        font-size: var(--font-size-base);
    }
    .timeline-content .servcard-text{
        font-size: var(--font-size-text-handy);
    }
    .solution-checkwrapper{
        align-items: flex-start;
    }

    /* ===== Über Uns ===== */
    .us-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .us-left {
        align-items: flex-start;
    }
    .us-header {
        text-align: left;
    }
    .us-text {
        text-align: left;
    }
    .us-right{
        max-width: 1000px;
    }

    /* ===== Gründer ===== */
    .section-gruender {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .gruender-text-side {
        text-align: left;
    }
    .gruender-row {
        gap: 32px;
        margin-top: 40px;
    }
    .gruender-img-side{
        width: 100%;
        max-width: 1000px;
    }

    .solution-right{
        max-width: 1000px;
    }

    /* ===== Social ===== */
    .section-social {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .social-phone-wrapper {
        gap: 100px;
        margin-top: 100px;
    }
    .social-con-text{
        align-items: center;
    }
}
@media (max-width: 650px) {
    .solution-left{
        align-items: flex-start;
    }
    .solution-checkwrapper{
        align-items: flex-start;
    }
    .solution-header{
        text-align: left;
    }
    .solution-text{
        text-align: left;
    }
}
@media (max-width: 600px) {
    .hero_text{
        font-size: var(--font-size-text-handy);
    }
    .hero_header{
        font-size: var(--font-size-header-handy);
    }
    .hero-check-text{
        font-size: var(--font-size-text-handy);
    }

    /* ===== Solution ===== */
    .section-solution{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .solution-header{
        font-size: var(--font-size-header-handy);
    }
    .solution-text,
    .solution-check-text{
        font-size: var(--font-size-text-handy);
    }
    .solution-right{
        padding: 12px;
        border-radius: 16px;
    }
    .solution-checkrow{
        gap: 10px;
    }

    /* ===== Servcards Slider ===== */
    .servcard {
        padding: 24px;
    }
    .servcard-header{
        font-size: var(--font-size-header-handy);
    }
    .servcards-subheadline{
        font-size: var(--font-size-text-handy);
        margin-bottom: 40px;
    }
    .servcard-title{
        font-size: var(--font-size-base);
        margin-top: 24px;
    }
    .servcard-text{
        font-size: var(--font-size-text-handy);
    }

    /* ===== Über Uns ===== */
    .us-text {
        font-size: var(--font-size-text-handy);
    }
    .us-header {
        font-size: var(--font-size-header-handy);
    }
    .us-img-con {
        padding: 14px;
        border-radius: 16px;
    }

    /* ===== Gründer ===== */
    .gruender-name {
        font-size: 26px;
    }
    .gruender-text {
        font-size: var(--font-size-text-handy);
    }
    .gruender-img-side {
        padding: 12px;
        border-radius: 16px;
    }

    /* ===== Social ===== */
    .social-con-phonewrapper {
        border-radius: 16px;
    }
    .social-con-header {
        font-size: var(--font-size-base);
        margin-top: 20px;
    }
    .social-con-subline {
        font-size: var(--font-size-text-handy);
    }

    /* ===== FAQ ===== */
    .section-faq {
        padding-top: 60px;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .section-faq::before {
        width: 100%;
        height: 300px;
    }
    .faq-question {
        font-size: var(--font-size-base);
    }
    .faq-answer-text {
        font-size: var(--font-size-text-handy);
    }
    .faq-header {
        padding: 18px 20px;
    }
    .faq-answer-inner {
        padding: 0 20px;
    }
    .faq-item.faq-active .faq-answer-inner {
        padding: 0 20px 20px;
    }

    /* ===== Pitch ===== */
    .section-pitch {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .sec-pitch {
        padding: 40px 20px;
        border-radius: 16px;
    }
    .pitch-header {
        font-size: var(--font-size-header-handy);
    }
    .pitch-text {
        font-size: var(--font-size-text-handy);
    }

    /* ===== Location ===== */
    .section-location {
        padding-top: 60px;
        padding-bottom: 60px;
        overflow: hidden;
    }
    .section-location::before {
        width: 100%;
        height: 300px;
    }
    .location-left .servcard-header {
        font-size: var(--font-size-header-handy);
    }
    .location-subheader {
        font-size: 20px;
    }
    .location-kontakt-header {
        font-size: var(--font-size-base);
    }
    .location-kontakt-subline {
        font-size: var(--font-size-text-handy);
    }
    .location-kontakt-con {
        padding: 14px 18px;
    }
    .location-kontakt-icon {
        width: 36px;
    }
    .map-iframe {
        height: min(500px, 70vh);
    }
    .map-overlay-close {
        top: 16px;
        right: 16px;
    }

    /* ===== Leistungen ===== */
    .section-leistung{
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .leistung-card{
        padding: 24px;
    }
    .leistung-card .servcard-title{
        font-size: var(--font-size-base);
        margin-top: 24px;
    }
    .leistung-card .servcard-text{
        font-size: var(--font-size-text-handy);
    }

    /* ===== Rating ===== */
    .section-rating{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .rating-card{
        padding: 24px;
    }
    .rating-text{
        font-size: var(--font-size-text-handy);
    }
    .rating-name{
        font-size: var(--font-size-base);
    }

    /* ===== Fall ===== */
    .section-fall{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .fall-wrapper-header{
        font-size: var(--font-size-header-handy);
    }
    .fall-wrapper-text{
        font-size: var(--font-size-text-handy);
    }
    .fall-wrapper-imgcon,
    .fall-right-botwrapper{
        padding: 14px;
        border-radius: 16px;
    }
    .fall-right-botwrapper{
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }
    .fall-botwrapper-text{
        align-items: center;
    }
    .fall-botwrapper-header{
        font-size: var(--font-size-base);
    }
    .fall-botwrapper-subheadline{
        font-size: var(--font-size-text-handy);
    }
    .fall-botwrapper-falllogo{
        width: 90px;
    }
}
@media (max-width: 750px) {
    /* ===== Fall ===== */
    .fall-wrapper-left{
        align-items: flex-start;
        text-align: left;
    }
    .fall-wrapper-header{
        text-align: left;
    }
}
@media (max-width: 450px) {
    .hero_text{
        width: 100%;
        padding-right: 0;
    }

    /* ===== Solution ===== */
    .solution-checkrow{
        justify-content: flex-start;
        text-align: left;
    }
}