html {
    scroll-padding-top: 104px;
}

body {
    padding-top: 80px;
}

.ke-site-menu,
.ke-site-menu * {
    box-sizing: border-box;
}

.ke-site-menu {
    position: relative;
    z-index: 999999;
    font-family: "Montserrat", sans-serif;
}

.ke-site-menu a {
    color: inherit;
    text-decoration: none;
}

.ke-site-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ke-desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(15,23,42,.07);
}

.ke-desktop-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 18px;
}

.ke-desktop-wrap > nav {
    height: 100%;
}

.ke-logo {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
}

.ke-logo-image {
    width: 48px;
    height: 58px;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 5px 7px rgba(15,23,42,.12));
}

.ke-logo-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.ke-logo-title {
    color: #1f2937;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.ke-logo-title span {
    color: #d39a22;
}

.ke-logo-subtitle {
    color: #7c8593;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .25px;
    white-space: nowrap;
}

.ke-desktop-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 100%;
    gap: 17px;
}

.ke-desktop-nav > li {
    position: relative;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    height: 100%;
}

.ke-menu-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: #374151;
    cursor: pointer;
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s ease;
}

.ke-menu-link::after {
    position: absolute;
    bottom: 13px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #d39a22;
    border-radius: 3px;
    content: "";
    transform: translateX(-50%);
    transition: width .25s ease;
}

.ke-menu-link:hover,
.ke-menu-link.is-active {
    color: #d39a22;
}

.ke-menu-link:hover::after,
.ke-menu-link.is-active::after,
.ke-has-submenu.is-open > .ke-menu-link::after {
    width: 32px;
}

.ke-has-submenu > .ke-menu-link {
    padding-right: 16px;
}

.ke-has-submenu > .ke-menu-link::before {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -2px;
    border: 4px solid transparent;
    border-top-color: #8b93a1;
    content: "";
}

.ke-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    min-width: 620px;
    padding: 13px 0 10px;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    border: 1px solid #e8ebf0;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(15,23,42,.13);
    transform: translate(-50%, 7px);
    transition: transform .2s ease;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    pointer-events: none;
}

.ke-has-submenu:hover .ke-submenu,
.ke-has-submenu:focus-within .ke-submenu,
.ke-has-submenu.is-open .ke-submenu {
    display: grid;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.ke-submenu a {
    display: block;
    padding: 9px 20px;
    color: #444b57;
    border-bottom: 1px solid #f3f4f6;
    font-size: 12px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease, padding .2s ease;
}

.ke-submenu a:last-child {
    border-bottom: 0;
}

.ke-submenu a:hover {
    padding-left: 25px;
    color: #a8710d;
    background: #fff8e8;
}

.ke-desktop-right {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 15px;
}

.ke-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.25;
}

.ke-email {
    color: #7c8593;
    font-size: 10px;
    white-space: nowrap;
}

