.hero-split {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 600px;
    display: flex;
    overflow: hidden;
}

.hero-side {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-side:hover {
    flex: 1.1;
}

.hero-left {
    background: linear-gradient(135deg, var(--color-projekt-dark), var(--color-projekt));
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.hero-right {
    background: linear-gradient(135deg, var(--color-staat), var(--color-staat-light));
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.hero-side:hover .hero-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: var(--spacing-2xl);
    max-width: 500px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-side:hover .hero-content {
    transform: translateY(-10px);
}

.hero-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
}

.hero-cta {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid white;
    transition: all 0.3s ease;
}

.hero-side:hover .hero-cta {
    padding: 0.5rem 1rem;
    border-bottom: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.hero-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent
    );
    transform: translateX(-50%) skewX(-8deg);
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .hero-side {
        min-height: 50vh;
    }

    .hero-left {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    }

    .hero-right {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-divider {
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%) skewY(-2deg);
    }

    .hero-side:hover {
        flex: 1;
    }

    .hero-content {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 576px) {
    .hero-side {
        min-height: 60vh;
    }

    .hero-content {
        padding: var(--spacing-lg);
    }
}
