/* Hero Animated Block - Homepage only */
.bevlogic-hero-animated {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    background-size: cover;
    background-position: center center;
    border-radius: 24px;
    overflow: hidden;
    min-height: 740px;
}

/* Video overlay layer */
.bevlogic-hero-animated__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
    mix-blend-mode: multiply;
}

.bevlogic-hero-animated__video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blend overlay layer */
.bevlogic-hero-animated__blend-overlay {
    background: #1c2c88;
    opacity: 0.3;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    mix-blend-mode: darken;
    z-index: 2;
    pointer-events: none;
}

.bevlogic-hero-animated.alignfull {
    padding-left: var(--wp--preset--spacing--30);
    padding-right: var(--wp--preset--spacing--30);
}

.bevlogic-hero-animated__inner {
    max-width: var(--wp--style--global--wide-size);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--50);
    align-items: center;
    position: relative;
    z-index: 3;
}

.bevlogic-hero-animated__content--text-left .bevlogic-hero-animated__inner {
    grid-template-columns: 1fr 1fr;
}

.bevlogic-hero-animated__content--text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bevlogic-hero-animated__headline {
    font-size: 72px;
    font-family: var(--wp--preset--font-family--heading);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 var(--wp--preset--spacing--x-24) 0;
    color: white;
}

.bevlogic-hero-animated__subheadline {
    font-size: 1.125rem; /* 18px */
    font-family: var(--wp--preset--font-family--body);
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 var(--wp--preset--spacing--x-32) 0;
    color: white;
}

.bevlogic-hero-animated__buttons {
    display: flex;
    gap: var(--wp--preset--spacing--20);
    flex-wrap: wrap;
    margin-bottom: var(--wp--preset--spacing--30);
}

.bevlogic-hero-animated__content--text-center .bevlogic-hero-animated__buttons {
    justify-content: center;
}

.bevlogic-hero-animated__button {
    padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
    border-radius: var(--wp--custom--rounded--base);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--wp--custom--transition--fast);
}

.bevlogic-hero-animated__button--primary {
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--base);
}

.bevlogic-hero-animated__button--primary:hover {
    background-color: var(--wp--preset--color--secondary);
}

.bevlogic-hero-animated__button--secondary {
    background-color: transparent;
    color: var(--wp--preset--color--primary);
    border: 2px solid var(--wp--preset--color--primary);
}

.bevlogic-hero-animated__button--secondary:hover {
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--base);
}

.bevlogic-hero-animated__trust {
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    font-family: var(--wp--preset--font-family--body);
    margin: 0 0 2rem;
}

.bevlogic-hero-animated__trust span {
    border-radius: 30px;
    border: 0.635px solid #FFF;
    background: rgba(255, 255, 255, 0.75);
    padding: 8px 13px;
    color: var(--wp--preset--color--secondary);
}

@media (max-width: 782px) {
    .bevlogic-hero-animated__content--text-left .bevlogic-hero-animated__inner {
        grid-template-columns: 1fr;
    }

    .bevlogic-hero-animated__inner {
        padding: 0 20px;
    }

    .bevlogic-hero-animated__headline {
        font-size: 42px;
    }

    .bevlogic-hero-animated__subheadline {
        font-size: 14px;
    }

    .bevlogic-hero-animated__trust {
        font-size: 12px;
    }

    .bevlogic-hero-animated__buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .bevlogic-hero-animated__content--text-center .bevlogic-hero-animated__buttons {
        align-items: center;
    }
}
