:root {
            --blood-red-alpha: #e31e24;
            --blood-red-hover: #c2161b;
            --dark-void-bg: #0a0b0c;
            --ghost-white: #ffffff;
            --ash-gray: #a1a3a6;
            --border-steel: rgba(255, 255, 255, 0.15);
            --neon-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .page_two_main {
            background-color: var(--dark-void-bg);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            font-family: 'Montserrat', sans-serif;
            color: var(--ghost-white);
            min-height: 100vh;
            overflow-x: hidden;
			padding-bottom: 30px;
        }

        .kraken-main-wrap-77 {
            max-width: 1440px;
            margin: 0 auto;
            padding: 20px 40px;
            position: relative;
            z-index: 2;
        }

        /* --- HEADER --- */
        .gargoyle-header-x1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-steel);
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
        }

        .header-brand-group {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Гамбургер Кнопка (Скрыта на десктопе) */
        .burger-menu-btn-x {
            display: none;
            width: 30px;
            height: 24px;
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        .burger-menu-btn-x span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--ghost-white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .burger-menu-btn-x span:nth-child(1) { top: 0; }
        .burger-menu-btn-x span:nth-child(2) { top: 11px; }
        .burger-menu-btn-x span:nth-child(3) { top: 22px; }

        .venom-logo-block-z {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cyber-badge-circle {
            width: 70px;
            height: 70px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--blood-red-alpha);
            padding: 5px;
        }

        .cyber-badge-circle img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .dragon-title-group h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: nowrap;
			color: #fff;
        }

        .vampire-text-blood {
            color: var(--blood-red-alpha);
        }

        .dragon-title-group p {
            font-size: 13px;
            color: var(--ash-gray);
            max-width: 370px;
            margin-top: 4px;
            line-height: 1.3;
			font-weight: 500;
        }

        .falcon-contacts-grid {
            display: flex;
            align-items: center;
            gap: 70px;
        }

        .omega-loc-box {
            display: flex;
			color: #fff;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
        }

        .omega-loc-box svg {
            fill: var(--blood-red-alpha);
            width: 25px;
            margin-top: 2px;
        }

        .social-mutant-links {
            display: flex;
            gap: 15px;
        }

        .mutant-link-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: var(--ghost-white);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .mutant-link-item:hover {
            opacity: 0.7;
        }

        .titan-work-hours {
            text-align: right;
            font-size: 13px;
            color: var(--ash-gray);
        }

        .titan-work-hours strong {
            display: block;
            font-size: 18px;
            color: var(--ghost-white);
            font-weight: 700;
            margin-top: 4px;
            font-family: 'Montserrat', sans-serif;
            white-space: nowrap;
        }

        .phoenix-call-btn {
            background-color: #ff8c00;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .phoenix-call-btn:hover {
            background-color: #e67e00;
        }

        /* --- MOBILE NAVIGATION PANEL --- */
        .mobile-nav-overlay-q {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.8);
            z-index: 999;
            opacity: 0; visibility: hidden;
            transition: 0.3s ease;
        }

        .mobile-nav-overlay-q.active {
            opacity: 1; visibility: visible;
        }

        .mobile-nav-panel-z {
            position: fixed;
            top: 0; left: -100%;
            width: 85%; max-width: 320px; height: 100vh;
            background: var(--dark-void-bg);
            z-index: 1000;
            padding: 80px 30px 40px;
            display: flex; flex-direction: column; justify-content: space-between;
            border-right: 1px solid var(--border-steel);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 10px 0 30px rgba(0,0,0,0.8);
        }

        .mobile-nav-panel-z.active {
            left: 0;
        }

        .close-mobile-btn-v {
            position: absolute;
            top: 25px; right: 25px;
            background: none; border: none; cursor: pointer; padding: 5px;
        }

        .mobile-nav-links-box {
            display: flex; flex-direction: column; gap: 25px;
        }

        .mobile-nav-links-box a {
            color: var(--ghost-white); text-decoration: none; font-size: 16px; font-weight: 700;
            text-transform: uppercase; font-family: 'Montserrat', sans-serif;
            transition: color 0.3s;
        }

        .mobile-nav-links-box a:hover { color: var(--blood-red-alpha); }

        .mobile-address-block-y {
            border-top: 1px solid var(--border-steel);
            padding-top: 30px;
        }

        /* --- DESKTOP NAVIGATION --- */
        .ninja-nav-bar-k9 {
            background: rgba(10, 11, 12, 0.8);
            border: 1px solid var(--border-steel);
            border-radius: 30px;
            margin: 25px auto 50px;
            display: inline-flex;
            justify-content: center;
            padding: 12px 40px;
            gap: 40px;
            backdrop-filter: blur(10px);
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        .ninja-nav-bar-k9 a {
            color: var(--ghost-white);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .ninja-nav-bar-k9 a:hover {
            color: var(--blood-red-alpha);
        }

        /* --- HERO SECTION --- */
        .golem-hero-zone-44 {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 60px;
        }

        .zombie-text-col {
            width: 50%;
            position: relative;
            z-index: 10;
        }

        .zombie-text-col h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 40px;
            font-weight: 900;
			color: #fff;
            line-height: 1.1;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
        }

        .valkyrie-subtitle {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
			color: #fff;
        }

        .valkyrie-desc {
            font-size: 15px;
            color: var(--ash-gray);
            margin-bottom: 35px;
        }

        .chimera-btn-group {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn-core-base {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 25px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--ghost-white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .phantom-btn-x9 {
            background-color: var(--blood-red-alpha);
            border: 1px solid var(--blood-red-alpha);
        }

        .phantom-btn-x9:hover {
            background-color: var(--blood-red-hover);
            box-shadow: var(--neon-shadow);
        }

        .specter-btn-y2 {
            background-color: transparent;
            border: 1px solid var(--border-steel);
        }

        .specter-btn-y2:hover {
            background-color: rgba(255,255,255,0.05);
            border-color: var(--ghost-white);
        }

        .btn-text-micro {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255,255,255,0.7);
            font-family: 'Inter', sans-serif;
            margin-top: 3px;
        }

        .griffin-features-row {
            display: flex;
            gap: 30px;
        }

        .feature-node-alpha {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
			color: #fff;
            font-weight: 600;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .feature-node-alpha svg {
            width: 34px;
            height: 34px;
            fill: none;
            stroke: var(--blood-red-alpha);
            stroke-width: 2;
            flex-shrink: 0;
        }

        .feature-node-alpha span {
            display: block;
            font-size: 13px;
            color: var(--ash-gray);
            font-weight: 400;
            text-transform: none;
        }

        /* --- TRUCK VISUAL ZONE --- */
        .yeti-truck-visual-q {
            width: 62%;
            position: absolute;
            right: 0px;
            top: -45px;
            height: 100%;
            z-index: 5;
			color: #fff;
        }

        .yeti-truck-visual-q img {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
        }

        .plasma-tag-pointer {
            position: absolute;
            background-color: var(--blood-red-alpha);
            padding: 6px 16px;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            z-index: 10;
        }

        .plasma-tag-pointer::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background-color: var(--blood-red-alpha);
            border-radius: 50%;
        }

        /* Complex pointer lines using pseudo elements */
        .tag-roof-k {
            top: 7%;
            right: 30%;
        }
        .line-roof-k {
            position: absolute;
    top: 100%;
    right: 70px;
    width: 0;
    height: 13px;
    border-bottom: 2px solid var(--blood-red-alpha);
    border-right: 2px solid var(--blood-red-alpha); 
        }
        .line-roof-k::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: -2px;
            width: 6px;
            height: 6px;
            background: var(--blood-red-alpha);
            border-radius: 50%;
        }

        .tag-body-j {
            top: 55%;
            left: 18%;
        }
        .line-body-j {
            position: absolute;
            top: 50%;
            left: 100%;
            width: 120px;
            height: 2px;
            background-color: var(--blood-red-alpha);
        }
        .line-body-j::after {
            content: '';
            position: absolute;
            top: -2px;
            right: -4px;
            width: 6px;
            height: 6px;
            background: var(--blood-red-alpha);
            border-radius: 50%;
        }

        .tag-doors-m {
            bottom: 30%;
            right: 1%;
        }
        .line-doors-m {
            position: absolute;
    bottom: 226%;
    right: 71%;
    width: 130px;
    height: 30px;
    border-top: 2px solid var(--blood-red-alpha);
    border-left: 2px solid var(--blood-red-alpha);
    transform: rotate(270deg);
        }
        .line-doors-m::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            width: 6px;
            height: 6px;
            background: var(--blood-red-alpha);
            border-radius: 50%;
        }
		
		.line-doors-m::before {
            content: '';
    position: absolute;
    top: -4px;
    left: 126px;
    width: 6px;
    height: 6px;
    background: var(--blood-red-alpha);
    border-radius: 50%;
        }

        /* --- BOTTOM CARDS --- */
        .hydra-cards-matrix-8 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .gargantua-card-item {
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            height: 220px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
            background-color: var(--dark-void-bg);
        }

        .gargantua-card-item:hover {
            transform: translateY(-5px);
            border-color: rgba(227, 30, 36, 0.4);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .truck-overlay-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
            transition: transform 0.5s ease;
        }

        .gargantua-card-item:hover .truck-overlay-img {
            transform: scale(1.05);
        }

        .card-gradient-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(10,11,12,0.95) 0%, rgba(10,11,12,0.6) 50%, rgba(10,11,12,0) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .card-content-neo {
            position: relative;
            z-index: 2;
            padding: 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Текст будет сверху */
            pointer-events: none;
        }

        .card-title-neo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
			color: #fff;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        .card-desc-neo {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        .blood-divider-line {
            width: 40px;
            height: 3px;
            background-color: var(--blood-red-alpha);
            box-shadow: 0 0 8px rgba(227, 30, 36, 0.8);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .zombie-text-col h1 { font-size: 42px; }
            .yeti-truck-visual-q { width: 60%; right: -20px; }
            .ninja-nav-bar-k9 { flex-wrap: wrap; padding: 15px 20px; gap: 20px; width: 100%; border-radius: 15px;}
        }

        @media (max-width: 992px) {
            /* Перестроение шапки для мобильных (Flex) */
            .gargoyle-header-x1 {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
                padding-bottom: 15px;
            }

            .header-brand-group {
                gap: 15px;
            }

            .burger-menu-btn-x { 
                display: block; 
            }
            
            .cyber-badge-circle { width: 45px; height: 45px; }
            .dragon-title-group h2 { font-size: 18px; }
            .dragon-title-group p { display: none; } /* Скрываем длинное описание лого на мобильных */

            /* Строка с контактами */
            .falcon-contacts-grid { 
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                gap: 10px;
            }
            
            .omega-loc-box.desktop-loc, .phoenix-call-btn { 
                display: none; 
            }

            .titan-work-hours { 
                text-align: left; 
                font-size: 12px;
            }
            .titan-work-hours strong { font-size: 16px; }

            .social-mutant-links { 
                gap: 10px;
            }
            .mutant-link-item span { display: none; } /* Скрываем подписи "Max" и "Telegram" */

            .ninja-nav-bar-k9 { display: none; } /* Скрываем десктопное меню */

            /* Перестроение Hero секции с новым порядком */
            .golem-hero-zone-44 { 
                display: flex; 
                flex-direction: column; 
                margin-top: 20px; 
            }
            
            .zombie-text-col { 
                display: contents; /* Позволяет управлять порядком вложенных элементов в родительском флекс-контейнере */
            }

            .hero-top-text { order: 1; }
            
            .yeti-truck-visual-q { 
                order: 2;
                position: relative; 
                width: 100%; 
                right: 0; top: 0; 
                min-height: auto; 
                margin: 20px 0 40px; 
            }

            .hero-bottom-actions { 
                order: 3; 
                margin-bottom: 40px;
            }

            .hydra-cards-matrix-8 { grid-template-columns: 1fr 1fr; }
        }
		
		.font_hero_text {
		font-size: 60px;
	}
	
	.furgon_font__text {
		font-size: 70px;
	}
	
	.img_logo_HhGH {
		max-width: 100px;
	}

        @media (max-width: 768px) {
            .kraken-main-wrap-77 { padding: 15px 20px; }
            .hydra-cards-matrix-8 { grid-template-columns: 1fr; }
            .chimera-btn-group { flex-direction: column; }
            .griffin-features-row { flex-direction: column; gap: 15px; }
            .plasma-tag-pointer { font-size: 9px; padding: 4px 10px; }
            .zombie-text-col h1 { font-size: 29px; line-height: 1.5em; }
			.furgon_font__text { font-size: 45px; }
			.font_hero_text { font-size: 38px; }
			.hydra-cards-matrix-8 { margin-top: 0; }
			.golem-hero-zone-44 { margin-bottom: 0; }
			.tag-roof-k { top: 1%; }
			.tag-body-j { top: 43%; left: 6%; }
			.line-doors-m::after { display:none;}
			.line-body-j { width: 30px; }
			.line-doors-m { bottom: 297%; right: 22%; width: 80px; height: 0; }
			.line-doors-m::before {left: 76px;}
			.tag-doors-m { bottom: 8%; right: 3%; }
			.valkyrie-desc { margin-bottom: 5px; }
        }
		
		
/* Блок отзывы о нашей работе */
.v-review-section {
    padding: 80px 0;
}

.v-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /*Тут добавляем ещё одно 1fr если нужно третье видео в отзывах/ Получится типа: 1fr 1fr 1fr */
    gap: 30px;
    align-items: stretch;
}

.v-review-card {
    background: #252525;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.v-review-card:hover {
    transform: translateY(-5px);
}

.v-video-box {
    position: relative;
    background: #000;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Выравниваем общую высоту */
}

.v-review-card video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Чтобы видео не обрезалось и не растягивалось */
    max-height: 423px;
}

.v-review-info {
    padding: 20px;
    background: #252525;
}

.v-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    color: #FFA500;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}

.v-review-info p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Адаптив под мобилки */
@media (max-width: 991px) {
    .v-review-grid {
        grid-template-columns: 1fr;
    }
    .v-video-box {
        min-height: auto;
        aspect-ratio: 16/9;
    }
    .v-tall .v-video-box {
        aspect-ratio: 9/16;
        max-height: 180px;
    }
}