/* Hero Style 2 - Premium Split Layout */
.cp-hero-style-2 {
    position: relative;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    height: var(--hero-height-d);
}

.h2-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.h2-background-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.h2-bg-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-only { display: none !important; }
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
}

.h2-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.h2-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.h2-content-side {
    flex: 1.1;
    max-width: 55%;
}

.h2-stars-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.h2-stars {
    display: flex;
    gap: 1px;
}

.h2-stars svg {
    width: 14px;
    height: 14px;
}

.h2-stars-text {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.h2-title {
    font-size: 38px;
    font-weight: 900;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.1;
    text-transform: uppercase;
    max-width: 400px;
}

.h2-subtitle {
    font-size: 15px;
    color: #333;
    margin: 0 0 25px 0;
    line-height: 1.6;
    max-width: 500px;
}

.h2-action-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.h2-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    transition: none;
    box-shadow: none;
}

.h2-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: none;
    box-shadow: none;
}

.h2-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.h2-trust-badge svg {
    color: #444;
    width: 16px;
    height: 16px;
}

.h2-image-side {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cp-hero-style-2 {
        padding: 0;
        align-items: flex-start;
        height: var(--hero-height-m);
    }

    .h2-flex-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
    }

    .h2-content-side {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
        padding-top: 35px;
    }

    .h2-stars svg {
        width: 12px;
        height: 12px;
    }

    .h2-stars-text {
        font-size: 12px;
    }

    .h2-title {
        font-size: 24px;
        max-width: 250px;
    }

    .h2-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .h2-action-wrap {
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .h2-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 15px;
    }

    .h2-image-side {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .h2-trust-badge {
        font-size: 11px;
        gap: 6px;
    }

    .h2-trust-badge svg {
        width: 14px;
        height: 14px;
    }
}
