.ask-site-header,
.ask-site-footer {
    font-family: inherit;
    box-sizing: border-box;
}

.ask-site-header *,
.ask-site-footer * {
    box-sizing: border-box;
}

.ask-site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    color: #fff;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

body.ask-home-page .ask-site-header {
    position: fixed;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.22);
    box-shadow: none;
    transition: background-color .3s ease, box-shadow .3s ease;
}

body.ask-home-page .ask-site-header.is-scrolled {
    color: #1f2937;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.ask-layout-container {
    width: min(100% - 40px, 1280px);
    margin-inline: auto;
}

.ask-navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ask-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.08rem;
    font-weight: 800;
}

.ask-brand-logo {
    width: 48px;
    height: 48px;
    padding: 4px;
    object-fit: contain;
    border-radius: 50%;
    background: #475569;
}

.ask-desktop-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(13px, 1.5vw, 25px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.ask-nav-link,
.ask-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 25px 0;
    border: 0;
    color: inherit;
    background: transparent;
    text-decoration: none;
    white-space: nowrap;
    font: inherit;
    font-size: .91rem;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s ease;
}

.ask-nav-link:hover,
.ask-dropdown-toggle:hover,
.ask-nav-link.is-active {
    color: #5eead4;
}

.ask-main-site-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    background: #0d9488;
    text-decoration: none;
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.ask-main-site-link:hover {
    color: #fff;
    background: #0f766e;
    transform: translateY(-1px);
}

.ask-dropdown {
    position: relative;
}

.ask-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}

.ask-dropdown:hover .ask-dropdown-toggle svg,
.ask-dropdown.is-open .ask-dropdown-toggle svg {
    transform: rotate(180deg);
}

.ask-dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    right: 0;
    width: 310px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(15, 118, 110, .12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.ask-dropdown:hover .ask-dropdown-menu,
.ask-dropdown:focus-within .ask-dropdown-menu,
.ask-dropdown.is-open .ask-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ask-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    color: #334155;
    text-decoration: none;
    line-height: 1.5;
    font-size: .88rem;
    font-weight: 600;
}

.ask-dropdown-menu a:hover,
.ask-dropdown-menu a.is-active {
    color: #0f766e;
    background: #f0fdfa;
}

.ask-product-code {
    min-width: 46px;
    direction: ltr;
    color: #0f766e;
    font-weight: 900;
}

.ask-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.ask-mobile-toggle svg {
    width: 27px;
    height: 27px;
}

.ask-mobile-menu {
    display: none;
    padding: 0 0 16px;
}

.ask-mobile-menu.is-open {
    display: block;
}

.ask-mobile-menu a,
.ask-mobile-products-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    border: 0;
    border-radius: 9px;
    color: #1f2937;
    background: transparent;
    text-decoration: none;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.ask-mobile-menu {
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 14px 35px rgba(15, 23, 42, .18);
}

.ask-mobile-menu a:hover,
.ask-mobile-products-toggle:hover {
    color: #0f766e;
    background: #f0fdfa;
}

.ask-mobile-products {
    display: none;
    margin: 0 14px 8px;
    padding: 6px;
    border-right: 2px solid #14b8a6;
}

.ask-mobile-products.is-open {
    display: block;
}

.ask-mobile-products a {
    justify-content: flex-start;
    gap: 9px;
    font-size: .86rem;
}

.ask-site-footer {
    overflow-x: hidden;
    padding: 64px 0 30px;
    color: #fff;
    background: #111827;
}

.ask-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 42px;
    margin-bottom: 34px;
}

.ask-footer-logo {
    width: auto;
    height: 64px;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 10px;
    background: #334155;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.ask-footer-text,
.ask-footer-contact {
    color: #9ca3af;
    font-size: .88rem;
    line-height: 1.95;
}

.ask-footer-title {
    display: inline-block;
    margin: 0 0 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #14b8a6;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.ask-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ask-footer-links li {
    margin-bottom: 10px;
}

.ask-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: .88rem;
}

.ask-footer-links a:hover {
    color: #fff;
}

.ask-footer-contact > div {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 10px;
}

.ask-footer-contact strong {
    flex: 0 0 auto;
    color: #d1d5db;
}

.ask-copyright {
    padding-top: 24px;
    border-top: 1px solid #374151;
    color: #6b7280;
    text-align: center;
    font-size: .84rem;
}

@media (max-width: 1100px) {
    .ask-desktop-menu {
        gap: 13px;
    }

    .ask-nav-link,
    .ask-dropdown-toggle {
        font-size: .82rem;
    }

    .ask-main-site-link {
        display: none;
    }
}

@media (max-width: 850px) {
    .ask-layout-container {
        width: min(100% - 24px, 1280px);
    }

    .ask-navbar {
        min-height: 72px;
    }

    .ask-desktop-menu {
        display: none;
    }

    .ask-mobile-toggle {
        display: inline-flex;
    }

    .ask-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ask-footer-contact-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .ask-brand {
        font-size: .95rem;
    }

    .ask-brand-logo {
        width: 44px;
        height: 44px;
    }

    .ask-footer-grid {
        grid-template-columns: 1fr;
    }

    .ask-footer-contact-column {
        grid-column: auto;
    }

    .ask-footer-contact > div {
        display: block;
    }
}
