#limno-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

#limno-header,
#limno-header * {
    box-sizing: border-box;
}

#limno-header .limno-container {
    width: min(90%, 80rem);
    margin-left: auto;
    margin-right: auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

#limno-header .limno-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#limno-header .limno-logo {
    display: block !important;
    width: auto !important;
    height: 44px !important;
    max-width: 260px !important;
    object-fit: contain;
}

#limno-header .limno-desktop-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

#limno-header .limno-link {
    white-space: nowrap;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    transition: color .2s ease;
}

#limno-header .limno-link:hover,
#limno-header .limno-link.is-active {
    color: #3FB4CD;
}

#limno-header .limno-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: #3FB4CD;
    color: #fff;
    padding: 14px 28px;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease;
}

#limno-header .limno-btn-primary:hover {
    background: #1597b3;
    color: #fff;
}

#limno-header .limno-mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    color: #0f172a;
}

#limno-header .limno-mobile-menu {
    display: none;
    border-top: 1px solid #f1f5f9;
    background: #fff;
}

#limno-header .limno-mobile-menu.is-open {
    display: block;
}

#limno-header .limno-mobile-nav {
    width: min(90%, 80rem);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
}

#limno-header .limno-mobile-nav .limno-link {
    display: block;
    padding: 12px 8px;
    font-size: 16px;
}

@media (min-width: 1024px) {
    #limno-header .limno-desktop-nav {
        display: flex;
    }

    #limno-header .limno-mobile-toggle {
        display: none;
    }

    #limno-header .limno-mobile-menu,
    #limno-header .limno-mobile-menu.is-open {
        display: none !important;
    }
}

@media (max-width: 480px) {
    #limno-header .limno-container {
        height: 72px;
    }

    #limno-header .limno-logo {
        height: 36px !important;
        max-width: 210px !important;
    }
}