.koebes-hero-start {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 760px;
    background: #181818;
}

.koebes-hero-start--fullscreen {
    min-height: 100vh;
    min-height: 100svh;
}

.koebes-hero-start__media,
.koebes-hero-start__image,
.koebes-hero-start__video,
.koebes-hero-start__overlay {
    position: absolute;
    inset: 0;
}

.koebes-hero-start__media {
    z-index: 1;
}

.koebes-hero-start__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.koebes-hero-start__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.koebes-hero-start__overlay {
    z-index: 2;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.koebes-hero-start__icons {
    position: absolute;
    z-index: 5;
    left: 3vw;
    bottom: 7vh;
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
}

.koebes-hero-start__icon-link {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #ffffff;
    color: #AC2032;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.koebes-hero-start__icon-link:hover {
    transform: translateY(-2px);
}

.koebes-hero-start__icon-link i {
    font-size: 30px;
}

.koebes-hero-start__icon-link svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.koebes-hero-start__box {
    position: absolute;
    z-index: 4;
    right: 8vw;
    bottom: 7vh;
    width: 560px;
    max-width: calc(100% - 32px);
    background: rgba(172, 32, 50, 0.88);
    padding: 34px 36px;
    color: #ffffff;
}

.koebes-hero-start__headline {
    margin: 0 0 22px 0;
    color: #ffffff;
    font-size: clamp(30px, 2.4vw, 44px);
    line-height: 1.16;
    font-weight: 300;
    text-transform: uppercase;
}

.koebes-hero-start__text {
    color: #ffffff;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.55;
    margin-bottom: 18px;
}

.koebes-hero-start__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.koebes-hero-start__cta:hover {
    color: #ffffff;
    text-decoration: none;
}

.koebes-hero-start__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.koebes-hero-start__cta-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.koebes-hero-start__logo {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.koebes-hero-start__logo img {
    max-width: 260px;
    width: 48%;
    height: auto;
    display: block;
}

.koebes-hero-start__scroll {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    border: 0;
    background: transparent;
    color: #ffffff;
    padding: 10px;
    cursor: pointer;
    line-height: 1;
    animation: koebesHeroArrow 1.7s ease-in-out infinite;
}

.koebes-hero-start__scroll svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.koebes-hero-start__scroll i {
    font-size: 34px;
}

@keyframes koebesHeroArrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@media (max-width: 1024px) {
    .koebes-hero-start__box {
        width: 520px;
        right: 5vw;
        bottom: 7vh;
    }

    .koebes-hero-start__icons {
        left: 4vw;
        bottom: 7vh;
    }

    .koebes-hero-start__icon-link {
        width: 56px;
        height: 56px;
    }

    .koebes-hero-start__icon-link i {
        font-size: 26px;
    }

    .koebes-hero-start__icon-link svg {
        width: 26px;
        height: 26px;
    }

    .koebes-hero-start__headline {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .koebes-hero-start,
    .koebes-hero-start--fullscreen {
        min-height: 100svh;
    }

    .koebes-hero-start__box {
        left: 50%;
        right: auto !important;
        bottom: 12vh;
        transform: translateX(-50%);
        width: 88%;
        padding: 88px 24px 24px 24px;
    }

    .koebes-hero-start__icons {
        left: 50% !important;
        bottom: calc(12vh + 100% - 24px) !important;
        top: auto !important;
        transform: translateX(-50%);
        flex-direction: row;
        justify-content: center;
        width: 88%;
        gap: 28px;
        z-index: 6;
    }

    .koebes-hero-start__headline {
        font-size: 27px;
        margin-bottom: 16px;
    }

    .koebes-hero-start__text {
        font-size: 16px;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .koebes-hero-start__cta {
        font-size: 17px;
    }

    .koebes-hero-start__logo {
        margin-top: 22px;
    }

    .koebes-hero-start__logo img {
        max-width: 210px;
        width: 58%;
    }

    .koebes-hero-start__icon-link {
        width: 48px;
        height: 48px;
    }

    .koebes-hero-start__icon-link i {
        font-size: 22px;
    }

    .koebes-hero-start__icon-link svg {
        width: 22px;
        height: 22px;
    }

    .koebes-hero-start__scroll {
        bottom: 18px;
    }

    .koebes-hero-start__scroll svg {
        width: 28px;
        height: 28px;
    }

    .koebes-hero-start__scroll i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .koebes-hero-start__box {
        width: 90%;
        bottom: 11vh;
        padding: 84px 22px 22px 22px;
    }

    .koebes-hero-start__icons {
        width: 90%;
        gap: 24px;
        bottom: calc(11vh + 100% - 22px) !important;
    }

    .koebes-hero-start__headline {
        font-size: 24px;
    }

    .koebes-hero-start__text {
        font-size: 15px;
    }

    .koebes-hero-start__icon-link {
        width: 44px;
        height: 44px;
    }

    .koebes-hero-start__icon-link i {
        font-size: 20px;
    }

    .koebes-hero-start__icon-link svg {
        width: 20px;
        height: 20px;
    }
}