.kslp-hero3-block {
    position: relative;
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.kslp-hero3-block--full {
    position: relative;
    left: auto !important;
    right: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.kslp-hero3-block--full .kslp-hero3-container {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}


.kslp-hero3-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}


.kslp-hero3-content {
    flex: 1;
    z-index: 2;
}

.kslp-hero3-heading {
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-weight: 800;
}

.kslp-hero3-sub1 {
    font-weight: 700;
    margin-bottom: 10px;
}

.kslp-hero3-sub2 {
    margin-bottom: 30px;
    line-height: 1.6;
}

.kslp-hero3-list {
    margin-bottom: 35px;
    width: 100%;
}

.kslp-hero3-list--2cols {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.kslp-hero3-list--2cols .kslp-hero3-item {
    width: calc(50% - 10px);
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .kslp-hero3-list--2cols .kslp-hero3-item {
        width: 100%;
    }
}

.kslp-hero3-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.kslp-hero3-item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    padding-top: 2px;
}

.kslp-hero3-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    padding: 14px 28px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.kslp-hero3-cta:hover,
.kslp-hero3-cta:focus {
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Hover Animations */
.kslp-hero3-cta.kslp-button--anim-scale-lift:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.kslp-hero3-cta.kslp-button--anim-glow:hover {
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.7), 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #facc15 !important;
}

.kslp-hero3-cta.kslp-button--anim-pulse {
    animation: kslp-hero3-btn-pulse 2s infinite;
}
.kslp-hero3-cta.kslp-button--anim-pulse:hover {
    animation: none;
    transform: scale(1.03);
}

@keyframes kslp-hero3-btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(7, 77, 49, 0.5);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 14px rgba(7, 77, 49, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(7, 77, 49, 0);
    }
}

.kslp-hero3-cta.kslp-button--anim-slide-icon:hover .kslp-hero3-cta-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}
.kslp-hero3-cta.kslp-button--anim-slide-icon:hover .kslp-hero3-cta-content {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Shimmer Light Sweep Effect */
.kslp-hero3-cta.kslp-button--anim-shimmer::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    transition: all 0.6s ease;
}
.kslp-hero3-cta.kslp-button--anim-shimmer:hover::after {
    left: 130%;
}

.kslp-hero3-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kslp-hero3-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.kslp-hero3-cta-main {
    display: block;
    line-height: 1.2;
}

.kslp-hero3-cta-sub {
    display: block;
    line-height: 1.3;
    margin-top: 2px;
}

/* Badges Repeater */
.kslp-hero3-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.kslp-hero3-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-weight: 600;
    line-height: 1.3;
    box-sizing: border-box;
}

.kslp-hero3-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kslp-hero3-badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.kslp-hero3-badge-text {
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

.kslp-hero3-badge-subtext {
    display: block;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 2px;
}

.kslp-hero3-image-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.kslp-hero3-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Alignment Variations */
.kslp-hero3-block--center .kslp-hero3-container {
    flex-direction: column;
    text-align: center;
}
.kslp-hero3-block--center .kslp-hero3-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kslp-hero3-block--center .kslp-hero3-item {
    justify-content: center;
}
.kslp-hero3-block--center .kslp-hero3-badges {
    justify-content: center;
}
.kslp-hero3-block--center .kslp-hero3-image-wrap {
    justify-content: center;
}

.kslp-hero3-block--right .kslp-hero3-container {
    flex-direction: row-reverse;
}

@media (max-width: 767px) {
    .kslp-hero3-container {
        flex-direction: column !important;
        text-align: center;
    }
    .kslp-hero3-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .kslp-hero3-item {
        justify-content: center;
        text-align: left;
    }
    .kslp-hero3-list--mb-left .kslp-hero3-item {
        justify-content: flex-start;
    }
    .kslp-hero3-list--mb-center .kslp-hero3-item {
        justify-content: center;
    }
    .kslp-hero3-badges {
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        white-space: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        max-width: 100% !important;
        gap: 8px !important;
        padding-bottom: 4px;
    }
    .kslp-hero3-badge {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 4px 10px;
    }
    .kslp-hero3-image-wrap {
        justify-content: center;
        margin-top: 30px;
    }
    .kslp-hero3-image-wrap[data-hide-mobile="true"] {
        display: none;
    }
}