.ke-phone {
    color: #1f2937;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.ke-lang-switch {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: #a8710d !important;
    background: #fff8e8;
    border: 1px solid rgba(211,154,34,.5);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.ke-lang-switch:hover {
    color: #fff !important;
    background: #d39a22;
    transform: translateY(-1px);
}

.ke-cta {
    padding: 10px 19px;
    color: #fff !important;
    background: linear-gradient(135deg, #bd7e10, #e6b94d);
    border-radius: 50px;
    box-shadow: 0 8px 18px rgba(211,154,34,.28);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

.ke-cta:hover {
    background: #111827;
    transform: translateY(-1px);
}

.ke-mobile-menu {
    display: none;
}

@media (max-width: 1400px) and (min-width: 1251px) {
    .ke-desktop-wrap {
        padding: 0 14px;
        gap: 11px;
    }

    .ke-desktop-nav {
        gap: 11px;
    }

    .ke-menu-link {
        font-size: 12px;
    }

    .ke-logo-title {
        font-size: 22px;
    }

    .ke-logo-subtitle,
    .ke-email {
        display: none;
    }

    .ke-phone {
        font-size: 14px;
    }

    .ke-cta {
        padding: 9px 14px;
        font-size: 10px;
    }

    .ke-lang-switch {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 10px;
    }
}

@media (max-width: 1250px) {
    body {
        padding-top: 92px;
    }

    html {
        scroll-padding-top: 112px;
    }

    .ke-desktop-header {
        display: none;
    }

    .ke-mobile-menu {
        display: block;
    }

    .ke-mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100002;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 56px;
        padding: 0 15px;
        color: #fff;
        background: #0f172a;
        border-bottom: 2px solid #d39a22;
        box-shadow: 0 4px 15px rgba(15,23,42,.22);
    }

    .ke-mobile-brand {
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .ke-burger {
        display: flex;
        width: 30px;
        height: 30px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .ke-burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: transform .35s ease, opacity .25s ease;
    }

    .ke-burger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .ke-burger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .ke-burger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .ke-mobile-logo {
        color: #fff;
        font-family: "Oswald", sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .ke-mobile-logo span {
        color: #e3ad37;
    }

    .ke-mobile-actions {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .ke-mobile-lang {
        display: grid;
        width: 32px;
        height: 30px;
        place-items: center;
        color: #f3bd45 !important;
        border: 1px solid rgba(227,173,55,.75);
        border-radius: 7px;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .4px;
    }

    .ke-mobile-phone {
        color: #fff !important;
        font-family: "Oswald", sans-serif;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

    .ke-quick-nav {
        position: fixed;
        top: 56px;
        left: 0;
        z-index: 100000;
        display: flex;
        width: 100%;
        padding: 6px 0;
        background: rgba(15,23,42,.93);
        box-shadow: 0 5px 15px rgba(15,23,42,.15);
        backdrop-filter: blur(10px);
        transition: transform .35s ease, opacity .3s ease;
    }

    .ke-quick-item {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        padding: 3px 2px;
        color: #e0aa37 !important;
        border-right: 1px solid rgba(255,255,255,.1);
        font-family: "Oswald", sans-serif;
        font-size: 8px;
        font-weight: 500;
        line-height: 1.1;
        text-align: center;
        text-transform: uppercase;
    }

    .ke-quick-item:last-child {
        border-right: 0;
    }

    .ke-quick-item svg {
        width: 14px;
        height: 14px;
        margin-bottom: 3px;
        fill: #e0aa37;
    }

    .ke-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 100003;
        visibility: hidden;
        opacity: 0;
        background: rgba(15,23,42,.62);
        backdrop-filter: blur(2px);
        transition: opacity .3s ease, visibility .3s ease;
    }

    .ke-menu-overlay.is-open {
        visibility: visible;
        opacity: 1;
    }

    .ke-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100004;
        display: flex;
        width: min(320px, 88vw);
        height: 100dvh;
        flex-direction: column;
        background: #fff;
        box-shadow: 15px 0 40px rgba(15,23,42,.2);
        transform: translateX(-105%);
        transition: transform .4s cubic-bezier(.77,0,.175,1);
    }

    .ke-sidebar.is-open {
        transform: translateX(0);
    }

    .ke-sidebar-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        background: #f8f9fc;
        border-bottom: 1px solid #e8ebf0;
    }

    .ke-sidebar-head h2 {
        margin: 0;
        color: #1f2937;
        font-family: "Oswald", sans-serif;
        font-size: 16px;
        text-transform: uppercase;
    }

    .ke-sidebar-head h2 span {
        color: #d39a22;
    }

    .ke-menu-close {
        padding: 0;
        color: #7c8593;
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 30px;
        line-height: 1;
    }

    .ke-sidebar-list {
        flex-grow: 1;
        padding: 6px 18px;
        overflow-y: auto;
    }

    .ke-sidebar-link,
    .ke-accordion-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
        color: #1f2937 !important;
        background: transparent;
        border: 0;
        border-bottom: 1px solid #f0f1f4;
        cursor: pointer;
        font-family: "Oswald", sans-serif;
        font-size: 13px;
        font-weight: 500;
        text-align: left;
        text-transform: uppercase;
    }

    .ke-accordion-button span {
        color: #d39a22;
        font-size: 12px;
        transition: transform .25s ease;
    }

    .ke-accordion-button.is-open span {
        transform: rotate(180deg);
    }

    .ke-accordion-body {
        max-height: 0;
        padding-left: 12px;
        overflow: hidden;
        background: #fafbff;
        transition: max-height .35s ease;
    }

    .ke-accordion-body.is-open {
        max-height: 500px;
    }

    .ke-accordion-body a {
        display: block;
        padding: 8px 5px;
        color: #4b5563;
        border-bottom: 1px dashed #e5e7eb;
        font-size: 12px;
    }

    .ke-sidebar-footer {
        padding: 15px 18px;
        background: #fff;
        border-top: 1px solid #e8ebf0;
    }

    .ke-sidebar-language {
        color: #a8710d !important;
        background: #fff8e8;
        font-weight: 800 !important;
    }

    .ke-sidebar-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 7px;
        padding: 11px;
        color: #fff !important;
        border-radius: 7px;
        font-family: "Oswald", sans-serif;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .ke-call-button {
        background: linear-gradient(135deg, #bd7e10, #e6b94d);
    }

    .ke-whatsapp-button {
        background: #25d366;
    }

    .ke-sidebar-email {
        display: block;
        margin-top: 9px;
        color: #7c8593;
        font-size: 11px;
        font-weight: 600;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .ke-mobile-phone {
        font-size: 11px;
    }

    .ke-mobile-logo {
        font-size: 18px;
    }

    .ke-mobile-actions {
        gap: 6px;
    }

    .ke-mobile-lang {
        width: 29px;
        height: 28px;
    }
}
