/* video.html — компонент секції, винесено з css/pages/video.css */

 .bz-video-control {
     position: relative;
     padding: 110px 0;
     background:
             radial-gradient(circle at 14% 34%, rgba(224, 0, 31, 0.2), transparent 34%),
             radial-gradient(circle at 82% 70%, rgba(224, 0, 31, 0.12), transparent 32%),
             #020202;
     color: #fff;
     overflow: hidden;
 }

.bz-video-control:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(0deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 88px 88px;
    opacity: 0.16;
    pointer-events: none;
}

.bz-video-control:after {
    content: "";
    position: absolute;
    left: -180px;
    top: 140px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(224, 0, 31, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.bz-video-control .container {
    position: relative;
    z-index: 2;
}

.bz-video-control-head {
    max-width: 820px;
    margin-bottom: 58px;
}

.bz-section-label {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 13px;
    color: #e0001f;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.bz-section-label:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 112px;
    height: 1px;
    background: #e0001f;
}

.bz-video-control-title {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(34px, 4.3vw, 62px);
    line-height: 1.08;
    letter-spacing: 0.025em;
    font-weight: 400;
}

.bz-video-control-title span {
    color: #e0001f;
}

.bz-video-control-subtitle {
    max-width: 660px;
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.7;
}

.bz-video-control-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
    gap: 82px;
    align-items: center;
    margin-bottom: 54px;
}

.bz-video-control-device {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bz-phone {
    position: relative;
    z-index: 2;
    width: 278px;
    height: 548px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 36px;
    background:
            linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.025)),
            #050505;
    box-shadow: 0 38px 70px rgba(0,0,0,0.72);
}

.bz-phone-top {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 74px;
    height: 6px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: rgba(255,255,255,0.22);
    z-index: 4;
}

.bz-phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background-color: white;
}

.bz-phone-video {

    filter: grayscale(0.85) contrast(1.08);
    opacity: 0.82;
    margin-top: 30%;
}

.bz-phone-overlay {
    position: absolute;
    inset: 0;
    padding: 42px 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
            linear-gradient(180deg, rgba(0,0,0,0.3), transparent 38%, rgba(0,0,0,0.78)),
            radial-gradient(circle at 50% 50%, rgba(224,0,31,0.14), transparent 46%);
}

.bz-phone-status {
    position: absolute;
    left: 18px;
    top: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.48);
    color: rgba(255,255,255,0.78);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.bz-phone-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e0001f;
    box-shadow: 0 0 14px rgba(224,0,31,0.9);
}

.bz-phone-time {
    margin-bottom: 8px;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.04em;
}

.bz-phone-caption {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bz-device-glow {
    position: absolute;
    left: 50%;
    bottom: 36px;
    width: 280px;
    height: 56px;
    transform: translateX(-50%);
    background: rgba(224, 0, 31, 0.24);
    filter: blur(36px);
}

.bz-video-control-list {
    position: relative;
    display: grid;
    gap: 0;
}

.bz-video-control-list:before {
    content: "";
    position: absolute;
    left: 78px;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: linear-gradient(180deg, rgba(224,0,31,0), rgba(224,0,31,0.65), rgba(224,0,31,0));
}

.bz-control-step {
    position: relative;
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bz-control-step:first-child {
    padding-top: 0;
}

.bz-control-step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.bz-control-step:before {
    content: "";
    position: absolute;
    left: 72px;
    top: 36px;
    width: 13px;
    height: 13px;
    background: #e0001f;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(224,0,31,0.12), 0 0 24px rgba(224,0,31,0.72);
}

.bz-control-step:first-child:before {
    top: 8px;
}

.bz-control-step-time {
    color: #e0001f;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.bz-section-title {
    font-family: var(--secondary-font);
}
.bz-control-step-title {
    margin-bottom: 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.bz-control-step-text {
    max-width: 600px;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    line-height: 1.65;
}

.bz-video-control-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bz-video-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(255,255,255,0.025);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.bz-video-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(224,0,31,0.62);
    background: rgba(224,0,31,0.1);
}

.bz-video-feature-icon {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(224,0,31,0.52);
    background: rgba(224,0,31,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bz-video-feature-title {
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bz-video-feature-text {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1199.98px) {
    .bz-video-control-layout {
        gap: 48px;
    }
}

@media (max-width: 991.98px) {
    .bz-video-control {
        padding: 84px 0;
    }

    .bz-video-control-layout {
        grid-template-columns: 1fr;
    }

    .bz-video-control-device {
        min-height: auto;
        justify-content: flex-start;
    }

    .bz-video-control-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .bz-video-control {
        padding: 68px 0;
    }

    .bz-video-control-head {
        margin-bottom: 42px;
    }

    .bz-video-control-title {
        font-size: 34px;
    }

    .bz-video-control-subtitle {
        font-size: 15px;
    }

    .bz-phone {
        width: 244px;
        height: 486px;
        border-radius: 32px;
    }

    .bz-phone-screen {
        border-radius: 24px;
    }

    .bz-phone-time {
        font-size: 42px;
    }

    .bz-video-control-list:before {
        left: 5px;
    }

    .bz-control-step {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 34px;
    }

    .bz-control-step:before {
        left: 0;
    }

    .bz-control-step:first-child:before {
        top: 8px;
    }

    .bz-control-step-title {
        font-size: 21px;
    }

    .bz-video-feature {
        grid-template-columns: 48px 1fr;
        padding: 22px;
    }

    .bz-video-feature-icon {
        width: 48px;
        height: 48px;
    }
}

.bz-video-feature-icon img {
    filter: brightness(0) invert(1);
}