.inner-table-block.menu-block.rows.sep-left {
    display: none !important;
}

/* === SERVICES NAV BAR === */
.services-bar {
    background: #f7f7f7;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 0;
    position: relative;
    z-index: 900;
}
.services-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    overflow-x: unset;
}
.service-nav-wrapper {
    position: static;
}
/* Только для дропдаунов (ИИ) — оставляем relative */
.service-nav-wrapper:nth-child(5) {
    position: relative;
}
.service-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    padding: 8px 0;
}
.service-nav-item:hover { color: #ffcf00 !important;}
.service-nav-item img { width: 30px; height: 30px; }
.service-nav-item svg { width: 30px; height: 30px; }

/* === DROPDOWN MENU === */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 320px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 15px 0;
    z-index: 999;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}
.service-nav-wrapper:hover .dropdown-menu {
    display: block;
}
.service-nav-wrapper:hover .service-nav-item {
    color: #ffcf00;
}
.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: all 0.2s;
}
.dropdown-menu a:hover {
    color: #ffcf00;
    background: #fafafa;
}

/* === MEGA MENU === */
.megamenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 960px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 30px 35px 20px;
    z-index: 999;
}
.megamenu::before {
    display: none;
}
.service-nav-wrapper:hover .megamenu {
    display: block;
}
.megamenu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.megamenu-col h4 {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffcf00;
}
.megamenu-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
    border-bottom: 1px solid #f5f5f5;
}
.megamenu-col a:last-child { border-bottom: none; }
.megamenu-col a:hover { color: #ffcf00 !important;}
.megamenu-col a .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ffcf00;
    flex-shrink: 0;
}
.megamenu-col a .dot.blue { background: #ffcf00; }
.megamenu-col a .dot.green { background: #ffcf00; }
.megamenu-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.megamenu-footer span {
    font-size: 14px;
    color: #777;
}
.megamenu-footer a {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background: #ffcf00;
    padding: 10px 22px;
    border-radius: 25px;
    transition: all 0.3s;
}
.megamenu-footer a:hover { background: #e6ba00; color: #333; }

/* === МЕГАМЕНЮ ПОЗИЦИОНИРОВАНИЕ ДЛЯ ПРАВЫХ ПУНКТОВ === */
/* ИИ мегаменю (5-й пункт) — открываем влево, чтобы не уходил за правый край */
.service-nav-wrapper:nth-child(5) .megamenu {
    left: auto;
    right: 0;
    transform: none;
}

/* SVG иконки в навигации */
.service-nav-item svg {
    flex-shrink: 0;
}

.megamenu.megamenu_1 {
    width: 500px;
}

.megamenu.megamenu_1 .megamenu-columns {
    grid-template-columns: 1fr;
}

.megamenu.megamenu_2 {
    width: 640px;
}

.megamenu.megamenu_2 .megamenu-columns {
    grid-template-columns: 1fr 1fr;
}