.activv-hero-wrap {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    width: 100%;
}

.activv-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.activv-hero-left {
    flex: 1;
    max-width: 550px;
}

.activv-hero-right {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.activv-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.activv-hero-desc {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.activv-hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-solid:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-text:hover {
    opacity: 0.8;
}

/* Yellow chevron marker design */
.chevron-arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #F2BC07;
    display: inline-block;
}

.activv-hero-shapes {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 650px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
}

/* Layered slant design mimicking the wireframe angles */
.activv-hero-shapes .slant-1 {
    position: absolute;
    top: 0;
    left: 20%;
    width: 100%;
    height: 100%;
    transform: skewX(-24deg);
    border-radius: 60px;
    z-index: 1;
}

.activv-hero-shapes .slant-2 {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 90%;
    height: 85%;
    transform: skewX(-24deg);
    border-radius: 60px;
    z-index: 2;
}

.activv-hero-image-box {
    position: relative;
    z-index: 3;
    max-height: 100%;
    width: auto;
}

.activv-hero-image-box img {
    max-height: 520px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .activv-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .activv-hero-left {
        max-width: 100%;
    }
    .activv-hero-actions {
        justify-content: center;
    }
    .activv-hero-right {
        width: 100%;
        height: 400px;
    }
    .activv-hero-shapes {
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
