.left-panel {
    position: relative;
    background-color: #a5e85a;
    color: #121212;
    overflow: hidden;
}

.left-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/images1.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.19;
    z-index: 0;
}

.split-hero__wrap {
    position: relative;
    z-index: 1;
}

.join-waitlist-btn {
    background: #121212;
    color: #BCFB6C;
    border-radius: 12px;
    padding: 12px 18px;
    border: 0;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
    transition: all 0.3s ease;
}

.join-waitlist-btn:hover {
    background: #fff;
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(2, 6, 23, 0.25);
}



@media (max-width: 768px) {
    .split-hero__wrap {
        flex-direction: column;
    }

    .split-hero__wrap .left-panel,
    .split-hero__wrap .right-panel {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 24px 20px;
    }

    .left-panel>div,
    .right-panel>div,
    .right-panel>div>div,
    .right-panel>div>div>div {
        max-width: 100% !important;
        width: 100% !important;
    }

    .right-panel {
        margin-top: 20px;
    }

    .right-panel img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }
}