
.enf-horeca-video {
    --enf-navy: #031d39;
    --enf-navy-2: #072f50;
    --enf-green: #16b44c;
    --enf-white: #f9fbfd;
    --enf-muted: #cdd9e4;
    padding: clamp(52px, 7vw, 92px) 20px;
    background:
        radial-gradient(circle at 85% 10%, rgba(22, 180, 76, .16), transparent 34%),
        linear-gradient(145deg, var(--enf-navy), #02162b);
    color: var(--enf-white);
}

.enf-horeca-video__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.enf-horeca-video__copy h2 {
    margin: 12px 0 18px;
    color: var(--enf-white);
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.06;
    letter-spacing: -.025em;
}

.enf-horeca-video__copy p {
    max-width: 620px;
    margin: 0;
    color: var(--enf-muted);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.62;
}

.enf-horeca-video__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--enf-green);
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.enf-horeca-video__eyebrow::before {
    content: "";
    width: 30px;
    height: 4px;
    border-radius: 99px;
    background: var(--enf-green);
}

.enf-horeca-video__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.enf-horeca-video__points span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: var(--enf-white);
    font-size: 14px;
    font-weight: 700;
}

.enf-horeca-video__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    box-shadow: 0 24px 70px rgba(0,0,0,.36);
    background: #000;
}

.enf-horeca-video__media::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(22,180,76,.18);
}

.enf-horeca-video__media video {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

.enf-horeca-video__action {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 2px;
}

.enf-horeca-video__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 14px;
    background: var(--enf-green);
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 14px 30px rgba(22,180,76,.28);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.enf-horeca-video__button:hover,
.enf-horeca-video__button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 18px 38px rgba(22,180,76,.36);
}

.enf-horeca-video__phone,
.enf-horeca-video__email {
    color: var(--enf-white) !important;
    font-weight: 800;
    text-decoration: none !important;
}

.enf-horeca-video__email {
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.22);
}

@media (max-width: 620px) {
    .enf-horeca-video__email {
        width: 100%;
        padding-left: 0;
        border-left: 0;
        text-align: center;
    }
}

@media (max-width: 860px) {
    .enf-horeca-video__inner {
        grid-template-columns: 1fr;
    }

    .enf-horeca-video__copy {
        text-align: center;
    }

    .enf-horeca-video__copy p {
        margin-inline: auto;
    }

    .enf-horeca-video__eyebrow,
    .enf-horeca-video__points {
        justify-content: center;
    }

    .enf-horeca-video__action {
        margin-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .enf-horeca-video__button {
        transition: none;
    }
}


.enf-horeca-form-target {
    scroll-margin-top: 110px;
}

.enf-horeca-form-target:target {
    animation: enf-form-highlight 1.2s ease;
}

@keyframes enf-form-highlight {
    0% {
        box-shadow: inset 0 0 0 3px rgba(22, 180, 76, .7);
    }
    100% {
        box-shadow: inset 0 0 0 0 rgba(22, 180, 76, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .enf-horeca-form-target:target {
        animation: none;
    }
}
